| 1 |
root |
1.1 |
#ifndef VIEW_H |
| 2 |
|
|
#define VIEW_H |
| 3 |
|
|
|
| 4 |
|
|
#include <set> |
| 5 |
root |
1.4 |
#include <map> |
| 6 |
root |
1.1 |
|
| 7 |
|
|
using namespace std; |
| 8 |
|
|
|
| 9 |
|
|
#include "util.h" |
| 10 |
|
|
|
| 11 |
root |
1.2 |
struct view { |
| 12 |
|
|
sector orig; |
| 13 |
|
|
point p; |
| 14 |
|
|
vec3 d, u; |
| 15 |
|
|
float fov; |
| 16 |
|
|
int w, h; |
| 17 |
|
|
|
| 18 |
|
|
void draw (draw_context &ctx); |
| 19 |
|
|
}; |
| 20 |
|
|
|
| 21 |
root |
1.4 |
struct visibility_state { |
| 22 |
|
|
unsigned int generation; |
| 23 |
root |
1.6 |
enum { UNKNOWN, OCCLUDED, PARTIAL, FULL } visibility; |
| 24 |
root |
1.4 |
|
| 25 |
root |
1.5 |
visibility_state () : generation(0), visibility(UNKNOWN) { }; |
| 26 |
root |
1.4 |
}; |
| 27 |
|
|
|
| 28 |
root |
1.1 |
struct draw_context { |
| 29 |
root |
1.5 |
view &v; |
| 30 |
|
|
|
| 31 |
root |
1.8 |
matrix projection; |
| 32 |
root |
1.9 |
|
| 33 |
root |
1.11 |
void transform (const matrix &m); |
| 34 |
|
|
|
| 35 |
root |
1.5 |
struct { |
| 36 |
|
|
plane l, r, t, b, n, f; |
| 37 |
|
|
} frustum; |
| 38 |
root |
1.1 |
enum { DEPTH, LIGHTED } mode; |
| 39 |
|
|
light *l; |
| 40 |
|
|
set<entity_base *> drawn; |
| 41 |
root |
1.4 |
|
| 42 |
|
|
unsigned int generation; |
| 43 |
|
|
map<octant *, visibility_state> vismap; |
| 44 |
root |
1.6 |
vector<octant *> vislist; // octants partially or fully visible |
| 45 |
|
|
vector<octant *> checklist; // octants possibly visible |
| 46 |
root |
1.1 |
|
| 47 |
|
|
bool may_draw (entity_base *e); |
| 48 |
|
|
|
| 49 |
root |
1.2 |
draw_context (view &v); |
| 50 |
root |
1.1 |
~draw_context (); |
| 51 |
|
|
}; |
| 52 |
root |
1.7 |
|
| 53 |
root |
1.1 |
#endif |
| 54 |
|
|
|