aboutsummaryrefslogtreecommitdiff
path: root/game/PreviewScene.cpp
blob: 6871961a14b3ca647a1a00bcc7c91f327e62aecf (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#include "PreviewScene.h"

#include "Config.h"
#include "background/BackgroundSubScene.h"
#include "hud/HudScript.h"
#include "hud/HudSubScene.h"
#include "hud/SpeedScript.h"
#include "menus/ButtonSubScene.h"
#include "missile/MissilePool.h"
#include "missile/SpawnEvent.h"
#include "preview/NpcSubScene.h"
#include "preview/PrevPlayerSubScene.h"
#include "preview/SmokeSubScene.h"

#include "missile/MissileSubScene.h"

#include <cmath>
#include <crepe/api/Animator.h>
#include <crepe/api/Asset.h>
#include <crepe/api/AudioSource.h>
#include <crepe/api/BehaviorScript.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/ParticleEmitter.h>
#include <crepe/api/Rigidbody.h>
#include <crepe/api/Script.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Transform.h>

#include <crepe/ValueBroker.h>
#include <crepe/manager/SaveManager.h>
#include <crepe/types.h>
#include <iostream>

using namespace crepe;
using namespace std;

void PreviewScene::load_scene() {

	BackgroundSubScene background(*this);

	GameObject camera = new_object("camera", "camera", vec2(650, 0));
	camera.add_component<Camera>(
		ivec2(990, 720), vec2(VIEWPORT_X, VIEWPORT_Y),
		Camera::Data {
			.bg_color = Color::RED,
		}
	);
	camera.add_component<Rigidbody>(Rigidbody::Data {});
	camera.add_component<BehaviorScript>().set_script<MissileSpawnEventHandler>();
	camera.add_component<BehaviorScript>().set_script<HudScript>();
	camera.add_component<BehaviorScript>().set_script<SpeedScript>();

	GameObject floor = new_object("floor", "game_world", vec2(0, 325));
	floor.add_component<Rigidbody>(Rigidbody::Data {
		.body_type = Rigidbody::BodyType::STATIC,
		.collision_layer = COLL_LAY_BOT_TOP,
	});
	floor.add_component<BoxCollider>(vec2(INFINITY, 200));
	GameObject floor_low = new_object("floor_low", "game_world", vec2(0, 350));
	floor_low.add_component<Rigidbody>(Rigidbody::Data {
		.body_type = Rigidbody::BodyType::STATIC,
		.collision_layer = COLL_LAY_BOT_LOW,
	});
	floor_low.add_component<BoxCollider>(vec2(INFINITY, 200));
	GameObject floor_high = new_object("floor_high", "game_world", vec2(0, 300));
	floor_high.add_component<Rigidbody>(Rigidbody::Data {
		.body_type = Rigidbody::BodyType::STATIC,
		.collision_layer = COLL_LAY_BOT_HIGH,
	});
	GameObject ceiling = new_object("ceiling", "game_world", vec2(0, -325));
	ceiling.add_component<Rigidbody>(Rigidbody::Data {
		.body_type = Rigidbody::BodyType::STATIC,
		.collision_layer = COLL_LAY_BOT_TOP,
	});
	ceiling.add_component<BoxCollider>(vec2(INFINITY, 200));
	GameObject world = this->new_object("world", "TAG", vec2 {0, 0}, 0, 1);

	world.add_component<Rigidbody>(Rigidbody::Data {
		.body_type = Rigidbody::BodyType::STATIC,
		.collision_layers = {0},
	});

	PrevPlayerSubScene player(*this);
	NpcSubScene npc(*this);
	SmokeSubScene smoke(*this);
	MissilePool mpool(*this);

	HudSubScene hud;
	hud.create(*this);


	const float Y_POS_BUTTONS = -220;
	const float X_POS_BUTTONS = -150;
	const float X_POS_BUTTONS_SPACING = 145;
	ButtonSubScene button;
	button.create(
		*this,
		ButtonSubScene::Data {
			.text = "BACK",
			.text_width = 60,
			.position = {X_POS_BUTTONS,Y_POS_BUTTONS},
			.script_type = ButtonSubScene::ScriptSelect::NEXT,
			.button_type = ButtonSubScene::ButtonSelect::BACK,
			.scale = 0.6,
			.worldspace = false,
			.tag = "Next button",
			.sorting_layer_offset = 20,
		}
	);

	button.create(
		*this,
		ButtonSubScene::Data {
			.text = "START REC",
			.text_width = 130,
			.position = {X_POS_BUTTONS+X_POS_BUTTONS_SPACING,Y_POS_BUTTONS},
			.script_type = ButtonSubScene::ScriptSelect::PREVIEW_START,
			.button_type = ButtonSubScene::ButtonSelect::LARGE,
			.scale = 0.6,
			.worldspace = false,
			.tag = "Next button",
			.sorting_layer_offset = 20,
			.btn_side_color = ButtonSubScene::ButtonSideColor::YELLOW,
		}
	);

	button.create(
		*this,
		ButtonSubScene::Data {
			.text = "STOP REC",
			.text_width = 120,
			.position = {X_POS_BUTTONS+X_POS_BUTTONS_SPACING*2,Y_POS_BUTTONS},
			.script_type = ButtonSubScene::ScriptSelect::PREVIEW_STOP,
			.button_type = ButtonSubScene::ButtonSelect::LARGE,
			.scale = 0.6,
			.worldspace = false,
			.tag = "Next button",
			.sorting_layer_offset = 20,
			.btn_side_color = ButtonSubScene::ButtonSideColor::BLUE,
		}
	);

	button.create(
		*this,
		ButtonSubScene::Data {
			.text = "REPLAY",
			.text_width = 90,
			.position = {X_POS_BUTTONS+X_POS_BUTTONS_SPACING*3,Y_POS_BUTTONS},
			.script_type = ButtonSubScene::ScriptSelect::PREVIEW_REPLAY,
			.button_type = ButtonSubScene::ButtonSelect::LARGE,
			.scale = 0.6,
			.worldspace = false,
			.tag = "Next button",
			.sorting_layer_offset = 20,
			.btn_side_color = ButtonSubScene::ButtonSideColor::ORANGE,
		}
	);

	/*
	
	for (int i = 0; i < 200; ++i) {
		int row = i / 10;
		int col = i % 10;
		float x = col * 25 + i;
		float y = row * 25 - 400;
		GameObject game_coin = this->new_object("coin", "coin", vec2 {x, y}, 0, 1);
		Coin coin(game_coin, vec2 {0, 0});
	}
	  */
}

string PreviewScene::get_name() const { return "preview scene"; }