#region License
/*
MIT License
Copyright 2003-2005 Tao Framework Team
http://www.taoframework.com
All rights reserved.
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.
*/
#endregion License
using System;
using System.Reflection;
using SdlDotNet.Core;
using SdlDotNet.Graphics;
using SdlDotNet.Input;
using Tao.OpenGl;
namespace SdlDotNetExamples.RedBook{
/// <summary>
/// This program demonstrates polygon stippling.
/// </summary>
/// <remarks>
/// <para>
/// Original Author: Silicon Graphics, Inc.
/// http://www.opengl.org/developers/code/examples/redbook/planet.c
/// </para>
/// <para>
/// C# Implementation: Randy Ridge
/// http://www.taoframework.com
/// </para>
/// <para>
/// SDL.NET implementation: David Hudson
/// http://cs-sdl.sourceforge.net
/// </para>
/// </remarks>
public class RedBookPolygonStippling
{
//Width of screen
int width = 350;
//Height of screen
int height = 150;
/// <summary>
/// Lesson title
/// </summary>
public static string Title
{
get
{
return "PolygonStippling - polygon stippling";
}
}
#region Private Fields
private static byte[] fly = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x03, 0x80, 0x01, 0xC0, 0x06, 0xC0, 0x03, 0x60,
0x04, 0x60, 0x06, 0x20, 0x04, 0x30, 0x0C, 0x20,
0x04, 0x18, 0x18, 0x20, 0x04, 0x0C, 0x30, 0x20,
0x04, 0x06, 0x60, 0x20, 0x44, 0x03, 0xC0, 0x22,
0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22,
0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22,
0x44, 0x01, 0x80, 0x22, 0x44, 0x01, 0x80, 0x22,
0x66, 0x01, 0x80, 0x66, 0x33, 0x01, 0x80, 0xCC,
0x19, 0x81, 0x81, 0x98, 0x0C, 0xC1, 0x83, 0x30,
0x07, 0xe1, 0x87, 0xe0, 0x03, 0x3f, 0xfc, 0xc0,
0x03, 0x31, 0x8c, 0xc0, 0x03, 0x33, 0xcc, 0xc0,
0x06, 0x64, 0x26, 0x60, 0x0c, 0xcc, 0x33, 0x30,
0x18, 0xcc, 0x33, 0x18, 0x10, 0xc4, 0x23, 0x08,
0x10, 0x63, 0xC6, 0x08, 0x10, 0x30, 0x0c, 0x08,
0x10, 0x18, 0x18, 0x08, 0x10, 0x00, 0x00, 0x08
};
private static byte[] halftone = {
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55,
0xAA, 0xAA, 0xAA, 0xAA, 0x55, 0x55, 0x55, 0x55
};
#endregion Private Fields
#region Constructors
/// <summary>
/// Basic constructor
/// </summary>
public RedBookPolygonStippling()
{
Initialize();
}
#endregion Constructors
#region Lesson Setup
/// <summary>
/// Initializes methods common to all RedBook lessons
/// </summary>
private void Initialize()
{
// Sets keyboard events
Events.KeyboardDown += new EventHandler<KeyboardEventArgs>(this.KeyDown);
Keyboard.EnableKeyRepeat(150,50);
// Sets the ticker to update OpenGL Context
Events.Tick += new EventHandler<TickEventArgs>(this.Tick);
Events.Quit += new EventHandler<QuitEventArgs>(this.Quit);
// // Sets the resize window event
// Events.VideoResize += new EventHandler<VideoResizeEventArgs> (this.Resize);
// Set the Frames per second.
Events.Fps = 60;
// Sets Window icon and title
this.WindowAttributes();
// Creates SDL.NET Surface to hold an OpenGL scene
Video.SetVideoMode(width, height, true, true);
}
/// <summary>
/// Sets Window icon and caption
/// </summary>
private void WindowAttributes()
{
Video.WindowIcon();
Video.WindowCaption =
"SDL.NET - RedBook " +
this.GetType().ToString().Substring(26);
}
#endregion Lesson Setup
/// <summary>
/// Resizes window
/// </summary>
private void Reshape()
{
Reshape(this.width, this.height);
}
// --- Application Methods ---
#region Init()
private static void Init()
{
Gl.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
Gl.glShadeModel(Gl.GL_FLAT);
}
#endregion Init()
// --- Callbacks ---
#region Display()
private static void Display()
{
Gl.glClear(Gl.GL_COLOR_BUFFER_BIT);
Gl.glColor3f(1.0f, 1.0f, 1.0f);
// draw one solid, unstippled rectangle, then two stippled rectangles
Gl.glRectf(25.0f, 25.0f, 125.0f, 125.0f);
Gl.glEnable(Gl.GL_POLYGON_STIPPLE);
Gl.glPolygonStipple(fly);
Gl.glRectf(125.0f, 25.0f, 225.0f, 125.0f);
Gl.glPolygonStipple(halftone);
Gl.glRectf(225.0f, 25.0f, 325.0f, 125.0f);
Gl.glDisable(Gl.GL_POLYGON_STIPPLE);
Gl.glFlush();
}
#endregion Display()
#region Reshape(int w, int h)
private static void Reshape(int w, int h)
{
Gl.glViewport(0, 0, w, h);
Gl.glMatrixMode(Gl.GL_PROJECTION);
Gl.glLoadIdentity();
Glu.gluOrtho2D(0.0, (double) w, 0.0, (double) h);
}
#endregion Reshape(int w, int h)
#region Event Handlers
private void KeyDown(object sender, KeyboardEventArgs e)
{
switch (e.Key)
{
case Key.Escape:
// Will stop the app loop
Events.QuitApplication();
break;
default:
break;
}
}
private void Tick(object sender, TickEventArgs e)
{
Display();
Video.GLSwapBuffers();
}
private void Quit(object sender, QuitEventArgs e)
{
Events.QuitApplication();
}
// private void Resize (object sender, VideoResizeEventArgs e)
// {
// Video.SetVideoMode(e.Width, e.Height, true);
// if (screen.Width != e.Width || screen.Height != e.Height)
// {
// //this.Init();
// this.RedBook t = new RedBook(); t.Reshape();
// }
// }
#endregion Event Handlers
#region Run Loop
/// <summary>
/// Starts demo
/// </summary>
public static void Run()
{
RedBookPolygonStippling t = new RedBookPolygonStippling();
t.Reshape();
Init();
Events.Run();
}
#endregion Run Loop
}
}
|