Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef AESOP_INTERFACE_ZONE_H__
00036 #define AESOP_INTERFACE_ZONE_H__
00037
00038
00039 #include "typeinst/typeinst.h"
00040
00041
00042 namespace aesop {
00043
00044
00045
00046 class LeafZone;
00047
00049
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070 class Zone {
00071 public:
00072
00073 enum eType {
00074 eType_Parent = 0x01,
00075 eType_Leaf = 0x02,
00076 eType_VirtualLeaf = 0x12,
00077
00078 eType_Invalid = 0x00
00079 };
00080
00081
00082 virtual ~Zone(void) throw();
00083
00084
00085
00087 virtual const char * getId(void) const throw() = 0;
00088
00090 virtual eType getType(void) const throw() = 0;
00091
00093 virtual void getBoundingRect(OUT rect3d_t& r) const = 0;
00094
00096 virtual bool containsPoint(IN const point3d_t& p) const throw() = 0;
00097
00099 virtual LeafZone * getLeafZone(IN const point3d_t& p) throw() = 0;
00100
00102 virtual const LeafZone * getLeafZone(IN const point3d_t& p) const throw() = 0;
00103
00104
00105 virtual void * getUserPointer(void) const throw() = 0;
00106 virtual void setUserPointer(void *) throw() = 0;
00107 };
00108
00109
00110
00112
00115
00116 typedef void (*leafzone_iteration_fn)(
00117 IN LeafZone * lz,
00118 IN void * context);
00119
00120
00122
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161 class LeafZone : public Zone {
00162 public:
00163
00164 virtual ~LeafZone(void) throw();
00165
00166
00167
00169 virtual void iterateVisibleZones(IN leafzone_iteration_fn callback,
00170 IN void * context) = 0;
00171
00174 virtual bool isLeafVisible(IN LeafZone * lzRemote) throw() = 0;
00175
00178 virtual void iterateStaticInstances(IN instance_iteration_fn callback,
00179 IN void * context) = 0;
00180 };
00181
00182
00183
00184 };
00185
00186
00187 #endif // AESOP_INTERFACE_ZONE_H__
00188