aboutsummaryrefslogtreecommitdiff
path: root/game/menus/BannerSubScene.cpp
blob: 006a829b4928ec95e9957e06cffd358a14af1b58 (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
#include "BannerSubScene.h"
#include "MenusConfig.h"

#include "../Config.h"

#include <crepe/api/Scene.h>
#include <crepe/api/Sprite.h>
#include <crepe/api/Text.h>

using namespace crepe;
using namespace std;

void BannerSubScene::create(Scene & scn, const Data & data) {
	GameObject menu_banner = scn.new_object("menu_banner", "", {0, -414});
	menu_banner.add_component<Sprite>(
		Asset("asset/ui/settings_container/top_middle_setting.png"),
		Sprite::Data {
			.sorting_in_layer = STARTING_SORTING_IN_LAYER + 1,
			.size = {1100, 88},
		}
	);
	menu_banner.add_component<Sprite>(
		Asset("asset/ui/settings_container/top_2_middle_setting.png"),
		Sprite::Data {
			.sorting_in_layer = STARTING_SORTING_IN_LAYER + 1,
			.size = {1100, 66},
			.position_offset {0, 77},
		}
	);
	menu_banner.add_component<Sprite>(
		Asset("asset/ui/settings_container/banner_bottom.png"),
		Sprite::Data {
			.sorting_in_layer = STARTING_SORTING_IN_LAYER + 1,
			.size = {1100, 7},
			.position_offset {0, 113},
		}
	);
	crepe::vec2 size
		= {data.banner_title_width, (data.banner_title_width / data.banner_title.size()) * 2};

	menu_banner.add_component<Text>(
		size, FONT,
		Text::Data {
			.world_space = true,
			.text_color = Color::WHITE,
		},
		data.banner_title_offset + FONTOFFSET, data.banner_title
	);
}