00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef __HEIGHTMAPPROCESSOR_H__
00017 #define __HEIGHTMAPPROCESSOR_H__
00018
00019
00020 #include "../dependencies.h"
00021 #include "../core/AssetProcessor.h"
00022
00023
00024
00030 class HeightmapProcessor : public AssetProcessor
00031 {
00032 public:
00033
00034
00036 HeightmapProcessor(AssetGroup *parent);
00038 ~HeightmapProcessor();
00039
00040
00044 IReadFile* getHeightMap(const std::string &fileName);
00045
00049 bool reloadAsset(const std::string &fileName);
00051 void reloadAssets();
00052
00056 bool removeAsset(const std::string &fileName) ;
00058 void removeAssets();
00059
00062 static AssetProcessor* createProcessor(AssetGroup *parent);
00063
00064 protected:
00065
00066
00070 bool loadAsset(const std::string &fileName);
00072 void loadAssets();
00073
00074
00075 private:
00076
00077
00078 std::map<std::string, std::pair<c8*, long> > mHeightMaps;
00079
00080 bool mIsReloading;
00081 };
00082
00083 #endif