aboutsummaryrefslogtreecommitdiff
path: root/game/menus/mainmenu/ITransitionScript.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2025-01-08 10:47:47 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2025-01-08 10:47:47 +0100
commit65cdd7966c276dd7b1ffec7bf0de243b9370eeb1 (patch)
tree938c6ed098f2141a6a5c2d56146325938ae868bd /game/menus/mainmenu/ITransitionScript.cpp
parent6112da75f973b1099fa95fcd9d3113c00302f5b4 (diff)
parentad5fb53986fcc3f3b3c5369574e0f8e95051f3d9 (diff)
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/enemyAI
Diffstat (limited to 'game/menus/mainmenu/ITransitionScript.cpp')
-rw-r--r--game/menus/mainmenu/ITransitionScript.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/game/menus/mainmenu/ITransitionScript.cpp b/game/menus/mainmenu/ITransitionScript.cpp
new file mode 100644
index 0000000..cd929a0
--- /dev/null
+++ b/game/menus/mainmenu/ITransitionScript.cpp
@@ -0,0 +1,29 @@
+#include "ITransitionScript.h"
+#include "MainMenuConfig.h"
+
+#include "../MenusConfig.h"
+
+#include <crepe/api/Camera.h>
+#include <crepe/api/Transform.h>
+#include <crepe/types.h>
+
+using namespace crepe;
+using namespace std;
+
+void ITransitionScript::frame_update(crepe::duration_t delta_time) {
+ if (this->transition) {
+ // cout << "transition:" << velocity << std::endl;
+ Transform & cam = this->get_components_by_name<Transform>(CAMERA_NAME).front();
+ RefVector<Transform> info_tf = this->get_components_by_tag<Transform>(MENU_INFO_TAG);
+ for (Transform & tf : info_tf) {
+ tf.position.y -= VELOCITY_INFO_UP * delta_time.count();
+ }
+ if (velocity < VELOCITY_MAX && cam.position.x < SLOW_DOWN)
+ velocity += VELOCITY_STEP * delta_time.count();
+ else if (velocity > 20) velocity -= VELOCITY_STEP * delta_time.count();
+ if (cam.position.x < END) cam.position.x += (velocity * delta_time.count());
+ if (cam.position.x >= END) {
+ this->set_next_scene(this->get_scene_name());
+ }
+ }
+}