2013-03-29 12:46:58 -04:00
|
|
|
|
|
|
|
// MineShafts.cpp
|
|
|
|
|
|
|
|
// Implements the cStructGenMineShafts class representing the structure generator for abandoned mineshafts
|
|
|
|
|
|
|
|
/*
|
|
|
|
Algorithm:
|
|
|
|
The cStructGenMineShafts::cMineShaftSystem class is the main controller, which knows what mineshaft
|
|
|
|
classes there are and their random weights. It gets asked to produce a new class everytime a connection is to be made.
|
|
|
|
The cMineShaft class is a base class for each mineshaft structure.
|
|
|
|
Each cMineShaft descendant knows how large it is, how to imprint itself into the chunk data and where to connect to
|
|
|
|
other descendants. Its PivotPoint is always a walkable column. Its Direction determines in which direction the structure
|
|
|
|
is facing.
|
|
|
|
|
|
|
|
The generation starts with the central dirt room, from there corridors, crossings and staircases are added
|
|
|
|
in a depth-first processing. Each of the descendants will branch randomly, if not beyond the allowed recursion level
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Globals.h"
|
|
|
|
#include "MineShafts.h"
|
|
|
|
#include "../Cuboid.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-30 17:04:33 -04:00
|
|
|
static const int NEIGHBORHOOD_SIZE = 3;
|
2013-03-29 12:46:58 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMineShaft abstract
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum eKind
|
|
|
|
{
|
|
|
|
mskDirtRoom,
|
|
|
|
mskCorridor,
|
|
|
|
mskCrossing,
|
|
|
|
mskStaircase,
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
enum eDirection
|
|
|
|
{
|
|
|
|
dirXP,
|
|
|
|
dirZP,
|
|
|
|
dirXM,
|
|
|
|
dirZM,
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
2013-03-30 17:04:33 -04:00
|
|
|
cStructGenMineShafts::cMineShaftSystem & m_ParentSystem;
|
2013-03-29 16:54:24 -04:00
|
|
|
eKind m_Kind;
|
|
|
|
cCuboid m_BoundingBox;
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
cMineShaft(cStructGenMineShafts::cMineShaftSystem & a_ParentSystem, eKind a_Kind) :
|
|
|
|
m_ParentSystem(a_ParentSystem),
|
|
|
|
m_Kind(a_Kind)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-30 17:04:33 -04:00
|
|
|
cMineShaft(cStructGenMineShafts::cMineShaftSystem & a_ParentSystem, eKind a_Kind, const cCuboid & a_BoundingBox) :
|
|
|
|
m_ParentSystem(a_ParentSystem),
|
|
|
|
m_Kind(a_Kind),
|
|
|
|
m_BoundingBox(a_BoundingBox)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
/// Returns true if this mineshaft intersects the specified cuboid
|
2013-03-29 16:54:24 -04:00
|
|
|
bool DoesIntersect(const cCuboid & a_Other)
|
|
|
|
{
|
|
|
|
return m_BoundingBox.DoesIntersect(a_Other);
|
|
|
|
}
|
2013-03-29 12:46:58 -04:00
|
|
|
|
|
|
|
/** If recursion level is not too large, appends more branches to the parent system,
|
|
|
|
using exit points specific to this class.
|
|
|
|
*/
|
|
|
|
virtual void AppendBranches(int a_RecursionLevel, cNoise & a_Noise) = 0;
|
|
|
|
|
|
|
|
/// Imprints this shape into the specified chunk's data
|
|
|
|
virtual void ProcessChunk(cChunkDesc & a_ChunkDesc) = 0;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
typedef std::vector<cMineShaft *> cMineShafts;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMineShaftDirtRoom :
|
|
|
|
public cMineShaft
|
|
|
|
{
|
|
|
|
typedef cMineShaft super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
cMineShaftDirtRoom(cStructGenMineShafts::cMineShaftSystem & a_Parent, cNoise & a_Noise);
|
|
|
|
|
|
|
|
// cMineShaft overrides:
|
|
|
|
virtual void AppendBranches(int a_RecursionLevel, cNoise & a_Noise) override;
|
|
|
|
virtual void ProcessChunk(cChunkDesc & a_ChunkDesc) override;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMineShaftCorridor :
|
|
|
|
public cMineShaft
|
|
|
|
{
|
|
|
|
typedef cMineShaft super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Creates a new Corridor attached to the specified pivot point and direction.
|
|
|
|
Checks all ParentSystem's objects and disallows intersecting. Initializes the new object to fit.
|
|
|
|
May return NULL if cannot fit.
|
|
|
|
*/
|
|
|
|
static cMineShaft * CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
);
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
protected:
|
2013-03-30 07:59:59 -04:00
|
|
|
static const int MAX_SEGMENTS = 5;
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
int m_NumSegments;
|
|
|
|
eDirection m_Direction;
|
2013-03-31 14:01:21 -04:00
|
|
|
bool m_HasFullBeam[MAX_SEGMENTS]; ///< If true, segment at that index has a full beam support (planks in the top center block)
|
|
|
|
int m_ChestPosition; ///< If <0, no chest; otherwise an offset from m_BoundingBox's p1.x or p1.z, depenging on m_Direction
|
|
|
|
int m_SpawnerPosition; ///< If <0, no spawner; otherwise an offset from m_BoundingBox's p1.x or p1.z, depenging on m_Direction
|
2013-03-31 15:23:09 -04:00
|
|
|
bool m_HasTracks; ///< If true, random tracks will be placed on the floor
|
2013-03-29 16:54:24 -04:00
|
|
|
|
|
|
|
cMineShaftCorridor(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
2013-03-30 07:59:59 -04:00
|
|
|
const cCuboid & a_BoundingBox, int a_NumSegments, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
);
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
// cMineShaft overrides:
|
|
|
|
virtual void AppendBranches(int a_RecursionLevel, cNoise & a_Noise) override;
|
|
|
|
virtual void ProcessChunk(cChunkDesc & a_ChunkDesc) override;
|
2013-03-31 14:01:21 -04:00
|
|
|
|
|
|
|
/// Places a chest, if the corridor has one
|
|
|
|
void PlaceChest(cChunkDesc & a_ChunkDesc);
|
2013-03-31 15:23:09 -04:00
|
|
|
|
|
|
|
/// If this corridor has tracks, places them randomly
|
|
|
|
void PlaceTracks(cChunkDesc & a_ChunkDesc);
|
2013-04-01 07:32:22 -04:00
|
|
|
|
|
|
|
/// Randomly places torches around the central beam block
|
|
|
|
void PlaceTorches(cChunkDesc & a_ChunkDesc);
|
2013-03-29 12:46:58 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMineShaftCrossing :
|
|
|
|
public cMineShaft
|
|
|
|
{
|
|
|
|
typedef cMineShaft super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Creates a new Crossing attached to the specified pivot point and direction.
|
|
|
|
Checks all ParentSystem's objects and disallows intersecting. Initializes the new object to fit.
|
|
|
|
May return NULL if cannot fit.
|
|
|
|
*/
|
|
|
|
static cMineShaft * CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
);
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
protected:
|
2013-03-30 17:04:33 -04:00
|
|
|
cMineShaftCrossing(cStructGenMineShafts::cMineShaftSystem & a_ParentSystem, const cCuboid & a_BoundingBox);
|
2013-03-29 16:54:24 -04:00
|
|
|
|
|
|
|
// cMineShaft overrides:
|
|
|
|
virtual void AppendBranches(int a_RecursionLevel, cNoise & a_Noise) override;
|
|
|
|
virtual void ProcessChunk(cChunkDesc & a_ChunkDesc) override;
|
2013-03-29 12:46:58 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cMineShaftStaircase :
|
|
|
|
public cMineShaft
|
|
|
|
{
|
|
|
|
typedef cMineShaft super;
|
|
|
|
|
|
|
|
public:
|
2013-03-31 12:23:54 -04:00
|
|
|
enum eSlope
|
|
|
|
{
|
|
|
|
sUp,
|
|
|
|
sDown,
|
|
|
|
} ;
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
/** Creates a new Staircase attached to the specified pivot point and direction.
|
|
|
|
Checks all ParentSystem's objects and disallows intersecting. Initializes the new object to fit.
|
|
|
|
May return NULL if cannot fit.
|
|
|
|
*/
|
|
|
|
static cMineShaft * CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
);
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
protected:
|
2013-03-31 12:23:54 -04:00
|
|
|
eDirection m_Direction;
|
|
|
|
eSlope m_Slope;
|
|
|
|
|
|
|
|
|
|
|
|
cMineShaftStaircase(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
const cCuboid & a_BoundingBox,
|
|
|
|
eDirection a_Direction,
|
|
|
|
eSlope a_Slope
|
|
|
|
);
|
2013-03-29 16:54:24 -04:00
|
|
|
|
|
|
|
// cMineShaft overrides:
|
|
|
|
virtual void AppendBranches(int a_RecursionLevel, cNoise & a_Noise) override;
|
|
|
|
virtual void ProcessChunk(cChunkDesc & a_ChunkDesc) override;
|
2013-03-29 12:46:58 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cStructGenMineShafts::cMineShaftSystem
|
|
|
|
{
|
|
|
|
public:
|
2013-03-31 13:10:17 -04:00
|
|
|
int m_BlockX, m_BlockZ; ///< The pivot point on which the system is generated
|
|
|
|
int m_MaxRecursion; ///< Maximum recursion level (initialized from cStructGenMineShafts::m_MaxRecursion)
|
|
|
|
int m_ProbLevelCorridor; ///< Probability level of a branch object being the corridor
|
|
|
|
int m_ProbLevelCrossing; ///< Probability level of a branch object being the crossing, minus Corridor
|
|
|
|
int m_ProbLevelStaircase; ///< Probability level of a branch object being the staircase, minus Crossing
|
2013-03-31 14:01:21 -04:00
|
|
|
int m_ChanceChest; ///< Chance [0 .. 250] that a corridor has a chest in it
|
|
|
|
int m_ChanceSpawner; ///< Chance [0 .. 250] that a corridor has a spawner in it
|
2013-04-01 07:32:22 -04:00
|
|
|
int m_ChanceTorch; ///< Chance [0 .. 10k] for a torch appearing attached to a corridor's beam
|
2013-03-31 13:10:17 -04:00
|
|
|
cMineShafts m_MineShafts; ///< List of cMineShaft descendants that comprise this system
|
2013-03-31 14:26:02 -04:00
|
|
|
cCuboid m_BoundingBox; ///< Bounding box into which all of the components need to fit
|
2013-03-29 12:46:58 -04:00
|
|
|
|
|
|
|
/// Creates and generates the entire system
|
2013-03-29 16:54:24 -04:00
|
|
|
cMineShaftSystem(
|
|
|
|
int a_BlockX, int a_BlockZ, int a_MaxSystemSize, cNoise & a_Noise,
|
2013-03-31 13:10:17 -04:00
|
|
|
int a_ProbLevelCorridor, int a_ProbLevelCrossing, int a_ProbLevelStaircase
|
2013-03-29 16:54:24 -04:00
|
|
|
);
|
2013-03-29 12:46:58 -04:00
|
|
|
|
|
|
|
~cMineShaftSystem();
|
|
|
|
|
|
|
|
/// Carves the system into the chunk data
|
|
|
|
void ProcessChunk(cChunkDesc & a_Chunk);
|
|
|
|
|
|
|
|
/** Creates new cMineShaft descendant connected at the specified point, heading the specified direction,
|
|
|
|
if it fits, appends it to the list and calls its AppendBranches()
|
|
|
|
*/
|
|
|
|
void AppendBranch(
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ,
|
|
|
|
cMineShaft::eDirection a_Direction, cNoise & a_Noise,
|
|
|
|
int a_RecursionLevel
|
|
|
|
);
|
2013-03-29 16:54:24 -04:00
|
|
|
|
2013-03-31 14:26:02 -04:00
|
|
|
/// Returns true if none of the objects in m_MineShafts intersect with the specified bounding box and the bounding box is valid
|
|
|
|
bool CanAppend(const cCuboid & a_BoundingBox);
|
2013-03-29 12:46:58 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cStructGenMineShafts::cMineShaftSystem:
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
cStructGenMineShafts::cMineShaftSystem::cMineShaftSystem(
|
|
|
|
int a_BlockX, int a_BlockZ, int a_MaxSystemSize, cNoise & a_Noise,
|
2013-03-31 13:10:17 -04:00
|
|
|
int a_ProbLevelCorridor, int a_ProbLevelCrossing, int a_ProbLevelStaircase
|
2013-03-29 16:54:24 -04:00
|
|
|
) :
|
2013-03-29 12:46:58 -04:00
|
|
|
m_BlockX(a_BlockX),
|
|
|
|
m_BlockZ(a_BlockZ),
|
2013-03-29 16:54:24 -04:00
|
|
|
m_MaxRecursion(8), // TODO: settable
|
2013-03-31 13:10:17 -04:00
|
|
|
m_ProbLevelCorridor(a_ProbLevelCorridor),
|
|
|
|
m_ProbLevelCrossing(a_ProbLevelCrossing),
|
2013-03-31 14:01:21 -04:00
|
|
|
m_ProbLevelStaircase(a_ProbLevelStaircase + 1),
|
|
|
|
m_ChanceChest(12), // TODO: settable
|
2013-04-01 07:32:22 -04:00
|
|
|
m_ChanceSpawner(12), // TODO: settable
|
|
|
|
m_ChanceTorch(1000) // TODO: settable
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
2013-03-31 14:26:02 -04:00
|
|
|
m_BoundingBox.Assign(
|
|
|
|
a_BlockX - a_MaxSystemSize / 2, 2, a_BlockZ - a_MaxSystemSize / 2,
|
|
|
|
a_BlockX + a_MaxSystemSize / 2, 50, a_BlockZ + a_MaxSystemSize / 2
|
|
|
|
);
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
m_MineShafts.reserve(100);
|
|
|
|
|
|
|
|
cMineShaft * Start = new cMineShaftDirtRoom(*this, a_Noise);
|
|
|
|
m_MineShafts.push_back(Start);
|
|
|
|
Start->AppendBranches(0, a_Noise);
|
2013-03-29 16:54:24 -04:00
|
|
|
|
|
|
|
for (cMineShafts::const_iterator itr = m_MineShafts.begin(), end = m_MineShafts.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
ASSERT((*itr)->m_BoundingBox.IsSorted());
|
|
|
|
} // for itr - m_MineShafts[]
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cStructGenMineShafts::cMineShaftSystem::~cMineShaftSystem()
|
|
|
|
{
|
|
|
|
for (cMineShafts::iterator itr = m_MineShafts.begin(), end = m_MineShafts.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
delete *itr;
|
|
|
|
} // for itr - m_MineShafts[]
|
|
|
|
m_MineShafts.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cStructGenMineShafts::cMineShaftSystem::ProcessChunk(cChunkDesc & a_Chunk)
|
|
|
|
{
|
|
|
|
for (cMineShafts::const_iterator itr = m_MineShafts.begin(), end = m_MineShafts.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->ProcessChunk(a_Chunk);
|
|
|
|
} // for itr - m_MineShafts[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cStructGenMineShafts::cMineShaftSystem::AppendBranch(
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ,
|
|
|
|
cMineShaft::eDirection a_Direction, cNoise & a_Noise,
|
|
|
|
int a_RecursionLevel
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (a_RecursionLevel > m_MaxRecursion)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cMineShaft * Next = NULL;
|
2013-03-31 13:10:17 -04:00
|
|
|
int rnd = (a_Noise.IntNoise3DInt(a_PivotX, a_PivotY + a_RecursionLevel * 16, a_PivotZ) / 13) % m_ProbLevelStaircase;
|
|
|
|
if (rnd < m_ProbLevelCorridor)
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
|
|
|
Next = cMineShaftCorridor::CreateAndFit(*this, a_PivotX, a_PivotY, a_PivotZ, a_Direction, a_Noise);
|
|
|
|
}
|
2013-03-31 13:10:17 -04:00
|
|
|
else if (rnd < m_ProbLevelCrossing)
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
|
|
|
Next = cMineShaftCrossing::CreateAndFit(*this, a_PivotX, a_PivotY, a_PivotZ, a_Direction, a_Noise);
|
|
|
|
}
|
2013-03-31 13:10:17 -04:00
|
|
|
else
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
|
|
|
Next = cMineShaftStaircase::CreateAndFit(*this, a_PivotX, a_PivotY, a_PivotZ, a_Direction, a_Noise);
|
|
|
|
}
|
|
|
|
if (Next == NULL)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_MineShafts.push_back(Next);
|
|
|
|
Next->AppendBranches(a_RecursionLevel + 1, a_Noise);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-31 14:26:02 -04:00
|
|
|
bool cStructGenMineShafts::cMineShaftSystem::CanAppend(const cCuboid & a_BoundingBox)
|
2013-03-29 16:54:24 -04:00
|
|
|
{
|
2013-03-31 14:26:02 -04:00
|
|
|
if (!a_BoundingBox.IsCompletelyInside(m_BoundingBox))
|
|
|
|
{
|
|
|
|
// Too far away, or too low / too high
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check intersections:
|
2013-03-29 16:54:24 -04:00
|
|
|
for (cMineShafts::const_iterator itr = m_MineShafts.begin(), end = m_MineShafts.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
if ((*itr)->DoesIntersect(a_BoundingBox))
|
|
|
|
{
|
2013-03-31 14:26:02 -04:00
|
|
|
return false;
|
2013-03-29 16:54:24 -04:00
|
|
|
}
|
|
|
|
} // for itr - m_MineShafts[]
|
2013-03-31 14:26:02 -04:00
|
|
|
return true;
|
2013-03-29 16:54:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cMineShaftDirtRoom:
|
|
|
|
|
|
|
|
cMineShaftDirtRoom::cMineShaftDirtRoom(cStructGenMineShafts::cMineShaftSystem & a_Parent, cNoise & a_Noise) :
|
|
|
|
super(a_Parent, mskDirtRoom)
|
|
|
|
{
|
|
|
|
// Make the room of random size, min 10 x 4 x 10; max 18 x 12 x 18:
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(a_Parent.m_BlockX, 0, a_Parent.m_BlockZ) / 7;
|
|
|
|
m_BoundingBox.p1.x = a_Parent.m_BlockX;
|
|
|
|
m_BoundingBox.p2.x = a_Parent.m_BlockX + 10 + (rnd % 8);
|
|
|
|
rnd >>= 4;
|
|
|
|
m_BoundingBox.p1.z = a_Parent.m_BlockZ;
|
|
|
|
m_BoundingBox.p2.z = a_Parent.m_BlockZ + 10 + (rnd % 8);
|
|
|
|
rnd >>= 4;
|
2013-03-29 16:54:24 -04:00
|
|
|
m_BoundingBox.p1.y = 20;
|
|
|
|
m_BoundingBox.p2.y = 24 + rnd % 8;
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftDirtRoom::AppendBranches(int a_RecursionLevel, cNoise & a_Noise)
|
|
|
|
{
|
|
|
|
int Height = m_BoundingBox.DifY() - 3;
|
|
|
|
for (int x = m_BoundingBox.p1.x + 1; x < m_BoundingBox.p2.x; x += 4)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(x, a_RecursionLevel, m_BoundingBox.p1.z) / 7;
|
2013-03-29 16:54:24 -04:00
|
|
|
m_ParentSystem.AppendBranch(x, m_BoundingBox.p1.y + (rnd % Height), m_BoundingBox.p1.z - 1, dirZM, a_Noise, a_RecursionLevel);
|
2013-03-29 12:46:58 -04:00
|
|
|
rnd >>= 4;
|
2013-03-29 16:54:24 -04:00
|
|
|
m_ParentSystem.AppendBranch(x, m_BoundingBox.p1.y + (rnd % Height), m_BoundingBox.p2.z + 1, dirZP, a_Noise, a_RecursionLevel);
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int z = m_BoundingBox.p1.z + 1; z < m_BoundingBox.p2.z; z += 4)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x, a_RecursionLevel, z) / 13;
|
2013-03-29 16:54:24 -04:00
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x - 1, m_BoundingBox.p1.y + (rnd % Height), z, dirXM, a_Noise, a_RecursionLevel);
|
2013-03-29 12:46:58 -04:00
|
|
|
rnd >>= 4;
|
2013-03-29 16:54:24 -04:00
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p2.x + 1, m_BoundingBox.p1.y + (rnd % Height), z, dirXP, a_Noise, a_RecursionLevel);
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftDirtRoom::ProcessChunk(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
if (
|
|
|
|
(m_BoundingBox.p1.x > BlockX + cChunkDef::Width) ||
|
|
|
|
(m_BoundingBox.p1.z > BlockZ + cChunkDef::Width) ||
|
|
|
|
(m_BoundingBox.p2.x < BlockX) ||
|
|
|
|
(m_BoundingBox.p2.z < BlockZ)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// Early bailout - cannot intersect this chunk
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chunk-relative coords of the boundaries:
|
|
|
|
int MinX = std::max(BlockX, m_BoundingBox.p1.x) - BlockX;
|
|
|
|
int MaxX = std::min(BlockX + cChunkDef::Width, m_BoundingBox.p2.x + 1) - BlockX;
|
|
|
|
int MinZ = std::max(BlockZ, m_BoundingBox.p1.z) - BlockZ;
|
|
|
|
int MaxZ = std::min(BlockZ + cChunkDef::Width, m_BoundingBox.p2.z + 1) - BlockZ;
|
|
|
|
|
|
|
|
// Carve the room out:
|
|
|
|
for (int z = MinZ; z < MaxZ; z++)
|
|
|
|
{
|
|
|
|
for (int x = MinX; x < MaxX; x++)
|
|
|
|
{
|
|
|
|
for (int y = m_BoundingBox.p1.y + 1; y < m_BoundingBox.p2.y; y++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockType(x, y, z, E_BLOCK_AIR);
|
|
|
|
}
|
|
|
|
if (a_ChunkDesc.GetBlockType(x, m_BoundingBox.p1.y, z) != E_BLOCK_AIR)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockType(x, m_BoundingBox.p1.y, z, E_BLOCK_DIRT);
|
|
|
|
}
|
|
|
|
} // for x
|
|
|
|
} // for z
|
|
|
|
|
|
|
|
// DEBUG: To find the rooms easily, add a glass column to the top of the world:
|
|
|
|
if (
|
|
|
|
(m_BoundingBox.p1.x >= BlockX) && (m_BoundingBox.p1.x < BlockX + cChunkDef::Width) &&
|
|
|
|
(m_BoundingBox.p1.z >= BlockZ) && (m_BoundingBox.p1.z < BlockZ + cChunkDef::Width)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int Height = a_ChunkDesc.GetHeight(BlockX - m_BoundingBox.p1.x, BlockZ - m_BoundingBox.p1.z);
|
|
|
|
for (int y = m_BoundingBox.p2.y; y < 256; y++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockType(BlockX - m_BoundingBox.p1.x, y, BlockZ - m_BoundingBox.p1.z, (y < Height) ? E_BLOCK_AIR : E_BLOCK_GLASS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cMineShaftCorridor:
|
|
|
|
|
2013-03-30 07:59:59 -04:00
|
|
|
cMineShaftCorridor::cMineShaftCorridor(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
const cCuboid & a_BoundingBox, int a_NumSegments, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
) :
|
2013-03-30 17:04:33 -04:00
|
|
|
super(a_ParentSystem, mskCorridor, a_BoundingBox),
|
2013-03-30 07:59:59 -04:00
|
|
|
m_NumSegments(a_NumSegments),
|
2013-03-31 14:01:21 -04:00
|
|
|
m_Direction(a_Direction),
|
|
|
|
m_ChestPosition(-1),
|
|
|
|
m_SpawnerPosition(-1)
|
2013-03-30 07:59:59 -04:00
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(a_BoundingBox.p1.x, a_BoundingBox.p1.y, a_BoundingBox.p1.z) / 7;
|
|
|
|
for (int i = 0; i < a_NumSegments; i++)
|
|
|
|
{
|
|
|
|
m_HasFullBeam[i] = (rnd % 4) < 3; // 75 % chance of full beam
|
|
|
|
rnd >>= 2;
|
|
|
|
}
|
2013-03-31 15:23:09 -04:00
|
|
|
m_HasTracks = ((rnd % 4) < 2); // 50 % chance of tracks
|
2013-03-31 14:01:21 -04:00
|
|
|
|
|
|
|
rnd = a_Noise.IntNoise3DInt(a_BoundingBox.p1.z, a_BoundingBox.p1.x, a_BoundingBox.p1.y) / 7;
|
|
|
|
int ChestCheck = rnd % 250;
|
|
|
|
rnd >>= 8;
|
|
|
|
int SpawnerCheck = rnd % 250;
|
|
|
|
rnd >>= 8;
|
|
|
|
if (ChestCheck < a_ParentSystem.m_ChanceChest)
|
|
|
|
{
|
|
|
|
m_ChestPosition = rnd % (a_NumSegments * 5);
|
|
|
|
}
|
|
|
|
if ((a_NumSegments < 4) && (SpawnerCheck < a_ParentSystem.m_ChanceSpawner))
|
|
|
|
{
|
|
|
|
m_SpawnerPosition = rnd % (a_NumSegments * 5);
|
|
|
|
}
|
2013-03-30 07:59:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
cMineShaft * cMineShaftCorridor::CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
)
|
2013-03-29 16:54:24 -04:00
|
|
|
{
|
2013-03-30 06:55:20 -04:00
|
|
|
cCuboid BoundingBox(a_PivotX, a_PivotY - 1, a_PivotZ);
|
|
|
|
BoundingBox.p2.y += 3;
|
2013-03-29 16:54:24 -04:00
|
|
|
int rnd = a_Noise.IntNoise3DInt(a_PivotX, a_PivotY + a_ParentSystem.m_MineShafts.size(), a_PivotZ) / 7;
|
2013-03-30 07:59:59 -04:00
|
|
|
int NumSegments = 2 + (rnd) % (MAX_SEGMENTS - 1); // 2 .. MAX_SEGMENTS
|
2013-03-29 16:54:24 -04:00
|
|
|
switch (a_Direction)
|
|
|
|
{
|
2013-04-01 07:32:22 -04:00
|
|
|
case dirXP: BoundingBox.p2.x += NumSegments * 5 - 1; BoundingBox.p1.z -= 1; BoundingBox.p2.z += 1; break;
|
|
|
|
case dirXM: BoundingBox.p1.x -= NumSegments * 5 - 1; BoundingBox.p1.z -= 1; BoundingBox.p2.z += 1; break;
|
|
|
|
case dirZP: BoundingBox.p2.z += NumSegments * 5 - 1; BoundingBox.p1.x -= 1; BoundingBox.p2.x += 1; break;
|
|
|
|
case dirZM: BoundingBox.p1.z -= NumSegments * 5 - 1; BoundingBox.p1.x -= 1; BoundingBox.p2.x += 1; break;
|
2013-03-29 16:54:24 -04:00
|
|
|
}
|
2013-03-31 14:26:02 -04:00
|
|
|
if (!a_ParentSystem.CanAppend(BoundingBox))
|
2013-03-29 16:54:24 -04:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-03-30 07:59:59 -04:00
|
|
|
return new cMineShaftCorridor(a_ParentSystem, BoundingBox, NumSegments, a_Direction, a_Noise);
|
2013-03-29 16:54:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftCorridor::AppendBranches(int a_RecursionLevel, cNoise & a_Noise)
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
2013-03-30 06:55:20 -04:00
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x, m_BoundingBox.p1.y + a_RecursionLevel, m_BoundingBox.p1.z) / 7;
|
|
|
|
// Prefer the same height, but allow for up to one block height displacement:
|
|
|
|
int Height = m_BoundingBox.p1.y + ((rnd % 4) + ((rnd >> 3) % 3)) / 2;
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
{
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x - 1, Height, m_BoundingBox.p1.z + 1, dirXM, a_Noise, a_RecursionLevel);
|
|
|
|
for (int i = m_NumSegments; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x + i + 10, m_BoundingBox.p1.y + a_RecursionLevel, m_BoundingBox.p1.z) / 11;
|
|
|
|
int Height = m_BoundingBox.p1.y + ((rnd % 4) + ((rnd >> 3) % 3)) / 2;
|
|
|
|
rnd >>= 6;
|
|
|
|
int Ofs = 1 + rnd % (m_NumSegments * 5 - 2);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + Ofs, Height, m_BoundingBox.p1.z - 1, dirZM, a_Noise, a_RecursionLevel);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + Ofs, Height, m_BoundingBox.p2.z + 1, dirZP, a_Noise, a_RecursionLevel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p2.x + 1, Height, m_BoundingBox.p1.z + 1, dirXP, a_Noise, a_RecursionLevel);
|
|
|
|
for (int i = m_NumSegments; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x + i + 10, m_BoundingBox.p1.y + a_RecursionLevel, m_BoundingBox.p1.z) / 11;
|
|
|
|
int Height = m_BoundingBox.p1.y + ((rnd % 4) + ((rnd >> 3) % 3)) / 2;
|
|
|
|
rnd >>= 6;
|
|
|
|
int Ofs = 1 + rnd % (m_NumSegments * 5 - 2);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + Ofs, Height, m_BoundingBox.p1.z - 1, dirZM, a_Noise, a_RecursionLevel);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + Ofs, Height, m_BoundingBox.p2.z + 1, dirZP, a_Noise, a_RecursionLevel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
{
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + 1, Height, m_BoundingBox.p1.z - 1, dirZM, a_Noise, a_RecursionLevel);
|
|
|
|
for (int i = m_NumSegments; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x + i + 10, m_BoundingBox.p1.y + a_RecursionLevel, m_BoundingBox.p1.z) / 11;
|
|
|
|
int Height = m_BoundingBox.p1.y + ((rnd % 4) + ((rnd >> 3) % 3)) / 2;
|
|
|
|
rnd >>= 6;
|
|
|
|
int Ofs = 1 + rnd % (m_NumSegments * 5 - 2);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x - 1, Height, m_BoundingBox.p1.z + Ofs, dirXM, a_Noise, a_RecursionLevel);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p2.x + 1, Height, m_BoundingBox.p1.z + Ofs, dirXP, a_Noise, a_RecursionLevel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + 1, Height, m_BoundingBox.p2.z + 1, dirZP, a_Noise, a_RecursionLevel);
|
|
|
|
for (int i = m_NumSegments; i >= 0; i--)
|
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(m_BoundingBox.p1.x + i + 10, m_BoundingBox.p1.y + a_RecursionLevel, m_BoundingBox.p1.z) / 11;
|
|
|
|
int Height = m_BoundingBox.p1.y + ((rnd % 4) + ((rnd >> 3) % 3)) / 2;
|
|
|
|
rnd >>= 6;
|
|
|
|
int Ofs = 1 + rnd % (m_NumSegments * 5 - 2);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x - 1, Height, m_BoundingBox.p1.z + Ofs, dirXM, a_Noise, a_RecursionLevel);
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p2.x + 1, Height, m_BoundingBox.p1.z + Ofs, dirXP, a_Noise, a_RecursionLevel);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (m_Direction)
|
2013-03-29 16:54:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftCorridor::ProcessChunk(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
2013-03-31 15:23:09 -04:00
|
|
|
BLOCKTYPE FillBlock = (m_SpawnerPosition >= 0) ? E_BLOCK_COBWEB : E_BLOCK_AIR;
|
2013-03-29 16:54:24 -04:00
|
|
|
cCuboid RelBoundingBox(m_BoundingBox);
|
|
|
|
RelBoundingBox.Move(-BlockX, 0, -BlockZ);
|
|
|
|
RelBoundingBox.p1.y += 1;
|
2013-03-31 15:23:09 -04:00
|
|
|
RelBoundingBox.p2.y -= 1;
|
2013-03-31 14:01:21 -04:00
|
|
|
a_ChunkDesc.FillRelCuboid(RelBoundingBox, FillBlock, 0);
|
2013-03-31 15:23:09 -04:00
|
|
|
RelBoundingBox.p2.y += 1;
|
|
|
|
RelBoundingBox.p1.y = RelBoundingBox.p2.y;
|
|
|
|
a_ChunkDesc.RandomFillRelCuboid(RelBoundingBox, FillBlock, 0, BlockX ^ BlockZ + BlockX, 8000);
|
|
|
|
RelBoundingBox.p1.y = m_BoundingBox.p1.y;
|
|
|
|
RelBoundingBox.p2.y = m_BoundingBox.p1.y;
|
2013-03-31 12:23:54 -04:00
|
|
|
a_ChunkDesc.FloorRelCuboid(RelBoundingBox, E_BLOCK_PLANKS, 0);
|
2013-03-30 07:59:59 -04:00
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
int y1 = m_BoundingBox.p1.y + 1;
|
|
|
|
int y2 = m_BoundingBox.p1.y + 2;
|
|
|
|
int y3 = m_BoundingBox.p1.y + 3;
|
|
|
|
int z1 = m_BoundingBox.p1.z - BlockZ;
|
|
|
|
int z2 = m_BoundingBox.p2.z - BlockZ;
|
|
|
|
for (int i = 0; i < m_NumSegments; i++)
|
|
|
|
{
|
2013-04-01 07:32:22 -04:00
|
|
|
int x = m_BoundingBox.p1.x + i * 5 + 2 - BlockX;
|
2013-03-30 07:59:59 -04:00
|
|
|
if ((x < 0) || (x >= cChunkDef::Width))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((z1 >= 0) && (z1 < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y1, z1, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y2, z1, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y3, z1, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
|
|
|
if ((z2 >= 0) && (z2 < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y1, z2, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y2, z2, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y3, z2, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
2013-04-01 07:32:22 -04:00
|
|
|
if ((z1 >= -1) && (z1 < cChunkDef::Width - 1) && m_HasFullBeam[i])
|
2013-03-30 07:59:59 -04:00
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, y3, z1 + 1, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
|
|
|
} // for i - NumSegments
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
int y1 = m_BoundingBox.p1.y + 1;
|
|
|
|
int y2 = m_BoundingBox.p1.y + 2;
|
|
|
|
int y3 = m_BoundingBox.p1.y + 3;
|
|
|
|
int x1 = m_BoundingBox.p1.x - BlockX;
|
|
|
|
int x2 = m_BoundingBox.p2.x - BlockX;
|
|
|
|
for (int i = 0; i < m_NumSegments; i++)
|
|
|
|
{
|
2013-04-01 07:32:22 -04:00
|
|
|
int z = m_BoundingBox.p1.z + i * 5 + 2 - BlockZ;
|
2013-03-30 07:59:59 -04:00
|
|
|
if ((z < 0) || (z >= cChunkDef::Width))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((x1 >= 0) && (x1 < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x1, y1, z, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x1, y2, z, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x1, y3, z, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
|
|
|
if ((x2 >= 0) && (x2 < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x2, y1, z, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x2, y2, z, E_BLOCK_FENCE, 0);
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x2, y3, z, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
2013-04-01 07:32:22 -04:00
|
|
|
if ((x1 >= -1) && (x1 < cChunkDef::Width - 1) && m_HasFullBeam[i])
|
2013-03-30 07:59:59 -04:00
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x1 + 1, y3, z, E_BLOCK_PLANKS, 0);
|
|
|
|
}
|
|
|
|
} // for i - NumSegments
|
|
|
|
break;
|
|
|
|
} // case dirZ?
|
|
|
|
} // for i
|
2013-03-31 14:01:21 -04:00
|
|
|
|
|
|
|
PlaceChest(a_ChunkDesc);
|
2013-03-31 15:23:09 -04:00
|
|
|
PlaceTracks(a_ChunkDesc);
|
|
|
|
// TODO: Place spawner (must be after Tracks!
|
2013-04-01 07:32:22 -04:00
|
|
|
PlaceTorches(a_ChunkDesc);
|
2013-03-31 14:01:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftCorridor::PlaceChest(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
if (m_ChestPosition < 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
int x = m_BoundingBox.p1.x + m_ChestPosition - BlockX;
|
|
|
|
int z = m_BoundingBox.p1.z - BlockZ;
|
|
|
|
if (
|
|
|
|
(x >= 0) && (x < cChunkDef::Width) &&
|
|
|
|
(z >= 0) && (z < cChunkDef::Width)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p1.y + 1, z, E_BLOCK_CHEST, 0);
|
|
|
|
// TODO: Fill the chest with loot
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
int x = m_BoundingBox.p1.x - BlockX;
|
|
|
|
int z = m_BoundingBox.p1.z + m_ChestPosition - BlockZ;
|
|
|
|
if (
|
|
|
|
(x >= 0) && (x < cChunkDef::Width) &&
|
|
|
|
(z >= 0) && (z < cChunkDef::Width)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p1.y + 1, z, E_BLOCK_CHEST, 0);
|
|
|
|
// TODO: Fill the chest with loot
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (Dir)
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-31 15:23:09 -04:00
|
|
|
void cMineShaftCorridor::PlaceTracks(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
if (!m_HasTracks)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cCuboid Box(m_BoundingBox);
|
|
|
|
Box.Move(-a_ChunkDesc.GetChunkX() * cChunkDef::Width, 1, -a_ChunkDesc.GetChunkZ() * cChunkDef::Width);
|
|
|
|
Box.p2.y = Box.p1.y;
|
|
|
|
Box.p1.x += 1;
|
|
|
|
Box.p2.x -= 1;
|
|
|
|
Box.p1.z += 1;
|
|
|
|
Box.p2.z -= 1;
|
|
|
|
NIBBLETYPE Meta = 0;
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
Meta = E_META_TRACKS_X;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
Meta = E_META_TRACKS_Z;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (direction)
|
|
|
|
a_ChunkDesc.RandomFillRelCuboid(Box, E_BLOCK_MINECART_TRACKS, Meta, a_ChunkDesc.GetChunkX() + a_ChunkDesc.GetChunkZ(), 6000);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-01 07:32:22 -04:00
|
|
|
void cMineShaftCorridor::PlaceTorches(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
cNoise Noise(m_BoundingBox.p1.x);
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
int z = m_BoundingBox.p1.z + 1 - a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
if ((z < 0) || (z >= cChunkDef::Width))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
for (int i = 0; i < m_NumSegments; i++)
|
|
|
|
{
|
|
|
|
if (!m_HasFullBeam[i])
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int x = m_BoundingBox.p1.x + i * 5 + 1 - BlockX;
|
|
|
|
if ((x >= 0) && (x < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
if (((Noise.IntNoise2DInt(x, z) / 7) % 10000) < m_ParentSystem.m_ChanceTorch)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p2.y, z, E_BLOCK_TORCH, E_META_TORCH_XP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x += 2;
|
|
|
|
if ((x >= 0) && (x < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
if (((Noise.IntNoise2DInt(x, z) / 7) % 10000) < m_ParentSystem.m_ChanceTorch)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p2.y, z, E_BLOCK_TORCH, E_META_TORCH_XM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for i
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
int x = m_BoundingBox.p1.x + 1 - a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
if ((x < 0) || (x >= cChunkDef::Width))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
for (int i = 0; i < m_NumSegments; i++)
|
|
|
|
{
|
|
|
|
if (!m_HasFullBeam[i])
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
int z = m_BoundingBox.p1.z + i * 5 + 1 - BlockZ;
|
|
|
|
if ((z >= 0) && (z < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
if (((Noise.IntNoise2DInt(x, z) / 7) % 10000) < m_ParentSystem.m_ChanceTorch)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p2.y, z, E_BLOCK_TORCH, E_META_TORCH_ZP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
z += 2;
|
|
|
|
if ((z >= 0) && (z < cChunkDef::Width))
|
|
|
|
{
|
|
|
|
if (((Noise.IntNoise2DInt(x, z) / 7) % 10000) < m_ParentSystem.m_ChanceTorch)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.SetBlockTypeMeta(x, m_BoundingBox.p2.y, z, E_BLOCK_TORCH, E_META_TORCH_ZM);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // for i
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // switch (direction)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cMineShaftCrossing:
|
|
|
|
|
2013-03-30 17:04:33 -04:00
|
|
|
cMineShaftCrossing::cMineShaftCrossing(cStructGenMineShafts::cMineShaftSystem & a_ParentSystem, const cCuboid & a_BoundingBox) :
|
|
|
|
super(a_ParentSystem, mskCrossing, a_BoundingBox)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
cMineShaft * cMineShaftCrossing::CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
)
|
|
|
|
{
|
2013-03-30 17:04:33 -04:00
|
|
|
cCuboid BoundingBox(a_PivotX, a_PivotY - 1, a_PivotZ);
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(a_PivotX, a_PivotY + a_ParentSystem.m_MineShafts.size(), a_PivotZ) / 7;
|
|
|
|
BoundingBox.p2.y += 3;
|
|
|
|
if ((rnd % 4) < 2)
|
|
|
|
{
|
|
|
|
// 2-level crossing:
|
|
|
|
BoundingBox.p2.y += 4;
|
|
|
|
rnd >>= 2;
|
|
|
|
if ((rnd % 4) < 2)
|
|
|
|
{
|
|
|
|
// This is the higher level:
|
|
|
|
BoundingBox.p1.y -= 4;
|
|
|
|
BoundingBox.p2.y -= 4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rnd >>= 2;
|
|
|
|
switch (a_Direction)
|
|
|
|
{
|
|
|
|
case dirXP: BoundingBox.p2.x += 4; BoundingBox.p1.z -= 2; BoundingBox.p2.z += 2; break;
|
|
|
|
case dirXM: BoundingBox.p1.x -= 4; BoundingBox.p1.z -= 2; BoundingBox.p2.z += 2; break;
|
|
|
|
case dirZP: BoundingBox.p2.z += 4; BoundingBox.p1.x -= 2; BoundingBox.p2.x += 2; break;
|
|
|
|
case dirZM: BoundingBox.p1.z -= 4; BoundingBox.p1.x -= 2; BoundingBox.p2.x += 2; break;
|
|
|
|
}
|
2013-03-31 14:26:02 -04:00
|
|
|
if (!a_ParentSystem.CanAppend(BoundingBox))
|
2013-03-30 17:04:33 -04:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return new cMineShaftCrossing(a_ParentSystem, BoundingBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftCrossing::AppendBranches(int a_RecursionLevel, cNoise & a_Noise)
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
int x, y, z;
|
|
|
|
eDirection dir;
|
|
|
|
} Exits[] =
|
|
|
|
{
|
|
|
|
// Bottom level:
|
|
|
|
{-1, 1, 2, dirXM},
|
|
|
|
{ 2, 1, -1, dirZM},
|
|
|
|
{ 5, 1, 2, dirXP},
|
|
|
|
{ 2, 1, 5, dirZP},
|
|
|
|
// Top level:
|
|
|
|
{-1, 5, 2, dirXM},
|
|
|
|
{ 2, 5, -1, dirZM},
|
|
|
|
{ 5, 5, 2, dirXP},
|
|
|
|
{ 2, 5, 5, dirZP},
|
|
|
|
} ;
|
|
|
|
for (int i = 0; i < ARRAYCOUNT(Exits); i++)
|
|
|
|
{
|
|
|
|
if (m_BoundingBox.p1.y + Exits[i].y >= m_BoundingBox.p2.y)
|
|
|
|
{
|
|
|
|
// This exit is not available (two-level exit on a one-level crossing)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Height = m_BoundingBox.p1.y + Exits[i].y;
|
|
|
|
m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + Exits[i].x, Height, m_BoundingBox.p1.z + Exits[i].z, Exits[i].dir, a_Noise, a_RecursionLevel);
|
|
|
|
} // for i
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftCrossing::ProcessChunk(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
cCuboid box(m_BoundingBox);
|
|
|
|
box.Move(-BlockX, 0, -BlockZ);
|
|
|
|
if ((box.p2.x < 0) || (box.p2.z < 0) || (box.p1.x >= cChunkDef::Width) || (box.p1.z > cChunkDef::Width))
|
|
|
|
{
|
|
|
|
// Does not intersect this chunk
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int Floor = box.p1.y + 1;
|
|
|
|
int Ceil = box.p2.y;
|
|
|
|
|
|
|
|
// The supports:
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p1.x + 1, Floor, Ceil, box.p1.z + 1, box.p1.z + 1, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p2.x - 1, box.p2.x - 1, Floor, Ceil, box.p1.z + 1, box.p1.z + 1, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p1.x + 1, Floor, Ceil, box.p2.z - 1, box.p2.z - 1, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p2.x - 1, box.p2.x - 1, Floor, Ceil, box.p2.z - 1, box.p2.z - 1, E_BLOCK_PLANKS, 0);
|
|
|
|
|
|
|
|
// The air in between:
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 2, box.p1.x + 2, Floor, Ceil, box.p1.z + 1, box.p2.z - 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p2.x - 1, Floor, Ceil, box.p1.z + 2, box.p1.z + 2, E_BLOCK_AIR, 0);
|
|
|
|
|
|
|
|
// The air on the edges:
|
|
|
|
int Mid = Floor + 2;
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x, box.p1.x, Floor, Mid, box.p1.z + 1, box.p2.z - 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p2.x, box.p2.x, Floor, Mid, box.p1.z + 1, box.p2.z - 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p2.x - 1, Floor, Mid, box.p1.z, box.p1.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p2.x - 1, Floor, Mid, box.p2.z, box.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
Mid += 2;
|
|
|
|
if (Mid < Ceil)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x, box.p1.x, Mid, Ceil, box.p1.z + 1, box.p2.z - 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p2.x, box.p2.x, Mid, Ceil, box.p1.z + 1, box.p2.z - 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p2.x - 1, Mid, Ceil, box.p1.z, box.p1.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid(box.p1.x + 1, box.p2.x - 1, Mid, Ceil, box.p2.z, box.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The floor, if needed:
|
|
|
|
box.p2.y = box.p1.y;
|
2013-03-31 12:23:54 -04:00
|
|
|
a_ChunkDesc.FloorRelCuboid(box, E_BLOCK_PLANKS, 0);
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cMineShaftStaircase:
|
|
|
|
|
2013-03-31 12:23:54 -04:00
|
|
|
cMineShaftStaircase::cMineShaftStaircase(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
const cCuboid & a_BoundingBox,
|
|
|
|
eDirection a_Direction,
|
|
|
|
eSlope a_Slope
|
|
|
|
) :
|
|
|
|
super(a_ParentSystem, mskStaircase, a_BoundingBox),
|
|
|
|
m_Direction(a_Direction),
|
|
|
|
m_Slope(a_Slope)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-03-29 12:46:58 -04:00
|
|
|
cMineShaft * cMineShaftStaircase::CreateAndFit(
|
|
|
|
cStructGenMineShafts::cMineShaftSystem & a_ParentSystem,
|
|
|
|
int a_PivotX, int a_PivotY, int a_PivotZ, eDirection a_Direction,
|
|
|
|
cNoise & a_Noise
|
|
|
|
)
|
2013-03-31 12:23:54 -04:00
|
|
|
{
|
|
|
|
int rnd = a_Noise.IntNoise3DInt(a_PivotX, a_PivotY + a_ParentSystem.m_MineShafts.size(), a_PivotZ) / 7;
|
|
|
|
cCuboid Box;
|
|
|
|
switch (a_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
{
|
|
|
|
Box.Assign(a_PivotX - 7, a_PivotY - 1, a_PivotZ - 1, a_PivotX, a_PivotY + 6, a_PivotZ + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
Box.Assign(a_PivotX, a_PivotY - 1, a_PivotZ - 1, a_PivotX + 7, a_PivotY + 6, a_PivotZ + 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case dirZM:
|
|
|
|
{
|
|
|
|
Box.Assign(a_PivotX - 1, a_PivotY - 1, a_PivotZ - 7, a_PivotX + 1, a_PivotY + 6, a_PivotZ);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
Box.Assign(a_PivotX - 1, a_PivotY - 1, a_PivotZ, a_PivotX + 1, a_PivotY + 6, a_PivotZ + 7);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
eSlope Slope = sUp;
|
|
|
|
if ((rnd % 4) < 2) // 50 %
|
|
|
|
{
|
|
|
|
Slope = sDown;
|
|
|
|
Box.Move(0, -4, 0);
|
|
|
|
}
|
2013-03-31 14:26:02 -04:00
|
|
|
if (!a_ParentSystem.CanAppend(Box))
|
2013-03-31 12:23:54 -04:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return new cMineShaftStaircase(a_ParentSystem, Box, a_Direction, Slope);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftStaircase::AppendBranches(int a_RecursionLevel, cNoise & a_Noise)
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
2013-03-31 12:48:52 -04:00
|
|
|
int Height = m_BoundingBox.p1.y + ((m_Slope == sDown) ? 1 : 5);
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM: m_ParentSystem.AppendBranch(m_BoundingBox.p1.x - 1, Height, m_BoundingBox.p1.z + 1, dirXM, a_Noise, a_RecursionLevel); break;
|
|
|
|
case dirXP: m_ParentSystem.AppendBranch(m_BoundingBox.p2.x + 1, Height, m_BoundingBox.p1.z + 1, dirXP, a_Noise, a_RecursionLevel); break;
|
|
|
|
case dirZM: m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + 1, Height, m_BoundingBox.p1.z - 1, dirZM, a_Noise, a_RecursionLevel); break;
|
|
|
|
case dirZP: m_ParentSystem.AppendBranch(m_BoundingBox.p1.x + 1, Height, m_BoundingBox.p2.z + 1, dirZP, a_Noise, a_RecursionLevel); break;
|
|
|
|
}
|
2013-03-31 12:23:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cMineShaftStaircase::ProcessChunk(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
int BlockX = a_ChunkDesc.GetChunkX() * cChunkDef::Width;
|
|
|
|
int BlockZ = a_ChunkDesc.GetChunkZ() * cChunkDef::Width;
|
|
|
|
cCuboid RelB(m_BoundingBox);
|
|
|
|
RelB.Move(-BlockX, 0, -BlockZ);
|
|
|
|
if (
|
|
|
|
(RelB.p1.x >= cChunkDef::Width) ||
|
|
|
|
(RelB.p1.z >= cChunkDef::Width) ||
|
|
|
|
(RelB.p2.x < 0) ||
|
|
|
|
(RelB.p2.z < 0)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// No intersection between this staircase and this chunk
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SFloor = RelB.p1.y + ((m_Slope == sDown) ? 5 : 1);
|
|
|
|
int DFloor = RelB.p1.y + ((m_Slope == sDown) ? 1 : 5);
|
|
|
|
int Add = (m_Slope == sDown) ? -1 : 1;
|
|
|
|
int InitAdd = (m_Slope == sDown) ? -1 : 0;
|
|
|
|
cCuboid Box;
|
|
|
|
switch (m_Direction)
|
|
|
|
{
|
|
|
|
case dirXM:
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p2.x - 1, RelB.p2.x, SFloor, SFloor + 2, RelB.p1.z, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p1.x + 1, DFloor, DFloor + 2, RelB.p1.z, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p2.x - 1, RelB.p2.x, SFloor - 1, SFloor - 1, RelB.p1.z, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p1.x + 1, DFloor - 1, DFloor - 1, RelB.p1.z, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Assign(RelB.p2.x - 2, SFloor + InitAdd, RelB.p1.z, RelB.p2.x - 2, SFloor + 3 + InitAdd, RelB.p2.z);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid(Box, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(Box.p1.x, Box.p2.x, Box.p1.y - 1, Box.p1.y - 1, Box.p1.z, Box.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Move(-1, Add, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirXP:
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p1.x + 1, SFloor, SFloor + 2, RelB.p1.z, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p2.x - 1, RelB.p2.x, DFloor, DFloor + 2, RelB.p1.z, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p1.x + 1, SFloor - 1, SFloor - 1, RelB.p1.z, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p2.x - 1, RelB.p2.x, DFloor - 1, DFloor - 1, RelB.p1.z, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Assign(RelB.p1.x + 2, SFloor + InitAdd, RelB.p1.z, RelB.p1.x + 2, SFloor + 3 + InitAdd, RelB.p2.z);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid(Box, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(Box.p1.x, Box.p2.x, Box.p1.y - 1, Box.p1.y - 1, Box.p1.z, Box.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Move(1, Add, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZM:
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p2.x, SFloor, SFloor + 2, RelB.p2.z - 1, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p2.x, DFloor, DFloor + 2, RelB.p1.z, RelB.p1.z + 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p2.x, SFloor - 1, SFloor - 1, RelB.p2.z - 1, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p2.x, DFloor - 1, DFloor - 1, RelB.p1.z, RelB.p1.z + 1, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Assign(RelB.p1.x, SFloor + InitAdd, RelB.p2.z - 2, RelB.p2.x, SFloor + 3 + InitAdd, RelB.p2.z - 2);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid(Box, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(Box.p1.x, Box.p2.x, Box.p1.y - 1, Box.p1.y - 1, Box.p1.z, Box.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Move(0, Add, -1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case dirZP:
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p2.x, SFloor, SFloor + 2, RelB.p1.z, RelB.p1.z + 1, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FillRelCuboid (RelB.p1.x, RelB.p2.x, DFloor, DFloor + 2, RelB.p2.z - 1, RelB.p2.z, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p2.x, SFloor - 1, SFloor - 1, RelB.p1.z, RelB.p1.z + 1, E_BLOCK_PLANKS, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(RelB.p1.x, RelB.p2.x, DFloor - 1, DFloor - 1, RelB.p2.z - 1, RelB.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Assign(RelB.p1.x, SFloor + InitAdd, RelB.p1.z + 2, RelB.p2.x, SFloor + 3 + InitAdd, RelB.p1.z + 2);
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
{
|
|
|
|
a_ChunkDesc.FillRelCuboid(Box, E_BLOCK_AIR, 0);
|
|
|
|
a_ChunkDesc.FloorRelCuboid(Box.p1.x, Box.p2.x, Box.p1.y - 1, Box.p1.y - 1, Box.p1.z, Box.p2.z, E_BLOCK_PLANKS, 0);
|
|
|
|
Box.Move(0, Add, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // switch (m_Direction)
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// cStructGenMineShafts:
|
|
|
|
|
2013-03-29 16:54:24 -04:00
|
|
|
cStructGenMineShafts::cStructGenMineShafts(
|
|
|
|
int a_Seed, int a_GridSize, int a_MaxSystemSize,
|
|
|
|
int a_ChanceCorridor, int a_ChanceCrossing, int a_ChanceStaircase
|
|
|
|
) :
|
2013-03-29 12:46:58 -04:00
|
|
|
m_Noise(a_Seed),
|
|
|
|
m_GridSize(a_GridSize),
|
2013-03-29 16:54:24 -04:00
|
|
|
m_MaxSystemSize(a_MaxSystemSize),
|
2013-03-31 13:10:17 -04:00
|
|
|
m_ProbLevelCorridor(std::max(0, a_ChanceCorridor)),
|
|
|
|
m_ProbLevelCrossing(std::max(0, a_ChanceCorridor + a_ChanceCrossing)),
|
|
|
|
m_ProbLevelStaircase(std::max(0, a_ChanceCorridor + a_ChanceCrossing + a_ChanceStaircase))
|
2013-03-29 12:46:58 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cStructGenMineShafts::~cStructGenMineShafts()
|
|
|
|
{
|
|
|
|
ClearCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cStructGenMineShafts::ClearCache(void)
|
|
|
|
{
|
|
|
|
for (cMineShaftSystems::const_iterator itr = m_Cache.begin(), end = m_Cache.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
delete *itr;
|
|
|
|
} // for itr - m_Cache[]
|
|
|
|
m_Cache.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cStructGenMineShafts::GetMineShaftSystemsForChunk(
|
|
|
|
int a_ChunkX, int a_ChunkZ,
|
|
|
|
cStructGenMineShafts::cMineShaftSystems & a_MineShafts
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int BaseX = a_ChunkX * cChunkDef::Width / m_GridSize;
|
|
|
|
int BaseZ = a_ChunkZ * cChunkDef::Width / m_GridSize;
|
|
|
|
if (BaseX < 0)
|
|
|
|
{
|
|
|
|
--BaseX;
|
|
|
|
}
|
|
|
|
if (BaseZ < 0)
|
|
|
|
{
|
|
|
|
--BaseZ;
|
|
|
|
}
|
|
|
|
BaseX -= NEIGHBORHOOD_SIZE / 2;
|
|
|
|
BaseZ -= NEIGHBORHOOD_SIZE / 2;
|
|
|
|
|
|
|
|
// Walk the cache, move each cave system that we want into a_Caves:
|
|
|
|
int StartX = BaseX * m_GridSize;
|
|
|
|
int EndX = (BaseX + NEIGHBORHOOD_SIZE + 1) * m_GridSize;
|
|
|
|
int StartZ = BaseZ * m_GridSize;
|
|
|
|
int EndZ = (BaseZ + NEIGHBORHOOD_SIZE + 1) * m_GridSize;
|
|
|
|
for (cMineShaftSystems::iterator itr = m_Cache.begin(), end = m_Cache.end(); itr != end;)
|
|
|
|
{
|
|
|
|
if (
|
|
|
|
((*itr)->m_BlockX >= StartX) && ((*itr)->m_BlockX < EndX) &&
|
|
|
|
((*itr)->m_BlockZ >= StartZ) && ((*itr)->m_BlockZ < EndZ)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
// want
|
|
|
|
a_MineShafts.push_back(*itr);
|
|
|
|
itr = m_Cache.erase(itr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// don't want
|
|
|
|
++itr;
|
|
|
|
}
|
|
|
|
} // for itr - m_Cache[]
|
|
|
|
|
|
|
|
for (int x = 0; x < NEIGHBORHOOD_SIZE; x++)
|
|
|
|
{
|
|
|
|
int RealX = (BaseX + x) * m_GridSize;
|
|
|
|
for (int z = 0; z < NEIGHBORHOOD_SIZE; z++)
|
|
|
|
{
|
|
|
|
int RealZ = (BaseZ + z) * m_GridSize;
|
|
|
|
bool Found = false;
|
|
|
|
for (cMineShaftSystems::const_iterator itr = a_MineShafts.begin(), end = a_MineShafts.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
if (((*itr)->m_BlockX == RealX) && ((*itr)->m_BlockZ == RealZ))
|
|
|
|
{
|
|
|
|
Found = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} // for itr - a_Mineshafts
|
|
|
|
if (!Found)
|
|
|
|
{
|
2013-03-31 13:10:17 -04:00
|
|
|
a_MineShafts.push_back(new cMineShaftSystem(RealX, RealZ, m_MaxSystemSize, m_Noise, m_ProbLevelCorridor, m_ProbLevelCrossing, m_ProbLevelStaircase));
|
2013-03-29 12:46:58 -04:00
|
|
|
}
|
|
|
|
} // for z
|
|
|
|
} // for x
|
|
|
|
|
|
|
|
// Copy a_MineShafts into m_Cache to the beginning:
|
|
|
|
cMineShaftSystems MineShaftsCopy(a_MineShafts);
|
|
|
|
m_Cache.splice(m_Cache.begin(), MineShaftsCopy, MineShaftsCopy.begin(), MineShaftsCopy.end());
|
|
|
|
|
|
|
|
// Trim the cache if it's too long:
|
|
|
|
if (m_Cache.size() > 100)
|
|
|
|
{
|
|
|
|
cMineShaftSystems::iterator itr = m_Cache.begin();
|
|
|
|
std::advance(itr, 100);
|
|
|
|
for (cMineShaftSystems::iterator end = m_Cache.end(); itr != end; ++itr)
|
|
|
|
{
|
|
|
|
delete *itr;
|
|
|
|
}
|
|
|
|
itr = m_Cache.begin();
|
|
|
|
std::advance(itr, 100);
|
|
|
|
m_Cache.erase(itr, m_Cache.end());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void cStructGenMineShafts::GenStructures(cChunkDesc & a_ChunkDesc)
|
|
|
|
{
|
|
|
|
int ChunkX = a_ChunkDesc.GetChunkX();
|
|
|
|
int ChunkZ = a_ChunkDesc.GetChunkZ();
|
|
|
|
cMineShaftSystems MineShafts;
|
|
|
|
GetMineShaftSystemsForChunk(ChunkX, ChunkZ, MineShafts);
|
|
|
|
for (cMineShaftSystems::const_iterator itr = MineShafts.begin(); itr != MineShafts.end(); ++itr)
|
|
|
|
{
|
|
|
|
(*itr)->ProcessChunk(a_ChunkDesc);
|
|
|
|
} // for itr - MineShafts[]
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|