Opentk/Source/Examples/Tutorial/Text.cs

164 lines
5.3 KiB
C#
Raw Normal View History

2007-11-06 21:02:27 +00:00
#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Drawing;
2008-04-13 18:43:15 +00:00
using System.Diagnostics;
2007-11-06 21:02:27 +00:00
using OpenTK;
using OpenTK.Graphics;
2007-11-06 21:02:27 +00:00
using OpenTK.Input;
namespace Examples.Tutorial
{
2007-11-08 16:42:30 +00:00
/// <summary>
/// Shows how to render and scroll large amounts of text.
/// </summary>
[Example("Text", ExampleCategory.Tutorial, 4)]
public class Text : GameWindow
2007-11-06 21:02:27 +00:00
{
Font serif = new Font(FontFamily.GenericSerif, 16.0f);
Font sans = new Font(FontFamily.GenericSansSerif, 48.0f, FontStyle.Italic);
TextPrinter text = new TextPrinter();
2007-11-06 21:02:27 +00:00
//string poem = new StreamReader("Data/Poem.txt").ReadToEnd();
string poem = "The quick brown fox jumped over the lazy dogs!\n\nKerning: Wo\nLigatures: ffi, fft";
2007-11-06 21:02:27 +00:00
int lines; // How many lines the poem contains.
float scroll_speed;
float initial_position;
float warparound_position;
float current_position;
2008-04-13 18:43:15 +00:00
public Text()
: base(800, 600)
{ }
2007-11-06 21:02:27 +00:00
#region OnLoad
public override void OnLoad(EventArgs e)
{
GL.ClearColor(Color.SteelBlue);
2007-11-06 21:02:27 +00:00
current_position = initial_position;
scroll_speed = -1.0f;
2007-11-08 16:42:30 +00:00
// Count the amount of lines in the text, to find out the correct
// warparound position. We want the text to scroll until the last
// line moves outside the screen, then warp it around from the
// other side of the screen.
2007-11-06 21:02:27 +00:00
foreach (char c in poem)
if (c == '\n')
lines++;
warparound_position =
-(lines + 1) * serif.Height;
}
#endregion
2007-11-08 16:42:30 +00:00
#region OnUnload
public override void OnUnload(EventArgs e)
{
if (serif != null)
serif.Dispose();
if (sans != null)
sans.Dispose();
2007-11-08 16:42:30 +00:00
}
#endregion
2007-11-06 21:02:27 +00:00
#region OnResize
protected override void OnResize(OpenTK.Platform.ResizeEventArgs e)
{
GL.Viewport(0, 0, Width, Height);
initial_position = Height + serif.Height; // Start one line below the screen.
warparound_position =
-(lines + 1) * serif.Height;
}
#endregion
#region OnUpdateFrame
public override void OnUpdateFrame(UpdateFrameEventArgs e)
{
if (Keyboard[Key.Space])
scroll_speed = 0.0f;
if (Keyboard[Key.Down])
scroll_speed += 1;
if (Keyboard[Key.Up])
scroll_speed -= 1;
if (Keyboard[Key.Escape])
this.Exit();
}
#endregion
#region OnRenderFrame
public override void OnRenderFrame(RenderFrameEventArgs e)
{
GL.Clear(ClearBufferMask.ColorBufferBit);
// We'll start printing from the lower left corner of the screen. The text
// will slowly move updwards - the user can control the movement speed with
// the keyboard arrows and the space bar.
current_position += scroll_speed * (float)e.ScaleFactor;
if (scroll_speed > 0.0f && current_position > initial_position)
current_position = warparound_position;
else if (scroll_speed < 0.0f && current_position < warparound_position)
current_position = initial_position;
// TextPrinter.Begin() sets up a 2d orthographic projection, with the x axis
// moving from 0 to viewport.Width (left to right) and the y axis from
// 0 to viewport.Height (top to bottom). This is the typical coordinate system
// used in 2d graphics, and is necessary for achieving pixel-perfect glyph rendering.
// TextPrinter.End() restores your previous projection/modelview matrices.
text.Begin();
// Print FPS counter. Since the counter changes per frame,
// it shouldn't be cached (TextPrinterOptions.NoCache).
text.Print((1.0 / e.Time).ToString("F2"), sans, Color.LightYellow, RectangleF.Empty, TextPrinterOptions.NoCache);
// Print the actual text.
text.Print(poem, serif, Color.White, new RectangleF(0, current_position, 0, 0), TextPrinterOptions.Default);
text.End();
2008-04-13 18:43:15 +00:00
2007-11-06 21:02:27 +00:00
SwapBuffers();
}
#endregion
#region public static void Main()
2007-11-06 21:02:27 +00:00
/// <summary>
/// Entry point of this example.
/// </summary>
[STAThread]
public static void Main()
2007-11-06 21:02:27 +00:00
{
using (Text example = new Text())
{
// Get the title and category of this example using reflection.
ExampleAttribute info = ((ExampleAttribute)example.GetType().GetCustomAttributes(false)[0]);
example.Title = String.Format("OpenTK | {0} {1}: {2}", info.Category, info.Difficulty, info.Title);
example.Run(30.0, 0.0);
}
2007-11-06 21:02:27 +00:00
}
#endregion
}
}