From f2028cd4def82f5f6a52392ff011f6d0fa4aa315 Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Tue, 7 Jan 2025 22:07:32 +0100 Subject: correct naming --- game/menus/ButtonNextMainMenuScript.cpp | 40 --------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 game/menus/ButtonNextMainMenuScript.cpp (limited to 'game/menus/ButtonNextMainMenuScript.cpp') diff --git a/game/menus/ButtonNextMainMenuScript.cpp b/game/menus/ButtonNextMainMenuScript.cpp deleted file mode 100644 index 7ebb2cf..0000000 --- a/game/menus/ButtonNextMainMenuScript.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include "ButtonNextMainMenuScript.h" -#include "MenusConfig.h" -#include "ValueBroker.h" - -#include "manager/SaveManager.h" - -#include "../Config.h" - -#include -#include - -using namespace crepe; -using namespace std; - -void ButtonNextMainMenuScript::init(){ - IButtonScript::init(); - this->subscribe([this](const ButtonPressEvent& e) { return this->on_button_press(e); }); -} - -bool ButtonNextMainMenuScript::on_button_press(const ButtonPressEvent& e){ - RefVector audios = this->get_components_by_name("background_music"); - - for (AudioSource & audio : audios) { - audio.stop(); - } - - SaveManager & savemgr = this->get_save_manager(); - - ValueBroker coins = savemgr.get(TOTAL_COINS_RUN,0); - ValueBroker coins_game = savemgr.get(TOTAL_COINS_GAME,0); - savemgr.set(TOTAL_COINS_GAME, coins_game.get()+coins.get()); - - ValueBroker distance = savemgr.get(DISTANCE_RUN,0); - ValueBroker distance_game = savemgr.get(DISTANCE_GAME,0); - if(distance.get() > distance_game.get()) savemgr.set(DISTANCE_GAME, distance.get()); - - this->set_next_scene(MAINMENU_SCENE); - return false; -} - -- cgit v1.2.3