OpenXcom  1.0
Open-source clone of the original X-Com
SaveGameState.h
1 #pragma once
2 /*
3  * Copyright 2010-2016 OpenXcom Developers.
4  *
5  * This file is part of OpenXcom.
6  *
7  * OpenXcom is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * OpenXcom is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with OpenXcom. If not, see <http://www.gnu.org/licenses/>.
19  */
20 #include "../Engine/State.h"
21 #include <SDL.h>
22 #include <string>
23 #include "OptionsBaseState.h"
24 #include "../Savegame/SavedGame.h"
25 
26 namespace OpenXcom
27 {
28 
29 class Text;
30 
34 class SaveGameState : public State
35 {
36 private:
37  int _firstRun;
38  OptionsOrigin _origin;
39  Text *_txtStatus;
40  std::string _filename;
41  SaveType _type;
42 public:
44  SaveGameState(OptionsOrigin origin, const std::string &filename, SDL_Color *palette);
46  SaveGameState(OptionsOrigin origin, SaveType type, SDL_Color *palette);
50  void buildUi(SDL_Color *palette);
52  void think();
54  void error(const std::string &msg);
55 };
56 
57 }
void think()
Saves the game.
Definition: SaveGameState.cpp:126
A game state that receives user input and reacts accordingly.
Definition: State.h:44
Text string displayed on screen.
Definition: Text.h:40
void buildUi(SDL_Color *palette)
Creates the interface.
Definition: SaveGameState.cpp:94
~SaveGameState()
Cleans up the Save Game state.
Definition: SaveGameState.cpp:85
SaveGameState(OptionsOrigin origin, const std::string &filename, SDL_Color *palette)
Creates the Save Game state.
Definition: SaveGameState.cpp:46
Saves the current game, with an optional message.
Definition: SaveGameState.h:34
void error(const std::string &msg)
Shows an error message.
Definition: SaveGameState.cpp:194
Definition: BaseInfoState.cpp:40