2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
// Regions.h
|
|
|
|
|
|
|
|
// Declares the cRegions class representing individual regions to zap
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct cRegion
|
|
|
|
{
|
|
|
|
int m_MinX, m_MaxX;
|
|
|
|
int m_MinY, m_MaxY;
|
|
|
|
int m_MinZ, m_MaxZ;
|
2017-12-23 07:49:08 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
bool m_ShouldZapBlocks;
|
|
|
|
bool m_ShouldZapEntities;
|
2017-12-23 07:49:08 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
cRegion(void);
|
|
|
|
cRegion(int a_MinX, int a_MaxX, int a_MinY, int a_MaxY, int a_MinZ, int a_MaxZ, bool a_ShouldZapBlocks, bool a_ShouldZapEntities);
|
2017-12-23 07:49:08 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
bool TouchesChunk(int a_ChunkX, int a_ChunkZ) const;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
typedef std::vector<cRegion> cRegionVector;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cRegions
|
|
|
|
{
|
|
|
|
public:
|
2017-12-23 07:49:08 -05:00
|
|
|
/** Reads the list of regions from the specified stream */
|
2013-07-29 07:13:03 -04:00
|
|
|
void Read(std::istream & a_Stream);
|
2017-12-23 07:49:08 -05:00
|
|
|
|
|
|
|
/** Returns all regions in this container */
|
2013-07-29 07:13:03 -04:00
|
|
|
const cRegionVector & GetAll(void) const { return m_Regions; }
|
2017-12-23 07:49:08 -05:00
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
protected:
|
|
|
|
cRegionVector m_Regions;
|
|
|
|
|
2017-12-23 07:49:08 -05:00
|
|
|
/** Adds a new region based on the contents of the split line. The split must already be the correct size */
|
|
|
|
void AddRegion(const AStringVector & a_Split);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2017-12-23 07:49:08 -05:00
|
|
|
} ;
|