2 // Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 // 2014 Ingo Ruhnke <grumbel@gmx.de>
5 // This program is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef HEADER_SUPERTUX_SUPERTUX_SAVEGAME_HPP
19 #define HEADER_SUPERTUX_SUPERTUX_SAVEGAME_HPP
48 std::string directory;
49 std::vector<LevelState> level_states;
51 LevelState get_level_state(const std::string& filename);
52 void store_level_state(const LevelState& state);
63 std::vector<LevelState> level_states;
69 std::string m_filename;
70 std::unique_ptr<PlayerStatus> m_player_status;
73 Savegame(const std::string& filename);
76 /** Returns content of (tux ...) entry */
77 PlayerStatus* get_player_status() const { return m_player_status.get(); }
79 std::string get_title() const;
81 std::vector<std::string> get_levelsets();
82 LevelsetState get_levelset_state(const std::string& name);
83 void set_levelset_state(const std::string& basedir,
84 const std::string& level_filename,
87 std::vector<std::string> get_worldmaps();
88 WorldmapState get_worldmap_state(const std::string& name);
94 void clear_state_table();
97 Savegame(const Savegame&) = delete;
98 Savegame& operator=(const Savegame&) = delete;