Retrait d'instances de mc"clone"
This commit is contained in:
41
SQCSim2021/blockarray3d.cpp
Normal file
41
SQCSim2021/blockarray3d.cpp
Normal file
@@ -0,0 +1,41 @@
|
||||
#include "blockarray3d.h"
|
||||
|
||||
BlockArray3d::BlockArray3d(int x, int y, int z) : m_x(x), m_y(y), m_z(z)
|
||||
{
|
||||
m_blocks = new BlockType[m_x * m_y * m_z];
|
||||
|
||||
Reset(BTYPE_AIR);
|
||||
}
|
||||
|
||||
BlockArray3d::~BlockArray3d()
|
||||
{
|
||||
delete [] m_blocks;
|
||||
}
|
||||
|
||||
BlockArray3d::BlockArray3d(const BlockArray3d& array) : m_x(array.m_x), m_y(array.m_y), m_z(array.m_z)
|
||||
{
|
||||
m_blocks = new BlockType[m_x * m_y * m_z];
|
||||
for(int i = 0; i < m_x * m_y * m_z; ++i)
|
||||
m_blocks[i] = array.m_blocks[i];
|
||||
}
|
||||
|
||||
void BlockArray3d::Set(int x, int y, int z, BlockType type)
|
||||
{
|
||||
m_blocks[To1dIndex(x, y, z)] = type;
|
||||
}
|
||||
|
||||
BlockType BlockArray3d::Get(int x, int y, int z) const
|
||||
{
|
||||
return m_blocks[To1dIndex(x, y, z)];
|
||||
}
|
||||
|
||||
void BlockArray3d::Reset(BlockType type)
|
||||
{
|
||||
for(int i = 0; i < m_x * m_y * m_z; ++i)
|
||||
m_blocks[i] = type;
|
||||
}
|
||||
|
||||
int BlockArray3d::To1dIndex(int x, int y, int z) const
|
||||
{
|
||||
return x + (z * m_x) + (y * m_z * m_x);
|
||||
}
|
Reference in New Issue
Block a user