00001 //////////////////////////////////////////////////////////////////////////////// 00002 // Scorched3D (c) 2000-2009 00003 // 00004 // This file is part of Scorched3D. 00005 // 00006 // Scorched3D is free software; you can redistribute it and/or modify 00007 // it under the terms of the GNU General Public License as published by 00008 // the Free Software Foundation; either version 2 of the License, or 00009 // (at your option) any later version. 00010 // 00011 // Scorched3D is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with Scorched3D; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 //////////////////////////////////////////////////////////////////////////////// 00020 00021 #if !defined(__INCLUDE_ModFileEntryh_INCLUDE__) 00022 #define __INCLUDE_ModFileEntryh_INCLUDE__ 00023 00024 #include <net/NetBuffer.h> 00025 #include <string> 00026 00027 struct ModIdentifierEntry 00028 { 00029 ModIdentifierEntry(const std::string &f = "", 00030 unsigned int l = 0, 00031 unsigned int c = 0) : 00032 fileName(f), 00033 length(l), 00034 crc(c) 00035 { 00036 }; 00037 00038 std::string fileName; 00039 unsigned int length; 00040 unsigned int crc; 00041 }; 00042 00043 class ModFileEntry 00044 { 00045 public: 00046 ModFileEntry(); 00047 virtual ~ModFileEntry(); 00048 00049 bool loadModFile(const std::string &file); 00050 bool writeModFile(const std::string &file, const std::string &mod); 00051 00052 void setFileName(const std::string &name) { fileName_ = name; } 00053 std::string getFileName() { return fileName_; } 00054 00055 unsigned int getCompressedCrc() { return compressedcrc_; } 00056 void setCompressedCrc(unsigned int c) { compressedcrc_ = c; } 00057 00058 unsigned int getCompressedSize() { return compressedfile_.getBufferUsed(); } 00059 char *getCompressedBytes() { return compressedfile_.getBuffer(); } 00060 00061 unsigned int getUncompressedSize() { return uncompressedSize_; } 00062 void setUncompressedSize(unsigned int s) { uncompressedSize_ = s; } 00063 00064 NetBuffer &getCompressedBuffer() { return compressedfile_; } 00065 00066 protected: 00067 std::string fileName_; 00068 NetBuffer compressedfile_; 00069 unsigned int compressedcrc_; 00070 unsigned int uncompressedSize_; 00071 }; 00072 00073 #endif
1.5.3