X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpacksource.h;h=3694a3bf8b530e22d0ccf366cc4e251e1ce2793c;hb=e1b8089be727f651fc2022d6e7ff775047730e85;hp=35ec8b87a72eb54572057c04328a329e3d364dad;hpb=0ea5e96f078d85fe4229784e6499d19c67271219;p=libs%2Fdatafile.git diff --git a/source/packsource.h b/source/packsource.h index 35ec8b8..3694a3b 100644 --- a/source/packsource.h +++ b/source/packsource.h @@ -1,6 +1,7 @@ #ifndef MSP_DATAFILE_PACKSOURCE_H_ #define MSP_DATAFILE_PACKSOURCE_H_ +#include #include #include "collectionsource.h" #include "objectloader.h" @@ -54,12 +55,14 @@ private: public: Pack(IO::Seekable *, const std::string &); + Pack(const Pack &); const std::string &get_filename() const { return filename; } IO::Seekable *get_io() const { return io; } IO::SeekOffset get_base_offset() const { return base_offset; } void collect_files(FileMap &, const std::string &) const; + void translate_files(FileMap &, const Pack &) const; }; class File @@ -84,6 +87,7 @@ private: public: File(const Pack &, const std::string &); + File(const File &, const Pack &); RefPtr open() const; const std::string &get_filename() const { return filename; } @@ -92,19 +96,21 @@ private: bool is_collection() const { return collection; } void collect_objects(ObjectMap &) const; + void translate_objects(ObjectMap &, const File &) const; }; class Object { private: - File &file; + const File &file; std::string name; std::string keyword; public: - Object(File &, const std::string &, const std::string &); + Object(const File &, const std::string &, const std::string &); + Object(const Object &, const File &); - File &get_file() const { return file; } + const File &get_file() const { return file; } const std::string &get_name() const { return name; } const std::string &get_keyword() const { return keyword; } }; @@ -113,6 +119,13 @@ private: FileMap files; ObjectMap objects; +public: + PackSource() { } + PackSource(const PackSource &); + PackSource &operator=(const PackSource &); +private: + void translate_maps(const PackSource &); + public: /// Adds a pack file to load objects from. The index is read immediately. void add_pack_file(const std::string &);