forked from Mirrorlandia_minetest/minetest
parent
91615f9588
commit
460b375cad
@ -272,6 +272,8 @@ void LuaEntitySAO::addedToEnvironment(u32 dtime_s)
|
|||||||
// Get properties
|
// Get properties
|
||||||
m_env->getScriptIface()->
|
m_env->getScriptIface()->
|
||||||
luaentity_GetProperties(m_id, &m_prop);
|
luaentity_GetProperties(m_id, &m_prop);
|
||||||
|
// Notify the environment of the new properties
|
||||||
|
m_env->updateActiveObject(this);
|
||||||
// Initialize HP from properties
|
// Initialize HP from properties
|
||||||
m_hp = m_prop.hp_max;
|
m_hp = m_prop.hp_max;
|
||||||
// Activate entity, supplying serialized state
|
// Activate entity, supplying serialized state
|
||||||
|
@ -25,15 +25,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
|
|
||||||
static constexpr float granularity = 16.0 * BS;
|
static constexpr float granularity = 16.0 * BS;
|
||||||
|
|
||||||
|
static v3s16 getChunkPos(const v3f &pos)
|
||||||
|
{
|
||||||
|
return v3s16(
|
||||||
|
std::floor(pos.X / granularity),
|
||||||
|
std::floor(pos.Y / granularity),
|
||||||
|
std::floor(pos.Z / granularity));
|
||||||
|
}
|
||||||
|
|
||||||
static aabb3s16 calcBox(const aabb3f &cb)
|
static aabb3s16 calcBox(const aabb3f &cb)
|
||||||
{
|
{
|
||||||
return aabb3s16(
|
return { getChunkPos(cb.MinEdge), getChunkPos(cb.MaxEdge) };
|
||||||
std::floor(cb.MinEdge.X / granularity),
|
|
||||||
std::floor(cb.MinEdge.Y / granularity),
|
|
||||||
std::floor(cb.MinEdge.Z / granularity),
|
|
||||||
std::ceil(cb.MaxEdge.X / granularity),
|
|
||||||
std::ceil(cb.MaxEdge.Y / granularity),
|
|
||||||
std::ceil(cb.MaxEdge.Z / granularity));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ServerActiveObjectMap::addObject(ServerActiveObject *object)
|
void ServerActiveObjectMap::addObject(ServerActiveObject *object)
|
||||||
@ -46,10 +48,12 @@ void ServerActiveObjectMap::addObject(ServerActiveObject *object)
|
|||||||
"object ID in use: " + std::to_string(id));
|
"object ID in use: " + std::to_string(id));
|
||||||
w.object = object;
|
w.object = object;
|
||||||
w.has_box = w.object->getCollisionBox(&cb);
|
w.has_box = w.object->getCollisionBox(&cb);
|
||||||
|
w.pos = getChunkPos(w.object->getBasePosition());
|
||||||
if (w.has_box) {
|
if (w.has_box) {
|
||||||
w.box = calcBox(cb);
|
w.box = calcBox(cb);
|
||||||
addObjectRefs(id, w.box);
|
addObjectRefs(id, w.box);
|
||||||
}
|
}
|
||||||
|
addObjectRef(id, w.pos);
|
||||||
objects.emplace(id, w);
|
objects.emplace(id, w);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -61,6 +65,7 @@ ServerActiveObject *ServerActiveObjectMap::removeObject(u16 id)
|
|||||||
Wrapper w = pw->second;
|
Wrapper w = pw->second;
|
||||||
if (w.has_box)
|
if (w.has_box)
|
||||||
removeObjectRefs(id, w.box);
|
removeObjectRefs(id, w.box);
|
||||||
|
removeObjectRef(id, w.pos);
|
||||||
objects.erase(pw);
|
objects.erase(pw);
|
||||||
return w.object;
|
return w.object;
|
||||||
}
|
}
|
||||||
@ -79,19 +84,22 @@ void ServerActiveObjectMap::updateObject(u16 id)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Wrapper &w = pw->second;
|
Wrapper &w = pw->second;
|
||||||
|
v3s16 pos = getChunkPos(w.object->getBasePosition());
|
||||||
aabb3f cb;
|
aabb3f cb;
|
||||||
aabb3s16 box;
|
aabb3s16 box;
|
||||||
bool has_box = w.object->getCollisionBox(&cb);
|
bool has_box = w.object->getCollisionBox(&cb);
|
||||||
if (has_box)
|
if (has_box)
|
||||||
box = calcBox(cb);
|
box = calcBox(cb);
|
||||||
if (w.has_box && has_box && w.box == box)
|
if (w.has_box && has_box && w.box == box && pos == w.pos)
|
||||||
return;
|
return;
|
||||||
if (w.has_box)
|
if (w.has_box)
|
||||||
removeObjectRefs(id, w.box);
|
removeObjectRefs(id, w.box);
|
||||||
|
removeObjectRef(id, w.pos);
|
||||||
w.box = box;
|
w.box = box;
|
||||||
w.has_box = has_box;
|
w.has_box = has_box;
|
||||||
if (w.has_box)
|
if (w.has_box)
|
||||||
addObjectRefs(id, w.box);
|
addObjectRefs(id, w.box);
|
||||||
|
addObjectRef(id, w.pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ServerActiveObjectMap::updateObject(ServerActiveObject *object)
|
void ServerActiveObjectMap::updateObject(ServerActiveObject *object)
|
||||||
@ -151,13 +159,29 @@ std::unordered_set<u16> ServerActiveObjectMap::getObjectsNearBox(const aabb3s16
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ServerActiveObjectMap::addObjectRef(u16 id, v3s16 pos)
|
||||||
|
{
|
||||||
|
refmap.emplace(pos, id);
|
||||||
|
}
|
||||||
|
|
||||||
|
void ServerActiveObjectMap::removeObjectRef(u16 id, v3s16 pos)
|
||||||
|
{
|
||||||
|
auto bounds = refmap.equal_range(pos);
|
||||||
|
for (auto iter = bounds.first; iter != bounds.second;) {
|
||||||
|
if (iter->second == id)
|
||||||
|
iter = refmap.erase(iter);
|
||||||
|
else
|
||||||
|
++iter;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ServerActiveObjectMap::addObjectRefs(u16 id, const aabb3s16 &box)
|
void ServerActiveObjectMap::addObjectRefs(u16 id, const aabb3s16 &box)
|
||||||
{
|
{
|
||||||
v3s16 p;
|
v3s16 p;
|
||||||
for (p.Z = box.MinEdge.Z; p.Z <= box.MaxEdge.Z; p.Z++)
|
for (p.Z = box.MinEdge.Z; p.Z <= box.MaxEdge.Z; p.Z++)
|
||||||
for (p.Y = box.MinEdge.Y; p.Y <= box.MaxEdge.Y; p.Y++)
|
for (p.Y = box.MinEdge.Y; p.Y <= box.MaxEdge.Y; p.Y++)
|
||||||
for (p.X = box.MinEdge.X; p.X <= box.MaxEdge.X; p.X++)
|
for (p.X = box.MinEdge.X; p.X <= box.MaxEdge.X; p.X++)
|
||||||
refmap.emplace(p, id);
|
addObjectRef(id, p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ServerActiveObjectMap::removeObjectRefs(u16 id, const aabb3s16 &box)
|
void ServerActiveObjectMap::removeObjectRefs(u16 id, const aabb3s16 &box)
|
||||||
@ -165,14 +189,8 @@ void ServerActiveObjectMap::removeObjectRefs(u16 id, const aabb3s16 &box)
|
|||||||
v3s16 p;
|
v3s16 p;
|
||||||
for (p.Z = box.MinEdge.Z; p.Z <= box.MaxEdge.Z; p.Z++)
|
for (p.Z = box.MinEdge.Z; p.Z <= box.MaxEdge.Z; p.Z++)
|
||||||
for (p.Y = box.MinEdge.Y; p.Y <= box.MaxEdge.Y; p.Y++)
|
for (p.Y = box.MinEdge.Y; p.Y <= box.MaxEdge.Y; p.Y++)
|
||||||
for (p.X = box.MinEdge.X; p.X <= box.MaxEdge.X; p.X++) {
|
for (p.X = box.MinEdge.X; p.X <= box.MaxEdge.X; p.X++)
|
||||||
auto bounds = refmap.equal_range(p);
|
removeObjectRef(id, p);
|
||||||
for (auto iter = bounds.first; iter != bounds.second;)
|
|
||||||
if (iter->second == id)
|
|
||||||
refmap.erase(iter++);
|
|
||||||
else
|
|
||||||
++iter;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ServerActiveObjectMap::isFreeId(u16 id)
|
bool ServerActiveObjectMap::isFreeId(u16 id)
|
||||||
|
@ -39,6 +39,7 @@ struct ServerActiveObjectMap
|
|||||||
{
|
{
|
||||||
ServerActiveObject *object;
|
ServerActiveObject *object;
|
||||||
aabb3s16 box;
|
aabb3s16 box;
|
||||||
|
v3s16 pos;
|
||||||
bool has_box;
|
bool has_box;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -108,9 +109,6 @@ struct ServerActiveObjectMap
|
|||||||
* @note Due to inexact nature of floating-point computations, it is
|
* @note Due to inexact nature of floating-point computations, it is
|
||||||
* undefined whether an object lying exactly at the boundary is included
|
* undefined whether an object lying exactly at the boundary is included
|
||||||
* in the list or not.
|
* in the list or not.
|
||||||
* @note Objects with base position outside of the collision box may not
|
|
||||||
* be returned.
|
|
||||||
* @note Objects without valid collision box are not returned.
|
|
||||||
*/
|
*/
|
||||||
std::vector<u16> getObjectsInsideRadius(v3f pos, float radius);
|
std::vector<u16> getObjectsInsideRadius(v3f pos, float radius);
|
||||||
|
|
||||||
@ -134,6 +132,8 @@ struct ServerActiveObjectMap
|
|||||||
const std::unordered_map<u16, Wrapper> &getObjects() const { return objects; }
|
const std::unordered_map<u16, Wrapper> &getObjects() const { return objects; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
void addObjectRef(u16 id, v3s16 pos);
|
||||||
|
void removeObjectRef(u16 id, v3s16 pos);
|
||||||
void addObjectRefs(u16 id, const aabb3s16 &box);
|
void addObjectRefs(u16 id, const aabb3s16 &box);
|
||||||
void removeObjectRefs(u16 id, const aabb3s16 &box);
|
void removeObjectRefs(u16 id, const aabb3s16 &box);
|
||||||
std::unordered_set<u16> getObjectsNearBox(const aabb3s16 &box);
|
std::unordered_set<u16> getObjectsNearBox(const aabb3s16 &box);
|
||||||
|
Loading…
Reference in New Issue
Block a user