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 #ifndef AESOP_MAP_MAP_H__
00035 #define AESOP_MAP_MAP_H__
00036
00037
00038 #include "zone.h"
00039
00040 #include <iostream>
00041
00042
00043 namespace aesop {
00044
00057
00060
00061 struct destination_t {
00062
00063 destination_t(void) throw() { this->clear(); }
00064 void clear(void) throw() {
00065 id[0] = 0;
00066 rect.clear();
00067 }
00068
00069
00070 char id[eAESOP_IdBufferSize];
00071 rect3d_t rect;
00072 };
00073
00074
00075
00077 typedef void (*zone_iteration_fn)(IN Zone * zone,
00078 IN void * context);
00079
00080
00102 class Map {
00103 public:
00104
00105 virtual ~Map(void) throw();
00106
00107
00108 virtual const char * getId(void) const throw() = 0;
00109 virtual Zone * getRootZone(void) throw() = 0;
00110 virtual Zone * getZone(IN const char * zone_id) = 0;
00111 virtual void iterateZones(IN zone_iteration_fn,
00112 IN void * context) = 0;
00113 virtual const char * getDefaultStartingPointId(void) const throw() = 0;
00114 virtual void getStartingPointIds(OUT VecString& ids) const = 0;
00115 virtual void getStartingPoint(IN const char * id,
00116 OUT destination_t& start) const = 0;
00117 };
00118
00119
00120
00122
00123
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
00151
00152
00153
00154 smart_ptr<Map> loadMap(IN const char * id,
00155 IN const char * path_to_map_file);
00156
00157
00158
00165 class MapFormatReader {
00166 public:
00167
00168 virtual ~MapFormatReader(void) throw();
00169
00170
00171 virtual const char * getDescription(void) = 0;
00172 virtual bool isMyFormat(IN const char * mapId,
00173 IN const char * path_to_map_file) = 0;
00174 virtual smart_ptr<Map> loadMap(IN const char * mapId,
00175 IN const char * path_to_map_file) = 0;
00176 };
00177
00178
00179
00181 void registerMapFormatReader(IN smart_ptr<MapFormatReader>& reader);
00182
00183
00184
00185 };
00186
00187 #endif // AESOP_MAP_MAP_H__
00188