-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMainForm.cs
More file actions
180 lines (149 loc) · 8.3 KB
/
MainForm.cs
File metadata and controls
180 lines (149 loc) · 8.3 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
using System;
using System.Drawing;
using OpenTK;
using OpenTK.Graphics;
using OpenTK.Graphics.OpenGL;
namespace GLGUI.Example
{
public class MainForm : GameWindow
{
GLGui glgui;
GLLabel fpsLabel;
GLLabel console;
LineWriter consoleWriter;
int fpsCounter = 0;
int fpsSecond = 1;
double time = 0.0;
public MainForm() : base(1024, 600, new GraphicsMode(new ColorFormat(8, 8, 8, 8), 24, 0, 4), "GLGUI Example")
{
consoleWriter = new LineWriter();
Console.SetOut(consoleWriter);
Console.SetError(consoleWriter);
this.Load += OnLoad;
this.Resize += (s, e) => GL.Viewport(ClientSize);
this.RenderFrame += OnRender;
}
private void OnLoad(object sender, EventArgs e)
{
VSync = VSyncMode.Off; // vsync is nice, but you can't really measure performance while it's on
glgui = new GLGui(this);
var mainAreaControl = glgui.Add(new GLGroupLayout(glgui) { Size = new Size(ClientSize.Width, ClientSize.Height - 200), Anchor = GLAnchorStyles.All });
// change background color:
var mainSkin = mainAreaControl.Skin;
mainSkin.BackgroundColor = glgui.Skin.FormActive.BackgroundColor;
mainSkin.BorderColor = glgui.Skin.FormActive.BorderColor;
mainAreaControl.Skin = mainSkin;
var consoleScrollControl = glgui.Add(new GLScrollableControl(glgui) { Outer = new Rectangle(0, ClientSize.Height - 200, ClientSize.Width, 200), Anchor = GLAnchorStyles.Left | GLAnchorStyles.Right | GLAnchorStyles.Bottom });
console = consoleScrollControl.Add(new GLLabel(glgui) { AutoSize = true, Multiline = true });
fpsLabel = mainAreaControl.Add(new GLLabel(glgui) { Location = new Point(10, 10), AutoSize = true });
// change font and background color:
var skin = fpsLabel.SkinEnabled;
skin.Font = new GLFont(new Font("Arial", 12.0f));
skin.BackgroundColor = glgui.Skin.TextBoxActive.BackgroundColor;
fpsLabel.SkinEnabled = skin;
var helloWorldForm = mainAreaControl.Add(new GLForm(glgui) { Title = "Hello World", Outer = new Rectangle(50, 100, 200, 150), AutoSize = false });
helloWorldForm.Add(new GLForm(glgui) { Title = "Hello Form", Outer = new Rectangle(100, 32, 100, 100), AutoSize = false })
.MouseMove += (s, w) => Console.WriteLine(w.Position.ToString());
var flow = helloWorldForm.Add(new GLFlowLayout(glgui) { FlowDirection = GLFlowDirection.BottomUp, Location = new Point(10, 10), Size = helloWorldForm.InnerSize, AutoSize = true });
for (int i = 0; i < 5; i++)
flow.Add(new GLButton(glgui) { Text = "Button" + i, Size = new Size(150, 0) })
.Click += (s, w) => Console.WriteLine(s + " pressed.");
flow.Add(new GLButton(glgui) { Text = "Hide Cursor", Size = new Size(150, 0) })
.Click += (s, w) => glgui.Cursor = GLCursor.None;
var loremIpsumForm = mainAreaControl.Add(new GLForm(glgui) { Title = "Lorem Ipsum", Location = new Point(600, 100), Size = new Size(300, 200) });
loremIpsumForm.Add(new GLTextBox(glgui) {
Text = "Lorem ipsum dolor sit amet,\nconsetetur sadipscing elitr,\nsed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\nsed diam voluptua.\n\nAt vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.",
Multiline = true,
WordWrap = true,
Outer = new Rectangle(4, 4, loremIpsumForm.Inner.Width - 8, loremIpsumForm.Inner.Height - 8),
Anchor = GLAnchorStyles.All
}).Changed += (s, w) => Console.WriteLine(s + " text length: " + ((GLTextBox)s).Text.Length);
var fixedSizeForm = mainAreaControl.Add(new GLForm(glgui) { Title = "Fixed size Form", Location = new Point(64, 300), Size = new Size(100, 200), AutoSize = true });
var fooBarFlow = fixedSizeForm.Add(new GLFlowLayout(glgui) { FlowDirection = GLFlowDirection.TopDown, AutoSize = true });
fooBarFlow.Add(new GLCheckBox(glgui) { Text = "CheckBox A", AutoSize = true })
.Changed += (s, w) => Console.WriteLine(s + ": " + ((GLCheckBox)s).Checked);
fooBarFlow.Add(new GLCheckBox(glgui) { Text = "CheckBox B", AutoSize = true })
.Changed += (s, w) => Console.WriteLine(s + ": " + ((GLCheckBox)s).Checked);
fooBarFlow.Add(new GLCheckBox(glgui) { Text = "Totally different CheckBox", AutoSize = true })
.Changed += (s, w) => Console.WriteLine(s + ": " + ((GLCheckBox)s).Checked);
fooBarFlow.Add(new GLCheckBox(glgui) { Text = "Go away!", AutoSize = true })
.Changed += (s, w) => Console.WriteLine(s + ": " + ((GLCheckBox)s).Checked);
for (int i = 0; i < 3; i++)
{
var viewportForm = mainAreaControl.Add(new GLForm(glgui) { Title = "Cube", Location = new Point(300 + i * 16, 64 + i * 16), Size = new Size(200, 200) });
viewportForm.Add(new GLViewport(glgui) { Size = viewportForm.InnerSize, Anchor = GLAnchorStyles.All })
.RenderViewport += OnRenderViewport;
}
}
private void OnRender(object sender, FrameEventArgs e)
{
time += e.Time;
if (time >= fpsSecond)
{
fpsLabel.Text = string.Format("Application: {0:0}FPS. GLGUI: {1:0.0}ms", fpsCounter, glgui.RenderDuration);
fpsCounter = 0;
fpsSecond++;
}
if (consoleWriter.Changed)
{
console.Text = string.Join("\n", consoleWriter.Lines);
consoleWriter.Changed = false;
}
glgui.Render();
SwapBuffers();
fpsCounter++;
}
// draws a simple colored cube in a GLViewport control
private void OnRenderViewport(object sender, double deltaTime)
{
var viewport = (GLViewport)sender;
GL.Enable(EnableCap.DepthTest);
GL.ClearColor(0, 0, 0, 1);
GL.Clear(ClearBufferMask.ColorBufferBit | ClearBufferMask.DepthBufferBit);
GL.MatrixMode(MatrixMode.Projection);
var proj = Matrix4.CreatePerspectiveFieldOfView(MathHelper.DegreesToRadians(90.0f), viewport.AspectRatio, 1.0f, 100.0f);
GL.LoadMatrix(ref proj);
GL.MatrixMode(MatrixMode.Modelview);
GL.LoadIdentity();
GL.Translate(0, 0, -2.0f);
GL.Rotate(time * 100.0f, 1, 0, 0);
GL.Rotate(time * 42.0f, 0, 1, 0);
GL.Begin(PrimitiveType.Quads);
GL.Color3(1.0, 0.0, 0.0);
GL.Vertex3(0.5, -0.5, -0.5);
GL.Color3(0.0, 1.0, 0.0);
GL.Vertex3(0.5, 0.5, -0.5);
GL.Color3(0.0, 0.0, 1.0);
GL.Vertex3(-0.5, 0.5, -0.5);
GL.Color3(1.0, 0.0, 1.0);
GL.Vertex3(-0.5, -0.5, -0.5);
GL.Color3(1.0, 1.0, 1.0);
GL.Vertex3(0.5, -0.5, 0.5);
GL.Vertex3(0.5, 0.5, 0.5);
GL.Vertex3(-0.5, 0.5, 0.5);
GL.Vertex3(-0.5, -0.5, 0.5);
GL.Color3(1.0, 0.0, 1.0);
GL.Vertex3(0.5, -0.5, -0.5);
GL.Vertex3(0.5, 0.5, -0.5);
GL.Vertex3(0.5, 0.5, 0.5);
GL.Vertex3(0.5, -0.5, 0.5);
GL.Color3(0.0, 1.0, 0.0);
GL.Vertex3(-0.5, -0.5, 0.5);
GL.Vertex3(-0.5, 0.5, 0.5);
GL.Vertex3(-0.5, 0.5, -0.5);
GL.Vertex3(-0.5, -0.5, -0.5);
GL.Color3(0.0, 0.0, 1.0);
GL.Vertex3(0.5, 0.5, 0.5);
GL.Vertex3(0.5, 0.5, -0.5);
GL.Vertex3(-0.5, 0.5, -0.5);
GL.Vertex3(-0.5, 0.5, 0.5);
GL.Color3(1.0, 0.0, 0.0);
GL.Vertex3(0.5, -0.5, -0.5);
GL.Vertex3(0.5, -0.5, 0.5);
GL.Vertex3(-0.5, -0.5, 0.5);
GL.Vertex3(-0.5, -0.5, -0.5);
GL.End();
GL.Disable(EnableCap.DepthTest);
}
}
}