blob: e88b3294bb613f3f8a7707079ff73b473bf1a7b5 (
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
|
#include "StartGameScript.h"
#include "Config.h"
#include "api/BehaviorScript.h"
#include <crepe/api/Animator.h>
#include <crepe/api/AudioSource.h>
#include <crepe/api/ParticleEmitter.h>
#include <crepe/api/Sprite.h>
using namespace crepe;
using namespace std;
void StartGameScript::fixed_update(crepe::duration_t dt) {
Transform & player_transform = this->get_components_by_name<Transform>("player").front();
// Create hole in wall and activate panic lamp
if (player_transform.position.x > 75 && !this->created_hole) {
Sprite & lamp_sprite = this->get_components_by_name<Sprite>("start_end").back();
lamp_sprite.active = true;
Sprite & hole_sprite = this->get_components_by_name<Sprite>("start_hole").front();
hole_sprite.active = true;
RefVector<Rigidbody> frags_rg
= this->get_components_by_tag<Rigidbody>("wall_fragment");
RefVector<Sprite> frags_sprite = this->get_components_by_tag<Sprite>("wall_fragment");
for (Rigidbody & frag_rg : frags_rg) {
frag_rg.active = true;
}
for (Sprite & frag_sprite : frags_sprite) {
frag_sprite.active = true;
}
RefVector<ParticleEmitter> smoke_emitters
= this->get_components_by_name<ParticleEmitter>("smoke_particles");
for (ParticleEmitter & emitter : smoke_emitters) {
emitter.active = true;
}
AudioSource & boom_audio
= this->get_components_by_name<AudioSource>("boom_audio").front();
boom_audio.play();
BehaviorScript & player_audio_script
= this->get_components_by_name<BehaviorScript>("player_audio").front();
player_audio_script.active = true;
this->created_hole = true;
}
// Take jetpack from jetpack stand
if (player_transform.position.x > 275 && !this->took_jetpack) {
Animator & jetpack_stand_anim
= this->get_components_by_name<Animator>("start_begin").back();
jetpack_stand_anim.next_anim();
Sprite & jetpack_sprite = this->get_components_by_name<Sprite>("player").back();
jetpack_sprite.active = true;
AudioSource & background_music
= this->get_components_by_name<AudioSource>("background_music").front();
background_music.play(true);
this->took_jetpack = true;
}
// Start camera movement, enable player jumping and disable this script
if (player_transform.position.x > 500) {
Rigidbody & rb = this->get_components_by_name<Rigidbody>("camera").front();
rb.data.linear_velocity = vec2(PLAYER_SPEED * dt.count(), 0);
BehaviorScript & player_script
= this->get_components_by_name<BehaviorScript>("player").front();
player_script.active = true;
BehaviorScript & this_script
= this->get_components_by_name<BehaviorScript>("start_game_script").front();
this_script.active = false;
}
}
|