stk-code_catmod/src/replay/replay_play.hpp

97 lines
3.9 KiB
C++
Raw Normal View History

//
// SuperTuxKart - a fun racing game with go-kart
2015-03-29 20:31:42 -04:00
// Copyright (C) 2012-2015 Joerg Henrichs
//
// This program 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.
//
// This program 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 this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#ifndef HEADER_REPLAY__PLAY_HPP
#define HEADER_REPLAY__PLAY_HPP
#include "karts/ghost_kart.hpp"
#include "replay/replay_base.hpp"
#include "utils/ptr_vector.hpp"
#include <string>
#include <vector>
class GhostKart;
/**
* \ingroup replay
*/
class ReplayPlay : public ReplayBase
{
private:
2016-02-12 12:34:00 -05:00
static ReplayPlay *m_replay_play;
2016-02-12 12:34:00 -05:00
unsigned int m_current_replay_file;
2016-02-12 12:34:00 -05:00
std::vector<ReplayData> m_replay_file_list;
/** All ghost karts. */
2016-02-12 12:34:00 -05:00
PtrVector<GhostKart> m_ghost_karts;
ReplayPlay();
~ReplayPlay();
void readKartData(FILE *fd, char *next_line);
public:
void reset();
void load();
2016-02-12 12:34:00 -05:00
void loadAllReplayFile();
// ------------------------------------------------------------------------
void setReplayFile(unsigned int n)
{ m_current_replay_file = n; }
// ------------------------------------------------------------------------
const ReplayData& getReplayData(unsigned int n) const
{ return m_replay_file_list.at(n); }
// ------------------------------------------------------------------------
const unsigned int getNumReplayFile() const
{ return m_replay_file_list.size(); }
// ------------------------------------------------------------------------
GhostKart* getGhostKart(int n) { return m_ghost_karts.get(n); }
// ------------------------------------------------------------------------
const unsigned int getNumGhostKart() const
2016-02-12 12:34:00 -05:00
{
assert(m_replay_file_list.size() > 0);
return m_replay_file_list.at(m_current_replay_file).m_kart_list.size();
}
// ------------------------------------------------------------------------
const std::string& getGhostKartName(int n) const
2016-02-12 12:34:00 -05:00
{
assert(m_replay_file_list.size() > 0);
return m_replay_file_list.at(m_current_replay_file).m_kart_list.at(n);
}
// ------------------------------------------------------------------------
/** Creates a new instance of the replay object. */
static void create() { m_replay_play = new ReplayPlay(); }
// ------------------------------------------------------------------------
/** Returns the instance of the replay object. */
static ReplayPlay *get() { return m_replay_play; }
// ------------------------------------------------------------------------
/** Delete the instance of the replay object. */
static void destroy()
{ delete m_replay_play; m_replay_play = NULL; }
// ------------------------------------------------------------------------
2016-02-12 12:34:00 -05:00
/** Returns the filename that was opened. */
virtual const std::string& getReplayFilename() const
{
assert(m_replay_file_list.size() > 0);
return m_replay_file_list.at(m_current_replay_file).m_filename;
}
// ------------------------------------------------------------------------
}; // Replay
#endif