aboutsummaryrefslogtreecommitdiff
path: root/game/scheduler/ObjectsScheduler.h
blob: bd0701b2ebeb418f7e284178c23a3d47f00f9c60 (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
#pragma once

#include "api/Script.h"
#include <functional>
#include <vector>

class ObjectsScheduler : public crepe::Script {

private:
	std::vector<std::function<void()>> obstacles;

	int last_boss_check = 0;
	int last_obstacle_check = 0;

	int boss_fight_interval = 5000;
	int obstacle_interval = 350;
	int start_offset = 1300;

private:
	void preset_0();
	void preset_1();
	void preset_2();
	void preset_3();
	void preset_4();
	void boss_fight_1();

	bool boss_fight_1_event();

public:
	void init();
	void fixed_update(crepe::duration_t dt);
};