aboutsummaryrefslogtreecommitdiff
path: root/game/menus/shop/ButtonBuySelectBulletScript.cpp
blob: 71d8b76eabfe1213bd8d02413580c052113893da (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
#include "ButtonBuySelectBulletScript.h"
#include "../MenusConfig.h"
#include "Config.h"
#include "ValueBroker.h"
#include "manager/SaveManager.h"
#include "menus/shop/Shopconfig.h"

using namespace crepe;
using namespace std;

void ButtonBuySelectBulletScript::init() {
	IButtonScript::init();
	this->subscribe<ButtonPressEvent>([this](const ButtonPressEvent & e) {
		return this->on_button_press(e);
	});
}

bool ButtonBuySelectBulletScript::on_button_press(const ButtonPressEvent & e) {
	SaveManager & save = this->get_save_manager();
	ValueBroker<int> buy_bullet = save.get<int>(BUY_BULLET_SAVE,0);
	if(!buy_bullet.get()){
		ValueBroker<int> coins = save.get<int>(TOTAL_COINS_GAME,0);
		if(coins.get() >= 0)
		{
			int coin = coins.get();
			coin -= 0;
			save.set(TOTAL_COINS_GAME,coin);
			save.set(BUY_BULLET_SAVE,1);
		}
	}
	else {
		save.set(JETPACK_PARTICLES,0);
	}
	this->trigger_event<ShopUpdate>();
	return false;
}