mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-15 09:11:55 +00:00
57 lines
1.1 KiB
C
57 lines
1.1 KiB
C
|
#ifndef AVH_MAP_EXTENTS_H
|
||
|
#define AVH_MAP_EXTENTS_H
|
||
|
|
||
|
class AvHMapExtents
|
||
|
{
|
||
|
public:
|
||
|
AvHMapExtents();
|
||
|
|
||
|
#ifdef AVH_SERVER
|
||
|
void CalculateMapExtents();
|
||
|
#endif
|
||
|
|
||
|
void ResetMapExtents();
|
||
|
|
||
|
float GetMinViewHeight() const;
|
||
|
float GetMaxViewHeight() const;
|
||
|
|
||
|
void SetMinViewHeight(float inViewHeight);
|
||
|
void SetMaxViewHeight(float inViewHeight);
|
||
|
|
||
|
float GetMinMapX() const;
|
||
|
float GetMaxMapX() const;
|
||
|
|
||
|
void SetMinMapX(float inMapX);
|
||
|
void SetMaxMapX(float inMapX);
|
||
|
|
||
|
float GetMinMapY() const;
|
||
|
float GetMaxMapY() const;
|
||
|
|
||
|
void SetMinMapY(float inMapY);
|
||
|
void SetMaxMapY(float inMapY);
|
||
|
|
||
|
bool GetDrawMapBG() const;
|
||
|
void SetDrawMapBG(bool inDrawMapBG);
|
||
|
|
||
|
#ifdef AVH_SERVER
|
||
|
float GetTopDownCullDistance() const;
|
||
|
void SetTopDownCullDistance(float inCullDistance);
|
||
|
#endif
|
||
|
|
||
|
private:
|
||
|
bool mCalculatedMapExtents;
|
||
|
|
||
|
float mMinViewHeight;
|
||
|
float mMaxViewHeight;
|
||
|
float mMinMapX;
|
||
|
float mMinMapY;
|
||
|
float mMaxMapX;
|
||
|
float mMaxMapY;
|
||
|
bool mDrawMapBG;
|
||
|
|
||
|
#ifdef AVH_SERVER
|
||
|
float mTopDownCullDistance;
|
||
|
#endif
|
||
|
};
|
||
|
|
||
|
#endif
|