-
Notifications
You must be signed in to change notification settings - Fork 18
/
ShowSceneMode.hpp
36 lines (29 loc) · 1006 Bytes
/
ShowSceneMode.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
#pragma once
/*
*
* ShowSceneMode exists to show the contents of a Scene; this can be useful
* if, e.g., you aren't sure if things are being exported properly.
*
*/
#include "Mode.hpp"
#include "Scene.hpp"
#include "Mesh.hpp"
struct ShowSceneMode : Mode {
ShowSceneMode(Scene const &scene);
virtual ~ShowSceneMode();
virtual bool handle_event(SDL_Event const &, glm::uvec2 const &window_size) override;
virtual void draw(glm::uvec2 const &drawable_size) override;
//z-up trackball-style camera controls:
struct {
float radius = 2.0f;
float azimuth = 0.3f; //angle ccw of -y axis, in radians, [-pi,pi]
float elevation = 0.2f; //angle above ground, in radians, [-pi,pi]
glm::vec3 target = glm::vec3(0.0f);
bool flip_x = false; //flip x inputs when moving? (used to handle situations where camera is upside-down)
} camera;
//Scene being viewed:
Scene const &scene;
//mode uses a secondary Scene to hold a camera:
Scene camera_scene;
Scene::Camera *scene_camera = nullptr;
};