Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/graphics_engine.cc @ 7894

Last change on this file since 7894 was 7871, checked in by bensch, 18 years ago

orxonox/trunk: Element2D is better updated (after PNode :)

File size: 17.2 KB
RevLine 
[4597]1/*
[1853]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
[1855]10
11   ### File Specific:
[3610]12   main-programmer: Benjamin Grauer
[1855]13   co-programmer: ...
[1853]14*/
15
[3610]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS
[1853]17
[3610]18#include "graphics_engine.h"
[7193]19#include "util/loading/resource_manager.h"
[6441]20#include "state.h"
[1853]21
[6142]22#include "world_entity.h"
23
[4849]24#include "render_2d.h"
[5347]25#include "text_engine.h"
[4850]26#include "light.h"
[5347]27#include "shader.h"
[3611]28#include "debug.h"
[5347]29
[7256]30#include "util/preferences.h"
[4770]31#include "substring.h"
[5344]32#include "text.h"
[4770]33
[5819]34#include "globals.h"
[5857]35#include "texture.h"
[5755]36
[6753]37#include "effects/graphics_effect.h"
[6772]38#include "effects/fog_effect.h"
[6884]39#include "effects/lense_flare.h"
[6753]40
[6522]41#include "shell_command.h"
42
[6815]43
44#include "parser/tinyxml/tinyxml.h"
[7193]45#include "util/loading/load_param.h"
46#include "util/loading/factory.h"
[6979]47#include "class_list.h"
[6815]48
[5755]49#ifdef __WIN32__
[6162]50 #include "static_model.h"
[5755]51#endif
[1856]52using namespace std;
[1853]53
[6522]54SHELL_COMMAND(wireframe, GraphicsEngine, wireframe);
55
[6976]56
[3245]57/**
[7871]58 * @brief standard constructor
[5262]59 */
[4597]60GraphicsEngine::GraphicsEngine ()
[3365]61{
[4597]62  this->setClassID(CL_GRAPHICS_ENGINE, "GraphicsEngine");
63  this->setName("GraphicsEngine");
[4784]64
65  this->isInit = false;
66
[4245]67  this->bDisplayFPS = false;
68  this->minFPS = 9999;
69  this->maxFPS = 0;
[4135]70
[5079]71  this->geTextCFPS = NULL;
72  this->geTextMaxFPS = NULL;
73  this->geTextMinFPS = NULL;
74
[4768]75  this->fullscreenFlag = 0;
[5225]76  this->videoFlags = 0;
77  this->screen = NULL;
[5260]78
[6979]79  // initialize the Modules
[5285]80  TextEngine::getInstance();
[6979]81  this->graphicsEffects = NULL;
82
[3611]83}
[3610]84
[3621]85/**
[7871]86 * @brief The Pointer to this GraphicsEngine
87 */
[3611]88GraphicsEngine* GraphicsEngine::singletonRef = NULL;
[3610]89
[3621]90/**
[7871]91 * @brief destructs the graphicsEngine.
[3611]92*/
[4597]93GraphicsEngine::~GraphicsEngine ()
[3611]94{
95  // delete what has to be deleted here
[7029]96  this->displayFPS( false );
[4849]97
[5286]98  //TextEngine
[5285]99  delete TextEngine::getInstance();
[5347]100  // render 2D
101  delete Render2D::getInstance();
[5079]102
[5225]103  SDL_QuitSubSystem(SDL_INIT_VIDEO);
[6979]104  //   if (this->screen != NULL)
105  //     SDL_FreeSurface(this->screen);
[5240]106
[4849]107  GraphicsEngine::singletonRef = NULL;
[3611]108}
109
[6815]110
[4830]111/**
[7871]112 * @brief loads the GraphicsEngine Specific Parameters.
[6815]113 * @param root: the XML-Element to load the Data From
114 */
115void GraphicsEngine::loadParams(const TiXmlElement* root)
116{
[6979]117  LoadParamXML(root, "GraphicsEffect", this, GraphicsEngine, loadGraphicsEffects)
118  .describe("loads a graphics effect");
[6815]119}
120
121
[6980]122
123
[6815]124/**
[6980]125 * @param root The XML-element to load GraphicsEffects from
126 */
127void GraphicsEngine::loadGraphicsEffects(const TiXmlElement* root)
128{
129  LOAD_PARAM_START_CYCLE(root, element);
130  {
[7035]131    PRINTF(4)("element is: %s\n", element->Value());
[6980]132    Factory::fabricate(element);
133  }
134  LOAD_PARAM_END_CYCLE(element);
135}
136
137
138
139/**
[7871]140 * @brief initializes the GraphicsEngine with default settings.
[4830]141 */
[4784]142int GraphicsEngine::init()
143{
[4830]144  if (this->isInit)
145    return -1;
146  this->initVideo(640, 480, 16);
[4784]147}
148
[3611]149/**
[7871]150 * @brief loads the GraphicsEngine's settings from a given ini-file and section
[4830]151 * @returns nothing usefull
152 */
[7256]153int GraphicsEngine::initFromPreferences()
[4830]154{
155  // looking if we are in fullscreen-mode
[7661]156  MultiType fullscreen = Preferences::getInstance()->getString(CONFIG_SECTION_VIDEO, CONFIG_NAME_FULLSCREEN, "0");
[7256]157
[7661]158  if (fullscreen.getBool())
[4830]159    this->fullscreenFlag = SDL_FULLSCREEN;
160
161  // looking if we are in fullscreen-mode
[7661]162  MultiType textures = Preferences::getInstance()->getString(CONFIG_SECTION_VIDEO_ADVANCED, CONFIG_NAME_TEXTURES, "1");
163    Texture::setTextureEnableState(textures.getBool());
[4830]164
165  // searching for a usefull resolution
[7256]166  SubString resolution(Preferences::getInstance()->getString(CONFIG_SECTION_VIDEO, CONFIG_NAME_RESOLUTION, "640x480").c_str(), 'x'); ///FIXME
[4833]167  //resolution.debug();
[7221]168  MultiType x = resolution.getString(0), y = resolution.getString(1);
169  this->initVideo(x.getInt(), y.getInt(), 16);
[4833]170
[6979]171  //   GraphicsEffect* fe = new FogEffect(NULL);
172  //   this->loadGraphicsEffect(fe);
173  //   fe->activate();
174  //   PRINTF(0)("--------------------------------------------------------------\n");
[6884]175
[6967]176  //LenseFlare* ge = new LenseFlare();
177  //this->loadGraphicsEffect(ge);
[6884]178
[6967]179  //ge->addFlare("pictures/lense_flare/sun.png"); //sun
180  //ge->addFlare("pictures/lense_flare/lens2.png"); //first halo
181  //ge->addFlare("pictures/lense_flare/lens1.png"); //small birst
182  //ge->addFlare("pictures/lense_flare/lens3.png"); //second halo
183  //ge->addFlare("pictures/lense_flare/lens4.png");
184  //ge->addFlare("pictures/lense_flare/lens1.png");
185  //ge->addFlare("pictures/lense_flare/lens3.png");
[6884]186
[6966]187  //ge->activate();
[4830]188}
189
190
191
192/**
[7871]193 * @brief initializes the Video for openGL.
[5346]194 *
195 * This has to be done only once when starting orxonox.
196 */
[4784]197int GraphicsEngine::initVideo(unsigned int resX, unsigned int resY, unsigned int bbp)
[3611]198{
[4784]199  if (this->isInit)
200    return -1;
[5024]201  //   initialize SDL_VIDEO
[5225]202  if (SDL_InitSubSystem(SDL_INIT_VIDEO) == -1)
[5024]203  {
204    PRINTF(1)("could not initialize SDL Video\n");
[6979]205    //      return -1;
[5024]206  }
[3617]207  // initialize SDL_GL-settings
208  this->setGLattribs();
[3610]209
[3617]210  // setting the Video Flags.
[7727]211  this->videoFlags = SDL_OPENGL | SDL_HWPALETTE | SDL_RESIZABLE ;
[3610]212
213  /* query SDL for information about our video hardware */
214  const SDL_VideoInfo* videoInfo = SDL_GetVideoInfo ();
215  if( videoInfo == NULL)
[6979]216  {
217    PRINTF(1)("Failed getting Video Info :%s\n", SDL_GetError());
218    SDL_Quit ();
219  }
[3610]220  if( videoInfo->hw_available)
[3611]221    this->videoFlags |= SDL_HWSURFACE;
[4597]222  else
[3611]223    this->videoFlags |= SDL_SWSURFACE;
[3610]224  /*
[3619]225  if(VideoInfo -> blit_hw)
[3610]226    VideoFlags |= SDL_HWACCEL;
227  */
[6979]228  // setting up the Resolution
[4784]229  this->setResolution(resX, resY, bbp);
[3611]230
[5260]231  // GRABBING ALL GL-extensions
232  this->grabHardwareSettings();
233
[3621]234  // Enable default GL stuff
235  glEnable(GL_DEPTH_TEST);
[4784]236
[4849]237  Render2D::getInstance();
[4833]238
[4784]239  this->isInit = true;
[3365]240}
[1853]241
[4770]242/**
[7871]243 * @brief sets the Window Captions and the Name of the icon.
[4619]244 * @param windowName The name of the Window
245 * @param icon The name of the Icon on the Disc
246 */
[7221]247void GraphicsEngine::setWindowName(const std::string& windowName, const std::string& icon)
[4619]248{
[7221]249  SDL_Surface* iconSurf = SDL_LoadBMP(icon.c_str());
[5240]250  if (iconSurf != NULL)
251  {
[5241]252    Uint32 colorkey = SDL_MapRGB(iconSurf->format, 0, 0, 0);
[5240]253    SDL_SetColorKey(iconSurf, SDL_SRCCOLORKEY, colorkey);
[7221]254    SDL_WM_SetIcon(iconSurf, NULL);
[5240]255    SDL_FreeSurface(iconSurf);
256  }
[5024]257
[7221]258  SDL_WM_SetCaption (windowName.c_str(), icon.c_str());
[4619]259}
260
261
262/**
[7871]263 * @brief Sets the GL-attributes
[5346]264 */
[4746]265int GraphicsEngine::setGLattribs()
[3617]266{
267  // Set video mode
268  // TO DO: parse arguments for settings
269  //SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);
270  //SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5);
271  //SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5);
272  //SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);
273
[4597]274
275  SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 );
276  SDL_GL_SetAttribute( SDL_GL_DEPTH_SIZE, 16);
277  SDL_GL_SetAttribute( SDL_GL_STENCIL_SIZE, 0);
[3617]278  SDL_GL_SetAttribute( SDL_GL_ACCUM_RED_SIZE, 0);
279  SDL_GL_SetAttribute( SDL_GL_ACCUM_GREEN_SIZE, 0);
280  SDL_GL_SetAttribute( SDL_GL_ACCUM_BLUE_SIZE, 0);
281  SDL_GL_SetAttribute( SDL_GL_ACCUM_ALPHA_SIZE, 0);
[7727]282
283  SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);      //Use at least 5 bits of Red
284  SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5);    //Use at least 5 bits of Green
285  SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5);     //Use at least 5 bits of Blue
286  SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);   //Use at least 16 bits for the depth buffer
287  SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);  //Enable double buffering
[3617]288}
289
[5261]290/**
[7871]291 * @brief grabs the Hardware Specifics
292 *
[5261]293 * checks for all the different HW-types
294 */
[5260]295void GraphicsEngine::grabHardwareSettings()
296{
297  const char* renderer = (const char*) glGetString(GL_RENDERER);
298  const char* vendor   = (const char*) glGetString(GL_VENDOR);
299  const char* version  = (const char*) glGetString(GL_VERSION);
300  const char* extensions = (const char*) glGetString(GL_EXTENSIONS);
301
[6979]302  //  printf("%s %s %s\n %s", renderer, vendor, version, extensions);
[5260]303
[7221]304  if (renderer != NULL)
[5260]305  {
[7221]306    this->hwRenderer == renderer;
[5260]307  }
[7221]308  if (vendor != NULL)
[5260]309  {
[7221]310    this->hwVendor == vendor;
[5260]311  }
[7221]312  if (version != NULL)
[5260]313  {
[7221]314    this->hwVersion == version;
[5260]315  }
316
[7221]317  if (extensions != NULL)
318    this->hwExtensions.split(extensions, " \n\t,");
[5260]319
[6634]320  PRINT(4)("Running on : vendor: %s,  renderer: %s,  version:%s\n", vendor, renderer, version);
[5260]321  PRINT(4)("Extensions:\n");
[7319]322  for (unsigned int i = 0; i < this->hwExtensions.size(); i++)
323    PRINT(4)("%d: %s\n", i, this->hwExtensions[i].c_str());
[5263]324
325
326  // inizializing GLEW
327  GLenum err = glewInit();
328  if (GLEW_OK != err)
329  {
330    /* Problem: glewInit failed, something is seriously wrong. */
331    PRINTF(1)("%s\n", glewGetErrorString(err));
332  }
333  PRINTF(4)("Status: Using GLEW %s\n", glewGetString(GLEW_VERSION));
[5260]334}
335
[6162]336
[3621]337/**
[7871]338 * @brief sets the Resolution of the Screen to display the Graphics to.
[4836]339 * @param width The width of the window
340 * @param height The height of the window
341 * @param bpp bits per pixel
[5346]342 */
[3619]343int GraphicsEngine::setResolution(int width, int height, int bpp)
[3610]344{
[3611]345  this->resolutionX = width;
346  this->resolutionY = height;
347  this->bitsPerPixel = bpp;
[6441]348  State::setResolution( width, height);
[4739]349
[5255]350  if (this->screen != NULL)
[5237]351    SDL_FreeSurface(screen);
[4769]352  if((this->screen = SDL_SetVideoMode(this->resolutionX, this->resolutionY, this->bitsPerPixel, this->videoFlags | this->fullscreenFlag)) == NULL)
[6979]353  {
354    PRINTF(1)("Could not SDL_SetVideoMode(%d, %d, %d, %d): %s\n", this->resolutionX, this->resolutionY, this->bitsPerPixel, this->videoFlags, SDL_GetError());
355    //    SDL_Quit();
356    //    return -1;
357  }
358  glViewport(0, 0, width, height);                     // Reset The Current Viewport
[5755]359
[5790]360#ifdef __WIN32__
[6979]361  // REBUILDING TEXTURES (ON WINDOWS CONTEXT SWITCH)
362  const std::list<BaseObject*>* texList = ClassList::getList(CL_TEXTURE);
363  if (texList != NULL)
364  {
365    std::list<BaseObject*>::const_iterator reTex;
366    for (reTex = texList->begin(); reTex != texList->end(); reTex++)
367      dynamic_cast<Texture*>(*reTex)->rebuild();
368  }
369  // REBUILDING MODELS
370  const std::list<BaseObject*>* modelList = ClassList::getList(CL_STATIC_MODEL);
371  if (texList != NULL)
372  {
373    std::list<BaseObject*>::const_iterator reModel;
374    for (reModel = modelList->begin(); reModel != modelList->end(); reModel++)
375      dynamic_cast<StaticModel*>(*reModel)->rebuild();
376  }
[5755]377#endif /* __WIN32__ */
[4135]378}
[3610]379
[4458]380/**
[7871]381 * @brief sets Fullscreen mode
[4836]382 * @param fullscreen true if fullscreen, false if windowed
[4458]383*/
[4135]384void GraphicsEngine::setFullscreen(bool fullscreen)
385{
[4768]386  if (fullscreen)
[5789]387    this->fullscreenFlag = SDL_FULLSCREEN;
[4768]388  else
[5789]389    this->fullscreenFlag = 0;
[4135]390  this->setResolution(this->resolutionX, this->resolutionY, this->bitsPerPixel);
[3543]391}
[3617]392
[4458]393/**
[7871]394 * @brief sets the background color
[4836]395 * @param red the red part of the background
396 * @param blue the blue part of the background
397 * @param green the green part of the background
398 * @param alpha the alpha part of the background
[5346]399 */
[4374]400void GraphicsEngine::setBackgroundColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
401{
402  glClearColor(red, green, blue, alpha);
403}
404
[3621]405/**
[7871]406 * @brief Signalhandler, for when the resolution has changed
[4836]407 * @param resizeInfo SDL information about the size of the new screen size
[5346]408 */
[4782]409int GraphicsEngine::resolutionChanged(const SDL_ResizeEvent& resizeInfo)
[3619]410{
[4782]411  this->setResolution(resizeInfo.w, resizeInfo.h, this->bitsPerPixel);
[3619]412}
[3617]413
[3622]414/**
[4833]415
416/**
[7871]417 * @brief entering 2D Mode
418 * this is a GL-Projection-mode, that is orthogonal, for placing the font in fron of everything else
419 */
[4746]420void GraphicsEngine::enter2DMode()
[3790]421{
[4955]422  //GraphicsEngine::storeMatrices();
[3790]423  SDL_Surface *screen = SDL_GetVideoSurface();
[4597]424
[3790]425  /* Note, there may be other things you need to change,
426     depending on how you have your OpenGL state set up.
427  */
428  glPushAttrib(GL_ENABLE_BIT);
429  glDisable(GL_DEPTH_TEST);
430  glDisable(GL_CULL_FACE);
431  glDisable(GL_LIGHTING);  // will be set back when leaving 2D-mode
[3617]432
[3790]433  glMatrixMode(GL_PROJECTION);
434  glPushMatrix();
435  glLoadIdentity();
436  glOrtho(0.0, (GLdouble)screen->w, (GLdouble)screen->h, 0.0, 0.0, 1.0);
[4597]437
[3790]438  glMatrixMode(GL_MODELVIEW);
439  glPushMatrix();
440  glLoadIdentity();
441}
[3617]442
[3790]443/**
[7871]444 * @brief leaves the 2DMode again also @see Font::enter2DMode()
[5346]445 */
[4746]446void GraphicsEngine::leave2DMode()
[3790]447{
[4597]448
[4834]449  glMatrixMode(GL_MODELVIEW);
[3790]450  glPopMatrix();
[4597]451
[6780]452  glMatrixMode(GL_PROJECTION);
453  glPopMatrix();
454
[3790]455  glPopAttrib();
456}
[3622]457
[7871]458/**
459 * @brief changes to wireframe-mode.
460 */
[6522]461void GraphicsEngine::wireframe()
462{
[6523]463  glPolygonMode(GL_FRONT, GL_LINE);
[6522]464}
465
[3844]466/**
[7871]467 * @brief stores the GL_matrices
[5346]468 */
[4746]469void GraphicsEngine::storeMatrices()
[3844]470{
471  glGetDoublev(GL_PROJECTION_MATRIX, GraphicsEngine::projMat);
472  glGetDoublev(GL_MODELVIEW_MATRIX, GraphicsEngine::modMat);
473  glGetIntegerv(GL_VIEWPORT, GraphicsEngine::viewPort);
474}
[3622]475
[3844]476//! the stored ModelView Matrix.
477GLdouble GraphicsEngine::modMat[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
478//! the stored Projection Matrix
479GLdouble GraphicsEngine::projMat[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
480//! The ViewPort
481GLint GraphicsEngine::viewPort[4] = {0,0,0,0};
[3790]482
483
[3844]484
[3617]485/**
[7871]486 * @brief outputs all the Fullscreen modes.
[5346]487 */
[4746]488void GraphicsEngine::listModes()
[3617]489{
490  /* Get available fullscreen/hardware modes */
491  this->videoModes=SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_HWSURFACE);
[4597]492
[3617]493  /* Check is there are any modes available */
[6979]494  if(this->videoModes == (SDL_Rect **)0)
495  {
[3617]496    PRINTF(1)("No modes available!\n");
497    exit(-1);
498  }
[4597]499
[3617]500  /* Check if our resolution is restricted */
[6979]501  if(this->videoModes == (SDL_Rect **)-1)
502  {
[4135]503    PRINTF(2)("All resolutions available.\n");
[3617]504  }
[6979]505  else
506  {
[3617]507    /* Print valid modes */
508    PRINT(0)("Available Resoulution Modes are\n");
509    for(int i = 0; this->videoModes[i]; ++i)
[4135]510      PRINT(4)(" |  %d x %d\n", this->videoModes[i]->w, this->videoModes[i]->h);
[3617]511  }
[4245]512}
513
[4458]514/**
[7871]515 * @brief checks wether a certain extension is availiable
[5261]516 * @param extension the Extension to check for (ex. GL_ARB_texture_env_dot3)
517 * @return true if it is, false otherwise
518 */
[7221]519bool GraphicsEngine::hwSupportsEXT(const std::string& extension)
[5261]520{
[7319]521  for (unsigned int i = 0; i < this->hwExtensions.size(); i++)
[7221]522    if ( this->hwExtensions.getString(i) == extension)
523      return true;
[5261]524  return false;
525}
526
527/**
[7871]528 * @brief updates everything that is to be updated in the GraphicsEngine
[5084]529 */
530void GraphicsEngine::update(float dt)
531{
[5406]532  Render2D::getInstance()->update(dt);
[5084]533}
534
535
536/**
[7871]537 * @brief ticks the Text
[4836]538 * @param dt the time passed
[5346]539 */
540void GraphicsEngine::tick(float dt)
[4245]541{
[4458]542  if( unlikely(this->bDisplayFPS))
[4849]543  {
544    this->currentFPS = 1.0/dt;
545    if( unlikely(this->currentFPS > this->maxFPS)) this->maxFPS = this->currentFPS;
546    if( unlikely(this->currentFPS < this->minFPS)) this->minFPS = this->currentFPS;
[4597]547
[4536]548#ifndef NO_TEXT
[6979]549    char tmpChar1[20];
550    sprintf(tmpChar1, "Current:  %4.0f", this->currentFPS);
551    this->geTextCFPS->setText(tmpChar1);
552    char tmpChar2[20];
553    sprintf(tmpChar2, "Max:    %4.0f", this->maxFPS);
554    this->geTextMaxFPS->setText(tmpChar2);
555    char tmpChar3[20];
556    sprintf(tmpChar3, "Min:    %4.0f", this->minFPS);
557    this->geTextMinFPS->setText(tmpChar3);
[4536]558#endif /* NO_TEXT */
[4849]559
[6815]560  }
[4849]561
562  Render2D::getInstance()->tick(dt);
[6815]563
564  // tick the graphics effects
[6979]565  if (this->graphicsEffects != NULL || (this->graphicsEffects = ClassList::getList(CL_GRAPHICS_EFFECT)) != NULL)
566  {
567    std::list<BaseObject*>::const_iterator it;
568    for (it = this->graphicsEffects->begin(); it != this->graphicsEffects->end(); it++)
569      dynamic_cast<GraphicsEffect*>(*it)->tick(dt);
570  }
[4245]571}
[4597]572
[7871]573/**
574 * @brief draws all Elements that should be displayed on the Background.
575 */
[7840]576void GraphicsEngine::drawBackgroundElements() const
577{
578  Render2D::getInstance()->draw(E2D_LAYER_BELOW_ALL, E2D_LAYER_BELOW_ALL);
579}
[4849]580
581void GraphicsEngine::draw() const
582{
[7221]583  //  LightManager::getInstance()->draw();
[6778]584
[6979]585  if (this->graphicsEffects != NULL)
586  {
587    //draw the graphics effects
588    list<BaseObject*>::const_iterator it;
589    for (it = this->graphicsEffects->begin(); it != this->graphicsEffects->end(); it++)
590      dynamic_cast<GraphicsEffect*>(*it)->draw();
591  }
[7428]592  GraphicsEngine::storeMatrices();
593  Shader::suspendShader();
[7840]594  Render2D::getInstance()->draw(E2D_LAYER_BOTTOM, E2D_LAYER_ABOVE_ALL);
[7428]595  Shader::restoreShader();
[4849]596}
597
[6142]598
[4458]599/**
[7871]600 * @brief displays the Frames per second
[4836]601 * @param display if the text should be displayed
[4458]602*/
[4245]603void GraphicsEngine::displayFPS(bool display)
604{
[4536]605#ifndef NO_TEXT
[5346]606  if( display )
607  {
[6979]608    if (this->geTextCFPS == NULL)
609    {
610      this->geTextCFPS = new Text("fonts/arial_black.ttf", 15);
611      this->geTextCFPS->setName("curFPS");
612      this->geTextCFPS->setAlignment(TEXT_ALIGN_LEFT);
613      this->geTextCFPS->setAbsCoor2D(5, 0);
614    }
615    if (this->geTextMaxFPS == NULL)
616    {
617      this->geTextMaxFPS = new Text("fonts/arial_black.ttf", 15);
618      this->geTextMaxFPS->setName("MaxFPS");
619      this->geTextMaxFPS->setAlignment(TEXT_ALIGN_LEFT);
620      this->geTextMaxFPS->setAbsCoor2D(5, 20);
621    }
622    if (this->geTextMinFPS == NULL)
623    {
624      this->geTextMinFPS = new Text("fonts/arial_black.ttf", 15);
625      this->geTextMinFPS->setName("MinFPS");
626      this->geTextMinFPS->setAlignment(TEXT_ALIGN_LEFT);
627      this->geTextMinFPS->setAbsCoor2D(5, 40);
628    }
[5346]629  }
[6979]630  else
[5346]631  {
[6979]632    delete this->geTextCFPS;
633    this->geTextCFPS = NULL;
634    delete this->geTextMaxFPS;
635    this->geTextMaxFPS = NULL;
636    delete this->geTextMinFPS;
637    this->geTextMinFPS = NULL;
[5346]638  }
639  this->bDisplayFPS = display;
640#else
641  this->bDisplayFPS = false;
[4536]642#endif /* NO_TEXT */
[3617]643}
[4245]644
[4597]645
[4817]646/**
[7871]647 * @brief processes the events for the GraphicsEngine class
648 * @param the event to handle
[4817]649 */
650void GraphicsEngine::process(const Event &event)
651{
652  switch (event.type)
653  {
[7221]654  case EV_VIDEO_RESIZE:
655    this->resolutionChanged(event.resize);
656    break;
[4817]657  }
[6753]658}
Note: See TracBrowser for help on using the repository browser.