-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScene.hpp
56 lines (42 loc) · 1.36 KB
/
Scene.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
#pragma once
#include <3ds.h>
#include <citro2d.h>
#include <stdint.h>
#include <memory>
#include <vector>
#include "Drawable.hpp"
#include "RenderWindow.hpp"
class Scene {
public:
// Pure virtual function
/// Called when the scene is initially created (one shot)
virtual void onCreate() = 0;
/// Called if/when the scene is destroyed (one shot)
virtual void onDestroy() = 0;
/// Called whenever the scene gains focus
virtual void onFocus() {};
/// Called whenever the scene loses focus ('blur')
virtual void onBlur() {};
/// Whether it is safe to terminate the scene now
virtual bool canQuit() { return true; };
// To be overridden as necessary
virtual void processInput() {};
virtual void update(float a_timeDelta) {};
virtual void lateUpdate(float a_timeDelta) {};
virtual void draw(RenderWindow& a_renderWindowUpper, RenderWindow& a_renderWindowLower);
// void begin() { renderWindow->beginDraw(); }
// bool renderObjects() {
// renderWindow->beginDraw();
// for (auto&& obj : drawables) {
// obj->draw();
// }
// return true;
// };
// void init();
// void clear(u32 a_color);
// std::vector<std::shared_ptr<Drawable>> drawables;
// private:
// RenderWindow* renderWindow;
// gfxScreen_t screen;
// gfx3dSide_t stereoSide;
};