src/supertux/screen_manager.cpp: Add SDL 1.3 compatibility code.
[supertux.git] / src / supertux / screen_manager.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 "supertux/screen_manager.hpp"
18
19 #include "audio/sound_manager.hpp"
20 #include "control/joystickkeyboardcontroller.hpp"
21 #include "gui/menu.hpp"
22 #include "gui/menu_manager.hpp"
23 #include "scripting/squirrel_util.hpp"
24 #include "scripting/time_scheduler.hpp"
25 #include "supertux/constants.hpp"
26 #include "supertux/console.hpp"
27 #include "supertux/gameconfig.hpp"
28 #include "supertux/globals.hpp"
29 #include "supertux/main.hpp"
30 #include "supertux/player_status.hpp"
31 #include "supertux/resources.hpp"
32 #include "supertux/screen_fade.hpp"
33 #include "supertux/screen.hpp"
34 #include "supertux/timer.hpp"
35 #include "video/drawing_context.hpp"
36 #include "video/renderer.hpp"
37
38 /** ticks (as returned from SDL_GetTicks) per frame */
39 static const Uint32 TICKS_PER_FRAME = (Uint32) (1000.0 / LOGICAL_FPS);
40 /** don't skip more than every 2nd frame */
41 static const int MAX_FRAME_SKIP = 2;
42
43 ScreenManager::ScreenManager() :
44   waiting_threads(),
45   running(),
46   speed(1.0), 
47   nextpop(false), 
48   nextpush(false), 
49   fps(0), 
50   next_screen(),
51   current_screen(),
52   console(),
53   screen_fade(),
54   screen_stack(),
55   screenshot_requested(false)
56 {
57   using namespace scripting;
58   TimeScheduler::instance = new TimeScheduler();
59 }
60
61 ScreenManager::~ScreenManager()
62 {
63   using namespace scripting;
64   delete TimeScheduler::instance;
65   TimeScheduler::instance = NULL;
66
67   for(std::vector<Screen*>::iterator i = screen_stack.begin();
68       i != screen_stack.end(); ++i) {
69     delete *i;
70   }
71 }
72
73 void
74 ScreenManager::push_screen(Screen* screen, ScreenFade* screen_fade)
75 {
76   this->next_screen.reset(screen);
77   this->screen_fade.reset(screen_fade);
78   nextpush = !nextpop;
79   nextpop = false;
80   speed = 1.0f;
81 }
82
83 void
84 ScreenManager::exit_screen(ScreenFade* screen_fade)
85 {
86   next_screen.reset(NULL);
87   this->screen_fade.reset(screen_fade);
88   nextpop = true;
89   nextpush = false;
90 }
91
92 void
93 ScreenManager::set_screen_fade(ScreenFade* screen_fade)
94 {
95   this->screen_fade.reset(screen_fade);
96 }
97
98 void
99 ScreenManager::quit(ScreenFade* screen_fade)
100 {
101   for(std::vector<Screen*>::iterator i = screen_stack.begin();
102       i != screen_stack.end(); ++i)
103     delete *i;
104   screen_stack.clear();
105
106   exit_screen(screen_fade);
107 }
108
109 void
110 ScreenManager::set_speed(float speed)
111 {
112   this->speed = speed;
113 }
114
115 float
116 ScreenManager::get_speed() const
117 {
118   return speed;
119 }
120
121 bool
122 ScreenManager::has_no_pending_fadeout() const
123 {
124   return screen_fade.get() == NULL || screen_fade->done();
125 }
126
127 void
128 ScreenManager::draw_fps(DrawingContext& context, float fps_fps)
129 {
130   char str[60];
131   snprintf(str, sizeof(str), "%3.1f", fps_fps);
132   const char* fpstext = "FPS";
133   context.draw_text(Resources::small_font, fpstext, 
134                     Vector(SCREEN_WIDTH - Resources::small_font->get_text_width(fpstext) - Resources::small_font->get_text_width(" 99999") - BORDER_X, 
135                            BORDER_Y + 20), ALIGN_LEFT, LAYER_HUD);
136   context.draw_text(Resources::small_font, str, Vector(SCREEN_WIDTH - BORDER_X, BORDER_Y + 20), ALIGN_RIGHT, LAYER_HUD);
137 }
138
139 void
140 ScreenManager::draw(DrawingContext& context)
141 {
142   static Uint32 fps_ticks = SDL_GetTicks();
143   static int frame_count = 0;
144
145   current_screen->draw(context);
146   if(MenuManager::current() != NULL)
147     MenuManager::current()->draw(context);
148   if(screen_fade.get() != NULL)
149     screen_fade->draw(context);
150   Console::instance->draw(context);
151
152   if(g_config->show_fps)
153     draw_fps(context, fps);
154
155   // if a screenshot was requested, pass request on to drawing_context
156   if (screenshot_requested) {
157     context.take_screenshot();
158     screenshot_requested = false;
159   }
160   context.do_drawing();
161
162   /* Calculate frames per second */
163   if(g_config->show_fps)
164   {
165     ++frame_count;
166
167     if(SDL_GetTicks() - fps_ticks >= 500)
168     {
169       fps = (float) frame_count / .5;
170       frame_count = 0;
171       fps_ticks = SDL_GetTicks();
172     }
173   }
174 }
175
176 void
177 ScreenManager::update_gamelogic(float elapsed_time)
178 {
179   scripting::update_debugger();
180   scripting::TimeScheduler::instance->update(game_time);
181   current_screen->update(elapsed_time);
182   if (MenuManager::current() != NULL)
183     MenuManager::current()->update();
184   if(screen_fade.get() != NULL)
185     screen_fade->update(elapsed_time);
186   Console::instance->update(elapsed_time);
187 }
188
189 void
190 ScreenManager::process_events()
191 {
192   g_main_controller->update();
193 #if SDL_VERSION_ATLEAST(1,3,0)
194   Uint8* keystate = SDL_GetKeyboardState(NULL);
195 #else
196   Uint8* keystate = SDL_GetKeyState(NULL);
197 #endif
198   SDL_Event event;
199   while(SDL_PollEvent(&event)) 
200   {
201     g_main_controller->process_event(event);
202
203     if(MenuManager::current() != NULL)
204       MenuManager::current()->event(event);
205
206     switch(event.type)
207     {
208       case SDL_QUIT:
209         quit();
210         break;
211               
212       case SDL_VIDEORESIZE:
213         Renderer::instance()->resize(event.resize.w, event.resize.h);
214         MenuManager::recalc_pos();
215         break;
216             
217       case SDL_KEYDOWN:
218         if (event.key.keysym.sym == SDLK_F10)
219         {
220           g_config->show_fps = !g_config->show_fps;
221         }
222         if (event.key.keysym.sym == SDLK_F11) 
223         {
224           g_config->use_fullscreen = !g_config->use_fullscreen;
225           Renderer::instance()->apply_config();
226           MenuManager::recalc_pos();
227         }
228         else if (event.key.keysym.sym == SDLK_PRINT ||
229                  event.key.keysym.sym == SDLK_F12)
230         {
231           take_screenshot();
232         }
233         else if (event.key.keysym.sym == SDLK_F1 &&
234                  (keystate[SDLK_LCTRL] || keystate[SDLK_RCTRL]) &&
235                  keystate[SDLK_c])
236         {
237           Console::instance->toggle();
238           g_config->console_enabled = true;
239           g_config->save();
240         }
241         break;
242     }
243   }
244 }
245
246 void
247 ScreenManager::handle_screen_switch()
248 {
249   while( (next_screen.get() != NULL || nextpop) &&
250          has_no_pending_fadeout()) {
251     if(current_screen.get() != NULL) {
252       current_screen->leave();
253     }
254
255     if(nextpop) {
256       if(screen_stack.empty()) {
257         running = false;
258         break;
259       }
260       next_screen.reset(screen_stack.back());
261       screen_stack.pop_back();
262     }
263     if(nextpush && current_screen.get() != NULL) {
264       screen_stack.push_back(current_screen.release());
265     }
266
267     nextpush = false;
268     nextpop = false;
269     speed = 1.0;
270     Screen* next_screen_ptr = next_screen.release();
271     next_screen.reset(0);
272     if(next_screen_ptr)
273       next_screen_ptr->setup();
274     current_screen.reset(next_screen_ptr);
275     screen_fade.reset(NULL);
276
277     waiting_threads.wakeup();
278   }
279 }
280
281 void
282 ScreenManager::run(DrawingContext &context)
283 {
284   Uint32 last_ticks = 0;
285   Uint32 elapsed_ticks = 0;
286
287   running = true;
288   while(running) {
289
290     handle_screen_switch();
291     if(!running || current_screen.get() == NULL)
292       break;
293
294     Uint32 ticks = SDL_GetTicks();
295     elapsed_ticks += ticks - last_ticks;
296     last_ticks = ticks;
297
298     Uint32 ticks_per_frame = (Uint32) (TICKS_PER_FRAME * g_game_speed);
299
300     if (elapsed_ticks > ticks_per_frame*4) {
301       // when the game loads up or levels are switched the
302       // elapsed_ticks grows extremely large, so we just ignore those
303       // large time jumps
304       elapsed_ticks = 0;
305     }
306
307     if(elapsed_ticks < ticks_per_frame)
308     {
309       Uint32 delay_ticks = ticks_per_frame - elapsed_ticks;
310       SDL_Delay(delay_ticks);
311       last_ticks += delay_ticks;
312       elapsed_ticks += delay_ticks;
313     }
314
315     int frames = 0;
316
317     while(elapsed_ticks >= ticks_per_frame && frames < MAX_FRAME_SKIP) 
318     {
319       elapsed_ticks -= ticks_per_frame;
320       float timestep = 1.0 / LOGICAL_FPS;
321       real_time += timestep;
322       timestep *= speed;
323       game_time += timestep;
324
325       process_events();
326       update_gamelogic(timestep);
327       frames += 1;
328     }
329
330     draw(context);
331
332     sound_manager->update();
333   }
334 }
335
336 void 
337 ScreenManager::take_screenshot()
338 {
339   screenshot_requested = true;
340 }
341
342 /* EOF */