mirror of
https://github.com/gwdevhub/gMod.git
synced 2026-07-16 15:39:31 +00:00
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
/*
|
|
This file is part of Universal Modding Engine.
|
|
|
|
|
|
Universal Modding Engine is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Universal Modding Engine is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Universal Modding Engine. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef uMod_FILE_H_
|
|
#define uMod_FILE_H_
|
|
|
|
#include "uMod_Main.h"
|
|
|
|
class uMod_File
|
|
{
|
|
public:
|
|
uMod_File(void);
|
|
uMod_File(const wxString &file);
|
|
~uMod_File(void);
|
|
|
|
bool FileSupported(void);
|
|
|
|
int GetComment( wxString &tool_tip);
|
|
int GetContent( AddTextureClass &tex, bool add);
|
|
|
|
int SetFile(const wxString &file) {FileName=file;Loaded=false; return 0;}
|
|
wxString GetFile(void) {return FileName;}
|
|
|
|
|
|
wxString LastError;
|
|
|
|
private:
|
|
int ReadFile(void);
|
|
|
|
int UnXOR(void);
|
|
int GetCommentZip( wxString &tool_tip);
|
|
int GetCommentTpf( wxString &tool_tip);
|
|
|
|
int AddFile( AddTextureClass &tex, bool add);
|
|
int AddZip( AddTextureClass &tex, bool add, bool tpf);
|
|
int AddContent( const char* pw, AddTextureClass &tex, bool add);
|
|
|
|
wxString FileName;
|
|
bool Loaded;
|
|
bool XORed;
|
|
char *FileInMemory;
|
|
unsigned int MemoryLength;
|
|
unsigned int FileLen;
|
|
};
|
|
|
|
|
|
#endif /* uMod_FILE_H_ */
|