blob: 21d7a8d41e21a3d871d7fb229e30535f07ad584e (
plain) (
blame)
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
75
76
77
78
79
80
81
82
83
84
|
/** CSci-4611 Assignment 3: Earthquake
*/
#ifndef QUAKEAPP_H_
#define QUAKEAPP_H_
#include <mingfx.h>
using namespace mingfx;
#include "earthquake_database.h"
#include "earth.h"
#include <string>
#include <vector>
/** Main application class for the Earthquake app.
*/
class QuakeApp : public GraphicsApp {
public:
QuakeApp();
virtual ~QuakeApp();
/// Dragging with the mouse tilts the earth when in globe mode
void OnLeftMouseDrag(const Point2 &pos, const Vector2 &delta);
/// Pressing the globe button toggles between flat earth and sphere earth modes
void OnGlobeBtnPressed();
/// Pressing the debug button toggles on/off the underlying triangle mesh and normals
void OnDebugBtnPressed();
/// The slides controls the speed of the playback for the earthquakes animation
void OnSliderUpdate(float value);
/// The animation gets updated inside this function.
void UpdateSimulation(double dt);
/// Initializes NanoGUI widgets
void InitNanoGUI();
/// The models and textures get initialized in this function.
void InitOpenGL();
/// The earth and earthquake spheres get drawn in this function.
void DrawUsingOpenGL();
private:
// controls playback
double current_time_;
double playback_scale_;
// true if drawing debugging info for the mesh
bool debug_mode_;
// Database through which you can access the earthquakes
EarthquakeDatabase quake_db_;
// Object for rendering textured earth geometry
Earth earth_;
// Background image
Texture2D stars_tex_;
// Sets up the computer graphics camera
Matrix4 view_matrix_;
Matrix4 proj_matrix_;
// Gui elements
nanogui::Button *globe_btn_;
nanogui::Label *date_label_;
nanogui::TextBox *speed_box_;
// A list of paths to search for data files (images and shaders)
std::vector<std::string> search_path_;
// Used to draw a background texture, you can also use this to draw the
// earthquakes if you want.
QuickShapes quick_shapes_;
};
#endif
|