12086fc701190ce0181480eb8f015c3fe0ad0394
[supertux.git] / src / video / gl / gl_renderer.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "video/gl/gl_renderer.hpp"
18
19 #include <iomanip>
20 #include <iostream>
21 #include <math.h>
22 #include <physfs.h>
23
24 #include "supertux/gameconfig.hpp"
25 #include "supertux/globals.hpp"
26 #include "video/drawing_request.hpp"
27 #include "video/gl/gl_surface_data.hpp"
28 #include "video/gl/gl_texture.hpp"
29 #define LIGHTMAP_DIV 5
30
31 #ifdef GL_VERSION_ES_CM_1_0
32 #  define glOrtho glOrthof
33 #endif
34
35 namespace 
36 {
37
38 inline void intern_draw(float left, float top, float right, float bottom,
39                         float uv_left, float uv_top,
40                         float uv_right, float uv_bottom,
41                         float angle, float alpha,
42                         const Color& color,
43                         const Blend& blend,
44                         DrawingEffect effect)
45 {
46   if(effect & HORIZONTAL_FLIP)
47     std::swap(uv_left, uv_right);
48  
49   if(effect & VERTICAL_FLIP) 
50     std::swap(uv_top, uv_bottom);
51
52   // unrotated blit
53   glBlendFunc(blend.sfactor, blend.dfactor);
54   glColor4f(color.red, color.green, color.blue, color.alpha * alpha);
55  
56   if (angle == 0.0f) {
57     float vertices[] = {
58       left, top,
59       right, top,
60       right, bottom,
61       left, bottom,
62     };
63     glVertexPointer(2, GL_FLOAT, 0, vertices);
64
65     float uvs[] = {
66       uv_left, uv_top,
67       uv_right, uv_top,
68       uv_right, uv_bottom,
69       uv_left, uv_bottom,
70     };
71     glTexCoordPointer(2, GL_FLOAT, 0, uvs);
72
73     glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
74   } else {
75     // rotated blit
76     float center_x = (left + right) / 2;
77     float center_y = (top + bottom) / 2;
78
79     float sa = sinf(angle/180.0f*M_PI);
80     float ca = cosf(angle/180.0f*M_PI);
81
82     left  -= center_x;
83     right -= center_x;
84
85     top    -= center_y;
86     bottom -= center_y;
87
88     float vertices[] = {
89       left*ca - top*sa + center_x, left*sa + top*ca + center_y,
90       right*ca - top*sa + center_x, right*sa + top*ca + center_y,
91       right*ca - bottom*sa + center_x, right*sa + bottom*ca + center_y,
92       left*ca - bottom*sa + center_x, left*sa + bottom*ca + center_y
93     };
94     glVertexPointer(2, GL_FLOAT, 0, vertices);
95
96     float uvs[] = {
97       uv_left, uv_top,
98       uv_right, uv_top,
99       uv_right, uv_bottom,
100       uv_left, uv_bottom,
101     };
102     glTexCoordPointer(2, GL_FLOAT, 0, uvs);
103
104     glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
105   }
106
107   // FIXME: find a better way to restore the blend mode
108   glColor4f(1.0f, 1.0f, 1.0f, 1.0f);
109   glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
110 }
111
112 } // namespace
113
114 GLRenderer::GLRenderer() :
115   desktop_width(-1),
116   desktop_height(-1)
117 {
118   Renderer::instance_ = this;
119
120 #if SDL_MAJOR_VERSION > 1 || SDL_MINOR_VERSION > 2 || (SDL_MINOR_VERSION == 2 && SDL_PATCHLEVEL >= 10)
121   // unfortunately only newer SDLs have these infos.
122   // This must be called before SDL_SetVideoMode() or it will return
123   // the window size instead of the desktop size.
124   const SDL_VideoInfo *info = SDL_GetVideoInfo();
125   if (info)
126   {
127     desktop_width  = info->current_w;
128     desktop_height = info->current_h;     
129   }
130 #endif
131
132   if(texture_manager != 0)
133     texture_manager->save_textures();
134
135 #ifdef SDL_GL_SWAP_CONTROL
136   if(config->try_vsync) {
137     /* we want vsync for smooth scrolling */
138     SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1);
139   }
140 #endif
141
142   SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
143
144   // FIXME: Hu? 16bit rendering?
145   SDL_GL_SetAttribute(SDL_GL_RED_SIZE,   5);
146   SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5);
147   SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE,  5);
148
149   int flags = SDL_OPENGL;
150   int width;
151   int height;
152
153   if(g_config->use_fullscreen)
154   {
155     flags |= SDL_FULLSCREEN;
156     width  = g_config->fullscreen_size.width;
157     height = g_config->fullscreen_size.height;
158   }
159   else
160   {
161     //      flags |= SDL_RESIZABLE;
162     width  = g_config->window_size.width;
163     height = g_config->window_size.height;
164   }
165
166   int bpp = 0;
167   SDL_Surface *screen = SDL_SetVideoMode(width, height, bpp, flags);
168
169   if(screen == 0) {
170     std::stringstream msg;
171     msg << "Couldn't set video mode (" << width << "x" << height
172         << "-" << bpp << "bpp): " << SDL_GetError();
173     throw std::runtime_error(msg.str());
174   }
175
176   // setup opengl state and transform
177   glDisable(GL_DEPTH_TEST);
178   glDisable(GL_CULL_FACE);
179   glEnable(GL_TEXTURE_2D);
180   glEnable(GL_BLEND);
181   glEnableClientState(GL_VERTEX_ARRAY);
182   glEnableClientState(GL_TEXTURE_COORD_ARRAY);
183   glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
184
185   // Init the projection matrix, viewport and stuff
186   apply_config();
187   
188   if(texture_manager == 0)
189     texture_manager = new TextureManager();
190   else
191     texture_manager->reload_textures();
192   
193 #ifndef GL_VERSION_ES_CM_1_0
194   GLenum err = glewInit();
195   if (GLEW_OK != err)
196   {
197     std::ostringstream out;
198     out << "GLRenderer: " << glewGetErrorString(err);
199     throw std::runtime_error(out.str());
200   }
201   log_info << "Using GLEW " << glewGetString(GLEW_VERSION) << std::endl;
202 #endif
203 }
204
205 GLRenderer::~GLRenderer()
206 {
207 }
208
209 void
210 GLRenderer::draw_surface(const DrawingRequest& request)
211 {
212   const Surface* surface = (const Surface*) request.request_data;
213   GLTexture *gltexture = dynamic_cast<GLTexture *>(surface->get_texture());
214   GLSurfaceData *surface_data = reinterpret_cast<GLSurfaceData *>(surface->get_surface_data());
215
216   glBindTexture(GL_TEXTURE_2D, gltexture->get_handle());
217   intern_draw(request.pos.x, request.pos.y,
218               request.pos.x + surface->get_width(),
219               request.pos.y + surface->get_height(),
220               surface_data->get_uv_left(),
221               surface_data->get_uv_top(),
222               surface_data->get_uv_right(),
223               surface_data->get_uv_bottom(),
224               request.angle,
225               request.alpha,
226               request.color,
227               request.blend,
228               request.drawing_effect);
229 }
230
231 void
232 GLRenderer::draw_surface_part(const DrawingRequest& request)
233 {
234   const SurfacePartRequest* surfacepartrequest
235     = (SurfacePartRequest*) request.request_data;
236   const Surface *surface = surfacepartrequest->surface;
237   GLTexture *gltexture = dynamic_cast<GLTexture *>(surface->get_texture());
238   GLSurfaceData *surface_data = reinterpret_cast<GLSurfaceData *>(surface->get_surface_data());
239
240   float uv_width = surface_data->get_uv_right() - surface_data->get_uv_left();
241   float uv_height = surface_data->get_uv_bottom() - surface_data->get_uv_top();
242
243   float uv_left = surface_data->get_uv_left() + (uv_width * surfacepartrequest->source.x) / surface->get_width();
244   float uv_top = surface_data->get_uv_top() + (uv_height * surfacepartrequest->source.y) / surface->get_height();
245   float uv_right = surface_data->get_uv_left() + (uv_width * (surfacepartrequest->source.x + surfacepartrequest->size.x)) / surface->get_width();
246   float uv_bottom = surface_data->get_uv_top() + (uv_height * (surfacepartrequest->source.y + surfacepartrequest->size.y)) / surface->get_height();
247
248   glBindTexture(GL_TEXTURE_2D, gltexture->get_handle());
249   intern_draw(request.pos.x, request.pos.y,
250               request.pos.x + surfacepartrequest->size.x,
251               request.pos.y + surfacepartrequest->size.y,
252               uv_left,
253               uv_top,
254               uv_right,
255               uv_bottom,
256               0.0,
257               request.alpha,
258               request.color,
259               Blend(),
260               request.drawing_effect);
261 }
262
263 void
264 GLRenderer::draw_gradient(const DrawingRequest& request)
265 {
266   const GradientRequest* gradientrequest 
267     = (GradientRequest*) request.request_data;
268   const Color& top = gradientrequest->top;
269   const Color& bottom = gradientrequest->bottom;
270
271   glDisable(GL_TEXTURE_2D);
272   glDisableClientState(GL_TEXTURE_COORD_ARRAY);
273   glEnableClientState(GL_COLOR_ARRAY);
274
275   float vertices[] = {
276     0, 0,
277     SCREEN_WIDTH, 0,
278     SCREEN_WIDTH, SCREEN_HEIGHT,
279     0, SCREEN_HEIGHT
280   };
281   glVertexPointer(2, GL_FLOAT, 0, vertices);
282
283   float colors[] = {
284     top.red, top.green, top.blue, top.alpha,
285     top.red, top.green, top.blue, top.alpha,
286     bottom.red, bottom.green, bottom.blue, bottom.alpha,
287     bottom.red, bottom.green, bottom.blue, bottom.alpha,
288   };
289   glColorPointer(4, GL_FLOAT, 0, colors);
290
291   glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
292
293   glDisableClientState(GL_COLOR_ARRAY);
294   glEnableClientState(GL_TEXTURE_COORD_ARRAY);
295
296   glEnable(GL_TEXTURE_2D);
297   glColor4f(1, 1, 1, 1);
298 }
299
300 void
301 GLRenderer::draw_filled_rect(const DrawingRequest& request)
302 {
303   const FillRectRequest* fillrectrequest
304     = (FillRectRequest*) request.request_data;
305
306   glDisable(GL_TEXTURE_2D);
307   glColor4f(fillrectrequest->color.red, fillrectrequest->color.green,
308             fillrectrequest->color.blue, fillrectrequest->color.alpha);
309   glDisableClientState(GL_TEXTURE_COORD_ARRAY);
310   
311   if (fillrectrequest->radius != 0.0f)
312   {
313     // draw round rect
314     // Keep radius in the limits, so that we get a circle instead of
315     // just graphic junk
316     float radius = std::min(fillrectrequest->radius,
317                             std::min(fillrectrequest->size.x/2,
318                                      fillrectrequest->size.y/2));
319
320     // inner rectangle
321     Rect irect(request.pos.x    + radius,
322                request.pos.y    + radius,
323                request.pos.x + fillrectrequest->size.x - radius,
324                request.pos.y + fillrectrequest->size.y - radius);
325
326     int n = 8;
327     int p = 0;
328     std::vector<float> vertices((n+1) * 4 * 2);
329
330     for(int i = 0; i <= n; ++i)
331     {
332       float x = sinf(i * (M_PI/2) / n) * radius;
333       float y = cosf(i * (M_PI/2) / n) * radius;
334
335       vertices[p++] = irect.get_left() - x;
336       vertices[p++] = irect.get_top()  - y;
337
338       vertices[p++] = irect.get_right() + x;
339       vertices[p++] = irect.get_top()   - y;
340     }
341
342     for(int i = 0; i <= n; ++i)
343     {
344       float x = cosf(i * (M_PI/2) / n) * radius;
345       float y = sinf(i * (M_PI/2) / n) * radius;
346
347       vertices[p++] = irect.get_left()   - x;
348       vertices[p++] = irect.get_bottom() + y;
349
350       vertices[p++] = irect.get_right()  + x;
351       vertices[p++] = irect.get_bottom() + y;
352     }
353
354     glVertexPointer(2, GL_FLOAT, 0, &*vertices.begin());
355     glDrawArrays(GL_TRIANGLE_STRIP, 0,  vertices.size()/2);
356   }
357   else
358   {
359     float x = request.pos.x;
360     float y = request.pos.y;
361     float w = fillrectrequest->size.x;
362     float h = fillrectrequest->size.y;
363
364     float vertices[] = {
365       x,   y,
366       x+w, y,
367       x+w, y+h,
368       x,   y+h
369     };
370     glVertexPointer(2, GL_FLOAT, 0, vertices);
371
372     glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
373   }
374
375   glEnableClientState(GL_TEXTURE_COORD_ARRAY);
376   glEnable(GL_TEXTURE_2D);
377   glColor4f(1, 1, 1, 1);
378 }
379
380 void
381 GLRenderer::draw_inverse_ellipse(const DrawingRequest& request)
382 {
383   const InverseEllipseRequest* ellipse = (InverseEllipseRequest*)request.request_data;
384
385   glDisable(GL_TEXTURE_2D);
386   glColor4f(ellipse->color.red,  ellipse->color.green,
387             ellipse->color.blue, ellipse->color.alpha);
388     
389   float x = request.pos.x;
390   float y = request.pos.y;
391   float w = ellipse->size.x/2.0f;
392   float h = ellipse->size.y/2.0f;
393
394   static const int slices = 16;
395   static const int points = (slices+1) * 12;
396
397   float vertices[points * 2];
398   int   p = 0;
399
400   // Bottom
401   vertices[p++] = SCREEN_WIDTH; vertices[p++] = SCREEN_HEIGHT;
402   vertices[p++] = 0;            vertices[p++] = SCREEN_HEIGHT;
403   vertices[p++] = x;            vertices[p++] = y+h;
404
405   // Top
406   vertices[p++] = SCREEN_WIDTH; vertices[p++] = 0;
407   vertices[p++] = 0;            vertices[p++] = 0;
408   vertices[p++] = x;            vertices[p++] = y-h;
409
410   // Left
411   vertices[p++] = SCREEN_WIDTH; vertices[p++] = 0;
412   vertices[p++] = SCREEN_WIDTH; vertices[p++] = SCREEN_HEIGHT;
413   vertices[p++] = x+w;          vertices[p++] = y;
414
415   // Right
416   vertices[p++] = 0;            vertices[p++] = 0;
417   vertices[p++] = 0;            vertices[p++] = SCREEN_HEIGHT;
418   vertices[p++] = x-w;          vertices[p++] = y;
419
420   for(int i = 0; i < slices; ++i)
421   {
422     float ex1 = sinf(M_PI/2 / slices * i) * w;
423     float ey1 = cosf(M_PI/2 / slices * i) * h;
424
425     float ex2 = sinf(M_PI/2 / slices * (i+1)) * w;
426     float ey2 = cosf(M_PI/2 / slices * (i+1)) * h;
427
428     // Bottom/Right
429     vertices[p++] = SCREEN_WIDTH; vertices[p++] = SCREEN_HEIGHT;
430     vertices[p++] = x + ex1;      vertices[p++] = y + ey1;
431     vertices[p++] = x + ex2;      vertices[p++] = y + ey2;
432
433     // Top/Left
434     vertices[p++] = 0;            vertices[p++] = 0;
435     vertices[p++] = x - ex1;      vertices[p++] = y - ey1;
436     vertices[p++] = x - ex2;      vertices[p++] = y - ey2;
437
438     // Top/Right
439     vertices[p++] = SCREEN_WIDTH; vertices[p++] = 0;
440     vertices[p++] = x + ex1;      vertices[p++] = y - ey1;
441     vertices[p++] = x + ex2;      vertices[p++] = y - ey2;
442
443     // Bottom/Left
444     vertices[p++] = 0;            vertices[p++] = SCREEN_HEIGHT;
445     vertices[p++] = x - ex1;      vertices[p++] = y + ey1;
446     vertices[p++] = x - ex2;      vertices[p++] = y + ey2;
447   }
448
449   glDisableClientState(GL_TEXTURE_COORD_ARRAY);
450   glVertexPointer(2, GL_FLOAT, 0, vertices);
451
452   glDrawArrays(GL_TRIANGLES, 0, points);
453
454   glEnableClientState(GL_TEXTURE_COORD_ARRAY);
455
456   glEnable(GL_TEXTURE_2D);
457   glColor4f(1, 1, 1, 1);    
458 }
459
460 void 
461 GLRenderer::do_take_screenshot()
462 {
463   // [Christoph] TODO: Yes, this method also takes care of the actual disk I/O. Split it?
464
465   SDL_Surface *shot_surf;
466   // create surface to hold screenshot
467 #if SDL_BYTEORDER == SDL_BIG_ENDIAN
468   shot_surf = SDL_CreateRGBSurface(SDL_SWSURFACE, SCREEN_WIDTH, SCREEN_HEIGHT, 24, 0x00FF0000, 0x0000FF00, 0x000000FF, 0);
469 #else
470   shot_surf = SDL_CreateRGBSurface(SDL_SWSURFACE, SCREEN_WIDTH, SCREEN_HEIGHT, 24, 0x000000FF, 0x0000FF00, 0x00FF0000, 0);
471 #endif
472   if (!shot_surf) {
473     log_warning << "Could not create RGB Surface to contain screenshot" << std::endl;
474     return;
475   }
476
477   // read pixels into array
478   char* pixels = new char[3 * SCREEN_WIDTH * SCREEN_HEIGHT];
479   if (!pixels) {
480     log_warning << "Could not allocate memory to store screenshot" << std::endl;
481     SDL_FreeSurface(shot_surf);
482     return;
483   }
484   glPixelStorei(GL_PACK_ALIGNMENT, 1);
485   glReadPixels(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT, GL_RGB, GL_UNSIGNED_BYTE, pixels);
486
487   // copy array line-by-line
488   for (int i = 0; i < SCREEN_HEIGHT; i++) {
489     char* src = pixels + (3 * SCREEN_WIDTH * (SCREEN_HEIGHT - i - 1));
490     if(SDL_MUSTLOCK(shot_surf))
491     {
492       SDL_LockSurface(shot_surf);
493     }
494     char* dst = ((char*)shot_surf->pixels) + i * shot_surf->pitch;
495     memcpy(dst, src, 3 * SCREEN_WIDTH);
496     if(SDL_MUSTLOCK(shot_surf))
497     {
498       SDL_UnlockSurface(shot_surf);
499     }
500   }
501
502   // free array
503   delete[](pixels);
504
505   // save screenshot
506   static const std::string writeDir = PHYSFS_getWriteDir();
507   static const std::string dirSep = PHYSFS_getDirSeparator();
508   static const std::string baseName = "screenshot";
509   static const std::string fileExt = ".bmp";
510   std::string fullFilename;
511   for (int num = 0; num < 1000; num++) {
512     std::ostringstream oss;
513     oss << baseName;
514     oss << std::setw(3) << std::setfill('0') << num;
515     oss << fileExt;
516     std::string fileName = oss.str();
517     fullFilename = writeDir + dirSep + fileName;
518     if (!PHYSFS_exists(fileName.c_str())) {
519       SDL_SaveBMP(shot_surf, fullFilename.c_str());
520       log_debug << "Wrote screenshot to \"" << fullFilename << "\"" << std::endl;
521       SDL_FreeSurface(shot_surf);
522       return;
523     }
524   }
525   log_warning << "Did not save screenshot, because all files up to \"" << fullFilename << "\" already existed" << std::endl;
526   SDL_FreeSurface(shot_surf);
527 }
528
529 void
530 GLRenderer::flip()
531 {
532   assert_gl("drawing");
533   SDL_GL_SwapBuffers();
534 }
535
536 void
537 GLRenderer::resize(int w, int h)
538 {
539   // This causes the screen to go black, which is annoying, but seems
540   // unavoidable with SDL at the moment
541   SDL_SetVideoMode(w, h, 0, SDL_OPENGL /*| SDL_RESIZABLE*/);
542
543   g_config->window_size = Size(w, h);
544
545   apply_config();
546 }
547
548 void
549 GLRenderer::apply_config()
550 {    
551   if (1)
552   {
553     std::cout << "Applying Config:" 
554               << "\n  Desktop: " << desktop_width << "x" << desktop_height
555               << "\n  Window:  " << g_config->window_size
556               << "\n  FullRes: " << g_config->fullscreen_size
557               << "\n  Aspect:  " << g_config->aspect_size
558               << "\n  Magnif:  " << g_config->magnification
559               << std::endl;
560   }
561
562   float target_aspect = static_cast<float>(desktop_width) / static_cast<float>(desktop_height);
563   
564   if (g_config->aspect_size != Size(0, 0))
565   {
566     target_aspect = float(g_config->aspect_size.width) / float(g_config->aspect_size.height);
567   }
568
569   float desktop_aspect = 4.0f / 3.0f; // random default fallback guess
570   
571   if (desktop_width != -1 && desktop_height != -1)
572   {
573     desktop_aspect = float(desktop_width) / float(desktop_height);
574   }
575
576   int w,h;
577
578   // Get the screen width
579   if (g_config->use_fullscreen)
580   {
581     w = g_config->fullscreen_size.width;
582     h = g_config->fullscreen_size.height;
583     desktop_aspect = float(w) / float(h);
584   }
585   else
586   {
587     w = g_config->window_size.width;        
588     h = g_config->window_size.height;
589   }
590
591   if (target_aspect > 1.0f)
592   {
593     SCREEN_WIDTH  = static_cast<int>(w * (target_aspect / desktop_aspect));
594     SCREEN_HEIGHT = static_cast<int>(h);
595   }
596   else
597   {
598     SCREEN_WIDTH  = static_cast<int>(w);
599     SCREEN_HEIGHT = static_cast<int>(h  * (target_aspect / desktop_aspect));
600   }
601
602   int max_width  = 1600; // FIXME: Maybe 1920 is ok too
603   int max_height = 1200;
604
605   if (g_config->magnification == 0.0f) // Magic value that means 'minfill'
606   {
607     // This scales SCREEN_WIDTH/SCREEN_HEIGHT so that they never excede
608     // max_width/max_height
609     if (SCREEN_WIDTH > max_width || SCREEN_HEIGHT > max_height)
610     {
611       float scale1  = float(max_width)/SCREEN_WIDTH;
612       float scale2  = float(max_height)/SCREEN_HEIGHT;
613       float scale   = (scale1 < scale2) ? scale1 : scale2;
614       SCREEN_WIDTH  = static_cast<int>(SCREEN_WIDTH  * scale);
615       SCREEN_HEIGHT = static_cast<int>(SCREEN_HEIGHT * scale);
616     }
617
618     glViewport(0, 0, w, h);
619   }
620   else
621   {
622     SCREEN_WIDTH  = static_cast<int>(SCREEN_WIDTH  / g_config->magnification);
623     SCREEN_HEIGHT = static_cast<int>(SCREEN_HEIGHT / g_config->magnification);
624
625     // This works by adding black borders around the screen to limit
626     // SCREEN_WIDTH/SCREEN_HEIGHT to max_width/max_height
627     int nw = w;
628     int nh = h;
629
630     if (SCREEN_WIDTH > max_width)
631     {
632       nw = static_cast<int>((float) nw * float(max_width)/SCREEN_WIDTH);
633       SCREEN_WIDTH = static_cast<int>(max_width);
634     }
635
636     if (SCREEN_HEIGHT > max_height)
637     {
638       nh = static_cast<int>((float) nh * float(max_height)/SCREEN_HEIGHT);
639       SCREEN_HEIGHT = static_cast<int>(max_height);
640     }
641
642     // Clear both buffers so that we get a clean black border without junk
643     glClear(GL_COLOR_BUFFER_BIT);
644     SDL_GL_SwapBuffers();
645     glClear(GL_COLOR_BUFFER_BIT);
646     SDL_GL_SwapBuffers();
647
648     if (0)
649       std::cout << (w-nw)/2 << " "
650                 << (h-nh)/2 << " "
651                 << nw << "x" << nh << std::endl;
652
653     glViewport(std::max(0, (w-nw)/2), 
654                std::max(0, (h-nh)/2), 
655                std::min(nw, w),
656                std::min(nh, h));
657   }
658
659   if (0)
660     std::cout << "  -> " << SCREEN_WIDTH << "x" << SCREEN_HEIGHT << std::endl;
661
662   glMatrixMode(GL_PROJECTION);
663   glLoadIdentity();
664
665   glOrtho(0, SCREEN_WIDTH, SCREEN_HEIGHT, 0, -1, 1);
666
667   glMatrixMode(GL_MODELVIEW);
668   glLoadIdentity();
669   glTranslatef(0, 0, 0);
670   check_gl_error("Setting up view matrices");
671 }
672
673 /* EOF */