-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathExampleWindow.cs
95 lines (87 loc) · 3.01 KB
/
ExampleWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
using ObjectTK;
using ObjectTK.Shaders;
using ObjectTK.Tools;
using ObjectTK.Tools.Cameras;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Input;
namespace Examples
{
/// <summary>
/// Provides common functionality for the examples.
/// </summary>
public class ExampleWindow
: DerpWindow
{
protected Camera Camera;
protected Matrix4 ModelView;
protected Matrix4 Projection;
protected string OriginalTitle { get; private set; }
public ExampleWindow()
: base(800, 600, GraphicsMode.Default, "")
{
// disable vsync
VSync = VSyncMode.Off;
// set up camera
Camera = new Camera();
Camera.SetBehavior(new ThirdPersonBehavior());
Camera.DefaultState.Position.Z = 5;
Camera.ResetToDefault();
Camera.Enable(this);
ResetMatrices();
// hook up events
Load += OnLoad;
Unload += OnUnload;
KeyDown += OnKeyDown;
RenderFrame += OnRenderFrame;
}
private void OnLoad(object sender, EventArgs e)
{
// maximize window
WindowState = WindowState.Maximized;
// remember original title
OriginalTitle = Title;
// set search path for shader files and extension
ProgramFactory.BasePath = "Data/Shaders/";
ProgramFactory.Extension = "glsl";
}
private void OnUnload(object sender, EventArgs e)
{
// release all gl resources on unload
GLResource.DisposeAll(this);
}
private void OnRenderFrame(object sender, FrameEventArgs e)
{
// display FPS in the window title
Title = string.Format("ObjectTK example: {0} - FPS {1}", OriginalTitle, FrameTimer.FpsBasedOnFramesRendered);
}
private void OnKeyDown(object sender, KeyboardKeyEventArgs e)
{
// close window on escape press
if (e.Key == Key.Escape) Close();
// reset camera to default position and orientation on R press
if (e.Key == Key.R) Camera.ResetToDefault();
}
/// <summary>
/// Resets the ModelView and Projection matrices to the identity.
/// </summary>
protected void ResetMatrices()
{
ModelView = Matrix4.Identity;
Projection = Matrix4.Identity;
}
/// <summary>
/// Sets a perspective projection matrix and applies the camera transformation on the modelview matrix.
/// </summary>
protected void SetupPerspective()
{
// setup perspective projection
var aspectRatio = Width / (float)Height;
Projection = Matrix4.CreatePerspectiveFieldOfView(MathHelper.PiOver4, aspectRatio, 0.1f, 1000);
ModelView = Matrix4.Identity;
// apply camera transform
ModelView = Camera.GetCameraTransform();
}
}
}