-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSceneMenu.hpp
74 lines (57 loc) · 1.91 KB
/
SceneMenu.hpp
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
/*
* Rhythm Run for Nintendo 3DS
* Lauren Kelly, 2021
*/
#pragma once
#include <3ds.h>
#include <citro2d.h>
#include <memory>
#include <opus.h>
#include <opusfile.h>
#include "AudioManager.hpp"
#include "Entity.hpp"
#include "Label.hpp"
#include "LabelledButton.hpp"
#include "RenderWindow.hpp"
#include "Scene.hpp"
#include "SceneManager.hpp"
class SceneMenu : public Scene {
public:
SceneMenu(SceneManager& a_sceneManager,
AudioManager& a_audioManager,
unsigned int a_gameplaySceneId,
unsigned int a_splashSceneId);
// SceneMenu(SceneManager& a_sceneManager, unsigned int a_spriteIndex);
// Implement the Scene interface
void onCreate() override;
void onDestroy() override;
void onFocus() override;
void onBlur() override; // not used
// void setNextSceneId(unsigned int a_id);
void processInput() override;
void update(float a_timeDelta) override;
// void lateUpdate(float a_timeDelta) override;
void draw(RenderWindow& a_renderWindowUpper, RenderWindow& a_renderWindowLower) override;
// void draw(RenderWindow& a_renderWindow);
private:
SceneManager& sceneManager;
AudioManager& audioManager;
unsigned int gameplaySceneId;
unsigned int splashSceneId;
/// Which scene will we transition to after the splash screen?
// unsigned int nextSceneId;
/// For how long should the splash screen stay active?
// float durationEnd;
/// For how long has the splash screen been displayed?
// float durationElapsed;
C2D_SpriteSheet spriteSheet;
std::shared_ptr<Entity> splashImageEntity;
std::shared_ptr<LabelledButton> button1;
std::shared_ptr<Label> button1Label;
std::shared_ptr<LabelledButton> button2;
// std::shared_ptr<Label> button2Label;
std::shared_ptr<LabelledButton> button3;
// std::shared_ptr<Label> button3Label;
std::shared_ptr<OggOpusFile> opusFile;
unsigned int audioId;
};