blob: a3c7fbaedaf0385c9b0835f317d9210d16b41f2f (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#include <crepe/util/OptionalRef.h>
#include <crepe/api/BoxCollider.h>
#include <crepe/api/Camera.h>
#include <crepe/api/Color.h>
#include <crepe/api/Event.h>
#include <crepe/api/GameObject.h>
#include <crepe/api/LoopManager.h>
#include <crepe/api/Rigidbody.h>
#include <crepe/api/Scene.h>
#include <crepe/api/Script.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Texture.h>
#include <crepe/api/Transform.h>
#include <crepe/manager/ComponentManager.h>
#include <crepe/manager/Mediator.h>
#include <crepe/manager/ReplayManager.h>
using namespace crepe;
using namespace std;
class AnimationScript : public Script {
Transform * transform;
float t = 0;
void init() {
transform = &get_component<Transform>();
}
void update() {
t += 0.05;
transform->position = { sin(t), cos(t) };
}
};
class Timeline : public Script {
unsigned i = 0;
OptionalRef<ReplayManager> mgr;
recording_t recording;
void update() {
ReplayManager & mgr = this->mgr;
switch (i++) {
default: break;
case 10:
mgr.record_start();
Log::logf("start");
break;
case 60:
this->recording = mgr.record_end();
Log::logf("stop");
break;
case 70:
mgr.play(this->recording);
Log::logf("play");
break;
case 71:
mgr.release(this->recording);
Log::logf("end");
break;
case 72:
Log::logf("exit");
throw;
break;
};
}
};
class TestScene : public Scene {
public:
using Scene::Scene;
void load_scene() {
Mediator & m = this->mediator;
ComponentManager & mgr = m.component_manager;
GameObject cam = mgr.new_object("cam");
cam.add_component<Camera>(ivec2{640,480},vec2{3,3}, Camera::Data{
.bg_color = Color::WHITE,
});
GameObject square = mgr.new_object("square");
Texture texture{"asset/texture/square.png"};
square.add_component<Sprite>(texture, Sprite::Data{
.size = { 0.5, 0.5 },
});
square.add_component<BehaviorScript>().set_script<AnimationScript>();
GameObject scapegoat = mgr.new_object("");
scapegoat.add_component<BehaviorScript>().set_script<Timeline>();
}
string get_name() const { return "scene1"; }
};
int main(int argc, char * argv[]) {
LoopManager gameloop;
gameloop.add_scene<TestScene>();
gameloop.start();
return 0;
}
|