aboutsummaryrefslogtreecommitdiff
path: root/game/menus/shop/ShopMenuScene.cpp
diff options
context:
space:
mode:
authorMax-001 <maxsmits21@kpnmail.nl>2025-01-08 09:52:00 +0100
committerMax-001 <maxsmits21@kpnmail.nl>2025-01-08 09:52:00 +0100
commitb1824253875901b4fb6f4c5fee72aea6d807d370 (patch)
tree8acc156e68d48022f453dcf06b541f77a5803484 /game/menus/shop/ShopMenuScene.cpp
parente9082de7d114ce024a884cac38c545c99de4026a (diff)
parente75ca1c947f3cde19bebf15049732bc069c6e913 (diff)
Merge remote-tracking branch 'origin/master' into max/game2
Diffstat (limited to 'game/menus/shop/ShopMenuScene.cpp')
-rw-r--r--game/menus/shop/ShopMenuScene.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/game/menus/shop/ShopMenuScene.cpp b/game/menus/shop/ShopMenuScene.cpp
new file mode 100644
index 0000000..21e3f02
--- /dev/null
+++ b/game/menus/shop/ShopMenuScene.cpp
@@ -0,0 +1,55 @@
+
+#include "ShopMenuScene.h"
+
+#include "../BannerSubScene.h"
+#include "../ButtonSubScene.h"
+#include "../MenusConfig.h"
+
+#include <crepe/api/Camera.h>
+#include <crepe/api/Sprite.h>
+
+using namespace crepe;
+using namespace std;
+
+void ShopMenuScene::load_scene() {
+ GameObject camera_object = this->new_object(CAMERA_NAME);
+ camera_object.add_component<Camera>(
+ ivec2(990, 720), vec2(1100, 800),
+ Camera::Data {
+ .bg_color = Color::RED,
+ }
+ );
+ BannerSubScene banner;
+ banner.create(
+ *this,
+ {
+ .banner_title = "SHOP",
+ .banner_title_width = 200,
+ .banner_title_offset = {0, 65},
+ }
+ );
+ GameObject menu_background = this->new_object("menu_background");
+ menu_background.add_component<Sprite>(
+ Asset("asset/ui/background.png"),
+ Sprite::Data {
+ .sorting_in_layer = STARTING_SORTING_IN_LAYER + 0,
+ .size = {1100, 860},
+ .position_offset {0},
+ }
+ );
+
+ ButtonSubScene button;
+ button.create(
+ *this,
+ ButtonSubScene::Data {
+ .text = "BACK",
+ .text_width = 115,
+ .position = {-400, -350},
+ .script_type = ButtonSubScene::ScriptSelect::MAINMENU,
+ .button_type = ButtonSubScene::ButtonSelect::BACK,
+ .scale = 0.8
+ }
+ );
+}
+
+string ShopMenuScene::get_name() const { return SHOP_SCENE; }