
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1453 4e206d99-4929-0410-ac5d-dfc041789085
125 lines
4.8 KiB
C#
125 lines
4.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security;
|
|
|
|
namespace SFML
|
|
{
|
|
namespace Window
|
|
{
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// VideoMode defines a video mode (width, height, bpp, frequency)
|
|
/// and provides static functions for getting modes supported
|
|
/// by the display device
|
|
/// </summary>
|
|
////////////////////////////////////////////////////////////
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct VideoMode
|
|
{
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Construct the video mode with its width and height
|
|
/// </summary>
|
|
/// <param name="width">Video mode width</param>
|
|
/// <param name="height">Video mode height</param>
|
|
////////////////////////////////////////////////////////////
|
|
public VideoMode(uint width, uint height) :
|
|
this(width, height, 32)
|
|
{
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Construct the video mode with its width, height and depth
|
|
/// </summary>
|
|
/// <param name="width">Video mode width</param>
|
|
/// <param name="height">Video mode height</param>
|
|
/// <param name="bpp">Video mode depth (bits per pixel)</param>
|
|
////////////////////////////////////////////////////////////
|
|
public VideoMode(uint width, uint height, uint bpp)
|
|
{
|
|
Width = width;
|
|
Height = height;
|
|
BitsPerPixel = bpp;
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Tell whether or not the video mode is supported
|
|
/// </summary>
|
|
/// <returns>True if the video mode is valid, false otherwise</returns>
|
|
////////////////////////////////////////////////////////////
|
|
public bool IsValid()
|
|
{
|
|
return sfVideoMode_IsValid(this);
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Get the list of all the supported fullscreen video modes
|
|
/// </summary>
|
|
////////////////////////////////////////////////////////////
|
|
public static VideoMode[] FullscreenModes
|
|
{
|
|
get
|
|
{
|
|
unsafe
|
|
{
|
|
uint Count;
|
|
VideoMode* ModesPtr = sfVideoMode_GetFullscreenModes(out Count);
|
|
VideoMode[] Modes = new VideoMode[Count];
|
|
for (uint i = 0; i < Count; ++i)
|
|
Modes[i] = ModesPtr[i];
|
|
|
|
return Modes;
|
|
}
|
|
}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Get the current desktop video mode
|
|
/// </summary>
|
|
////////////////////////////////////////////////////////////
|
|
public static VideoMode DesktopMode
|
|
{
|
|
get {return sfVideoMode_GetDesktopMode();}
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// <summary>
|
|
/// Provide a string describing the object
|
|
/// </summary>
|
|
/// <returns>String description of the object</returns>
|
|
////////////////////////////////////////////////////////////
|
|
public override string ToString()
|
|
{
|
|
return "[VideoMode]" +
|
|
" Width(" + Width + ")" +
|
|
" Height(" + Height + ")" +
|
|
" BitsPerPixel(" + BitsPerPixel + ")";
|
|
}
|
|
|
|
/// <summary>Video mode width, in pixels</summary>
|
|
public uint Width;
|
|
|
|
/// <summary>Video mode height, in pixels</summary>
|
|
public uint Height;
|
|
|
|
/// <summary>Video mode depth, in bits per pixel</summary>
|
|
public uint BitsPerPixel;
|
|
|
|
#region Imports
|
|
[DllImport("csfml-window"), SuppressUnmanagedCodeSecurity]
|
|
static extern VideoMode sfVideoMode_GetDesktopMode();
|
|
|
|
[DllImport("csfml-window"), SuppressUnmanagedCodeSecurity]
|
|
unsafe static extern VideoMode* sfVideoMode_GetFullscreenModes(out uint Count);
|
|
|
|
[DllImport("csfml-window"), SuppressUnmanagedCodeSecurity]
|
|
static extern bool sfVideoMode_IsValid(VideoMode Mode);
|
|
#endregion
|
|
}
|
|
}
|
|
}
|