ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libgender/oct.h
Revision: 1.18
Committed: Sat Oct 16 23:28:22 2004 UTC (19 years, 7 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.17: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #ifndef OCT_H
2     #define OCT_H
3    
4 root 1.2 #include <vector>
5    
6 root 1.1 using namespace std;
7    
8 root 1.2 #include "util.h"
9 root 1.12 #include "view.h"
10 root 1.2
11 root 1.15 struct octant : vector<entity *>, recv_occ_query, visible
12 root 1.14 {
13 root 1.1 struct octant *parent;
14 root 1.3 /* front 23 back 67
15     * 01 45 */
16 root 1.1 struct octant *sub[8];
17 root 1.2 int fill;
18 root 1.3 sector orig;
19     uoffs extent;
20 root 1.17 gl::vertex_buffer_object vb_bbox;
21 root 1.1
22 root 1.11 void add (entity *e);
23     void remove (entity *e);
24 root 1.1
25 root 1.18 bool depth_pass (view &ctx); // is this octant actually visible?
26 root 1.8 void display (view &ctx);
27 root 1.2
28 root 1.12 void event (occ_query &ev);
29 root 1.15 visibility_base *new_visibility ();
30     void clear_visibility (visibility_base *vs);
31 root 1.12
32 root 1.6 octant (octant *parent, const sector &orig, uoffs extent);
33 root 1.1 ~octant ();
34     };
35    
36 root 1.2 extern octant world;
37    
38 root 1.1 #endif
39 root 1.2
40