blob: 82c11009ccec894c77a3e0aadf46d57626b9607e (
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
50
51
52
53
54
|
#ifndef SCENE_H
#define SCENE_H
#include "vector.h"
#include "terrain.h"
#include "gl.h"
#include "shader.h"
#include "gui.h"
#include "tool.h"
#include <FTGL/ftgl.h>
class Scene {
public:
float pitch, yaw;
Vector3 pos;
float yvel;
Terrain *terrain;
FTFont *font;
GUI *gui;
Tool *tool;
bool running;
bool grid;
bool normals;
bool render_terrain;
bool gravity;
bool dialog;
Terrain::Node *last_node;
unsigned int last_time;
Vector3 selected;
bool do_select, show_selection;
int sx, sy;
GLShaderProgram terrain_program;
GLuint grass_texture, rock_texture, soil_texture, marker_texture;
Scene();
~Scene();
void lookat();
void move(float forward, float right, int steps);
bool select(int x, int y, float& px, float& py, float& pz);
void update();
void events();
void render();
GLuint load_texture(const char *filename);
};
#endif
|