Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: textures are rebuild on resize of the winodow (on winodws)

File size: 15.9 KB
Line 
1/*
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.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GRAPHICS
17
18#include "graphics_engine.h"
19#include "resource_manager.h"
20#include "event_handler.h"
21
22#include "render_2d.h"
23#include "text_engine.h"
24#include "light.h"
25#include "shader.h"
26#include "debug.h"
27
28#include "ini_parser.h"
29#include "substring.h"
30#include "text.h"
31
32
33#ifdef __WIN32__
34 #include "class_list.h"
35 #include "texture.h"
36 #include "list.h"
37#endif
38using namespace std;
39
40/**
41 *  standard constructor
42 */
43GraphicsEngine::GraphicsEngine ()
44{
45  this->setClassID(CL_GRAPHICS_ENGINE, "GraphicsEngine");
46  this->setName("GraphicsEngine");
47
48  this->isInit = false;
49
50  this->bDisplayFPS = false;
51  this->minFPS = 9999;
52  this->maxFPS = 0;
53
54  this->geTextCFPS = NULL;
55  this->geTextMaxFPS = NULL;
56  this->geTextMinFPS = NULL;
57
58  this->fullscreenFlag = 0;
59  this->videoFlags = 0;
60  this->screen = NULL;
61
62
63  // Hardware
64  this->hwRenderer = NULL;
65  this->hwVendor = NULL;
66  this->hwVersion = NULL;
67  this->hwExtensions = NULL;
68
69  // initialize the TextEngine
70  TextEngine::getInstance();
71}
72
73/**
74 *  The Pointer to this GraphicsEngine
75*/
76GraphicsEngine* GraphicsEngine::singletonRef = NULL;
77
78/**
79 *  destructs the graphicsEngine.
80*/
81GraphicsEngine::~GraphicsEngine ()
82{
83  // delete what has to be deleted here
84  delete this->geTextCFPS;
85  delete this->geTextMaxFPS;
86  delete this->geTextMinFPS;
87
88  delete[] this->hwRenderer;
89  delete[] this->hwVendor;
90  delete[] this->hwVersion;
91  delete this->hwExtensions;
92
93  //TextEngine
94  delete TextEngine::getInstance();
95  // render 2D
96  delete Render2D::getInstance();
97
98  SDL_QuitSubSystem(SDL_INIT_VIDEO);
99//   if (this->screen != NULL)
100//     SDL_FreeSurface(this->screen);
101
102  GraphicsEngine::singletonRef = NULL;
103}
104
105/**
106 * initializes the GraphicsEngine with default settings.
107 */
108int GraphicsEngine::init()
109{
110  if (this->isInit)
111    return -1;
112  this->initVideo(640, 480, 16);
113}
114
115/**
116 * loads the GraphicsEngine's settings from a given ini-file and section
117 * @param iniParser the iniParser to load from
118 * @param section the Section in the ini-file to load from
119 * @returns nothing usefull
120 */
121int GraphicsEngine::initFromIniFile(IniParser* iniParser)
122{
123  // looking if we are in fullscreen-mode
124  const char* fullscreen = iniParser->getVar(CONFIG_NAME_FULLSCREEN, CONFIG_SECTION_VIDEO, "0");
125  if (strchr(fullscreen, '1') || !strcasecmp(fullscreen, "true"))
126    this->fullscreenFlag = SDL_FULLSCREEN;
127
128  // looking if we are in fullscreen-mode
129  const char* textures = iniParser->getVar(CONFIG_NAME_TEXTURES, CONFIG_SECTION_VIDEO_ADVANCED, "0");
130  if (strchr(textures, '1') || !strcasecmp(textures, "true"))
131    this->texturesEnabled = true;
132  else
133    this->texturesEnabled = false;
134
135  // searching for a usefull resolution
136  SubString resolution(iniParser->getVar(CONFIG_NAME_RESOLUTION, CONFIG_SECTION_VIDEO, "640x480"), 'x');
137  //resolution.debug();
138
139  this->initVideo(atoi(resolution.getString(0)), atoi(resolution.getString(1)), 16);
140}
141
142
143
144/**
145 *  initializes the Video for openGL.
146 *
147 * This has to be done only once when starting orxonox.
148 */
149int GraphicsEngine::initVideo(unsigned int resX, unsigned int resY, unsigned int bbp)
150{
151  if (this->isInit)
152    return -1;
153  //   initialize SDL_VIDEO
154  if (SDL_InitSubSystem(SDL_INIT_VIDEO) == -1)
155  {
156    PRINTF(1)("could not initialize SDL Video\n");
157      //      return -1;
158  }
159  // initialize SDL_GL-settings
160  this->setGLattribs();
161
162  // setting the Video Flags.
163  this->videoFlags = SDL_OPENGL | SDL_HWPALETTE | SDL_RESIZABLE | SDL_DOUBLEBUF | SDL_GL_DOUBLEBUFFER;
164
165  /* query SDL for information about our video hardware */
166  const SDL_VideoInfo* videoInfo = SDL_GetVideoInfo ();
167  if( videoInfo == NULL)
168    {
169      PRINTF(1)("Failed getting Video Info :%s\n", SDL_GetError());
170      SDL_Quit ();
171    }
172  if( videoInfo->hw_available)
173    this->videoFlags |= SDL_HWSURFACE;
174  else
175    this->videoFlags |= SDL_SWSURFACE;
176  /*
177  if(VideoInfo -> blit_hw)
178    VideoFlags |= SDL_HWACCEL;
179  */
180    // setting up the Resolution
181  this->setResolution(resX, resY, bbp);
182
183  // GRABBING ALL GL-extensions
184  this->grabHardwareSettings();
185
186  // Enable default GL stuff
187  glEnable(GL_DEPTH_TEST);
188
189  Render2D::getInstance();
190
191  this->isInit = true;
192}
193
194/**
195 * sets the Window Captions and the Name of the icon.
196 * @param windowName The name of the Window
197 * @param icon The name of the Icon on the Disc
198 */
199void GraphicsEngine::setWindowName(const char* windowName, const char* icon)
200{
201  SDL_Surface* iconSurf = SDL_LoadBMP(icon);
202  if (iconSurf != NULL)
203  {
204    Uint32 colorkey = SDL_MapRGB(iconSurf->format, 0, 0, 0);
205    SDL_SetColorKey(iconSurf, SDL_SRCCOLORKEY, colorkey);
206    SDL_WM_SetIcon(iconSurf,NULL);
207    SDL_FreeSurface(iconSurf);
208  }
209
210  SDL_WM_SetCaption (windowName, icon);
211}
212
213
214/**
215 *  Sets the GL-attributes
216 */
217int GraphicsEngine::setGLattribs()
218{
219  // Set video mode
220  // TO DO: parse arguments for settings
221  //SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);
222  //SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5);
223  //SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5);
224  //SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);
225
226
227  SDL_GL_SetAttribute( SDL_GL_DOUBLEBUFFER, 1 );
228  SDL_GL_SetAttribute( SDL_GL_DEPTH_SIZE, 16);
229  SDL_GL_SetAttribute( SDL_GL_STENCIL_SIZE, 0);
230  SDL_GL_SetAttribute( SDL_GL_ACCUM_RED_SIZE, 0);
231  SDL_GL_SetAttribute( SDL_GL_ACCUM_GREEN_SIZE, 0);
232  SDL_GL_SetAttribute( SDL_GL_ACCUM_BLUE_SIZE, 0);
233  SDL_GL_SetAttribute( SDL_GL_ACCUM_ALPHA_SIZE, 0);
234}
235
236/**
237 * grabs the Hardware Specifics
238 * checks for all the different HW-types
239 */
240void GraphicsEngine::grabHardwareSettings()
241{
242  const char* renderer = (const char*) glGetString(GL_RENDERER);
243  const char* vendor   = (const char*) glGetString(GL_VENDOR);
244  const char* version  = (const char*) glGetString(GL_VERSION);
245  const char* extensions = (const char*) glGetString(GL_EXTENSIONS);
246
247//  printf("%s %s %s\n %s", renderer, vendor, version, extensions);
248
249  if (this->hwRenderer == NULL && renderer != NULL)
250  {
251    this->hwRenderer = new char[strlen(renderer)+1];
252    strcpy(this->hwRenderer, renderer);
253  }
254  if (this->hwVendor == NULL && vendor != NULL)
255  {
256    this->hwVendor = new char[strlen(vendor)+1];
257    strcpy(this->hwVendor, vendor);
258  }
259  if (this->hwVersion == NULL && version != NULL)
260  {
261    this->hwVersion = new char[strlen(version)+11];
262    strcpy(this->hwVersion, version);
263  }
264
265  if (this->hwExtensions == NULL && extensions != NULL)
266    this->hwExtensions = new SubString((char*)glGetString(GL_EXTENSIONS), " \n\t,");
267
268  PRINT(4)("Running on : %s %s %s\n", vendor, renderer, version);
269  PRINT(4)("Extensions:\n");
270  if (this->hwExtensions != NULL)
271    for (unsigned int i = 0; i < this->hwExtensions->getCount(); i++)
272      PRINT(4)("%d: %s\n", i, this->hwExtensions->getString(i));
273
274
275  // inizializing GLEW
276  GLenum err = glewInit();
277  if (GLEW_OK != err)
278  {
279    /* Problem: glewInit failed, something is seriously wrong. */
280    PRINTF(1)("%s\n", glewGetErrorString(err));
281  }
282  PRINTF(4)("Status: Using GLEW %s\n", glewGetString(GLEW_VERSION));
283
284}
285
286/**
287 *  sets the Resolution of the Screen to display the Graphics to.
288 * @param width The width of the window
289 * @param height The height of the window
290 * @param bpp bits per pixel
291 */
292int GraphicsEngine::setResolution(int width, int height, int bpp)
293{
294  this->resolutionX = width;
295  this->resolutionY = height;
296  this->bitsPerPixel = bpp;
297
298  if (this->screen != NULL)
299    SDL_FreeSurface(screen);
300  if((this->screen = SDL_SetVideoMode(this->resolutionX, this->resolutionY, this->bitsPerPixel, this->videoFlags | this->fullscreenFlag)) == NULL)
301    {
302      PRINTF(1)("Could not SDL_SetVideoMode(%d, %d, %d, %d): %s\n", this->resolutionX, this->resolutionY, this->bitsPerPixel, this->videoFlags, SDL_GetError());
303      //    SDL_Quit();
304      //    return -1;
305    }
306    glMatrixMode(GL_PROJECTION_MATRIX);
307    glLoadIdentity();
308    glViewport(0, 0, width, height);                     // Reset The Current Viewport
309
310    // REBUILDING TEXTURES (ON WINDOWS CONTEXT SWITCH)
311#ifdef __WIN32__
312    tList<BaseObject>* texList = ClassList::getList(CL_TEXTURE);
313    if (texList != NULL)
314      {
315        tIterator<BaseObject>* texIt = texList->getIterator();
316        Texture* reTex = static_cast<Texture*>(texIt->firstElement());
317        while (reTex != NULL)
318          {
319            reTex->rebuild();
320           
321            reTex = static_cast<Texture*>(texIt->nextElement());
322          }
323      }
324#endif /* __WIN32__ */
325}
326
327/**
328 *  sets Fullscreen mode
329 * @param fullscreen true if fullscreen, false if windowed
330*/
331void GraphicsEngine::setFullscreen(bool fullscreen)
332{
333  if (fullscreen)
334    fullscreenFlag = SDL_FULLSCREEN;
335  else
336    fullscreenFlag = 0;
337  this->setResolution(this->resolutionX, this->resolutionY, this->bitsPerPixel);
338}
339
340/**
341 *  sets the background color
342 * @param red the red part of the background
343 * @param blue the blue part of the background
344 * @param green the green part of the background
345 * @param alpha the alpha part of the background
346 */
347void GraphicsEngine::setBackgroundColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)
348{
349  glClearColor(red, green, blue, alpha);
350}
351
352/**
353 *  Signalhandler, for when the resolution has changed
354 * @param resizeInfo SDL information about the size of the new screen size
355 */
356int GraphicsEngine::resolutionChanged(const SDL_ResizeEvent& resizeInfo)
357{
358  this->setResolution(resizeInfo.w, resizeInfo.h, this->bitsPerPixel);
359}
360
361/**
362 * if Textures should be enabled
363*/
364bool GraphicsEngine::texturesEnabled = true;
365
366/**
367 *
368 * @param show if The mouse-cursor should be visible
369 */
370void GraphicsEngine::showMouse(bool show)
371{
372  if (show)
373    SDL_ShowCursor(SDL_ENABLE);
374  else
375    SDL_ShowCursor(SDL_DISABLE);
376}
377
378/**
379 *
380 * @returns The Visinility of the mouse-cursor (true if visible, false if it is invisible)
381 */
382bool GraphicsEngine::isMouseVisible()
383{
384  if (SDL_ShowCursor(SDL_QUERY) == SDL_ENABLE)
385    return true;
386  else
387    return false;
388}
389
390/**
391 *
392 * @param steal If the Winodow-Managers Events should be stolen to this app
393 * (steals the mouse, and all WM-clicks)
394 *
395 * This only happens, if the HARD-Debug-level is set to 0,1,2, because otherwise a Segfault could
396 * result in the loss of System-controll
397 */
398void GraphicsEngine::stealWMEvents(bool steal)
399{
400#if DEBUG < 3
401   if (steal)
402     SDL_WM_GrabInput(SDL_GRAB_ON);
403   else
404     SDL_WM_GrabInput(SDL_GRAB_OFF);
405#endif
406}
407
408/**
409 *
410 * @returns true if Events are stolen from the WM, false if not.
411 */
412bool GraphicsEngine::isStealingEvents()
413{
414   if (SDL_WM_GrabInput(SDL_GRAB_QUERY) == SDL_GRAB_ON)
415     return true;
416   else
417     return false;
418};
419
420/**
421 *  entering 2D Mode
422
423   this is a GL-Projection-mode, that is orthogonal, for placing the font in fron of everything else
424*/
425void GraphicsEngine::enter2DMode()
426{
427  //GraphicsEngine::storeMatrices();
428  SDL_Surface *screen = SDL_GetVideoSurface();
429
430  /* Note, there may be other things you need to change,
431     depending on how you have your OpenGL state set up.
432  */
433  glPushAttrib(GL_ENABLE_BIT);
434  glDisable(GL_DEPTH_TEST);
435  glDisable(GL_CULL_FACE);
436  glDisable(GL_LIGHTING);  // will be set back when leaving 2D-mode
437
438  glViewport(0, 0, screen->w, screen->h);
439
440  glMatrixMode(GL_PROJECTION);
441  glPushMatrix();
442  glLoadIdentity();
443
444  glOrtho(0.0, (GLdouble)screen->w, (GLdouble)screen->h, 0.0, 0.0, 1.0);
445
446  glMatrixMode(GL_MODELVIEW);
447  glPushMatrix();
448  glLoadIdentity();
449
450  glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
451}
452
453/**
454 *  leaves the 2DMode again also @see Font::enter2DMode()
455 */
456void GraphicsEngine::leave2DMode()
457{
458  glMatrixMode(GL_PROJECTION);
459  glPopMatrix();
460
461  glMatrixMode(GL_MODELVIEW);
462  glPopMatrix();
463
464  glPopAttrib();
465}
466
467/**
468 *  stores the GL_matrices
469 */
470void GraphicsEngine::storeMatrices()
471{
472  glGetDoublev(GL_PROJECTION_MATRIX, GraphicsEngine::projMat);
473  glGetDoublev(GL_MODELVIEW_MATRIX, GraphicsEngine::modMat);
474  glGetIntegerv(GL_VIEWPORT, GraphicsEngine::viewPort);
475}
476
477//! the stored ModelView Matrix.
478GLdouble GraphicsEngine::modMat[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
479//! the stored Projection Matrix
480GLdouble GraphicsEngine::projMat[16] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
481//! The ViewPort
482GLint GraphicsEngine::viewPort[4] = {0,0,0,0};
483
484
485
486/**
487 *  outputs all the Fullscreen modes.
488 */
489void GraphicsEngine::listModes()
490{
491  /* Get available fullscreen/hardware modes */
492  this->videoModes=SDL_ListModes(NULL, SDL_FULLSCREEN|SDL_HWSURFACE);
493
494  /* Check is there are any modes available */
495  if(this->videoModes == (SDL_Rect **)0){
496    PRINTF(1)("No modes available!\n");
497    exit(-1);
498  }
499
500  /* Check if our resolution is restricted */
501  if(this->videoModes == (SDL_Rect **)-1){
502    PRINTF(2)("All resolutions available.\n");
503  }
504  else{
505    /* Print valid modes */
506    PRINT(0)("Available Resoulution Modes are\n");
507    for(int i = 0; this->videoModes[i]; ++i)
508      PRINT(4)(" |  %d x %d\n", this->videoModes[i]->w, this->videoModes[i]->h);
509  }
510}
511
512/**
513 * checks wether a certain extension is availiable
514 * @param extension the Extension to check for (ex. GL_ARB_texture_env_dot3)
515 * @return true if it is, false otherwise
516 */
517bool GraphicsEngine::hwSupportsEXT(const char* extension)
518{
519  if (this->hwExtensions != NULL)
520    for (unsigned int i = 0; i < this->hwExtensions->getCount(); i++)
521      if (!strcmp(extension, this->hwExtensions->getString(i)))
522        return true;
523  return false;
524}
525
526/**
527 * updates everything that is to be updated in the GraphicsEngine
528 */
529void GraphicsEngine::update(float dt)
530{
531  Render2D::getInstance()->update(dt);
532}
533
534
535/**
536 *  ticks the Text
537 * @param dt the time passed
538 */
539void GraphicsEngine::tick(float dt)
540{
541  if( unlikely(this->bDisplayFPS))
542  {
543    this->currentFPS = 1.0/dt;
544    if( unlikely(this->currentFPS > this->maxFPS)) this->maxFPS = this->currentFPS;
545    if( unlikely(this->currentFPS < this->minFPS)) this->minFPS = this->currentFPS;
546
547#ifndef NO_TEXT
548      char tmpChar1[20];
549      sprintf(tmpChar1, "Current:  %4.0f", this->currentFPS);
550      this->geTextCFPS->setText(tmpChar1);
551      char tmpChar2[20];
552      sprintf(tmpChar2, "Max:    %4.0f", this->maxFPS);
553      this->geTextMaxFPS->setText(tmpChar2);
554      char tmpChar3[20];
555      sprintf(tmpChar3, "Min:    %4.0f", this->minFPS);
556      this->geTextMinFPS->setText(tmpChar3);
557#endif /* NO_TEXT */
558
559
560  }
561  Render2D::getInstance()->tick(dt);
562}
563
564
565void GraphicsEngine::draw() const
566{
567  LightManager::getInstance()->draw();
568  GraphicsEngine::storeMatrices();
569  Shader::suspendShader();
570
571  Render2D::getInstance()->draw(E2D_LAYER_ALL);
572  Shader::restoreShader();
573}
574
575/**
576 * displays the Frames per second
577 * @param display if the text should be displayed
578*/
579void GraphicsEngine::displayFPS(bool display)
580{
581#ifndef NO_TEXT
582  if( display )
583{
584  if (this->geTextCFPS == NULL)
585  {
586    this->geTextCFPS = new Text("fonts/arial_black.ttf", 15, TEXT_RENDER_DYNAMIC);
587    this->geTextCFPS->setName("curFPS");
588    this->geTextCFPS->setAlignment(TEXT_ALIGN_LEFT);
589    this->geTextCFPS->setAbsCoor2D(5, 0);
590  }
591  if (this->geTextMaxFPS == NULL)
592  {
593    this->geTextMaxFPS = new Text("fonts/arial_black.ttf", 15, TEXT_RENDER_DYNAMIC);
594    this->geTextMaxFPS->setName("MaxFPS");
595    this->geTextMaxFPS->setAlignment(TEXT_ALIGN_LEFT);
596    this->geTextMaxFPS->setAbsCoor2D(5, 20);
597  }
598  if (this->geTextMinFPS == NULL)
599  {
600    this->geTextMinFPS = new Text("fonts/arial_black.ttf", 15, TEXT_RENDER_DYNAMIC);
601    this->geTextMinFPS->setName("MinFPS");
602    this->geTextMinFPS->setAlignment(TEXT_ALIGN_LEFT);
603    this->geTextMinFPS->setAbsCoor2D(5, 40);
604  }
605}
606else
607{
608  delete this->geTextCFPS;
609  this->geTextCFPS = NULL;
610  delete this->geTextMaxFPS;
611  this->geTextMaxFPS = NULL;
612  delete this->geTextMinFPS;
613  this->geTextMinFPS = NULL;
614}
615  this->bDisplayFPS = display;
616#else
617  this->bDisplayFPS = false;
618#endif /* NO_TEXT */
619}
620
621
622/**
623  processes the events for the GraphicsEngine class
624* @param the event to handle
625 */
626void GraphicsEngine::process(const Event &event)
627{
628  switch (event.type)
629  {
630    case EV_VIDEO_RESIZE:
631      this->resolutionChanged(event.resize);
632      break;
633  }
634
635}
Note: See TracBrowser for help on using the repository browser.