factored out the EFFv2 saving into EFFImporter
[gemrb.git] / gemrb / core / SaveGame.h
blobce7460d0dd985a85fde2d12d30c93b6ecd08cc81
1 /* GemRB - Infinity Engine Emulator
2 * Copyright (C) 2003 The GemRB Project
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef SAVEGAME_H
22 #define SAVEGAME_H
24 #include "exports.h"
26 #include "Holder.h"
27 #include "ResourceManager.h"
28 #include "System/FileStream.h"
30 class ImageMgr;
32 class GEM_EXPORT SaveGame : public Held<SaveGame> {
33 public:
34 static const TypeID ID;
35 public:
36 SaveGame(const char* path, const char* name, const char* prefix, const char* slotname, int pCount, int saveID);
37 ~SaveGame();
38 int GetPortraitCount() const
40 return PortraitCount;
42 int GetSaveID() const
44 return SaveID;
46 const char* GetName() const
48 return Name;
50 const char* GetPrefix() const
52 return Prefix;
54 const char* GetPath() const
56 return Path;
58 const char* GetDate() const
60 return Date;
62 const char* GetGameDate() const;
63 const char* GetSlotName() const
65 return SlotName;
68 Sprite2D* GetPortrait(int index) const;
69 Sprite2D* GetPreview() const;
70 DataStream* GetGame() const;
71 DataStream* GetWmap(int idx) const;
72 DataStream* GetSave() const;
73 private:
74 char Path[_MAX_PATH];
75 char Prefix[10];
76 char Name[_MAX_PATH];
77 char Date[_MAX_PATH];
78 mutable char GameDate[_MAX_PATH];
79 char SlotName[_MAX_PATH];
80 int PortraitCount;
81 int SaveID;
82 ResourceManager manager;
85 #endif