Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 8490 was 8490, checked in by patrick, 18 years ago

merged the bsp branche back to trunk

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