#region --- License --- /* Copyright (c) 2006, 2007 Stefanos Apostolopoulos * See license.txt for license info */ #endregion #region --- Using directives --- using System; using System.Drawing; using System.Globalization; #endregion namespace OpenTK { public sealed class DisplayMode { #region --- Private Variables --- private int width, height; private ColorMode color; private int depthBits, stencilBits, auxBits; private float refreshRate; private bool vsync; private bool fullscreen; private int buffers; private bool stereo; #endregion #region --- Constructors --- public DisplayMode(DisplayMode mode) : this(mode.Width, mode.Height, mode.Color, mode.DepthBits, mode.StencilBits, mode.AuxBits, mode.Buffers, mode.Fullscreen, mode.Stereo, mode.Vsync, mode.RefreshRate) { } /// /// Constructs a new DisplayMode from the specified parameters. /// /// The Width of the DisplayMode, in pixels. /// The Height of the DisplayMode, in pixels. /// The ColorMode of the color buffer. /// The number of bits in the depth buffer. /// The number of bits in the stencil buffer. /// The number of bits in the auxilliary buffer. /// Set to true for a fullscreen DisplayMode. /// Set to true for a DisplayMode with stereographic capabilities. /// The number of render buffers. Typical values include one (single-), two (double-) or three (triple-buffering). /// Set to true to sync the updates to the screen refresh rate. /// The desired RefreshRate. Taken into account only for Fullscreen DisplayModes. public DisplayMode(int width, int height, ColorMode color, int depth, int stencil, int aux, int buffers, bool fullscreen, bool stereo, bool vsync, float refresh) { this.Width = width; this.Height = height; this.Color = color; this.DepthBits = depth; this.StencilBits = stencil; this.AuxBits = aux; this.Buffers = buffers; this.Fullscreen = fullscreen; this.Stereo = stereo; this.Vsync = vsync; this.RefreshRate = refresh; } /// /// Constructs a new DisplayMode from the specified parameters. /// /// The Width of the DisplayMode, in pixels. /// The Height of the DisplayMode, in pixels. /// The number of bits in the color buffer. /// The number of bits in the depth buffer. /// The number of bits in the stencil buffer. /// The number of bits in the auxilliary buffer. /// Set to true for a fullscreen DisplayMode. /// Set to true for a DisplayMode with stereographic capabilities. /// The number of render buffers. Typical values include one (single-), two (double-) or three (triple-buffering). /// Set to true to sync the updates to the screen refresh rate. /// The desired RefreshRate. Taken into account only for Fullscreen DisplayModes. public DisplayMode(int width, int height, int color, int depth, int stencil, int aux, int buffers, bool fullscreen, bool stereo, bool vsync, float refresh) { this.Width = width; this.Height = height; this.Color = new ColorMode(color); this.DepthBits = depth; this.StencilBits = stencil; this.AuxBits = aux; this.Buffers = buffers; this.Fullscreen = fullscreen; this.Stereo = stereo; this.Vsync = vsync; this.RefreshRate = refresh; } /// /// Constructs a new DisplayMode with default values. /// public DisplayMode() : this(0, 0, new ColorMode(32), 16, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. public DisplayMode(int width, int height) : this(width, height, new ColorMode(32), 16, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The number of bits in the color buffer. public DisplayMode(int width, int height, int color) : this(width, height, new ColorMode(color), 16, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The ColorMode of the color buffer. public DisplayMode(int width, int height, ColorMode color) : this(width, height, color, 16, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The number of bits in the color buffer. /// The number of bits in the depth buffer. public DisplayMode(int width, int height, int color, int depth) : this(width, height, new ColorMode(color), depth, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The ColorMode of the color buffer. /// The number of bits in the depth buffer. public DisplayMode(int width, int height, ColorMode color, int depth) : this(width, height, color, depth, 0, 0, 0, false, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The number of bits in the color buffer. /// The number of bits in the depth buffer. /// True for a fullscreen DisplayMode, false otherwise. public DisplayMode(int width, int height, int color, int depth, bool fullscreen) : this(width, height, color, depth, 0, 0, 0, fullscreen, false, false, 0.0f) { } /// /// Constructs a new DisplayMode. /// /// The Width of the DisplayMode in pixels. /// The Height of the DisplayMode in pixels. /// The ColorMode of the color buffer. /// The number of bits in the depth buffer. /// True for a fullscreen DisplayMode, false otherwise. public DisplayMode(int width, int height, ColorMode color, int depth, bool fullscreen) : this(width, height, color, depth, 0, 0, 0, fullscreen, false, false, 0.0f) { } #endregion #region --- Public Properties --- #region public int Height /// /// Gets or sets the Height of the DisplayMode. Height is the vertical span measured in pixels. /// public int Height { get { return height; } set { if (value > 0 /* && (value < Screen[0].Height) */) { height = value; } } } #endregion #region public int Width /// /// Gets or sets the Width of the DisplayMode. Width is the horizontal span measured in pixels. /// public int Width { get { return width; } set { if (value > 0) { width = value; } } } #endregion #region public ColorDepth Color public ColorMode Color { get { return this.color; } set { this.color = value; } } #endregion public int DepthBits { get { return this.depthBits; } set { this.depthBits = value; } } public int StencilBits { get { return this.stencilBits; } set { this.stencilBits = value; } } public int AuxBits { get { return this.auxBits; } set { this.auxBits = value; } } public bool Stereo { get { return this.stereo; } set { this.stereo = value; } } public bool Fullscreen { get { return this.fullscreen; } set { this.fullscreen = value; } } public bool Vsync { get { return this.vsync; } set { this.vsync = value; } } public int Buffers { get { return this.buffers; } set { this.buffers = value; } } public float RefreshRate { get { return this.refreshRate; } set { this.refreshRate = value; } } #endregion public override string ToString() { return string.Format( CultureInfo.CurrentCulture, "{0}x{1}, rgba: {2}, depth: {3}, refresh {4}Hz", Width, Height, Color.ToString(), DepthBits, RefreshRate ); } } public class DisplayModeMatchOptions { } }