OpenMortal Apocalypse mirror
Sourceforge mirror
SourceForge.net Logo
      News | Info | Characters | Arenas | Screenshots | Forums | Download  
Developer: Making of | Character-HOWTO | AI Design | Submit a Character
Documentation: Main Page | Modules | Class Hierarchy | Class List | File List

FighterStats.h

Go to the documentation of this file.
00001 /***************************************************************************
00002                           FighterStats.h  -  description
00003                              -------------------
00004     begin                : Sun Jan 25 2004
00005     copyright            : (C) 2004 by upi
00006     email                : upi@feel
00007  ***************************************************************************/
00008 
00009 #ifndef FIGHTERSTATS_H
00010 #define FIGHTERSTATS_H
00011  
00012 #include "Demo.h"
00013 #include <string>
00014 
00015 
00024 class CFighterStatsDemo: public CDemo
00025 {
00026 public:
00027     CFighterStatsDemo( FighterEnum a_iFighter = UNKNOWN );
00028     virtual ~CFighterStatsDemo();
00029 
00030     int Advance( int a_iNumFrames, bool a_bFlip );
00031 
00032 protected:
00033     int             m_iTimeLeft;
00034     FighterEnum     m_enFighter;
00035     CRlePack*       m_poStaff;
00036     std::string     m_sKeys;
00037     std::string     m_sStory;
00038 
00039     static int mg_iLastFighter;     // index of the last fighter in the fighter order
00040     static FighterEnum mg_aenFighterOrder[LASTFIGHTER-1];
00041 };
00042 
00043 #endif // FIGHTERSTATS_H