2010-11-29 19:13:04 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 19:13:04 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2010-11-29 19:13:04 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 19:13:04 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 19:13:04 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2012-01-27 11:58:52 +01:00
|
|
|
#include "irrlichttypes.h"
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irr_v3d.h"
|
2010-11-29 09:57:05 +01:00
|
|
|
#include <iostream>
|
2017-08-18 19:25:07 +02:00
|
|
|
#include <cassert>
|
2013-08-11 04:09:45 +02:00
|
|
|
#include "exceptions.h"
|
2010-12-11 17:11:03 +01:00
|
|
|
#include "mapnode.h"
|
2012-12-20 18:19:49 +01:00
|
|
|
#include <set>
|
|
|
|
#include <list>
|
2017-07-26 07:35:09 +02:00
|
|
|
#include "util/basic_macros.h"
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2011-11-14 20:41:30 +01:00
|
|
|
class INodeDefManager;
|
|
|
|
|
2010-12-13 20:32:35 +01:00
|
|
|
// For VC++
|
2010-12-13 10:51:53 +01:00
|
|
|
#undef min
|
|
|
|
#undef max
|
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
/*
|
2011-02-14 01:54:15 +01:00
|
|
|
A fast voxel manipulator class.
|
|
|
|
|
|
|
|
In normal operation, it fetches more map when it is requested.
|
|
|
|
It can also be used so that all allowed area is fetched at the
|
|
|
|
start, using ManualMapVoxelManipulator.
|
2010-11-29 09:57:05 +01:00
|
|
|
|
|
|
|
Not thread-safe.
|
|
|
|
*/
|
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
/*
|
|
|
|
Debug stuff
|
|
|
|
*/
|
2017-05-26 14:03:36 +02:00
|
|
|
extern u64 emerge_time;
|
|
|
|
extern u64 emerge_load_time;
|
2010-12-11 17:11:03 +01:00
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
/*
|
|
|
|
This class resembles aabbox3d<s16> a lot, but has inclusive
|
|
|
|
edges for saner handling of integer sizes
|
|
|
|
*/
|
|
|
|
class VoxelArea
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Starts as zero sized
|
2017-08-20 13:30:50 +02:00
|
|
|
VoxelArea() = default;
|
2017-06-21 11:51:29 +02:00
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
VoxelArea(const v3s16 &min_edge, const v3s16 &max_edge):
|
2010-11-29 09:57:05 +01:00
|
|
|
MinEdge(min_edge),
|
|
|
|
MaxEdge(max_edge)
|
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
cacheExtent();
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
|
|
|
|
VoxelArea(const v3s16 &p):
|
2010-11-29 09:57:05 +01:00
|
|
|
MinEdge(p),
|
|
|
|
MaxEdge(p)
|
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
cacheExtent();
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
/*
|
|
|
|
Modifying methods
|
|
|
|
*/
|
|
|
|
|
2014-11-21 05:43:29 +01:00
|
|
|
void addArea(const VoxelArea &a)
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2015-01-13 14:23:31 +01:00
|
|
|
if (hasEmptyExtent())
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
|
|
|
*this = a;
|
|
|
|
return;
|
|
|
|
}
|
2010-11-29 09:57:05 +01:00
|
|
|
if(a.MinEdge.X < MinEdge.X) MinEdge.X = a.MinEdge.X;
|
|
|
|
if(a.MinEdge.Y < MinEdge.Y) MinEdge.Y = a.MinEdge.Y;
|
|
|
|
if(a.MinEdge.Z < MinEdge.Z) MinEdge.Z = a.MinEdge.Z;
|
|
|
|
if(a.MaxEdge.X > MaxEdge.X) MaxEdge.X = a.MaxEdge.X;
|
|
|
|
if(a.MaxEdge.Y > MaxEdge.Y) MaxEdge.Y = a.MaxEdge.Y;
|
|
|
|
if(a.MaxEdge.Z > MaxEdge.Z) MaxEdge.Z = a.MaxEdge.Z;
|
2017-07-26 07:35:09 +02:00
|
|
|
cacheExtent();
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
|
2014-11-21 05:43:29 +01:00
|
|
|
void addPoint(const v3s16 &p)
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2015-01-13 14:23:31 +01:00
|
|
|
if(hasEmptyExtent())
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
|
|
|
MinEdge = p;
|
|
|
|
MaxEdge = p;
|
2017-07-26 07:35:09 +02:00
|
|
|
cacheExtent();
|
2010-12-11 17:11:03 +01:00
|
|
|
return;
|
|
|
|
}
|
2010-11-29 09:57:05 +01:00
|
|
|
if(p.X < MinEdge.X) MinEdge.X = p.X;
|
|
|
|
if(p.Y < MinEdge.Y) MinEdge.Y = p.Y;
|
|
|
|
if(p.Z < MinEdge.Z) MinEdge.Z = p.Z;
|
|
|
|
if(p.X > MaxEdge.X) MaxEdge.X = p.X;
|
|
|
|
if(p.Y > MaxEdge.Y) MaxEdge.Y = p.Y;
|
|
|
|
if(p.Z > MaxEdge.Z) MaxEdge.Z = p.Z;
|
2017-07-26 07:35:09 +02:00
|
|
|
cacheExtent();
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
// Pad with d nodes
|
2014-11-21 05:43:29 +01:00
|
|
|
void pad(const v3s16 &d)
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
|
|
|
MinEdge -= d;
|
|
|
|
MaxEdge += d;
|
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
/*
|
|
|
|
const methods
|
|
|
|
*/
|
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
const v3s16 &getExtent() const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
return m_cache_extent;
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2015-01-13 14:23:31 +01:00
|
|
|
|
|
|
|
/* Because MaxEdge and MinEdge are included in the voxel area an empty extent
|
|
|
|
* is not represented by (0, 0, 0), but instead (-1, -1, -1)
|
|
|
|
*/
|
|
|
|
bool hasEmptyExtent() const
|
|
|
|
{
|
|
|
|
return MaxEdge - MinEdge == v3s16(-1, -1, -1);
|
|
|
|
}
|
|
|
|
|
2010-12-01 14:20:12 +01:00
|
|
|
s32 getVolume() const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
return (s32)m_cache_extent.X * (s32)m_cache_extent.Y * (s32)m_cache_extent.Z;
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
bool contains(const VoxelArea &a) const
|
2010-12-01 14:20:12 +01:00
|
|
|
{
|
2010-12-11 17:11:03 +01:00
|
|
|
// No area contains an empty area
|
|
|
|
// NOTE: Algorithms depend on this, so do not change.
|
2015-01-13 14:23:31 +01:00
|
|
|
if(a.hasEmptyExtent())
|
2010-12-11 17:11:03 +01:00
|
|
|
return false;
|
|
|
|
|
2010-12-01 14:20:12 +01:00
|
|
|
return(
|
|
|
|
a.MinEdge.X >= MinEdge.X && a.MaxEdge.X <= MaxEdge.X &&
|
|
|
|
a.MinEdge.Y >= MinEdge.Y && a.MaxEdge.Y <= MaxEdge.Y &&
|
|
|
|
a.MinEdge.Z >= MinEdge.Z && a.MaxEdge.Z <= MaxEdge.Z
|
|
|
|
);
|
|
|
|
}
|
|
|
|
bool contains(v3s16 p) const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
|
|
|
return(
|
|
|
|
p.X >= MinEdge.X && p.X <= MaxEdge.X &&
|
|
|
|
p.Y >= MinEdge.Y && p.Y <= MaxEdge.Y &&
|
|
|
|
p.Z >= MinEdge.Z && p.Z <= MaxEdge.Z
|
|
|
|
);
|
|
|
|
}
|
2011-02-03 12:48:17 +01:00
|
|
|
bool contains(s32 i) const
|
|
|
|
{
|
|
|
|
return (i >= 0 && i < getVolume());
|
|
|
|
}
|
2010-12-01 14:20:12 +01:00
|
|
|
bool operator==(const VoxelArea &other) const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
|
|
|
return (MinEdge == other.MinEdge
|
|
|
|
&& MaxEdge == other.MaxEdge);
|
|
|
|
}
|
2010-12-11 17:11:03 +01:00
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
VoxelArea operator+(const v3s16 &off) const
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
2017-08-20 13:30:50 +02:00
|
|
|
return {MinEdge+off, MaxEdge+off};
|
2010-12-11 17:11:03 +01:00
|
|
|
}
|
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
VoxelArea operator-(const v3s16 &off) const
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
2017-08-20 13:30:50 +02:00
|
|
|
return {MinEdge-off, MaxEdge-off};
|
2010-12-11 17:11:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Returns 0-6 non-overlapping areas that can be added to
|
|
|
|
a to make up this area.
|
|
|
|
|
|
|
|
a: area inside *this
|
|
|
|
*/
|
2012-12-20 18:19:49 +01:00
|
|
|
void diff(const VoxelArea &a, std::list<VoxelArea> &result)
|
2010-12-11 17:11:03 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
This can result in a maximum of 6 areas
|
|
|
|
*/
|
|
|
|
|
|
|
|
// If a is an empty area, return the current area as a whole
|
|
|
|
if(a.getExtent() == v3s16(0,0,0))
|
|
|
|
{
|
|
|
|
VoxelArea b = *this;
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-06 11:21:51 +01:00
|
|
|
assert(contains(a)); // pre-condition
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
// Take back area, XY inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(MinEdge.X, MinEdge.Y, a.MaxEdge.Z+1);
|
|
|
|
v3s16 max(MaxEdge.X, MaxEdge.Y, MaxEdge.Z);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take front area, XY inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(MinEdge.X, MinEdge.Y, MinEdge.Z);
|
|
|
|
v3s16 max(MaxEdge.X, MaxEdge.Y, a.MinEdge.Z-1);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take top area, X inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(MinEdge.X, a.MaxEdge.Y+1, a.MinEdge.Z);
|
|
|
|
v3s16 max(MaxEdge.X, MaxEdge.Y, a.MaxEdge.Z);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take bottom area, X inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(MinEdge.X, MinEdge.Y, a.MinEdge.Z);
|
|
|
|
v3s16 max(MaxEdge.X, a.MinEdge.Y-1, a.MaxEdge.Z);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take left area, non-inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(MinEdge.X, a.MinEdge.Y, a.MinEdge.Z);
|
|
|
|
v3s16 max(a.MinEdge.X-1, a.MaxEdge.Y, a.MaxEdge.Z);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take right area, non-inclusive
|
|
|
|
{
|
|
|
|
v3s16 min(a.MaxEdge.X+1, a.MinEdge.Y, a.MinEdge.Z);
|
|
|
|
v3s16 max(MaxEdge.X, a.MaxEdge.Y, a.MaxEdge.Z);
|
|
|
|
VoxelArea b(min, max);
|
|
|
|
if(b.getVolume() != 0)
|
|
|
|
result.push_back(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
/*
|
|
|
|
Translates position from virtual coordinates to array index
|
|
|
|
*/
|
2010-12-01 14:20:12 +01:00
|
|
|
s32 index(s16 x, s16 y, s16 z) const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
s32 i = (s32)(z - MinEdge.Z) * m_cache_extent.Y * m_cache_extent.X
|
|
|
|
+ (y - MinEdge.Y) * m_cache_extent.X
|
|
|
|
+ (x - MinEdge.X);
|
2010-11-29 09:57:05 +01:00
|
|
|
return i;
|
|
|
|
}
|
2010-12-01 14:20:12 +01:00
|
|
|
s32 index(v3s16 p) const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
|
|
|
return index(p.X, p.Y, p.Z);
|
|
|
|
}
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2011-02-01 02:06:02 +01:00
|
|
|
// Translate index in the X coordinate
|
|
|
|
void add_x(const v3s16 &extent, u32 &i, s16 a)
|
|
|
|
{
|
|
|
|
i += a;
|
|
|
|
}
|
|
|
|
// Translate index in the Y coordinate
|
|
|
|
void add_y(const v3s16 &extent, u32 &i, s16 a)
|
|
|
|
{
|
|
|
|
i += a * extent.X;
|
|
|
|
}
|
|
|
|
// Translate index in the Z coordinate
|
|
|
|
void add_z(const v3s16 &extent, u32 &i, s16 a)
|
|
|
|
{
|
|
|
|
i += a * extent.X*extent.Y;
|
|
|
|
}
|
|
|
|
// Translate index in space
|
|
|
|
void add_p(const v3s16 &extent, u32 &i, v3s16 a)
|
|
|
|
{
|
|
|
|
i += a.Z*extent.X*extent.Y + a.Y*extent.X + a.X;
|
|
|
|
}
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2011-02-01 02:06:02 +01:00
|
|
|
/*
|
|
|
|
Print method for debugging
|
|
|
|
*/
|
2010-12-01 14:20:12 +01:00
|
|
|
void print(std::ostream &o) const
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
o << PP(MinEdge) << PP(MaxEdge) << "="
|
|
|
|
<< m_cache_extent.X << "x" << m_cache_extent.Y << "x" << m_cache_extent.Z
|
|
|
|
<< "=" << getVolume();
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Edges are inclusive
|
2017-06-21 11:51:29 +02:00
|
|
|
v3s16 MinEdge = v3s16(1,1,1);
|
2010-11-29 09:57:05 +01:00
|
|
|
v3s16 MaxEdge;
|
2017-07-26 07:35:09 +02:00
|
|
|
private:
|
|
|
|
void cacheExtent()
|
|
|
|
{
|
|
|
|
m_cache_extent = MaxEdge - MinEdge + v3s16(1,1,1);
|
|
|
|
}
|
|
|
|
|
|
|
|
v3s16 m_cache_extent = v3s16(0,0,0);
|
2010-11-29 09:57:05 +01:00
|
|
|
};
|
|
|
|
|
2017-06-21 11:51:29 +02:00
|
|
|
// unused
|
|
|
|
#define VOXELFLAG_UNUSED (1 << 0)
|
2014-06-09 13:29:22 +02:00
|
|
|
// no data about that node
|
2017-06-21 11:51:29 +02:00
|
|
|
#define VOXELFLAG_NO_DATA (1 << 1)
|
2010-12-01 14:20:12 +01:00
|
|
|
// Algorithm-dependent
|
2017-06-21 11:51:29 +02:00
|
|
|
#define VOXELFLAG_CHECKED1 (1 << 2)
|
2010-12-11 17:11:03 +01:00
|
|
|
// Algorithm-dependent
|
2017-06-21 11:51:29 +02:00
|
|
|
#define VOXELFLAG_CHECKED2 (1 << 3)
|
2010-12-11 17:11:03 +01:00
|
|
|
// Algorithm-dependent
|
2017-06-21 11:51:29 +02:00
|
|
|
#define VOXELFLAG_CHECKED3 (1 << 4)
|
2010-12-11 17:11:03 +01:00
|
|
|
// Algorithm-dependent
|
2017-06-21 11:51:29 +02:00
|
|
|
#define VOXELFLAG_CHECKED4 (1 << 5)
|
2010-12-01 14:20:12 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
enum VoxelPrintMode
|
|
|
|
{
|
|
|
|
VOXELPRINT_NOTHING,
|
|
|
|
VOXELPRINT_MATERIAL,
|
|
|
|
VOXELPRINT_WATERPRESSURE,
|
2012-01-27 11:58:52 +01:00
|
|
|
VOXELPRINT_LIGHT_DAY,
|
2010-12-11 17:11:03 +01:00
|
|
|
};
|
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
class VoxelManipulator
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
|
|
|
public:
|
2017-08-20 13:30:50 +02:00
|
|
|
VoxelManipulator() = default;
|
2010-12-11 17:11:03 +01:00
|
|
|
virtual ~VoxelManipulator();
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2011-01-24 15:36:58 +01:00
|
|
|
/*
|
|
|
|
These are a bit slow and shouldn't be used internally.
|
|
|
|
Use m_data[m_area.index(p)] instead.
|
|
|
|
*/
|
2017-07-26 07:35:09 +02:00
|
|
|
MapNode getNode(const v3s16 &p)
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2014-11-21 05:43:29 +01:00
|
|
|
VoxelArea voxel_area(p);
|
|
|
|
addArea(voxel_area);
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
if (m_flags[m_area.index(p)] & VOXELFLAG_NO_DATA) {
|
2012-03-10 16:02:14 +01:00
|
|
|
/*dstream<<"EXCEPT: VoxelManipulator::getNode(): "
|
2010-12-01 14:20:12 +01:00
|
|
|
<<"p=("<<p.X<<","<<p.Y<<","<<p.Z<<")"
|
|
|
|
<<", index="<<m_area.index(p)
|
|
|
|
<<", flags="<<(int)m_flags[m_area.index(p)]
|
2012-03-10 16:02:14 +01:00
|
|
|
<<" is inexistent"<<std::endl;*/
|
2010-11-29 09:57:05 +01:00
|
|
|
throw InvalidPositionException
|
2010-12-01 14:20:12 +01:00
|
|
|
("VoxelManipulator: getNode: inexistent");
|
|
|
|
}
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2010-12-01 14:20:12 +01:00
|
|
|
return m_data[m_area.index(p)];
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
MapNode getNodeNoEx(const v3s16 &p)
|
2011-04-03 18:50:54 +02:00
|
|
|
{
|
2014-11-21 05:43:29 +01:00
|
|
|
VoxelArea voxel_area(p);
|
|
|
|
addArea(voxel_area);
|
2011-04-03 18:50:54 +02:00
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
if (m_flags[m_area.index(p)] & VOXELFLAG_NO_DATA) {
|
2017-08-20 13:30:50 +02:00
|
|
|
return {CONTENT_IGNORE};
|
2011-04-03 18:50:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return m_data[m_area.index(p)];
|
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
MapNode getNodeNoExNoEmerge(const v3s16 &p)
|
2011-06-25 03:25:14 +02:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
if (!m_area.contains(p))
|
2017-08-20 13:30:50 +02:00
|
|
|
return {CONTENT_IGNORE};
|
2017-07-26 07:35:09 +02:00
|
|
|
if (m_flags[m_area.index(p)] & VOXELFLAG_NO_DATA)
|
2017-08-20 13:30:50 +02:00
|
|
|
return {CONTENT_IGNORE};
|
2011-06-25 03:25:14 +02:00
|
|
|
return m_data[m_area.index(p)];
|
|
|
|
}
|
2012-01-27 11:58:52 +01:00
|
|
|
// Stuff explodes if non-emerged area is touched with this.
|
2014-06-09 13:29:22 +02:00
|
|
|
// Emerge first, and check VOXELFLAG_NO_DATA if appropriate.
|
2015-02-23 14:20:06 +01:00
|
|
|
MapNode & getNodeRefUnsafe(const v3s16 &p)
|
2012-01-27 11:58:52 +01:00
|
|
|
{
|
|
|
|
return m_data[m_area.index(p)];
|
|
|
|
}
|
2015-02-23 14:20:06 +01:00
|
|
|
|
|
|
|
const MapNode & getNodeRefUnsafeCheckFlags(const v3s16 &p)
|
|
|
|
{
|
|
|
|
s32 index = m_area.index(p);
|
|
|
|
|
|
|
|
if (m_flags[index] & VOXELFLAG_NO_DATA)
|
|
|
|
return ContentIgnoreNode;
|
|
|
|
|
|
|
|
return m_data[index];
|
|
|
|
}
|
|
|
|
|
2017-07-26 07:35:09 +02:00
|
|
|
u8 & getFlagsRefUnsafe(const v3s16 &p)
|
2012-01-27 11:58:52 +01:00
|
|
|
{
|
|
|
|
return m_flags[m_area.index(p)];
|
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
|
|
|
|
bool exists(const v3s16 &p)
|
2012-01-27 11:58:52 +01:00
|
|
|
{
|
|
|
|
return m_area.contains(p) &&
|
2014-06-09 13:29:22 +02:00
|
|
|
!(getFlagsRefUnsafe(p) & VOXELFLAG_NO_DATA);
|
2012-01-27 11:58:52 +01:00
|
|
|
}
|
2017-07-26 07:35:09 +02:00
|
|
|
|
|
|
|
void setNode(const v3s16 &p, const MapNode &n)
|
2010-11-29 09:57:05 +01:00
|
|
|
{
|
2014-11-21 05:43:29 +01:00
|
|
|
VoxelArea voxel_area(p);
|
|
|
|
addArea(voxel_area);
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
m_data[m_area.index(p)] = n;
|
2014-06-09 13:29:22 +02:00
|
|
|
m_flags[m_area.index(p)] &= ~VOXELFLAG_NO_DATA;
|
2010-11-29 09:57:05 +01:00
|
|
|
}
|
2012-01-27 11:58:52 +01:00
|
|
|
// TODO: Should be removed and replaced with setNode
|
2017-07-26 07:35:09 +02:00
|
|
|
void setNodeNoRef(const v3s16 &p, const MapNode &n)
|
2010-12-01 14:20:12 +01:00
|
|
|
{
|
|
|
|
setNode(p, n);
|
|
|
|
}
|
|
|
|
|
2011-02-14 01:54:15 +01:00
|
|
|
/*
|
|
|
|
Set stuff if available without an emerge.
|
|
|
|
Return false if failed.
|
|
|
|
This is convenient but slower than playing around directly
|
|
|
|
with the m_data table with indices.
|
|
|
|
*/
|
2017-07-26 07:35:09 +02:00
|
|
|
bool setNodeNoEmerge(const v3s16 &p, MapNode n)
|
2011-02-14 01:54:15 +01:00
|
|
|
{
|
2017-07-26 07:35:09 +02:00
|
|
|
if(!m_area.contains(p))
|
2011-02-14 01:54:15 +01:00
|
|
|
return false;
|
|
|
|
m_data[m_area.index(p)] = n;
|
2011-08-08 16:13:48 +02:00
|
|
|
return true;
|
2011-02-14 01:54:15 +01:00
|
|
|
}
|
2010-11-29 09:57:05 +01:00
|
|
|
|
|
|
|
/*
|
2010-12-01 14:20:12 +01:00
|
|
|
Control
|
2010-11-29 09:57:05 +01:00
|
|
|
*/
|
2010-12-01 14:20:12 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
virtual void clear();
|
|
|
|
|
2011-11-14 20:41:30 +01:00
|
|
|
void print(std::ostream &o, INodeDefManager *nodemgr,
|
|
|
|
VoxelPrintMode mode=VOXELPRINT_MATERIAL);
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2014-11-21 05:43:29 +01:00
|
|
|
void addArea(const VoxelArea &area);
|
2010-11-29 09:57:05 +01:00
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
/*
|
|
|
|
Copy data and set flags to 0
|
|
|
|
dst_area.getExtent() <= src_area.getExtent()
|
|
|
|
*/
|
2014-06-09 13:29:22 +02:00
|
|
|
void copyFrom(MapNode *src, const VoxelArea& src_area,
|
2017-07-26 07:35:09 +02:00
|
|
|
v3s16 from_pos, v3s16 to_pos, const v3s16 &size);
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2011-02-01 02:06:02 +01:00
|
|
|
// Copy data
|
2014-06-09 13:29:22 +02:00
|
|
|
void copyTo(MapNode *dst, const VoxelArea& dst_area,
|
2017-07-26 07:35:09 +02:00
|
|
|
v3s16 dst_pos, v3s16 from_pos, const v3s16 &size);
|
2010-12-11 17:11:03 +01:00
|
|
|
|
2010-12-01 14:20:12 +01:00
|
|
|
/*
|
|
|
|
Algorithms
|
|
|
|
*/
|
|
|
|
|
2010-12-11 17:11:03 +01:00
|
|
|
void clearFlag(u8 flag);
|
2012-01-27 11:58:52 +01:00
|
|
|
|
|
|
|
// TODO: Move to voxelalgorithms.h
|
|
|
|
|
2011-01-24 15:36:58 +01:00
|
|
|
void unspreadLight(enum LightBank bank, v3s16 p, u8 oldlight,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> & light_sources, INodeDefManager *nodemgr);
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2011-11-14 20:41:30 +01:00
|
|
|
void spreadLight(enum LightBank bank, v3s16 p, INodeDefManager *nodemgr);
|
2011-01-24 15:36:58 +01:00
|
|
|
void spreadLight(enum LightBank bank,
|
2012-12-20 18:19:49 +01:00
|
|
|
std::set<v3s16> & from_nodes, INodeDefManager *nodemgr);
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
/*
|
|
|
|
Member variables
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
The area that is stored in m_data.
|
|
|
|
addInternalBox should not be used if getExtent() == v3s16(0,0,0)
|
|
|
|
MaxEdge is 1 higher than maximum allowed position
|
|
|
|
*/
|
|
|
|
VoxelArea m_area;
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2010-11-29 09:57:05 +01:00
|
|
|
/*
|
2017-06-21 11:51:29 +02:00
|
|
|
nullptr if data size is 0 (extent (0,0,0))
|
2010-11-29 09:57:05 +01:00
|
|
|
Data is stored as [z*h*w + y*h + x]
|
|
|
|
*/
|
2017-06-21 11:51:29 +02:00
|
|
|
MapNode *m_data = nullptr;
|
2010-12-11 17:11:03 +01:00
|
|
|
|
2010-12-01 14:20:12 +01:00
|
|
|
/*
|
|
|
|
Flags of all nodes
|
|
|
|
*/
|
2017-06-21 11:51:29 +02:00
|
|
|
u8 *m_flags = nullptr;
|
2012-11-26 03:16:48 +01:00
|
|
|
|
2015-02-23 14:20:06 +01:00
|
|
|
static const MapNode ContentIgnoreNode;
|
2010-11-29 09:57:05 +01:00
|
|
|
};
|