X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fgame_session.cpp;h=852d8f0ea7742a2e2af249f495c8b719032bbc62;hb=b50836ea0d5c455c115fba76616ba544aad5ae5f;hp=fe24f25968598d6324525bda9f66491b5f0fe296;hpb=033c0951d4cb82136300de80b2185085369936fb;p=supertux.git diff --git a/src/game_session.cpp b/src/game_session.cpp index fe24f2596..852d8f0ea 100644 --- a/src/game_session.cpp +++ b/src/game_session.cpp @@ -55,7 +55,6 @@ #include "statistics.hpp" #include "timer.hpp" #include "options_menu.hpp" -#include "object/fireworks.hpp" #include "textscroller.hpp" #include "control/codecontroller.hpp" #include "control/joystickkeyboardcontroller.hpp" @@ -66,8 +65,13 @@ #include "console.hpp" #include "flip_level_transformer.hpp" #include "trigger/secretarea_trigger.hpp" +#include "trigger/sequence_trigger.hpp" #include "random_generator.hpp" #include "scripting/squirrel_util.hpp" +#include "object/endsequence_walkright.hpp" +#include "object/endsequence_walkleft.hpp" +#include "object/endsequence_fireworks.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" @@ -83,19 +87,19 @@ GameSession* GameSession::current_ = NULL; GameSession::GameSession(const std::string& levelfile_, Statistics* statistics) : level(0), currentsector(0), - end_sequence(NO_ENDSEQUENCE), end_sequence_controller(0), + end_sequence(0), levelfile(levelfile_), best_level_statistics(statistics), capture_demo_stream(0), playback_demo_stream(0), demo_controller(0), play_time(0) { current_ = this; currentsector = NULL; - + game_pause = false; 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")); @@ -107,10 +111,10 @@ GameSession::GameSession(const std::string& levelfile_, Statistics* statistics) } void -GameSession::restart_level(bool fromBeginning) +GameSession::restart_level() { game_pause = false; - end_sequence = NO_ENDSEQUENCE; + end_sequence = 0; main_controller->reset(); @@ -122,9 +126,8 @@ GameSession::restart_level(bool fromBeginning) level->stats.total_badguys = level->get_total_badguys(); level->stats.total_secrets = level->get_total_count(); level->stats.reset(); - if (!fromBeginning) level->stats.declare_invalid(); + if(reset_sector != "")level->stats.declare_invalid(); - if (fromBeginning) reset_sector=""; if(reset_sector != "") { currentsector = level->get_sector(reset_sector); if(!currentsector) { @@ -139,7 +142,7 @@ GameSession::restart_level(bool fromBeginning) throw std::runtime_error("Couldn't find main sector"); currentsector->activate("main"); } - + //levelintro(); currentsector->play_music(LEVEL_MUSIC); @@ -160,8 +163,6 @@ GameSession::~GameSession() delete playback_demo_stream; delete demo_controller; - delete end_sequence_controller; - current_ = NULL; } @@ -169,8 +170,8 @@ void GameSession::record_demo(const std::string& filename) { delete capture_demo_stream; - - capture_demo_stream = new std::ofstream(filename.c_str()); + + capture_demo_stream = new std::ofstream(filename.c_str()); if(!capture_demo_stream->good()) { std::stringstream msg; msg << "Couldn't open demo file '" << filename << "' for writing."; @@ -208,7 +209,7 @@ GameSession::play_demo(const std::string& filename) { delete playback_demo_stream; delete demo_controller; - + playback_demo_stream = new std::ifstream(filename.c_str()); if(!playback_demo_stream->good()) { std::stringstream msg; @@ -248,19 +249,19 @@ GameSession::levelintro() } // context.draw_text(gold_text, level->get_name(), Vector(SCREEN_WIDTH/2, 160), -// CENTER_ALLIGN, LAYER_FOREGROUND1); +// ALIGN_CENTER, 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); + ALIGN_CENTER, 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); + std::string(_("contributed by ")) + level->get_author(), + Vector(SCREEN_WIDTH/2, 350), ALIGN_CENTER, LAYER_FOREGROUND1); if(best_level_statistics != NULL) best_level_statistics->draw_message_info(context, _("Best Level Statistics")); @@ -271,8 +272,13 @@ GameSession::levelintro() void GameSession::on_escape_press() { - if(currentsector->player->is_dying() || end_sequence != NO_ENDSEQUENCE) + 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(); + currentsector->player->dying_timer.start(FLT_EPSILON); return; // don't let the player open the menu, when he is dying + } if(level->on_menukey_script != "") { std::istringstream in(level->on_menukey_script); @@ -281,7 +287,7 @@ GameSession::on_escape_press() toggle_pause(); } } - + void GameSession::toggle_pause() { @@ -328,26 +334,11 @@ GameSession::run_script(std::istream& in, const std::string& sourcename) void GameSession::process_events() { - Player& tux = *currentsector->player; - // end of pause mode? if(!Menu::current() && game_pause) { game_pause = false; } - if (end_sequence != NO_ENDSEQUENCE) { - if(end_sequence_controller == 0) { - end_sequence_controller = new CodeController(); - tux.set_controller(end_sequence_controller); - } - - end_sequence_controller->press(Controller::RIGHT); - - if (int(last_x_pos) == int(tux.get_pos().x)) - end_sequence_controller->press(Controller::JUMP); - last_x_pos = tux.get_pos().x; - } - // playback a demo? if(playback_demo_stream != 0) { demo_controller->update(); @@ -377,7 +368,7 @@ GameSession::process_events() capture_demo_stream ->put(main_controller->hold(Controller::RIGHT)); capture_demo_stream ->put(main_controller->hold(Controller::UP)); capture_demo_stream ->put(main_controller->hold(Controller::DOWN)); - capture_demo_stream ->put(main_controller->hold(Controller::JUMP)); + capture_demo_stream ->put(main_controller->hold(Controller::JUMP)); capture_demo_stream ->put(main_controller->hold(Controller::ACTION)); } } @@ -388,24 +379,14 @@ GameSession::check_end_conditions() Player* tux = currentsector->player; /* End of level? */ - if(end_sequence && endsequence_timer.check()) { + 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(); } } -void +void GameSession::draw(DrawingContext& context) { currentsector->draw(context); @@ -420,9 +401,9 @@ GameSession::draw_pause(DrawingContext& context) { context.draw_filled_rect( Vector(0,0), Vector(SCREEN_WIDTH, SCREEN_HEIGHT), - Color(.2, .2, .2, .5), LAYER_FOREGROUND1); + Color(.2f, .2f, .2f, .5f), LAYER_FOREGROUND1); } - + void GameSession::process_menu() { @@ -462,7 +443,7 @@ GameSession::update(float elapsed_time) // handle controller if(main_controller->pressed(Controller::PAUSE_MENU)) on_escape_press(); - + process_events(); process_menu(); @@ -484,13 +465,17 @@ GameSession::update(float elapsed_time) // Update the world state and all objects in the world if(!game_pause) { // Update the world - if (end_sequence == ENDSEQUENCE_RUNNING) { - currentsector->update(elapsed_time/2); - } else if(end_sequence == NO_ENDSEQUENCE) { + if (!end_sequence) { play_time += elapsed_time; //TODO: make sure we don't count cutscene time level->stats.time = play_time; currentsector->update(elapsed_time); - } + } else { + if (!end_sequence->is_tux_stopped()) { + currentsector->update(elapsed_time/2); + } else { + end_sequence->update(elapsed_time/2); + } + } } // update sounds @@ -499,7 +484,7 @@ GameSession::update(float elapsed_time) /* Handle music: */ if (end_sequence) return; - + if(currentsector->player->invincible_timer.started()) { if(currentsector->player->invincible_timer.get_timeleft() <= TUX_INVINCIBLE_TIME_WARNING) { @@ -521,7 +506,7 @@ GameSession::finish(bool win) if(WorldMap::current()) WorldMap::current()->finished_level(level.get()); } - + main_loop->exit_screen(); } @@ -552,7 +537,7 @@ GameSession::display_info_box(const std::string& text) bool running = true; DrawingContext context; - + while(running) { // TODO make a screen out of this, another mainloop is ugly @@ -585,38 +570,60 @@ GameSession::display_info_box(const std::string& text) void GameSession::start_sequence(const std::string& sequencename) { - if(sequencename == "endsequence" || sequencename == "fireworks") { - if(end_sequence) - return; - - end_sequence = ENDSEQUENCE_RUNNING; - endsequence_timer.start(7.3); - last_x_pos = -1; - sound_manager->play_music("music/leveldone.ogg", false); - currentsector->player->invincible_timer.start(7.3); - - // 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(); + // 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; + } - if(sequencename == "fireworks") { - currentsector->add_object(new Fireworks()); + // abort if a sequence is already playing + if (end_sequence) return; + + if (sequencename == "endsequence") { + + // 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; } - } else if(sequencename == "stoptux") { - if(!end_sequence) { - log_warning << "Final target reached without an active end sequence" << std::endl; - this->start_sequence("endsequence"); + + if (xst > xend) { + end_sequence = new EndSequenceWalkLeft(); + } else { + end_sequence = new EndSequenceWalkRight(); } - end_sequence = ENDSEQUENCE_WAITING; - } else { - log_warning << "Unknown sequence '" << sequencename << "'" << std::endl; + } + else if (sequencename == "fireworks") end_sequence = new EndSequenceFireworks(); + else { + log_warning << "Unknown sequence '" << sequencename << "'. Ignoring." << std::endl; + return; + } + + currentsector->add_object(end_sequence); + end_sequence->start(); + + 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(); } } @@ -631,4 +638,3 @@ GameSession::drawstatus(DrawingContext& context) level->stats.draw_endseq_panel(context, best_level_statistics, statistics_backdrop.get()); } } -