blob: e03a34ac68f36483a1ef8041abdac2dfac78c0f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#include "ButtonNextMainMenuSubScript.h"
#include "MenusConfig.h"
#include "ValueBroker.h"
#include "manager/SaveManager.h"
#include "../Config.h"
#include <crepe/api/AudioSource.h>
#include <crepe/types.h>
using namespace crepe;
using namespace std;
void ButtonNextMainMenuSubScript::init() {
IButtonScript::init();
this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent & e) {
return this->on_button_press(e);
});
}
bool ButtonNextMainMenuSubScript::on_button_press(const ButtonPressEvent & e) {
RefVector<AudioSource> audios
= this->get_components_by_name<AudioSource>("background_music");
for (AudioSource & audio : audios) {
audio.stop();
}
SaveManager & savemgr = this->get_save_manager();
ValueBroker<int> coins = savemgr.get<int>(TOTAL_COINS_RUN, 0);
ValueBroker<int> coins_game = savemgr.get<int>(TOTAL_COINS_GAME, 0);
savemgr.set(TOTAL_COINS_GAME, coins_game.get() + coins.get());
ValueBroker<int> distance = savemgr.get<int>(DISTANCE_RUN, 0);
ValueBroker<int> distance_game = savemgr.get<int>(DISTANCE_GAME, 0);
if (distance.get() > distance_game.get()) savemgr.set(DISTANCE_GAME, distance.get());
this->set_next_scene(MAINMENU_SCENE);
return false;
}
|