2009-06-02 17:49:39 +02:00
#region License
//
// The Open Toolkit Library License
//
// Copyright (c) 2006 - 2009 the Open Toolkit library.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do
// so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.
//
2009-02-22 11:43:35 +01:00
#endregion
using System ;
using System.Collections.Generic ;
2009-06-02 17:49:39 +02:00
using System.ComponentModel ;
2009-02-22 11:43:35 +01:00
using System.Diagnostics ;
2009-08-21 00:22:38 +02:00
using System.Drawing ;
2009-02-22 11:43:35 +01:00
using System.Threading ;
using OpenTK.Graphics ;
2009-06-02 17:49:39 +02:00
using OpenTK.Input ;
using OpenTK.Platform ;
2009-02-22 11:43:35 +01:00
namespace OpenTK
{
/// <summary>
/// The GameWindow class contains cross-platform methods to create and render on an OpenGL
/// window, handle input and load resources.
/// </summary>
/// <remarks>
/// GameWindow contains several events you can hook or override to add your custom logic:
/// <list>
/// <item>
/// OnLoad: Occurs after creating the OpenGL context, but before entering the main loop.
/// Override to load resources.
/// </item>
/// <item>
/// OnUnload: Occurs after exiting the main loop, but before deleting the OpenGL context.
/// Override to unload resources.
/// </item>
/// <item>
/// OnResize: Occurs whenever GameWindow is resized. You should update the OpenGL Viewport
/// and Projection Matrix here.
/// </item>
/// <item>
/// OnUpdateFrame: Occurs at the specified logic update rate. Override to add your game
/// logic.
/// </item>
/// <item>
/// OnRenderFrame: Occurs at the specified frame render rate. Override to add your
/// rendering code.
/// </item>
/// </list>
/// Call the Run() method to start the application's main loop. Run(double, double) takes two
/// parameters that
/// specify the logic update rate, and the render update rate.
/// </remarks>
2009-08-21 21:34:20 +02:00
public class GameWindow : NativeWindow , IGameWindow , IDisposable
2009-02-22 11:43:35 +01:00
{
#region - - - Fields - - -
2009-08-21 00:22:38 +02:00
//DisplayMode mode; // TODO: Removable?
object exit_lock = new object ( ) ;
IGraphicsContext glContext ;
2009-02-22 11:43:35 +01:00
2009-08-21 00:22:38 +02:00
bool isExiting = false ;
2009-02-22 11:43:35 +01:00
double update_period , render_period ;
2009-02-22 16:48:31 +01:00
double target_update_period , target_render_period ;
2009-02-22 11:43:35 +01:00
// TODO: Implement these:
double update_time , render_time ; //, event_time;
//bool allow_sleep = true; // If true, GameWindow will call Timer.Sleep() if there is enough time.
VSyncMode vsync ;
//InputDriver input_driver;
#endregion
#region - - - Contructors - - -
#region public GameWindow ( )
2009-08-21 00:22:38 +02:00
/// <summary>Constructs a new GameWindow with sensible default attributes.</summary>
2009-02-22 11:43:35 +01:00
public GameWindow ( )
: this ( 640 , 480 , GraphicsMode . Default , "OpenTK Game Window" , 0 , DisplayDevice . Default ) { }
#endregion
#region public GameWindow ( int width , int height )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
public GameWindow ( int width , int height )
: this ( width , height , GraphicsMode . Default , "OpenTK Game Window" , 0 , DisplayDevice . Default ) { }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
public GameWindow ( int width , int height , GraphicsMode mode )
: this ( width , height , mode , "OpenTK Game Window" , 0 , DisplayDevice . Default ) { }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode , string title )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
/// <param name="title">The title of the GameWindow.</param>
public GameWindow ( int width , int height , GraphicsMode mode , string title )
: this ( width , height , mode , title , 0 , DisplayDevice . Default ) { }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
/// <param name="title">The title of the GameWindow.</param>
/// <param name="options">GameWindow options regarding window appearance and behavior.</param>
public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options )
: this ( width , height , mode , title , options , DisplayDevice . Default ) { }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
/// <param name="title">The title of the GameWindow.</param>
/// <param name="options">GameWindow options regarding window appearance and behavior.</param>
/// <param name="device">The OpenTK.Graphics.DisplayDevice to construct the GameWindow in.</param>
public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device )
2009-03-07 11:49:32 +01:00
: this ( width , height , mode , title , options , device , 1 , 0 , GraphicsContextFlags . Default )
{ }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device , int major , int minor , GraphicsContextFlags flags )
2009-08-21 00:22:38 +02:00
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
2009-03-07 11:49:32 +01:00
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
/// <param name="title">The title of the GameWindow.</param>
/// <param name="options">GameWindow options regarding window appearance and behavior.</param>
/// <param name="device">The OpenTK.Graphics.DisplayDevice to construct the GameWindow in.</param>
/// <param name="major">The major version for the OpenGL GraphicsContext.</param>
2009-03-25 22:53:12 +01:00
/// <param name="minor">The minor version for the OpenGL GraphicsContext.</param>
2009-03-07 11:49:32 +01:00
/// <param name="flags">The GraphicsContextFlags version for the OpenGL GraphicsContext.</param>
public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device ,
int major , int minor , GraphicsContextFlags flags )
2009-06-02 17:49:39 +02:00
: this ( width , height , mode , title , options , device , major , minor , flags , null )
{ }
#endregion
#region public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device , int major , int minor , GraphicsContextFlags flags , IGraphicsContext sharedContext )
/// <summary>Constructs a new GameWindow with the specified attributes.</summary>
/// <param name="width">The width of the GameWindow in pixels.</param>
/// <param name="height">The height of the GameWindow in pixels.</param>
/// <param name="mode">The OpenTK.Graphics.GraphicsMode of the GameWindow.</param>
/// <param name="title">The title of the GameWindow.</param>
/// <param name="options">GameWindow options regarding window appearance and behavior.</param>
/// <param name="device">The OpenTK.Graphics.DisplayDevice to construct the GameWindow in.</param>
/// <param name="major">The major version for the OpenGL GraphicsContext.</param>
/// <param name="minor">The minor version for the OpenGL GraphicsContext.</param>
/// <param name="flags">The GraphicsContextFlags version for the OpenGL GraphicsContext.</param>
/// <param name="sharedContext">An IGraphicsContext to share resources with.</param>
public GameWindow ( int width , int height , GraphicsMode mode , string title , GameWindowFlags options , DisplayDevice device ,
2009-08-21 00:22:38 +02:00
int major , int minor , GraphicsContextFlags flags , IGraphicsContext sharedContext )
: base ( width , height , title , options ,
mode = = null ? GraphicsMode . Default : mode ,
device = = null ? DisplayDevice . Default : device )
2009-02-22 11:43:35 +01:00
{
try
{
2009-08-21 00:22:38 +02:00
glContext = new GraphicsContext ( mode = = null ? GraphicsMode . Default : mode , WindowInfo , major , minor , flags ) ;
glContext . MakeCurrent ( WindowInfo ) ;
2009-02-22 11:43:35 +01:00
( glContext as IGraphicsContextInternal ) . LoadAll ( ) ;
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
VSync = VSyncMode . On ;
2009-06-02 17:49:39 +02:00
//glWindow.WindowInfoChanged += delegate(object sender, EventArgs e) { OnWindowInfoChangedInternal(e); };
2009-02-22 11:43:35 +01:00
}
catch ( Exception e )
{
Debug . Print ( e . ToString ( ) ) ;
2009-08-21 00:22:38 +02:00
base . Dispose ( ) ;
2009-02-22 11:43:35 +01:00
throw ;
}
}
2009-06-02 17:49:39 +02:00
#endregion
#endregion
2009-08-21 00:22:38 +02:00
#region - - - Public Members - - -
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
#region Methods
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
#region Dispose
2009-06-02 17:49:39 +02:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Disposes of the GameWindow, releasing all resources consumed by it.
2009-06-02 17:49:39 +02:00
/// </summary>
2009-09-04 23:27:05 +02:00
public override void Dispose ( )
2009-08-21 00:22:38 +02:00
{
try
{
Dispose ( true ) ;
}
finally
{
2009-09-04 23:27:05 +02:00
try
2009-08-21 00:22:38 +02:00
{
if ( glContext ! = null )
{
glContext . Dispose ( ) ;
glContext = null ;
}
2009-09-04 23:27:05 +02:00
}
finally
{
2009-08-21 00:22:38 +02:00
base . Dispose ( ) ;
}
}
GC . SuppressFinalize ( this ) ;
}
2009-08-17 11:34:15 +02:00
2009-02-22 11:43:35 +01:00
#endregion
2009-08-21 00:22:38 +02:00
#region Exit
2009-02-22 11:43:35 +01:00
/// <summary>
2009-11-04 21:48:02 +01:00
/// Closes the GameWindow. Equivalent to <see cref="NativeWindow.Close"/> method.
2009-02-22 11:43:35 +01:00
/// </summary>
/// <remarks>
2009-02-22 16:48:31 +01:00
/// <para>Override if you are not using <see cref="GameWindow.Run()"/>.</para>
/// <para>If you override this method, place a call to base.Exit(), to ensure proper OpenTK shutdown.</para>
2009-02-22 11:43:35 +01:00
/// </remarks>
public virtual void Exit ( )
{
2009-08-21 00:26:31 +02:00
Close ( ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region MakeCurrent
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Makes the GraphicsContext current on the calling thread.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public void MakeCurrent ( )
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
Context . MakeCurrent ( WindowInfo ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region OnLoad
2009-02-22 11:43:35 +01:00
/// <summary>
2009-09-04 23:27:05 +02:00
/// Called after an OpenGL context has been established, but before entering the main loop.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
/// <param name="e">Not used.</param>
2009-10-21 15:33:00 +02:00
protected virtual void OnLoad ( EventArgs e )
2009-02-22 11:43:35 +01:00
{
2009-09-04 23:27:05 +02:00
if ( Load ! = null ) Load ( this , e ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region OnUnload
2009-02-22 11:43:35 +01:00
/// <summary>
2009-09-04 23:27:05 +02:00
/// Called after GameWindow.Exit was called, but before destroying the OpenGL context.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
/// <param name="e">Not used.</param>
2009-10-21 15:33:00 +02:00
protected virtual void OnUnload ( EventArgs e )
2009-02-22 11:43:35 +01:00
{
2009-09-04 23:27:05 +02:00
if ( Unload ! = null ) Unload ( this , e ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
#region public void Run ( )
/// <summary>
2009-06-02 17:49:39 +02:00
/// Enters the game loop of the GameWindow using the maximum update rate.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-06-02 17:49:39 +02:00
/// <seealso cref="Run(double)"/>
2009-02-22 11:43:35 +01:00
public void Run ( )
{
Run ( 0.0 , 0.0 ) ;
}
#endregion
#region public void Run ( double updateFrequency )
/// <summary>
2009-06-02 17:49:39 +02:00
/// Enters the game loop of the GameWindow using the specified update rate.
2009-02-22 11:43:35 +01:00
/// maximum possible render frequency.
/// </summary>
2009-06-02 17:49:39 +02:00
public void Run ( double updateRate )
2009-02-22 11:43:35 +01:00
{
2009-06-02 17:49:39 +02:00
Run ( updateRate , 0.0 ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
#region public void Run ( double updates_per_second , double frames_per_second )
/// <summary>
/// Enters the game loop of the GameWindow updating and rendering at the specified frequency.
/// </summary>
2009-08-21 00:22:38 +02:00
/// <remarks>
/// When overriding the default game loop you should call ProcessEvents()
/// to ensure that your GameWindow responds to operating system events.
/// <para>
/// Once ProcessEvents() returns, it is time to call update and render the next frame.
/// </para>
/// </remarks>
2009-02-22 11:43:35 +01:00
/// <param name="updates_per_second">The frequency of UpdateFrame events.</param>
/// <param name="frames_per_second">The frequency of RenderFrame events.</param>
public void Run ( double updates_per_second , double frames_per_second )
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 16:48:31 +01:00
2009-02-22 11:43:35 +01:00
try
{
if ( updates_per_second < 0.0 | | updates_per_second > 200.0 )
2009-02-22 16:48:31 +01:00
throw new ArgumentOutOfRangeException ( "updates_per_second" , updates_per_second ,
"Parameter should be inside the range [0.0, 200.0]" ) ;
2009-02-22 11:43:35 +01:00
if ( frames_per_second < 0.0 | | frames_per_second > 200.0 )
2009-02-22 16:48:31 +01:00
throw new ArgumentOutOfRangeException ( "frames_per_second" , frames_per_second ,
"Parameter should be inside the range [0.0, 200.0]" ) ;
2009-02-22 11:43:35 +01:00
TargetUpdateFrequency = updates_per_second ;
TargetRenderFrequency = frames_per_second ;
Stopwatch update_watch = new Stopwatch ( ) , render_watch = new Stopwatch ( ) ;
2009-10-07 15:08:13 +02:00
double next_render = 0.0 , next_update = 0.0 ;
2009-06-02 17:49:39 +02:00
FrameEventArgs update_args = new FrameEventArgs ( ) ;
FrameEventArgs render_args = new FrameEventArgs ( ) ;
2009-02-22 11:43:35 +01:00
update_watch . Reset ( ) ;
render_watch . Reset ( ) ;
2009-09-19 23:56:13 +02:00
Visible = true ; // Make sure the GameWindow is visible.
2009-02-22 16:48:31 +01:00
OnLoadInternal ( EventArgs . Empty ) ;
2009-02-22 11:43:35 +01:00
2009-10-07 17:18:53 +02:00
// On some platforms, ProcessEvents() does not return while the user is resizing or moving
// the window. We can avoid this issue by raising UpdateFrame and RenderFrame events
// whenever we encounter a size or move event.
EventHandler < EventArgs > DispatchUpdateAndRenderFrame = delegate ( object sender , EventArgs e )
{
RaiseUpdateFrame ( update_watch , ref next_update , update_args ) ;
RaiseRenderFrame ( render_watch , ref next_render , render_args ) ;
} ;
Move + = DispatchUpdateAndRenderFrame ;
Resize + = DispatchUpdateAndRenderFrame ;
2009-02-22 11:43:35 +01:00
Debug . Print ( "Entering main loop." ) ;
2009-09-04 23:27:05 +02:00
while ( ! IsExiting & & Exists )
2009-02-22 11:43:35 +01:00
{
ProcessEvents ( ) ;
2009-10-07 17:18:53 +02:00
DispatchUpdateAndRenderFrame ( this , EventArgs . Empty ) ;
2009-02-22 11:43:35 +01:00
}
}
finally
{
Debug . Print ( "Restoring priority." ) ;
Thread . CurrentThread . Priority = ThreadPriority . Normal ;
OnUnloadInternal ( EventArgs . Empty ) ;
if ( Exists )
{
2009-08-21 00:22:38 +02:00
Dispose ( ) ;
//while (this.Exists) ProcessEvents(); // TODO: Should similar behaviour be retained, possibly on native window level?
2009-02-22 11:43:35 +01:00
}
2009-10-07 15:08:13 +02:00
}
}
private void RaiseUpdateFrame ( Stopwatch update_watch , ref double next_update , FrameEventArgs update_args )
{
int num_updates = 0 ;
// Cap the maximum time drift to 1 second (e.g. when the process is suspended).
double time = update_watch . Elapsed . TotalSeconds ;
if ( time > 1.0 )
time = 1.0 ;
// Raise UpdateFrame events until we catch up with our target update rate.
while ( next_update - time < = 0.0 )
{
// Don't schedule a new update more than 1 second in the future.
// Sometimes the hardware cannot keep up with updates
// (e.g. when the update rate is too high, or the UpdateFrame processing
// is too costly). This cap ensures we can catch up in a reasonable time
// once the load becomes lighter.
next_update = next_update - time + TargetUpdatePeriod ;
if ( next_update < - 1.0 )
next_update = - 1.0 ;
// Allow up to 10 consecutive UpdateFrame events.
// This prevents the application from "hanging" when the hardware cannot
// keep up with the requested update rate.
if ( + + num_updates > = 10 )
break ;
if ( time > 0 )
{
update_args . Time = time ;
OnUpdateFrameInternal ( update_args ) ;
update_time = update_watch . Elapsed . TotalSeconds ;
}
time = update_watch . Elapsed . TotalSeconds ;
// Stopwatches are not accurate over long time periods.
// We accumlate the total elapsed time into the time variable
// while reseting the Stopwatch frequently.
update_watch . Reset ( ) ;
update_watch . Start ( ) ;
2009-10-27 23:23:11 +01:00
if ( TargetUpdateFrequency = = 0.0 )
break ;
next_update - = time ;
2009-10-07 15:08:13 +02:00
}
// Calculate statistics
if ( num_updates > 0 )
{
update_period = time / ( double ) num_updates ;
}
}
private void RaiseRenderFrame ( Stopwatch render_watch , ref double next_render , FrameEventArgs render_args )
{
// Cap the maximum time drift to 1 second (e.g. when the process is suspended).
double time = render_watch . Elapsed . TotalSeconds ;
if ( time > 1.0 )
time = 1.0 ;
double time_left = next_render - time ;
// Todo: remove this?
if ( VSync = = VSyncMode . Adaptive )
{
// Check if we have enough time for a vsync
if ( TargetRenderPeriod ! = 0 & & RenderTime > 2.0 * TargetRenderPeriod )
Context . VSync = false ;
else
Context . VSync = true ;
}
if ( time_left < = 0.0 )
{
// Schedule next render event. The 1 second cap ensures
// the process does not appear to hang.
next_render = time_left + TargetRenderPeriod ;
if ( next_render < - 1.0 )
next_render = - 1.0 ;
render_watch . Reset ( ) ;
render_watch . Start ( ) ;
if ( time > 0 )
{
render_period = render_args . Time = time ;
OnRenderFrameInternal ( render_args ) ;
render_time = render_watch . Elapsed . TotalSeconds ;
}
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region SwapBuffers
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Swaps the front and back buffer, presenting the rendered scene to the user.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public void SwapBuffers ( )
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
this . Context . SwapBuffers ( ) ;
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#endregion
#region Properties
#region Context
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Returns the opengl IGraphicsContext associated with the current GameWindow.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public IGraphicsContext Context
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
get
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
return glContext ;
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region IsExiting
2009-02-22 11:43:35 +01:00
/// <summary>
/// Gets a value indicating whether the shutdown sequence has been initiated
/// for this window, by calling GameWindow.Exit() or hitting the 'close' button.
/// If this property is true, it is no longer safe to use any OpenTK.Input or
/// OpenTK.Graphics.OpenGL functions or properties.
/// </summary>
public bool IsExiting
{
2009-06-02 17:49:39 +02:00
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-06-02 17:49:39 +02:00
return isExiting ;
}
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region Joysticks
2009-03-01 01:28:31 +01:00
/// <summary>
/// Gets a readonly IList containing all available OpenTK.Input.JoystickDevices.
/// </summary>
public IList < JoystickDevice > Joysticks
{
2009-06-02 17:49:39 +02:00
get { return InputDriver . Joysticks ; }
2009-03-01 01:28:31 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region Keyboard
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets the primary Keyboard device, or null if no Keyboard exists.
2009-06-02 17:49:39 +02:00
/// </summary>
2009-08-21 00:22:38 +02:00
public KeyboardDevice Keyboard
2009-06-02 17:49:39 +02:00
{
2009-08-21 00:22:38 +02:00
get { return InputDriver . Keyboard . Count > 0 ? InputDriver . Keyboard [ 0 ] : null ; }
2009-06-02 17:49:39 +02:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region Mouse
2009-06-02 17:49:39 +02:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets the primary Mouse device, or null if no Mouse exists.
2009-06-02 17:49:39 +02:00
/// </summary>
2009-08-21 00:22:38 +02:00
public MouseDevice Mouse
2009-06-02 17:49:39 +02:00
{
2009-08-21 00:22:38 +02:00
get { return InputDriver . Mouse . Count > 0 ? InputDriver . Mouse [ 0 ] : null ; }
2009-06-02 17:49:39 +02:00
}
#endregion
2009-08-21 00:22:38 +02:00
#region - - - GameWindow Timing - - -
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
// TODO: Disabled because it is not reliable enough. Use vsync as a workaround.
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
//#region public bool AllowSleep
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
//public bool AllowSleep
//{
// get { return allow_sleep; }
// set { allow_sleep = value; }
//}
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
//#endregion
2009-06-02 17:49:39 +02:00
2009-08-21 00:22:38 +02:00
#region RenderFrequency
2009-06-02 17:49:39 +02:00
/// <summary>
2009-11-06 17:46:28 +01:00
/// Gets a double representing the actual frequency of RenderFrame events, in hertz (i.e. fps or frames per second).
2009-06-02 17:49:39 +02:00
/// </summary>
2009-08-21 00:22:38 +02:00
public double RenderFrequency
2009-06-02 17:49:39 +02:00
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
if ( render_period = = 0.0 )
return 1.0 ;
return 1.0 / render_period ;
2009-06-02 17:49:39 +02:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region RenderPeriod
2009-06-02 17:49:39 +02:00
2009-06-28 12:49:10 +02:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets a double representing the period of RenderFrame events, in seconds.
2009-06-28 12:49:10 +02:00
/// </summary>
2009-08-21 00:22:38 +02:00
public double RenderPeriod
2009-06-02 17:49:39 +02:00
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
return render_period ;
2009-06-02 17:49:39 +02:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region RenderTime
2009-06-02 17:49:39 +02:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets a double representing the time spent in the RenderFrame function, in seconds.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public double RenderTime
2009-02-22 11:43:35 +01:00
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
return render_time ;
2009-02-22 11:43:35 +01:00
}
2009-08-21 00:22:38 +02:00
protected set
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
render_time = value ;
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region TargetRenderFrequency
2009-02-22 11:43:35 +01:00
/// <summary>
2009-11-06 17:46:28 +01:00
/// Gets or sets a double representing the target render frequency, in hertz.
2009-02-22 11:43:35 +01:00
/// </summary>
/// <remarks>
/// <para>A value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only limited by the hardware's capabilities).</para>
/// <para>Values lower than 1.0Hz are clamped to 1.0Hz. Values higher than 200.0Hz are clamped to 200.0Hz.</para>
/// </remarks>
public double TargetRenderFrequency
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( TargetRenderPeriod = = 0.0 )
return 0.0 ;
return 1.0 / TargetRenderPeriod ;
}
set
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( value < 1.0 )
{
TargetRenderPeriod = 0.0 ;
}
else if ( value < = 200.0 )
{
TargetRenderPeriod = 1.0 / value ;
}
2009-08-21 00:22:38 +02:00
else Debug . Print ( "Target render frequency clamped to 200.0Hz." ) ; // TODO: Where is it actually performed?
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region TargetRenderPeriod
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets or sets a double representing the target render period, in seconds.
2009-02-22 11:43:35 +01:00
/// </summary>
/// <remarks>
2009-08-21 00:22:38 +02:00
/// <para>A value of 0.0 indicates that RenderFrame events are generated at the maximum possible frequency (i.e. only limited by the hardware's capabilities).</para>
2009-02-22 11:43:35 +01:00
/// <para>Values lower than 0.005 seconds (200Hz) are clamped to 0.0. Values higher than 1.0 seconds (1Hz) are clamped to 1.0.</para>
/// </remarks>
2009-08-21 00:22:38 +02:00
public double TargetRenderPeriod
2009-02-22 11:43:35 +01:00
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
return target_render_period ;
2009-02-22 11:43:35 +01:00
}
set
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( value < = 0.005 )
{
2009-08-21 00:22:38 +02:00
target_render_period = 0.0 ;
2009-02-22 11:43:35 +01:00
}
else if ( value < = 1.0 )
{
2009-08-21 00:22:38 +02:00
target_render_period = value ;
2009-02-22 11:43:35 +01:00
}
2009-08-21 00:22:38 +02:00
else Debug . Print ( "Target render period clamped to 1.0 seconds." ) ;
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region TargetUpdateFrequency
2009-02-22 11:43:35 +01:00
/// <summary>
2009-11-06 17:46:28 +01:00
/// Gets or sets a double representing the target update frequency, in hertz.
2009-02-22 11:43:35 +01:00
/// </summary>
/// <remarks>
/// <para>A value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only limited by the hardware's capabilities).</para>
/// <para>Values lower than 1.0Hz are clamped to 1.0Hz. Values higher than 200.0Hz are clamped to 200.0Hz.</para>
/// </remarks>
public double TargetUpdateFrequency
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( TargetUpdatePeriod = = 0.0 )
return 0.0 ;
return 1.0 / TargetUpdatePeriod ;
}
set
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( value < 1.0 )
{
TargetUpdatePeriod = 0.0 ;
}
else if ( value < = 200.0 )
{
TargetUpdatePeriod = 1.0 / value ;
}
2009-08-21 00:22:38 +02:00
else Debug . Print ( "Target update frequency clamped to 200.0Hz." ) ; // TODO: Where is it actually performed?
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region TargetUpdatePeriod
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets or sets a double representing the target update period, in seconds.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
/// <remarks>
/// <para>A value of 0.0 indicates that UpdateFrame events are generated at the maximum possible frequency (i.e. only limited by the hardware's capabilities).</para>
/// <para>Values lower than 0.005 seconds (200Hz) are clamped to 0.0. Values higher than 1.0 seconds (1Hz) are clamped to 1.0.</para>
/// </remarks>
public double TargetUpdatePeriod
2009-02-22 11:43:35 +01:00
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
return target_update_period ;
2009-02-22 11:43:35 +01:00
}
2009-08-21 00:22:38 +02:00
set
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
if ( value < = 0.005 )
{
target_update_period = 0.0 ;
}
else if ( value < = 1.0 )
{
target_update_period = value ;
}
else Debug . Print ( "Target update period clamped to 1.0 seconds." ) ; // TODO: Where is it actually performed?
2009-02-22 11:43:35 +01:00
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region UpdateFrequency
2009-02-22 11:43:35 +01:00
/// <summary>
2009-11-06 17:46:28 +01:00
/// Gets a double representing the frequency of UpdateFrame events, in hertz.
2009-02-22 11:43:35 +01:00
/// </summary>
public double UpdateFrequency
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
if ( update_period = = 0.0 )
return 1.0 ;
return 1.0 / update_period ;
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region UpdatePeriod
2009-02-22 11:43:35 +01:00
/// <summary>
/// Gets a double representing the period of UpdateFrame events, in seconds.
/// </summary>
public double UpdatePeriod
{
get
{
2009-08-21 00:22:38 +02:00
EnsureUndisposed ( ) ;
2009-02-22 11:43:35 +01:00
return update_period ;
}
}
#endregion
2009-08-21 00:22:38 +02:00
#region UpdateTime
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets a double representing the time spent in the UpdateFrame function, in seconds.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public double UpdateTime
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
get
{
EnsureUndisposed ( ) ;
return update_time ;
}
2009-02-22 11:43:35 +01:00
}
#endregion
2009-08-21 00:22:38 +02:00
#endregion
#region VSync
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Gets or sets the VSyncMode.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
public VSyncMode VSync
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
get
{
EnsureUndisposed ( ) ;
GraphicsContext . Assert ( ) ;
return vsync ;
}
set
{
EnsureUndisposed ( ) ;
GraphicsContext . Assert ( ) ;
Context . VSync = ( vsync = value ) ! = VSyncMode . Off ;
}
2009-02-22 11:43:35 +01:00
}
#endregion
#endregion
2009-08-21 00:22:38 +02:00
#region Events
/// <summary>
/// Occurs before the window is displayed for the first time.
/// </summary>
public event EventHandler < EventArgs > Load ;
2009-02-22 11:43:35 +01:00
/// <summary>
2009-08-21 00:22:38 +02:00
/// Occurs when it is time to render a frame.
/// </summary>
public event EventHandler < FrameEventArgs > RenderFrame ;
/// <summary>
/// Occurs before the window is destroyed.
/// </summary>
public event EventHandler < EventArgs > Unload ;
/// <summary>
/// Occurs when it is time to update a frame.
/// </summary>
public event EventHandler < FrameEventArgs > UpdateFrame ;
#endregion
#endregion
#region - - - Protected Members - - -
#region Dispose
/// <summary>
/// Override to add custom cleanup logic.
/// </summary>
/// <param name="manual">True, if this method was called by the application; false if this was called by the finalizer thread.</param>
protected virtual void Dispose ( bool manual ) { }
#endregion
#region OnRenderFrame
/// <summary>
2009-09-04 23:27:05 +02:00
/// Called when the frame is rendered.
2009-08-21 00:22:38 +02:00
/// </summary>
/// <param name="e">Contains information necessary for frame rendering.</param>
/// <remarks>
2009-09-04 23:27:05 +02:00
/// Subscribe to the <see cref="RenderFrame"/> event instead of overriding this method.
2009-08-21 00:22:38 +02:00
/// </remarks>
2009-09-04 23:27:05 +02:00
protected virtual void OnRenderFrame ( FrameEventArgs e )
{
if ( RenderFrame ! = null ) RenderFrame ( this , e ) ;
}
2009-08-21 00:22:38 +02:00
#endregion
#region OnUpdateFrame
/// <summary>
2009-09-04 23:27:05 +02:00
/// Called when the frame is updated.
2009-08-21 00:22:38 +02:00
/// </summary>
/// <param name="e">Contains information necessary for frame updating.</param>
/// <remarks>
2009-09-04 23:27:05 +02:00
/// Subscribe to the <see cref="UpdateFrame"/> event instead of overriding this method.
2009-08-21 00:22:38 +02:00
/// </remarks>
2009-09-04 23:27:05 +02:00
protected virtual void OnUpdateFrame ( FrameEventArgs e )
{
if ( UpdateFrame ! = null ) UpdateFrame ( this , e ) ;
}
2009-08-21 00:22:38 +02:00
#endregion
#region OnWindowInfoChanged
/// <summary>
/// Called when the WindowInfo for this GameWindow has changed.
2009-02-22 11:43:35 +01:00
/// </summary>
2009-08-21 00:22:38 +02:00
/// <param name="e">Not used.</param>
protected virtual void OnWindowInfoChanged ( EventArgs e ) { }
#endregion
2009-11-09 07:51:52 +01:00
#region OnResize
protected override void OnResize ( EventArgs e )
{
base . OnResize ( e ) ;
glContext . Update ( base . WindowInfo ) ;
}
#endregion
#endregion
2009-08-21 00:22:38 +02:00
2009-11-09 07:51:52 +01:00
#region - - - Private Members - - -
2009-08-21 00:22:38 +02:00
2009-11-09 07:51:52 +01:00
#region OnLoadInternal
2009-08-21 00:22:38 +02:00
2009-11-09 07:51:52 +01:00
private void OnLoadInternal ( EventArgs e )
2009-08-21 00:22:38 +02:00
{
OnResize ( EventArgs . Empty ) ;
OnLoad ( e ) ;
2009-02-22 11:43:35 +01:00
}
2009-08-21 00:22:38 +02:00
#endregion
#region OnRenderFrameInternal
2009-09-04 23:27:05 +02:00
private void OnRenderFrameInternal ( FrameEventArgs e ) { if ( Exists & & ! isExiting ) OnRenderFrame ( e ) ; }
2009-08-21 00:22:38 +02:00
#endregion
#region OnUnloadInternal
2009-09-04 23:27:05 +02:00
private void OnUnloadInternal ( EventArgs e ) { OnUnload ( e ) ; }
2009-08-21 00:22:38 +02:00
#endregion
#region OnUpdateFrameInternal
2009-09-04 23:27:05 +02:00
private void OnUpdateFrameInternal ( FrameEventArgs e ) { if ( Exists & & ! isExiting ) OnUpdateFrame ( e ) ; }
2009-08-21 00:22:38 +02:00
#endregion
#region OnWindowInfoChangedInternal
private void OnWindowInfoChangedInternal ( EventArgs e )
2009-02-22 11:43:35 +01:00
{
2009-08-21 00:22:38 +02:00
glContext . MakeCurrent ( WindowInfo ) ;
OnWindowInfoChanged ( e ) ;
2009-02-22 11:43:35 +01:00
}
2009-08-21 00:22:38 +02:00
#endregion
#endregion
2009-02-22 11:43:35 +01:00
}
#region public enum VSyncMode
/// <summary>
/// Enumerates available VSync modes.
/// </summary>
public enum VSyncMode
{
/// <summary>
/// Vsync disabled.
/// </summary>
Off = 0 ,
/// <summary>
/// VSync enabled.
/// </summary>
On ,
/// <summary>
/// VSync enabled, but automatically disabled if framerate falls below a specified limit.
/// </summary>
Adaptive ,
}
#endregion
2009-07-18 10:21:58 +02:00
}