1
0
Fork 0
cuberite-2a/src/Map.h

122 lines
2.0 KiB
C
Raw Normal View History

2014-02-13 15:13:09 +00:00
// Map.h
// Implementation of in-game coloured maps
#pragma once
#include "BlockID.h"
class cClientHandle;
class cWorld;
2014-02-15 18:06:47 +00:00
class cPlayer;
2014-02-13 15:13:09 +00:00
2014-02-14 14:21:16 +00:00
// tolua_begin
2014-02-13 15:13:09 +00:00
class cMap
{
public:
typedef Byte ColorID;
2014-02-14 14:21:16 +00:00
// tolua_end
2014-02-13 15:13:09 +00:00
typedef std::vector<ColorID> cColorList;
public:
2014-02-14 14:21:16 +00:00
/** Construct an empty map. */
2014-02-13 19:36:24 +00:00
cMap(unsigned int a_ID, cWorld * a_World);
2014-02-13 15:13:09 +00:00
cMap(unsigned int a_ID, int a_CenterX, int a_CenterZ, cWorld * a_World, unsigned int a_Scale = 3);
/** Send this map to the specified client. */
void SendTo(cClientHandle & a_Client);
2014-02-15 18:06:47 +00:00
/** Update a circular region with the specified radius and center (in pixels). */
void UpdateRadius(int a_PixelX, int a_PixelZ, unsigned int a_Radius);
void UpdateRadius(cPlayer & a_Player, unsigned int a_Radius);
2014-02-14 14:21:16 +00:00
// tolua_begin
/** Erase pixel data */
void EraseData(void);
2014-02-13 15:13:09 +00:00
void Resize(unsigned int a_Width, unsigned int a_Height);
void SetPosition(int a_CenterX, int a_CenterZ);
void SetScale(unsigned int a_Scale);
unsigned int GetWidth (void) const { return m_Width; }
unsigned int GetHeight(void) const { return m_Height; }
unsigned int GetScale(void) const { return m_Scale; }
int GetCenterX(void) const { return m_CenterX; }
int GetCenterZ(void) const { return m_CenterZ; }
unsigned int GetID(void) const { return m_ID; }
cWorld * GetWorld(void) { return m_World; }
2014-02-15 18:06:47 +00:00
AString GetName(void) { return m_Name; }
2014-02-13 15:13:09 +00:00
eDimension GetDimension(void) const;
const cColorList & GetData(void) const { return m_Data; }
unsigned int GetNumPixels(void) const;
2014-02-15 18:06:47 +00:00
unsigned int GetPixelWidth(void) const;
2014-02-13 15:13:09 +00:00
2014-02-14 14:21:16 +00:00
// tolua_end
2014-02-13 15:13:09 +00:00
private:
2014-02-14 14:21:16 +00:00
/** Update the specified pixel. */
bool UpdatePixel(unsigned int a_X, unsigned int a_Y);
2014-02-13 15:13:09 +00:00
unsigned int m_ID;
unsigned int m_Width;
unsigned int m_Height;
/** The zoom level, 2^scale square blocks per pixel */
unsigned int m_Scale;
int m_CenterX;
int m_CenterZ;
/** Column-major array of colours */
cColorList m_Data;
cWorld * m_World;
2014-02-15 18:06:47 +00:00
//typedef std::vector<cPlayer*> cPlayerList;
//cPlayerList m_TrackedPlayers;
AString m_Name;
2014-02-13 15:13:09 +00:00
friend class cMapSerializer;
};