X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_session.cpp;h=c0747e83e609ad2b8b9a3408bb9e4850c5f48c2c;hb=b917bb4789b14d1bb1445b9777ab494e9623fd50;hp=38b6f46d31a214c17add2efdb969b21368426ad8;hpb=9bf5386f1d1b84b5290bb015e1ede6d1745d5e61;p=supertux.git diff --git a/src/game_session.cpp b/src/game_session.cpp index 38b6f46d3..c0747e83e 100644 --- a/src/game_session.cpp +++ b/src/game_session.cpp @@ -18,63 +18,49 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include +#include "game_session.hpp" + #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include #include -#include +#include #include +#include #include -#include "game_session.hpp" +#include "file_system.hpp" +#include "gameconfig.hpp" +#include "gettext.hpp" +#include "level.hpp" +#include "levelintro.hpp" #include "log.hpp" -#include "worldmap/worldmap.hpp" +#include "main.hpp" #include "mainloop.hpp" -#include "audio/sound_manager.hpp" -#include "gui/menu.hpp" -#include "sector.hpp" -#include "level.hpp" -#include "tile.hpp" #include "player_status.hpp" -#include "object/particlesystem.hpp" -#include "object/background.hpp" -#include "object/gradient.hpp" -#include "object/tilemap.hpp" -#include "object/camera.hpp" -#include "object/player.hpp" -#include "object/level_time.hpp" -#include "lisp/lisp.hpp" -#include "lisp/parser.hpp" -#include "resources.hpp" +#include "options_menu.hpp" +#include "random_generator.hpp" +#include "sector.hpp" #include "statistics.hpp" #include "timer.hpp" -#include "options_menu.hpp" -#include "object/fireworks.hpp" -#include "textscroller.hpp" +#include "audio/sound_manager.hpp" #include "control/codecontroller.hpp" #include "control/joystickkeyboardcontroller.hpp" -#include "main.hpp" -#include "file_system.hpp" -#include "gameconfig.hpp" -#include "gettext.hpp" -#include "console.hpp" -#include "flip_level_transformer.hpp" -#include "trigger/secretarea_trigger.hpp" -#include "trigger/sequence_trigger.hpp" -#include "random_generator.hpp" +#include "gui/menu.hpp" +#include "object/camera.hpp" +#include "object/endsequence_fireworks.hpp" +#include "object/endsequence_walkleft.hpp" +#include "object/endsequence_walkright.hpp" +#include "object/level_time.hpp" +#include "object/player.hpp" #include "scripting/squirrel_util.hpp" -#include "direction.hpp" - -// the engine will be run with a logical framerate of 64fps. -// We chose 64fps here because it is a power of 2, so 1/64 gives an "even" -// binary fraction... -static const float LOGICAL_FPS = 64.0; +#include "worldmap/worldmap.hpp" enum GameMenuIDs { MNID_CONTINUE, @@ -88,19 +74,20 @@ GameSession::GameSession(const std::string& levelfile_, Statistics* statistics) end_sequence(0), levelfile(levelfile_), best_level_statistics(statistics), capture_demo_stream(0), playback_demo_stream(0), demo_controller(0), - play_time(0) + play_time(0), edit_mode(false), levelintro_shown(false) { current_ = this; currentsector = NULL; game_pause = false; + speed_before_pause = main_loop->get_speed(); statistics_backdrop.reset(new Surface("images/engine/menu/score-backdrop.png")); - restart_level(true); + restart_level(); game_menu.reset(new Menu()); - game_menu->add_label(_("Pause")); + game_menu->add_label(level->name); game_menu->add_hl(); game_menu->add_entry(MNID_CONTINUE, _("Continue")); game_menu->add_submenu(_("Options"), get_options_menu()); @@ -109,8 +96,14 @@ GameSession::GameSession(const std::string& levelfile_, Statistics* statistics) } void -GameSession::restart_level(bool fromBeginning) +GameSession::restart_level() { + + if (edit_mode) { + force_ghost_mode(); + return; + } + game_pause = false; end_sequence = 0; @@ -119,31 +112,35 @@ GameSession::restart_level(bool fromBeginning) currentsector = 0; level.reset(new Level); - level->load(levelfile); - level->stats.total_coins = level->get_total_coins(); - level->stats.total_badguys = level->get_total_badguys(); - level->stats.total_secrets = level->get_total_count(); - level->stats.reset(); - if (!fromBeginning && (reset_sector != "")) level->stats.declare_invalid(); - - if (fromBeginning) reset_sector=""; - if(reset_sector != "") { - currentsector = level->get_sector(reset_sector); - if(!currentsector) { - std::stringstream msg; - msg << "Couldn't find sector '" << reset_sector << "' for resetting tux."; - throw std::runtime_error(msg.str()); + try { + level->load(levelfile); + level->stats.total_coins = level->get_total_coins(); + level->stats.total_badguys = level->get_total_badguys(); + level->stats.total_secrets = level->get_total_secrets(); + level->stats.reset(); + + if(reset_sector != "") { + currentsector = level->get_sector(reset_sector); + if(!currentsector) { + std::stringstream msg; + msg << "Couldn't find sector '" << reset_sector << "' for resetting tux."; + throw std::runtime_error(msg.str()); + } + level->stats.declare_invalid(); + currentsector->activate(reset_pos); + } else { + currentsector = level->get_sector("main"); + if(!currentsector) + throw std::runtime_error("Couldn't find main sector"); + play_time = 0; + currentsector->activate("main"); } - currentsector->activate(reset_pos); - } else { - currentsector = level->get_sector("main"); - if(!currentsector) - throw std::runtime_error("Couldn't find main sector"); - currentsector->activate("main"); + } catch(std::exception& e) { + log_warning << "Couldn't start level: " << e.what() << std::endl; + main_loop->exit_screen(); } - //levelintro(); - + sound_manager->stop_music(); currentsector->play_music(LEVEL_MUSIC); if(capture_file != "") { @@ -161,6 +158,7 @@ GameSession::~GameSession() delete capture_demo_stream; delete playback_demo_stream; delete demo_controller; + free_options_menu(); current_ = NULL; } @@ -230,51 +228,14 @@ GameSession::play_demo(const std::string& filename) } void -GameSession::levelintro() -{ - sound_manager->stop_music(); - - DrawingContext context; - for(Sector::GameObjects::iterator i = currentsector->gameobjects.begin(); - i != currentsector->gameobjects.end(); ++i) { - Background* background = dynamic_cast (*i); - if(background) { - background->draw(context); - } - Gradient* gradient = dynamic_cast (*i); - if(gradient) { - gradient->draw(context); - } - } - -// context.draw_text(gold_text, level->get_name(), Vector(SCREEN_WIDTH/2, 160), -// CENTER_ALLIGN, LAYER_FOREGROUND1); - context.draw_center_text(gold_text, level->get_name(), Vector(0, 160), - LAYER_FOREGROUND1); - - std::stringstream ss_coins; - ss_coins << _("Coins") << ": " << player_status->coins; - context.draw_text(white_text, ss_coins.str(), Vector(SCREEN_WIDTH/2, 210), - CENTER_ALLIGN, LAYER_FOREGROUND1); - - if((level->get_author().size()) && (level->get_author() != "SuperTux Team")) - context.draw_text(white_small_text, - std::string(_("contributed by ")) + level->get_author(), - Vector(SCREEN_WIDTH/2, 350), CENTER_ALLIGN, LAYER_FOREGROUND1); - - if(best_level_statistics != NULL) - best_level_statistics->draw_message_info(context, _("Best Level Statistics")); - - wait_for_event(1.0, 3.0); -} - -void GameSession::on_escape_press() { if(currentsector->player->is_dying() || end_sequence) { // Let the timers run out, we fast-forward them to force past a sequence - if (end_sequence) end_sequence->stop(); + if (end_sequence) + end_sequence->stop(); + currentsector->player->dying_timer.start(FLT_EPSILON); return; // don't let the player open the menu, when he is dying } @@ -290,16 +251,44 @@ GameSession::on_escape_press() void GameSession::toggle_pause() { - if(Menu::current() == NULL) { + // pause + if(!game_pause) { + speed_before_pause = main_loop->get_speed(); + main_loop->set_speed(0); Menu::set_current(game_menu.get()); game_menu->set_active_item(MNID_CONTINUE); game_pause = true; + } + + // unpause is done in update() after the menu is processed +} + +void +GameSession::set_editmode(bool edit_mode) +{ + if (this->edit_mode == edit_mode) return; + this->edit_mode = edit_mode; + + currentsector->get_players()[0]->set_edit_mode(edit_mode); + + if (edit_mode) { + + // entering edit mode + } else { - Menu::set_current(NULL); - game_pause = false; + + // leaving edit mode + restart_level(); + } } +void +GameSession::force_ghost_mode() +{ + currentsector->get_players()[0]->set_ghost_mode(true); +} + HSQUIRRELVM GameSession::run_script(std::istream& in, const std::string& sourcename) { @@ -334,9 +323,14 @@ void GameSession::process_events() { // end of pause mode? + // XXX this looks like a fail-safe to unpause the game if there's no menu + // XXX having it enabled causes some unexpected problems + // XXX hopefully disabling it won't... + /* if(!Menu::current() && game_pause) { game_pause = false; } + */ // playback a demo? if(playback_demo_stream != 0) { @@ -380,18 +374,8 @@ GameSession::check_end_conditions() /* End of level? */ if(end_sequence && end_sequence->is_done()) { finish(true); - return; } else if (!end_sequence && tux->is_dead()) { - if (player_status->coins < 0) { - // No more coins: restart level from beginning - player_status->coins = 0; - restart_level(true); - } else { - // Still has coins: restart level from last reset point - restart_level(false); - } - - return; + restart_level(); } } @@ -410,7 +394,7 @@ GameSession::draw_pause(DrawingContext& context) { context.draw_filled_rect( Vector(0,0), Vector(SCREEN_WIDTH, SCREEN_HEIGHT), - Color(.2f, .2f, .2f, .5f), LAYER_FOREGROUND1); + Color(0.0f, 0.0f, 0.0f, .25f), LAYER_FOREGROUND1); } void @@ -418,12 +402,11 @@ GameSession::process_menu() { Menu* menu = Menu::current(); if(menu) { - menu->update(); - if(menu == game_menu.get()) { switch (game_menu->check()) { case MNID_CONTINUE: Menu::set_current(0); + toggle_pause(); break; case MNID_ABORTLEVEL: Menu::set_current(0); @@ -437,13 +420,22 @@ GameSession::process_menu() void GameSession::setup() { - Menu::set_current(NULL); current_ = this; + if(currentsector != Sector::current()) { + currentsector->activate(currentsector->player->get_pos()); + } + currentsector->play_music(LEVEL_MUSIC); + // Eat unneeded events SDL_Event event; while(SDL_PollEvent(&event)) {} + + if (!levelintro_shown) { + levelintro_shown = true; + main_loop->push_screen(new LevelIntro(level.get(), best_level_statistics)); + } } void @@ -456,6 +448,12 @@ GameSession::update(float elapsed_time) process_events(); process_menu(); + // Unpause the game if the menu has been closed + if (game_pause && !Menu::current()) { + main_loop->set_speed(speed_before_pause); + game_pause = false; + } + check_end_conditions(); // respawning in new sector? @@ -463,10 +461,14 @@ GameSession::update(float elapsed_time) Sector* sector = level->get_sector(newsector); if(sector == 0) { log_warning << "Sector '" << newsector << "' not found" << std::endl; + sector = level->get_sector("main"); } sector->activate(newspawnpoint); sector->play_music(LEVEL_MUSIC); currentsector = sector; + //Keep persistent across sectors + if(edit_mode) + currentsector->get_players()[0]->set_edit_mode(edit_mode); newsector = ""; newspawnpoint = ""; } @@ -480,15 +482,15 @@ GameSession::update(float elapsed_time) currentsector->update(elapsed_time); } else { if (!end_sequence->is_tux_stopped()) { - currentsector->update(elapsed_time/2); + currentsector->update(elapsed_time); } else { - end_sequence->update(elapsed_time/2); + end_sequence->update(elapsed_time); } } } // update sounds - sound_manager->set_listener_position(currentsector->player->get_pos()); + if (currentsector && currentsector->camera) sound_manager->set_listener_position(currentsector->camera->get_center()); /* Handle music: */ if (end_sequence) @@ -511,6 +513,11 @@ GameSession::finish(bool win) { using namespace WorldMapNS; + if (edit_mode) { + force_ghost_mode(); + return; + } + if(win) { if(WorldMap::current()) WorldMap::current()->finished_level(level.get()); @@ -540,89 +547,59 @@ GameSession::get_working_directory() } void -GameSession::display_info_box(const std::string& text) +GameSession::start_sequence(const std::string& sequencename) { - InfoBox* box = new InfoBox(text); + // do not play sequences when in edit mode + if (edit_mode) { + force_ghost_mode(); + return; + } - bool running = true; - DrawingContext context; + // handle special "stoptux" sequence + if (sequencename == "stoptux") { + if (!end_sequence) { + log_warning << "Final target reached without an active end sequence" << std::endl; + this->start_sequence("endsequence"); + } + if (end_sequence) end_sequence->stop_tux(); + return; + } - while(running) { + // abort if a sequence is already playing + if (end_sequence) + return; - // TODO make a screen out of this, another mainloop is ugly - main_controller->update(); - SDL_Event event; - while (SDL_PollEvent(&event)) { - main_controller->process_event(event); - if(event.type == SDL_QUIT) - main_loop->quit(); + if (sequencename == "endsequence") { + if (currentsector->get_players()[0]->physic.get_velocity_x() < 0) { + end_sequence = new EndSequenceWalkLeft(); + } else { + end_sequence = new EndSequenceWalkRight(); } - - if(main_controller->pressed(Controller::JUMP) - || main_controller->pressed(Controller::ACTION) - || main_controller->pressed(Controller::PAUSE_MENU) - || main_controller->pressed(Controller::MENU_SELECT)) - running = false; - else if(main_controller->pressed(Controller::DOWN)) - box->scrolldown(); - else if(main_controller->pressed(Controller::UP)) - box->scrollup(); - box->draw(context); - draw(context); - context.do_drawing(); - sound_manager->update(); + } else if (sequencename == "fireworks") { + end_sequence = new EndSequenceFireworks(); + } else { + log_warning << "Unknown sequence '" << sequencename << "'. Ignoring." << std::endl; + return; } - delete box; -} + /* slow down the game for end-sequence */ + main_loop->set_speed(0.5f); -void -GameSession::start_sequence(const std::string& sequencename) -{ - if(sequencename == "endsequence" || sequencename == "fireworks") { - if(end_sequence) - return; - - // Determine walking direction for Tux - float xst = 1.f, xend = 2.f; - for(std::vector::iterator i = currentsector->gameobjects.begin(); i != currentsector->gameobjects.end(); i++) { - SequenceTrigger* st = dynamic_cast(*i); - if(!st) - continue; - if(st->get_sequence_name() == "stoptux") - xend = st->get_pos().x; - else if(st->get_sequence_name() == "endsequence") - xst = st->get_pos().y; - } - end_sequence = new EndSequence(); - currentsector->add_object(end_sequence); - end_sequence->start((xst > xend) ? LEFT : RIGHT); - - sound_manager->play_music("music/leveldone.ogg", false); - currentsector->player->invincible_timer.start(7.3f); - - // Stop all clocks. - for(std::vector::iterator i = currentsector->gameobjects.begin(); - i != currentsector->gameobjects.end(); ++i) - { - GameObject* obj = *i; - - LevelTime* lt = dynamic_cast (obj); - if(lt) - lt->stop(); - } + currentsector->add_object(end_sequence); + end_sequence->start(); - if(sequencename == "fireworks") { - currentsector->add_object(new Fireworks()); - } - } else if(sequencename == "stoptux") { - if(!end_sequence) { - log_warning << "Final target reached without an active end sequence" << std::endl; - this->start_sequence("endsequence"); - } - if (end_sequence) end_sequence->stop_tux(); - } else { - log_warning << "Unknown sequence '" << sequencename << "'" << std::endl; + sound_manager->play_music("music/leveldone.ogg", false); + currentsector->player->invincible_timer.start(10000.0f); + + // Stop all clocks. + for(std::vector::iterator i = currentsector->gameobjects.begin(); + i != currentsector->gameobjects.end(); ++i) + { + GameObject* obj = *i; + + LevelTime* lt = dynamic_cast (obj); + if(lt) + lt->stop(); } }