mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-10 15:22:14 +00:00
63 lines
No EOL
1.5 KiB
C++
63 lines
No EOL
1.5 KiB
C++
#pragma once
|
|
#if !defined(RM_MANAGER_H_INC)
|
|
#define RM_MANAGER_H_INC
|
|
|
|
#if !defined(CM_LANDSCAPE_H_INC)
|
|
#include "../qcommon/cm_landscape.h"
|
|
#endif
|
|
|
|
class CRMManager
|
|
{
|
|
private:
|
|
|
|
CRMMission* mMission;
|
|
CCMLandScape* mLandScape;
|
|
CRandomTerrain* mTerrain;
|
|
int mPreviewTimer;
|
|
int mCurPriority;
|
|
bool mUseTimeLimit;
|
|
|
|
rmAutomapSymbol_t mAutomapSymbols[MAX_AUTOMAP_SYMBOLS];
|
|
int mAutomapSymbolCount;
|
|
|
|
void UpdateStatisticCvars ( void );
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
CRMManager (void);
|
|
~CRMManager (void);
|
|
|
|
bool LoadMission ( qboolean IsServer );
|
|
bool SpawnMission ( qboolean IsServer );
|
|
|
|
// Accessors
|
|
void SetLandScape (CCMLandScape *landscape);
|
|
void SetCurPriority (int priority) { mCurPriority = priority; }
|
|
|
|
CRandomTerrain* GetTerrain (void) { return mTerrain; }
|
|
CCMLandScape* GetLandScape (void) { return mLandScape; }
|
|
CRMMission* GetMission (void) { return mMission; }
|
|
int GetCurPriority (void) { return mCurPriority; }
|
|
|
|
void AddAutomapSymbol ( int type, vec3_t origin, int side );
|
|
int GetAutomapSymbolCount ( void );
|
|
rmAutomapSymbol_t* GetAutomapSymbol ( int index );
|
|
static void ProcessAutomapSymbols ( int count, rmAutomapSymbol_t* symbols );
|
|
|
|
void Preview ( const vec3_t from );
|
|
|
|
bool IsMissionComplete (void);
|
|
bool HasTimeExpired (void);
|
|
void CompleteObjective ( CRMObjective *obj );
|
|
void CompleteMission (void);
|
|
void FailedMission (bool TimeExpired);
|
|
|
|
// eek
|
|
static CRMObjective *mCurObjective;
|
|
};
|
|
|
|
extern CRMManager* TheRandomMissionManager;
|
|
|
|
|
|
#endif // RANDOMMISSION_H_INC
|