Difference between revisions of "Using CEGUI with SDL and OpenGL"

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Jump to: navigation, search
(Rendering)
 
(34 intermediate revisions by 14 users not shown)
Line 1: Line 1:
 +
{{VersionBadge|0.6}} {{VersionBadge|0.5}}
 
[http://www.libsdl.org SDL (Simple DirectMedia Layer)] is an excellent library for writing portable games and other multimedia applications, but as it is a low-level library, it has no native support for GUI interfaces.
 
[http://www.libsdl.org SDL (Simple DirectMedia Layer)] is an excellent library for writing portable games and other multimedia applications, but as it is a low-level library, it has no native support for GUI interfaces.
  
Line 5: Line 6:
 
I'll assume that you've read the imbiciles tutorials, and have used SDL with OpenGL.
 
I'll assume that you've read the imbiciles tutorials, and have used SDL with OpenGL.
 
And know C / C++ ...
 
And know C / C++ ...
 +
  
 
=== Initialisation ===
 
=== Initialisation ===
Line 10: Line 12:
 
First SDL:
 
First SDL:
  
if (SDLInit(SDL_INIT_VIDEO|SDL_INIT_TIMER)<0)
+
<source lang="cpp">
{
+
if (SDL_Init(SDL_INIT_VIDEO)<0)
  fprintf(stderr, "Unable to initialise SDL: %s", SDL_GetError());
+
{
  exit(0);
+
  fprintf(stderr, "Unable to initialise SDL: %s", SDL_GetError());
}
+
  exit(0);
 +
}
 +
</source>
  
Here we initialise SDL with video and timer support. We need this for CEGUI.
+
Here we initialise SDL with video support. We need this for CEGUI.
 
O.K. now SDL is ready to go. So let's fire up OpenGL:
 
O.K. now SDL is ready to go. So let's fire up OpenGL:
  
if (SDL_SetVideoMode(800,600,0,SDL_OPENGL)==NULL)
+
<source lang="cpp">
{
+
if (SDL_SetVideoMode(800,600,0,SDL_OPENGL)==NULL)
  fprintf(stderr, "Unable to set OpenGL videomode: %s", SDL_GetError());
+
{
  SDL_Quit();
+
  fprintf(stderr, "Unable to set OpenGL videomode: %s", SDL_GetError());
  exit(0);
+
  SDL_Quit();
}
+
  exit(0);
 +
}
 +
</source>
  
Now OpenGL is ready. But we still need to set a decent configuiration:
+
Now OpenGL is ready. But we still need to set a decent configuration:
  
glEnable(GL_CULL_FACE);
+
<source lang="cpp">
glClearColor(0.0f,0.0f,0.0f,1.0f);
+
glEnable(GL_CULL_FACE);
glViewport(0,0, 800,600);
+
glDisable(GL_FOG);
 +
glClearColor(0.0f,0.0f,0.0f,1.0f);
 +
glViewport(0,0, 800,600);
 +
</source>
  
The OpenGL renderer that comes with CEGUI sets the matrices itself, so if you're only using CEGUI to display graphics this would be fine. Normally you would want a default 3D perspective setup:
+
The OpenGL renderer that comes with CEGUI sets the matrices itself, so if you're using CEGUI for all your rendering needs this would be fine. Normally you would want the normal perspective projection setup though:
  
glMatrixMode(GL_PROJECTION);
+
<source lang="cpp">
glLoadIdentity();
+
glMatrixMode(GL_PROJECTION);
gluPerspective(45.0, 800.0/600.0, 0.1,100.0);
+
glLoadIdentity();
glMatrixMode(GL_MODELVIEW);
+
gluPerspective(45.0, 800.0/600.0, 0.1,100.0);
glLoadIdentity();
+
glMatrixMode(GL_MODELVIEW);
 +
glLoadIdentity();
 +
</source>
  
 
SDL and OpenGL are now both ready for action. So it's time to initialise CEGUI.
 
SDL and OpenGL are now both ready for action. So it's time to initialise CEGUI.
 
First we need the renderer.
 
First we need the renderer.
  
#include "renderers/OpenGLGUIRenderer/openglrenderer.h"
+
<source lang="cpp">
 +
#include "renderers/OpenGLGUIRenderer/openglrenderer.h"
 +
</source>
  
 
It must be created before starting CEGUI.
 
It must be created before starting CEGUI.
  
CEGUI::OpenGLRenderer* renderer = new CEGUI::OpenGLRenderer(0,800,600);
+
<source lang="cpp">
 +
CEGUI::OpenGLRenderer* renderer = new CEGUI::OpenGLRenderer(0,800,600);
 +
</source>
  
 
Then the CEGUI::System must be initialised:
 
Then the CEGUI::System must be initialised:
  
new CEGUI::System(renderer);
+
<source lang="cpp">
 +
new CEGUI::System(renderer);
 +
</source>
  
 
Remember that you have to load a widget set, set the mouse cursor and a default font before CEGUI is completely ready. This is described in the other tutorials.
 
Remember that you have to load a widget set, set the mouse cursor and a default font before CEGUI is completely ready. This is described in the other tutorials.
Line 58: Line 75:
 
By default the SDL cursor is displayed, so we'll remove that:
 
By default the SDL cursor is displayed, so we'll remove that:
  
SDL_ShowCursor(SDL_DISABLE);
+
<source lang="cpp">
 +
SDL_ShowCursor(SDL_DISABLE);
 +
</source>
  
 
As keypress characters needs to be injected into CEGUI, we activate unicode translation for SDL key events:
 
As keypress characters needs to be injected into CEGUI, we activate unicode translation for SDL key events:
  
SDL_EnableUNICODE(1);
+
<source lang="cpp">
 +
SDL_EnableUNICODE(1);
 +
</source>
  
 
This makes it alot easier as we don't have to worry about modifier keys and keyboard layouts ourselves. More about this later on...
 
This makes it alot easier as we don't have to worry about modifier keys and keyboard layouts ourselves. More about this later on...
Line 68: Line 89:
 
Key repeat is a nice feature for the text input widgets in CEGUI, so we use SDL to generate them:
 
Key repeat is a nice feature for the text input widgets in CEGUI, so we use SDL to generate them:
  
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
+
<source lang="cpp">
 +
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
 +
</source>
  
 
Everything is ready now, and we can start the main loop :)
 
Everything is ready now, and we can start the main loop :)
 
  
 
=== The Main Loop ===
 
=== The Main Loop ===
To make is all happen, we use a simple main loop that just keeps pushing on those frames:
+
To make it all happen, we use a simple main loop that just keeps pushing on those frames:
  
void main_loop()
+
<source lang="cpp">
{
+
void main_loop()
  bool must_quit = false;
+
{
 
+
  bool must_quit = false;
  // get "run-time" in seconds
+
 
  double last_time_pulse = 0.001*static_cast<double>(SDL_GetTicks());
+
  // get "run-time" in seconds
 
+
  double last_time_pulse = 0.001*static_cast<double>(SDL_GetTicks());
  while (!must_quit)
+
 
  {
+
  while (!must_quit)
    inject_input(must_quit);
+
  {
    inject_time_pulse(last_time_pulse);
+
    inject_input(must_quit);
    render_gui();
+
    inject_time_pulse(last_time_pulse);
  }
+
    render_gui();
}
+
  }
 +
}
 +
</source>
  
This function will run the main loop until the ''bool'' value ''must_quit'' becomes ''true''. In this tutorial this will happen when the user clicks the close button provided by the window manager (fx. Windows).
+
This function will run the main loop until the ''bool'' value ''must_quit'' becomes ''true''. In this tutorial this will happen when the user clicks the close button provided by the window manager.
  
 
The ''double'' value ''last_time_pulse'' holds the time of the latest time pulse injection. More about this later.
 
The ''double'' value ''last_time_pulse'' holds the time of the latest time pulse injection. More about this later.
Line 99: Line 123:
 
There are endless ways of making your main loop. I took a simple approach to ease writing this tutorial.
 
There are endless ways of making your main loop. I took a simple approach to ease writing this tutorial.
  
=== Injecting Input ===
+
 
When the user presses or release keyboard or mouse buttons, we need to tell CEGUI about it so we use the injection functions of ''CEGUI::System''.
+
=== Injecting Input and injecting change of window size ===
 +
When the user press or release keyboard or mouse buttons, we need to tell CEGUI about it, for this we use the injection functions of ''CEGUI::System''. We also have to tell
  
 
Here is what our inject_input function looks like:
 
Here is what our inject_input function looks like:
  
void inject_input(bool& must_quit)
+
<source lang="cpp">
{
+
void inject_input(bool& must_quit)
  SDL_Event e;
+
{
 
+
  SDL_Event e;
  // go through all available events
+
 
  while (SDL_PollEvent(&e))
+
  // go through all available events
  {
+
  while (SDL_PollEvent(&e))
    // we use a switch to determine the event type
+
  {
    switch (e.type)
+
    // we use a switch to determine the event type
    {
+
    switch (e.type)
      // mouse motion handler
+
    {
      case SDL_MOUSEMOTION:
+
      // mouse motion handler
        // we inject the mouse position directly.
+
      case SDL_MOUSEMOTION:
        CEGUI::System::getSingleton().injectMousePosition(
+
        // we inject the mouse position directly.
          static_cast<float>(e.motion.x),
+
        CEGUI::System::getSingleton().injectMousePosition(
          static_cast<float>(e.motion.y)
+
          static_cast<float>(e.motion.x),
        );
+
          static_cast<float>(e.motion.y)
        break;
+
        );
   
+
        break;
    // mouse down handler
+
   
      case SDL_MOUSEBUTTONDOWN:
+
      // mouse down handler
        // let a special function handle the mouse button down event
+
      case SDL_MOUSEBUTTONDOWN:
        handle_mouse_down(e.button.button);
+
        // let a special function handle the mouse button down event
        break;
+
        handle_mouse_down(e.button.button);
   
+
        break;
      // mouse up handler
+
   
      case SDL_MOUSEBUTTONDOWN:
+
      // mouse up handler
        // let a special function handle the mouse button up event
+
      case SDL_MOUSEBUTTONUP:
        handle_mouse_up(e.button.button);
+
        // let a special function handle the mouse button up event
        break;
+
        handle_mouse_up(e.button.button);
   
+
        break;
   
+
   
      // key down
+
   
      case SDL_KEYDOWN:
+
      // key down
        // to tell CEGUI that a key was pressed, we inject the scancode.
+
      case SDL_KEYDOWN:
        CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
+
        // to tell CEGUI that a key was pressed, we inject the scancode.
       
+
        CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
        // as for the character it's a litte more complicated. we'll use for translated unicode value.
+
       
        // this is described in more detail below.
+
        // as for the character it's a litte more complicated. we'll use for translated unicode value.
        if ((e.key.keysym.unicode & 0xFF80) == 0)
+
        // this is described in more detail below.
        {
+
        if ((e.key.keysym.unicode != 0)
          CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode & 0x7F);
+
        {
        }
+
          CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode);
        break;
+
        }
   
+
        break;
      // key up
+
   
      case SDL_KEYUP:
+
      // key up
        // like before we inject the scancode directly.
+
      case SDL_KEYUP:
        CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
+
        // like before we inject the scancode directly.
        break;
+
        CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
   
+
        break;
   
+
   
      // WM quit event occured
+
   
      case SDL_QUIT:
+
      // WM quit event occured
        must_quit = true;
+
      case SDL_QUIT:
        break;
+
        must_quit = true;
   
+
        break;
    }
+
   
 
+
    }
  }
+
 
+
  }
}
+
 
 +
}
 +
</source>
  
 
First I'll explain the events that get handled directly in the ''inject_input'' function.
 
First I'll explain the events that get handled directly in the ''inject_input'' function.
Line 172: Line 199:
 
'''Mouse Motion''':
 
'''Mouse Motion''':
  
// we inject the mouse position directly.
+
<source lang="cpp">
CEGUI::System::getSingleton().injectMousePosition(
+
// we inject the mouse position directly.
  static_cast<float>(e.motion.x),
+
CEGUI::System::getSingleton().injectMousePosition(
  static_cast<float>(e.motion.y)
+
  static_cast<float>(e.motion.x),
);
+
  static_cast<float>(e.motion.y)
 +
);
 +
</source>
  
 
There is nothing special here. Like stated in the comment the mouse position is just injected directly.
 
There is nothing special here. Like stated in the comment the mouse position is just injected directly.
Line 185: Line 214:
  
 
'''Key Down'''<br />
 
'''Key Down'''<br />
This event is takes a little more work. CEGUI requires that key characters (the printable character the key represents) are injected alongside key codes.
+
This event takes a little more work. CEGUI requires that key characters (the printable character the key represents) are injected alongside key codes.
  
// to tell CEGUI that a key was pressed, we inject the scancode.
+
<source lang="cpp">
CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
+
// to tell CEGUI that a key was pressed, we inject the scancode.
 +
CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
 +
</source>
  
Luckily the key code is just the SDL scancode, so we inject that directly.
+
Luckily the key code is just the SDL scancode, so we inject that directly. (This only seems to be true on windows. On other platforms you will need to use a translation function. One can be found here [[SDL to CEGUI keytable]])
  
// as for the character it's a litte more complicated. we'll use for translated unicode value.
+
<source lang="cpp">
// this is described in more detail below.
+
// as for the character it's a litte more complicated. we'll use for translated unicode value.
if ((e.key.keysym.unicode & 0xFF80) == 0)
+
// this is described in more detail below.
{
+
if (e.key.keysym.unicode != 0)
  CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode & 0x7F);
+
{
}
+
  CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode);
 +
}
 +
</source>
  
Instead of formatting the keypress ourselves, we let SDL do it for us. For more information, take a look at the SDL documentation for this feature. [http://sdldoc.csn.ul.ie/sdlkeysym.php SDL_keysym].
+
Instead of formatting the keypress ourselves, we let SDL do it for us. We could check if we actually got a valid ASCII code, but we want support for local characters as well, so we won't do that. For more information, take a look at the SDL documentation for this feature. [http://www.libsdl.org/cgi/docwiki.cgi/SDL_5fkeysym SDL_keysym].
  
  
 
'''Key Up'''<br />
 
'''Key Up'''<br />
This one is simple. Only the keycode need to injected. So we just use the scancode directly:
+
This one is simple. Only the keycode need to injected. So we just use the scancode directly (As with KeyDown you will need to use a translation function for non Windows platforms. Check KeyDown above for more info):
  
// like before we inject the scancode directly.
+
<source lang="cpp">
CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
+
// like before we inject the scancode directly.
 +
CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
 +
</source>
  
  
 
'''Mouse Button Down and Mouse Wheel'''<br />
 
'''Mouse Button Down and Mouse Wheel'''<br />
CEGUI and SDL are a little different when it comes to mouse button and mouse wheel event. So a little conversion is necessary. Here's the ''handle_mouse_down'' function that gets called when a mouse button down event occurs in SDL. It takes one parameter, a ''Uint8'' describing the mouse button that was pressed.
+
CEGUI and SDL are a little different when it comes to mouse button and mouse wheel events. So a little conversion is necessary. Here's the ''handle_mouse_down'' function that gets called when a mouse button down event occurs in SDL. It takes one parameter, a ''Uint8'' describing the mouse button that was pressed.
  
void handle_mouse_down(Uint8 button)
+
<source lang="cpp">
{
+
void handle_mouse_down(Uint8 button)
switch ( button )
+
{
{
+
switch ( button )
// handle real mouse buttons
+
{
case SDL_BUTTON_LEFT:
+
// handle real mouse buttons
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
+
case SDL_BUTTON_LEFT:
break;
+
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
case SDL_BUTTON_MIDDLE:
+
break;
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::MiddleButton);
+
case SDL_BUTTON_MIDDLE:
break;
+
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::MiddleButton);
case SDL_BUTTON_RIGHT:
+
break;
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::RightButton);
+
case SDL_BUTTON_RIGHT:
break;
+
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::RightButton);
+
break;
// handle the mouse wheel
+
case SDL_BUTTON_WHEELDOWN:
+
// handle the mouse wheel
CEGUI::System::getSingleton().injectMouseWheelChange( -1 );
+
case SDL_BUTTON_WHEELDOWN:
break;
+
CEGUI::System::getSingleton().injectMouseWheelChange( -1 );
case SDL_BUTTON_WHEELUP:
+
break;
CEGUI::System::getSingleton().injectMouseWheelChange( +1 );
+
case SDL_BUTTON_WHEELUP:
break;
+
CEGUI::System::getSingleton().injectMouseWheelChange( +1 );
}
+
break;
}
+
}
 +
}
 +
</source>
  
 
I chose a very "manual" conversion, but it works fine. Everything should be pretty self-explainatory.
 
I chose a very "manual" conversion, but it works fine. Everything should be pretty self-explainatory.
Line 243: Line 280:
 
'''Mouse Button Up'''<br />
 
'''Mouse Button Up'''<br />
 
The mouse button up event is handled very much like the mouse button down event, except there are no mousewheel release events.
 
The mouse button up event is handled very much like the mouse button down event, except there are no mousewheel release events.
Like ''handle_mouse_down'' it takes one parameter, a ''Uint8'' describing the mouse button that was pressed:
+
Like ''handle_mouse_down'' it takes one parameter, a ''Uint8'' describing the mouse button that was released:
 
+
void handle_mouse_up(Uint8 button)
+
{
+
switch ( button )
+
{
+
case SDL_BUTTON_LEFT:
+
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
+
break;
+
case SDL_BUTTON_MIDDLE:
+
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::MiddleButton);
+
break;
+
case SDL_BUTTON_RIGHT:
+
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::RightButton);
+
break;
+
}
+
}
+
  
 +
<source lang="cpp">
 +
void handle_mouse_up(Uint8 button)
 +
{
 +
switch ( button )
 +
{
 +
case SDL_BUTTON_LEFT:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
 +
break;
 +
case SDL_BUTTON_MIDDLE:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::MiddleButton);
 +
break;
 +
case SDL_BUTTON_RIGHT:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::RightButton);
 +
break;
 +
}
 +
}
 +
</source>
  
 
=== Time Pulses ===
 
=== Time Pulses ===
SDL has a built-in millisecond counter which we will use for this example. There are other to use timers with SDL, but I chose this approach as it is simple to use.
+
SDL has a built-in millisecond counter which we will use for this example. There are other ways to use timers with SDL, but I chose this approach as it is simple to use, and provides decent precision.
  
Remember in the main loop where we stored the current "run-time" in seconds ? This value will be passed as a reference to ''inject_time_pulse'' which in turn will set a new value in it.
+
Remember in the main loop where we stored the current "run-time" in seconds ? This value will be passed as a reference to ''inject_time_pulse'' function which in turn will set a new value to it.
  
CEGUI's interface for injecting time pulses requires that you pass the time in seconds that has passed since the last time pulse injection. Long sentence but it not that hard. Let's take a look at the function:
+
CEGUI's interface for injecting time pulses requires that you pass the time in seconds that has passed since the last time pulse injection. Let's take a look at the function:
  
void inject_time_pulse(double& last_time_pulse)
+
<source lang="cpp">
{
+
void inject_time_pulse(double& last_time_pulse)
// get current "run-time" in seconds
+
{
double t = 0.001*SDL_GetTicks();
+
// get current "run-time" in seconds
 +
double t = 0.001*SDL_GetTicks();
  
// inject the time that passed since the last call  
+
// inject the time that passed since the last call  
CEGUI::System::getSingleton().injectTimePulse( float(t-last_time_pulse) );
+
CEGUI::System::getSingleton().injectTimePulse( float(t-last_time_pulse) );
+
// store the new time as the last time
+
last_time_pulse = t;
+
}
+
  
* The first line get the actual "run-time" when called.
+
// store the new time as the last time
 +
last_time_pulse = t;
 +
}
 +
</source>
 +
 
 +
* The first line gets the actual "run-time" when called.
 
* The second line injects the time pulse as the difference between the current time and the last time.
 
* The second line injects the time pulse as the difference between the current time and the last time.
 
* The third line stores the current time as the last time a time pulse was injected.
 
* The third line stores the current time as the last time a time pulse was injected.
  
This will work for about 47 days... After that the counter wraps to zero and it breaks...
+
This will work for about 47 days... After that the counter wraps to zero and it breaks (a single insanely invalid timepulse will be injected).
 +
I'll leave it up to you to fix that if it's a problem.
  
 +
=== Change of window size ===
 +
If the window size changes (e.g. switching to fullscreen mode), we have to tell the openGlRenderer what's the new window size. Otherwise e.g. the Fonts aren't scaled properly. Therefore we add an SDL Event Handler for SDL_VIDEORESIZE and submit the new window size to the openGlRenderer of CEGUI. Also, on a resize the OpenGL context is lost, meaning textures must be reloaded. The OpenGLRenderer provides functions to do this, grabTextures and restoreTextures.
 +
 +
<source lang="cpp">
 +
...
 +
      case SDL_VIDEORESIZE:
 +
            renderer->grabTextures();
 +
            //your resize code here, including the SDL_SetVideoMode call
 +
            renderer->restoreTextures();
 +
            renderer->setDisplaySize(CEGUI::Size(e.resize.w, e.resize.h));
 +
            break;
 +
 +
...
 +
</source>
  
 
=== Rendering ===
 
=== Rendering ===
Now all thats left is rendering something. :)
+
Now all that's left is renderingthe GUI.
  
void render_gui()
+
<source lang="cpp">
{
+
void render_gui()
// clear the colour buffer
+
{
glClear( GL_COLOR_BUFFER_BIT );
+
// clear the colour buffer
+
glClear( GL_COLOR_BUFFER_BIT );
// render the GUI :)
+
 
CEGUI::System::getSingleton().renderGUI();
+
// render the GUI :)
+
CEGUI::System::getSingleton().renderGUI();
// Update the screen
+
 
SDL_GL_SwapBuffers();
+
// Update the screen
}
+
SDL_GL_SwapBuffers();
 +
}
 +
</source>
  
 
The line:
 
The line:
  
  CEGUI::System::getSingleton().renderGUI();
+
<source lang="cpp">
 +
CEGUI::System::getSingleton().renderGUI();
 +
</source>
 +
 
 +
does all the CEGUI magic and sets OpenGL state itself. As long as the viewport is setup, it will render the GUI.
 +
 
 +
=== Error Handling ===
 +
The neat C++ architecture of CEGUI suggests that C++ exceptions are used for error handling. This is completely true.
 +
Whenever an error occurs, a sub-class of ''CEGUI::Exception'' is thrown.
 +
 
 +
There are many scenarios where an exception can be thrown. And whether or not these should be considered fatal depends on the application. To make sure you catch the CEGUI exceptions a regular ''try'' block is used. Like so:
 +
 
 +
<source lang="cpp">
 +
try
 +
{
 +
// do some cegui code
 +
}
 +
catch (CEGUI::Exception& e)
 +
{
 +
fprintf(stderr,"CEGUI Exception occured: %s", e.getMessage().c_str());
 +
// you could quit here
 +
}
 +
</source>
 +
 
 +
This should provide you with the basic steps needed to get interactive with CEGUI in your SDL application.
 +
Have fun.
 +
 
 +
=== The Code ===
 +
To compile under linux:
 +
<code>gcc teste.cpp -I/usr/include/CEGUI/ -lSDL -lGL -lGLU -lCEGUIBase -lCEGUIOpenGLRenderer</code>
 +
 
 +
This code uses release 0.5.0 of CEGUI.
 +
<source lang="cpp">
 +
/*
 +
  * Adapted by: Johnny Souza - johnnysouza.js@gmail.com
 +
* Date: 19/01/07 17:00
 +
* Description: Using CEGUI with SDL and OpenGL
 +
*/
 +
 
 +
#include <stdio.h>
 +
#include <stdlib.h>
 +
 
 +
#include <SDL/SDL.h>
 +
 
 +
#include <CEGUI.h>
 +
/* for release 0.4.X use:
 +
* #include <renderers/OpenGLGUIRenderer/openglrenderer.h>
 +
*/
 +
#include <RendererModules/OpenGLGUIRenderer/openglrenderer.h>
 +
 
 +
#include <GL/gl.h>
 +
#include <GL/glu.h>
 +
 
 +
 
 +
CEGUI::OpenGLRenderer *renderer;
 +
 
 +
void handle_mouse_down(Uint8 button)
 +
{
 +
switch ( button ) {
 +
case SDL_BUTTON_LEFT:
 +
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
 +
break;
 +
case SDL_BUTTON_MIDDLE:
 +
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::MiddleButton);
 +
break;
 +
case SDL_BUTTON_RIGHT:
 +
CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::RightButton);
 +
break;
 +
 
 +
case SDL_BUTTON_WHEELDOWN:
 +
CEGUI::System::getSingleton().injectMouseWheelChange( -1 );
 +
break;
 +
case SDL_BUTTON_WHEELUP:
 +
CEGUI::System::getSingleton().injectMouseWheelChange( +1 );
 +
break;
 +
}
 +
}
 +
 
 +
 
 +
void handle_mouse_up(Uint8 button)
 +
{
 +
switch ( button )
 +
{
 +
case SDL_BUTTON_LEFT:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
 +
break;
 +
case SDL_BUTTON_MIDDLE:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::MiddleButton);
 +
break;
 +
case SDL_BUTTON_RIGHT:
 +
CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::RightButton);
 +
break;
 +
}
 +
}
 +
 
 +
 
 +
void inject_input (bool & must_quit)
 +
{
 +
SDL_Event e;
 +
/* go through all available events */
 +
while (SDL_PollEvent(&e)) {
 +
/* we use a switch to determine the event type */
 +
switch (e.type) {
 +
/* mouse motion handler */
 +
case SDL_MOUSEMOTION:
 +
/* we inject the mouse position directly. */
 +
CEGUI::System::getSingleton().injectMousePosition(static_cast<float>(e.motion.x),static_cast<float>(e.motion.y));
 +
break;
 +
 +
/* mouse down handler */
 +
case SDL_MOUSEBUTTONDOWN:
 +
/* let a special function handle the mouse button down event */
 +
handle_mouse_down (e.button.button);
 +
break;
 +
 
 +
/* mouse up handler */
 +
case SDL_MOUSEBUTTONUP:
 +
/* let a special function handle the mouse button up event */
 +
handle_mouse_up (e.button.button);
 +
break;
 +
 
 +
/* key down */
 +
case SDL_KEYDOWN:
 +
/* to tell CEGUI that a key was pressed, we inject the scancode. */
 +
CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
 +
/* as for the character it's a litte more complicated.
 +
* we'll use for translated unicode value.
 +
* this is described in more detail below.
 +
*/
 +
if ((e.key.keysym.unicode & 0xFF80) == 0) {
 +
CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode & 0x7F);
 +
}
 +
break;
 +
 +
/* key up */
 +
case SDL_KEYUP:
 +
/* like before we inject the scancode directly. */
 +
CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
 +
break;
 +
 +
/* WM quit event occured */
 +
case SDL_QUIT:
 +
must_quit = true;
 +
break;
 +
 
 +
case SDL_VIDEORESIZE:
 +
renderer->setDisplaySize(CEGUI::Size(e.resize.w, e.resize.h));
 +
break;
 +
}
 +
}
 +
}
 +
 
 +
 
 +
void inject_time_pulse(double& last_time_pulse)
 +
{
 +
/* get current "run-time" in seconds */
 +
double t = 0.001*SDL_GetTicks();
 +
/* inject the time that passed since the last call */
 +
CEGUI::System::getSingleton().injectTimePulse( float(t-last_time_pulse) );
 +
/* store the new time as the last time */
 +
last_time_pulse = t;
 +
}
 +
 
 +
void render_gui()
 +
{
 +
/* clear the colour buffer */
 +
glClear( GL_COLOR_BUFFER_BIT );
 +
/* render the GUI :) */
 +
CEGUI::System::getSingleton().renderGUI();
 +
/* Update the screen */
 +
SDL_GL_SwapBuffers();
 +
}
 +
 
 +
 
 +
void main_loop ()
 +
{
 +
bool must_quit = false;
 +
/* get "run-time" in seconds */
 +
double last_time_pulse = 0.001*static_cast<double>(SDL_GetTicks());
 +
while (!must_quit) {
 +
inject_input (must_quit);
 +
inject_time_pulse (last_time_pulse);
 +
render_gui ();
 +
}
 +
}
 +
 
  
does all the CEGUI magic and sets state itself. As long as the viewport is setup, it will render the GUI.
+
int main (int argc, char **argv)
 +
{
 +
SDL_Surface * screen;
 +
atexit (SDL_Quit);
 +
SDL_Init (SDL_INIT_VIDEO);
 +
screen = SDL_SetVideoMode (600, 480, 0, SDL_OPENGL);
 +
if (screen == NULL) {
 +
/* Se ainda não der, desiste! */
 +
fprintf (stderr, "Impossível ajustar ao vídeo: %s\n", SDL_GetError ());
 +
exit (1);
 +
}
 +
renderer = new CEGUI::OpenGLRenderer (0, 600, 480);
 +
new CEGUI::System (renderer);
 +
SDL_ShowCursor (SDL_DISABLE);
 +
SDL_EnableUNICODE (1);
 +
SDL_EnableKeyRepeat (SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
 +
main_loop();
 +
}
 +
</source>
  
  
That's it. Now you know how to use SDL, OpenGL and CEGUI together. Have fun.
+
--[[User:Lindquist]] 16:21, 8 May 2005 (BST)
  
--[[User:Lindquist|Lindquist]] 16:21, 8 May 2005 (BST)
+
[[Category:Tutorials]]

Latest revision as of 08:40, 8 August 2014

Written for CEGUI 0.6


Works with versions 0.6.x (obsolete)

Written for CEGUI 0.5


Works with versions 0.5.x (obsolete)

SDL (Simple DirectMedia Layer) is an excellent library for writing portable games and other multimedia applications, but as it is a low-level library, it has no native support for GUI interfaces.

When using OpenGL for rendering, using CEGUI with SDL is not hard.

I'll assume that you've read the imbiciles tutorials, and have used SDL with OpenGL. And know C / C++ ...


Initialisation

Before we can do anything, we need to initialise our libraries. First SDL:

if (SDL_Init(SDL_INIT_VIDEO)<0)
{
  fprintf(stderr, "Unable to initialise SDL: %s", SDL_GetError());
  exit(0);
}

Here we initialise SDL with video support. We need this for CEGUI. O.K. now SDL is ready to go. So let's fire up OpenGL:

if (SDL_SetVideoMode(800,600,0,SDL_OPENGL)==NULL)
{
  fprintf(stderr, "Unable to set OpenGL videomode: %s", SDL_GetError());
  SDL_Quit();
  exit(0);
}

Now OpenGL is ready. But we still need to set a decent configuration:

glEnable(GL_CULL_FACE);
glDisable(GL_FOG);
glClearColor(0.0f,0.0f,0.0f,1.0f);
glViewport(0,0, 800,600);

The OpenGL renderer that comes with CEGUI sets the matrices itself, so if you're using CEGUI for all your rendering needs this would be fine. Normally you would want the normal perspective projection setup though:

glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(45.0, 800.0/600.0, 0.1,100.0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();

SDL and OpenGL are now both ready for action. So it's time to initialise CEGUI. First we need the renderer.

#include "renderers/OpenGLGUIRenderer/openglrenderer.h"

It must be created before starting CEGUI.

CEGUI::OpenGLRenderer* renderer = new CEGUI::OpenGLRenderer(0,800,600);

Then the CEGUI::System must be initialised:

new CEGUI::System(renderer);

Remember that you have to load a widget set, set the mouse cursor and a default font before CEGUI is completely ready. This is described in the other tutorials.


By default the SDL cursor is displayed, so we'll remove that:

SDL_ShowCursor(SDL_DISABLE);

As keypress characters needs to be injected into CEGUI, we activate unicode translation for SDL key events:

SDL_EnableUNICODE(1);

This makes it alot easier as we don't have to worry about modifier keys and keyboard layouts ourselves. More about this later on...

Key repeat is a nice feature for the text input widgets in CEGUI, so we use SDL to generate them:

SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);

Everything is ready now, and we can start the main loop :)

The Main Loop

To make it all happen, we use a simple main loop that just keeps pushing on those frames:

void main_loop()
{
  bool must_quit = false;
 
  // get "run-time" in seconds
  double last_time_pulse = 0.001*static_cast<double>(SDL_GetTicks());
 
  while (!must_quit)
  {
    inject_input(must_quit);
    inject_time_pulse(last_time_pulse);
    render_gui();
  }
}

This function will run the main loop until the bool value must_quit becomes true. In this tutorial this will happen when the user clicks the close button provided by the window manager.

The double value last_time_pulse holds the time of the latest time pulse injection. More about this later.

Each function in the while loop will be described below.

There are endless ways of making your main loop. I took a simple approach to ease writing this tutorial.


Injecting Input and injecting change of window size

When the user press or release keyboard or mouse buttons, we need to tell CEGUI about it, for this we use the injection functions of CEGUI::System. We also have to tell

Here is what our inject_input function looks like:

void inject_input(bool& must_quit)
{
  SDL_Event e;
 
  // go through all available events
  while (SDL_PollEvent(&e))
  {
    // we use a switch to determine the event type
    switch (e.type)
    {
      // mouse motion handler
      case SDL_MOUSEMOTION:
        // we inject the mouse position directly.
        CEGUI::System::getSingleton().injectMousePosition(
          static_cast<float>(e.motion.x),
          static_cast<float>(e.motion.y)
        );
        break;
 
      // mouse down handler
      case SDL_MOUSEBUTTONDOWN:
        // let a special function handle the mouse button down event
        handle_mouse_down(e.button.button);
        break;
 
      // mouse up handler
      case SDL_MOUSEBUTTONUP:
        // let a special function handle the mouse button up event
        handle_mouse_up(e.button.button);
        break;
 
 
      // key down
      case SDL_KEYDOWN:
        // to tell CEGUI that a key was pressed, we inject the scancode.
        CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
 
        // as for the character it's a litte more complicated. we'll use for translated unicode value.
        // this is described in more detail below.
        if ((e.key.keysym.unicode != 0)
        {
          CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode);
        }
        break;
 
      // key up
      case SDL_KEYUP:
        // like before we inject the scancode directly.
        CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
        break;
 
 
      // WM quit event occured
      case SDL_QUIT:
        must_quit = true;
        break;
 
    }
 
  }
 
}

First I'll explain the events that get handled directly in the inject_input function.


Mouse Motion:

// we inject the mouse position directly.
CEGUI::System::getSingleton().injectMousePosition(
  static_cast<float>(e.motion.x),
  static_cast<float>(e.motion.y)
);

There is nothing special here. Like stated in the comment the mouse position is just injected directly.

There are two ways of injecting mouse motion. One where you inject how much the cursor moved, and one where you inject the mouse cursor position. The last one is failsafe. Then first one only works correctly in fullscreen mode, or with input grabbed. The reason for this is that in regular windowed mode, the mouse can be moved outside the application window, and during this time no mouse motion event are generated. So if we enter the window at another position, the real mousecursor and CEGUI's mouse cursor will be offset, which will break mouse usage.


Key Down
This event takes a little more work. CEGUI requires that key characters (the printable character the key represents) are injected alongside key codes.

// to tell CEGUI that a key was pressed, we inject the scancode.
CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);

Luckily the key code is just the SDL scancode, so we inject that directly. (This only seems to be true on windows. On other platforms you will need to use a translation function. One can be found here SDL to CEGUI keytable)

// as for the character it's a litte more complicated. we'll use for translated unicode value.
// this is described in more detail below.
if (e.key.keysym.unicode != 0)
{
  CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode);
}

Instead of formatting the keypress ourselves, we let SDL do it for us. We could check if we actually got a valid ASCII code, but we want support for local characters as well, so we won't do that. For more information, take a look at the SDL documentation for this feature. SDL_keysym.


Key Up
This one is simple. Only the keycode need to injected. So we just use the scancode directly (As with KeyDown you will need to use a translation function for non Windows platforms. Check KeyDown above for more info):

// like before we inject the scancode directly.
CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);


Mouse Button Down and Mouse Wheel
CEGUI and SDL are a little different when it comes to mouse button and mouse wheel events. So a little conversion is necessary. Here's the handle_mouse_down function that gets called when a mouse button down event occurs in SDL. It takes one parameter, a Uint8 describing the mouse button that was pressed.

void handle_mouse_down(Uint8 button)
	{
	switch ( button )
		{
		// handle real mouse buttons
		case SDL_BUTTON_LEFT:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
			break;
		case SDL_BUTTON_MIDDLE:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::MiddleButton);
			break;
		case SDL_BUTTON_RIGHT:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::RightButton);
			break;
 
		// handle the mouse wheel
		case SDL_BUTTON_WHEELDOWN:
			CEGUI::System::getSingleton().injectMouseWheelChange( -1 );
			break;
		case SDL_BUTTON_WHEELUP:
			CEGUI::System::getSingleton().injectMouseWheelChange( +1 );
			break;
		}
	}

I chose a very "manual" conversion, but it works fine. Everything should be pretty self-explainatory. As you can see mouse wheel events are emitted as mouse button down events in SDL.


Mouse Button Up
The mouse button up event is handled very much like the mouse button down event, except there are no mousewheel release events. Like handle_mouse_down it takes one parameter, a Uint8 describing the mouse button that was released:

void handle_mouse_up(Uint8 button)
	{
	switch ( button )
		{
		case SDL_BUTTON_LEFT:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
			break;
		case SDL_BUTTON_MIDDLE:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::MiddleButton);
			break;
		case SDL_BUTTON_RIGHT:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::RightButton);
			break;
		}
	}

Time Pulses

SDL has a built-in millisecond counter which we will use for this example. There are other ways to use timers with SDL, but I chose this approach as it is simple to use, and provides decent precision.

Remember in the main loop where we stored the current "run-time" in seconds ? This value will be passed as a reference to inject_time_pulse function which in turn will set a new value to it.

CEGUI's interface for injecting time pulses requires that you pass the time in seconds that has passed since the last time pulse injection. Let's take a look at the function:

void inject_time_pulse(double& last_time_pulse)
{
	// get current "run-time" in seconds
	double t = 0.001*SDL_GetTicks();
 
	// inject the time that passed since the last call 
	CEGUI::System::getSingleton().injectTimePulse( float(t-last_time_pulse) );
 
	// store the new time as the last time
	last_time_pulse = t;
}
  • The first line gets the actual "run-time" when called.
  • The second line injects the time pulse as the difference between the current time and the last time.
  • The third line stores the current time as the last time a time pulse was injected.

This will work for about 47 days... After that the counter wraps to zero and it breaks (a single insanely invalid timepulse will be injected). I'll leave it up to you to fix that if it's a problem.

Change of window size

If the window size changes (e.g. switching to fullscreen mode), we have to tell the openGlRenderer what's the new window size. Otherwise e.g. the Fonts aren't scaled properly. Therefore we add an SDL Event Handler for SDL_VIDEORESIZE and submit the new window size to the openGlRenderer of CEGUI. Also, on a resize the OpenGL context is lost, meaning textures must be reloaded. The OpenGLRenderer provides functions to do this, grabTextures and restoreTextures.

...
      case SDL_VIDEORESIZE:
            renderer->grabTextures();
            //your resize code here, including the SDL_SetVideoMode call
            renderer->restoreTextures();
            renderer->setDisplaySize(CEGUI::Size(e.resize.w, e.resize.h));
            break;
 
...

Rendering

Now all that's left is renderingthe GUI.

void render_gui()
{
	// clear the colour buffer
	glClear( GL_COLOR_BUFFER_BIT );
 
	// render the GUI :)
	CEGUI::System::getSingleton().renderGUI();
 
	// Update the screen
	SDL_GL_SwapBuffers();
}

The line:

CEGUI::System::getSingleton().renderGUI();

does all the CEGUI magic and sets OpenGL state itself. As long as the viewport is setup, it will render the GUI.

Error Handling

The neat C++ architecture of CEGUI suggests that C++ exceptions are used for error handling. This is completely true. Whenever an error occurs, a sub-class of CEGUI::Exception is thrown.

There are many scenarios where an exception can be thrown. And whether or not these should be considered fatal depends on the application. To make sure you catch the CEGUI exceptions a regular try block is used. Like so:

try
{
	// do some cegui code
}
catch (CEGUI::Exception& e)
{
	fprintf(stderr,"CEGUI Exception occured: %s", e.getMessage().c_str());
	// you could quit here
}

This should provide you with the basic steps needed to get interactive with CEGUI in your SDL application. Have fun.

The Code

To compile under linux: gcc teste.cpp -I/usr/include/CEGUI/ -lSDL -lGL -lGLU -lCEGUIBase -lCEGUIOpenGLRenderer

This code uses release 0.5.0 of CEGUI.

/*
 * Adapted by: Johnny Souza - johnnysouza.js@gmail.com
 * Date: 19/01/07 17:00
 * Description: Using CEGUI with SDL and OpenGL
 */
 
#include <stdio.h>
#include <stdlib.h>
 
#include <SDL/SDL.h>
 
#include <CEGUI.h>
/* for release 0.4.X use:
 * #include <renderers/OpenGLGUIRenderer/openglrenderer.h>
 */
#include <RendererModules/OpenGLGUIRenderer/openglrenderer.h>
 
#include <GL/gl.h>
#include <GL/glu.h>
 
 
CEGUI::OpenGLRenderer *renderer;
 
void handle_mouse_down(Uint8 button)
{
	switch ( button ) {
		case SDL_BUTTON_LEFT:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
			break;
		case SDL_BUTTON_MIDDLE:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::MiddleButton);
			break;
		case SDL_BUTTON_RIGHT:
			CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::RightButton);
			break;
 
		case SDL_BUTTON_WHEELDOWN:
			CEGUI::System::getSingleton().injectMouseWheelChange( -1 );
			break;
		case SDL_BUTTON_WHEELUP:
			CEGUI::System::getSingleton().injectMouseWheelChange( +1 );
			break;
	}
}
 
 
void handle_mouse_up(Uint8 button)
{
	switch ( button )
	{
		case SDL_BUTTON_LEFT:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
			break;
		case SDL_BUTTON_MIDDLE:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::MiddleButton);
			break;
		case SDL_BUTTON_RIGHT:
			CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::RightButton);
			break;
	}
}
 
 
void inject_input (bool & must_quit) 
{
	SDL_Event e;
	/* go through all available events */
	while (SDL_PollEvent(&e)) {
		/* we use a switch to determine the event type */
		switch (e.type) {
			/* mouse motion handler */
			case SDL_MOUSEMOTION:
				/* we inject the mouse position directly. */
				CEGUI::System::getSingleton().injectMousePosition(static_cast<float>(e.motion.x),static_cast<float>(e.motion.y));
				break;
 
			/* mouse down handler */
			case SDL_MOUSEBUTTONDOWN:
				/* let a special function handle the mouse button down event */
				handle_mouse_down (e.button.button);
				break;
 
			/* mouse up handler */
			case SDL_MOUSEBUTTONUP:
				/* let a special function handle the mouse button up event */
				handle_mouse_up (e.button.button);
				break;
 
			/* key down */
			case SDL_KEYDOWN:
				/* to tell CEGUI that a key was pressed, we inject the scancode. */
				CEGUI::System::getSingleton().injectKeyDown(e.key.keysym.scancode);
				/* as for the character it's a litte more complicated.
				 * we'll use for translated unicode value.
				 * this is described in more detail below.
				 */
				if ((e.key.keysym.unicode & 0xFF80) == 0) {
					CEGUI::System::getSingleton().injectChar(e.key.keysym.unicode & 0x7F);
				}
				break;
 
			/* key up */
			case SDL_KEYUP:
				/* like before we inject the scancode directly. */
				CEGUI::System::getSingleton().injectKeyUp(e.key.keysym.scancode);
				break;
 
			/* WM quit event occured */
			case SDL_QUIT:
				must_quit = true;
				break;
 
			case SDL_VIDEORESIZE:
				renderer->setDisplaySize(CEGUI::Size(e.resize.w, e.resize.h));
				break;
		}
	}
}
 
 
void inject_time_pulse(double& last_time_pulse)
{
	/* get current "run-time" in seconds */
	double t = 0.001*SDL_GetTicks();
	/* inject the time that passed since the last call */
	CEGUI::System::getSingleton().injectTimePulse( float(t-last_time_pulse) );
	/* store the new time as the last time */
	last_time_pulse = t;
}
 
void render_gui()
{
	/* clear the colour buffer */
	glClear( GL_COLOR_BUFFER_BIT );
	/* render the GUI :) */
	CEGUI::System::getSingleton().renderGUI();
	/* Update the screen */
	SDL_GL_SwapBuffers();
}
 
 
void main_loop () 
{
	bool must_quit = false;
	/* get "run-time" in seconds */
	double last_time_pulse = 0.001*static_cast<double>(SDL_GetTicks());
	while (!must_quit) {
		inject_input (must_quit);
		inject_time_pulse (last_time_pulse);
		render_gui ();
	}
}
 
 
int main (int argc, char **argv) 
{
	SDL_Surface * screen;
	atexit (SDL_Quit);
	SDL_Init (SDL_INIT_VIDEO);
	screen = SDL_SetVideoMode (600, 480, 0, SDL_OPENGL);
	if (screen == NULL) {
		/* Se ainda não der, desiste! */ 
		fprintf (stderr, "Impossível ajustar ao vídeo: %s\n", SDL_GetError ());
		exit (1);
	}
	renderer = new CEGUI::OpenGLRenderer (0, 600, 480);
	new CEGUI::System (renderer);
	SDL_ShowCursor (SDL_DISABLE);
	SDL_EnableUNICODE (1);
	SDL_EnableKeyRepeat (SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
	main_loop();
}


--User:Lindquist 16:21, 8 May 2005 (BST)