2007-07-23 02:15:18 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- Using Directives ---
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
|
|
|
|
|
using OpenTK.OpenGL;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
|
|
|
|
|
#endregion --- Using Directives ---
|
|
|
|
|
|
|
|
|
|
namespace Examples.Tutorial
|
|
|
|
|
{
|
|
|
|
|
public class T10_GLSL_Cube : GameWindow, IExample
|
|
|
|
|
{
|
|
|
|
|
#region --- Fields ---
|
|
|
|
|
|
|
|
|
|
#region Shaders
|
|
|
|
|
|
|
|
|
|
string[] vertex_shader_source =
|
|
|
|
|
{
|
|
|
|
|
"void main() {",
|
|
|
|
|
"gl_FrontColor = gl_Color;",
|
|
|
|
|
"gl_Position = ftransform();",
|
|
|
|
|
"}",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
string[] fragment_shader_source =
|
|
|
|
|
{
|
|
|
|
|
"void main() { gl_FragColor = gl_Color; }\0"
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
static float angle;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- Constructors ---
|
|
|
|
|
|
|
|
|
|
public T10_GLSL_Cube()
|
|
|
|
|
{
|
|
|
|
|
Context.MakeCurrent();
|
|
|
|
|
|
|
|
|
|
//Text =
|
|
|
|
|
// GL.GetString(Enums.StringName.VENDOR) + " " +
|
|
|
|
|
// GL.GetString(Enums.StringName.RENDERER) + " " +
|
|
|
|
|
// GL.GetString(Enums.StringName.VERSION);
|
|
|
|
|
|
|
|
|
|
GL.ClearColor(0.1f, 0.1f, 0.5f, 0.0f);
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Enable(GL.Enums.EnableCap.DEPTH_TEST);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
uint vertex_shader_object, fragment_shader_object;
|
2007-07-23 02:15:18 +02:00
|
|
|
|
int status;
|
2007-08-03 02:14:31 +02:00
|
|
|
|
uint shader_program;
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
vertex_shader_object = (uint)GL.CreateShader(GL.Enums.VERSION_2_0.VERTEX_SHADER);
|
|
|
|
|
fragment_shader_object = (uint)GL.CreateShader(GL.Enums.VERSION_2_0.FRAGMENT_SHADER);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-01 11:32:49 +02:00
|
|
|
|
GL.ShaderSource(vertex_shader_object, vertex_shader_source.Length, vertex_shader_source, (int[])null);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
GL.CompileShader(vertex_shader_object);
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.GetShader(vertex_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status);
|
|
|
|
|
if (status != (int)GL.Enums.Boolean.TRUE)
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
|
|
|
|
StringBuilder info = new StringBuilder(1024);
|
2007-08-01 11:32:49 +02:00
|
|
|
|
GL.GetShaderInfoLog(vertex_shader_object, info.MaxCapacity, (int[])null, info);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
|
|
|
|
throw new Exception(info.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-01 11:32:49 +02:00
|
|
|
|
GL.ShaderSource(fragment_shader_object, fragment_shader_source.Length, fragment_shader_source, (int[])null);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
GL.CompileShader(fragment_shader_object);
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.GetShader(fragment_shader_object, GL.Enums.VERSION_2_0.COMPILE_STATUS, out status);
|
|
|
|
|
if (status != (int)GL.Enums.Boolean.TRUE)
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
|
|
|
|
StringBuilder info = new StringBuilder(1024);
|
2007-08-01 11:32:49 +02:00
|
|
|
|
GL.GetShaderInfoLog(fragment_shader_object, 1024, (int[])null, info);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
|
|
|
|
throw new Exception(info.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
shader_program = (uint)GL.CreateProgram();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
GL.AttachShader(shader_program, fragment_shader_object);
|
|
|
|
|
GL.AttachShader(shader_program, vertex_shader_object);
|
|
|
|
|
|
|
|
|
|
GL.LinkProgram(shader_program);
|
|
|
|
|
GL.UseProgram(shader_program);
|
|
|
|
|
|
|
|
|
|
OnResize(new OpenTK.Platform.ResizeEventArgs(this.Width, this.Height));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
#region public void Launch()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Launches this example.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// Provides a simple way for the example launcher to launch the examples.
|
|
|
|
|
/// </remarks>
|
2007-08-03 02:14:31 +02:00
|
|
|
|
public void Launch()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
//using (T10_GLSL_Cube ex = new T10_GLSL_Cube())
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
//ex.Run();
|
|
|
|
|
Run();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region OnResize
|
|
|
|
|
|
|
|
|
|
protected override void OnResize(OpenTK.Platform.ResizeEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnResize(e);
|
|
|
|
|
|
|
|
|
|
GL.Viewport(0, 0, this.Width, this.Height);
|
|
|
|
|
|
|
|
|
|
double ratio = 0.0;
|
|
|
|
|
ratio = this.Width / (double)this.Height;
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.MatrixMode(GL.Enums.MatrixMode.PROJECTION);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
Glu.Perspective(45.0, ratio, 1.0, 64.0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2007-08-04 14:09:58 +02:00
|
|
|
|
#region OnUpdateFrame
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-04 14:09:58 +02:00
|
|
|
|
public override void OnUpdateFrame()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-04 14:09:58 +02:00
|
|
|
|
base.OnUpdateFrame();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-04 14:09:58 +02:00
|
|
|
|
if (Keyboard[0][OpenTK.Input.Keys.Escape])
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-04 14:09:58 +02:00
|
|
|
|
this.Exit();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.MatrixMode(GL.Enums.MatrixMode.MODELVIEW);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
GL.LoadIdentity();
|
|
|
|
|
Glu.LookAt(
|
|
|
|
|
0.0, 5.0, 5.0,
|
|
|
|
|
0.0, 0.0, 0.0,
|
|
|
|
|
0.0, 1.0, 0.0
|
|
|
|
|
);
|
|
|
|
|
GL.Rotatef(angle, 0.0f, 1.0f, 0.0f);
|
|
|
|
|
angle += 0.05f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2007-08-04 14:09:58 +02:00
|
|
|
|
#region OnRenderFrame
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-04 14:09:58 +02:00
|
|
|
|
public override void OnRenderFrame()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-04 14:09:58 +02:00
|
|
|
|
base.OnRenderFrame();
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Clear(GL.Enums.ClearBufferMask.COLOR_BUFFER_BIT | GL.Enums.ClearBufferMask.DEPTH_BUFFER_BIT);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
|
|
|
|
DrawCube();
|
|
|
|
|
|
|
|
|
|
Context.SwapBuffers();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
#region private void DrawCube()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
private void DrawCube()
|
2007-07-23 02:15:18 +02:00
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Begin(GL.Enums.BeginMode.QUADS);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(1.0f, 0.0f, 0.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, -1.0f, -1.0f);
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(1.0f, 1.0f, 0.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, -1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, -1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, 1.0f);
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(1.0f, 0.0f, 1.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, -1.0f);
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(0.0f, 1.0f, 0.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(-1.0f, -1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, -1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, 1.0f);
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(0.0f, 0.0f, 1.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(-1.0f, 1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, -1.0f);
|
|
|
|
|
|
2007-08-03 02:14:31 +02:00
|
|
|
|
GL.Color3(0.0f, 1.0f, 1.0f);
|
2007-08-01 23:14:39 +02:00
|
|
|
|
GL.Vertex3(1.0f, -1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, -1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, 1.0f, 1.0f);
|
|
|
|
|
GL.Vertex3(1.0f, -1.0f, 1.0f);
|
2007-07-23 02:15:18 +02:00
|
|
|
|
|
|
|
|
|
GL.End();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|