Skip to content

Commit

Permalink
Add on_deactivate callback for luaentities (#10723)
Browse files Browse the repository at this point in the history
  • Loading branch information
hecktest committed Jan 2, 2021
1 parent ad58fb2 commit dd5a732
Show file tree
Hide file tree
Showing 12 changed files with 106 additions and 27 deletions.
1 change: 1 addition & 0 deletions builtin/profiler/instrumentation.lua
Expand Up @@ -160,6 +160,7 @@ local function init()
-- Simple iteration would ignore lookup via __index.
local entity_instrumentation = {
"on_activate",
"on_deactivate",
"on_step",
"on_punch",
"on_rightclick",
Expand Down
2 changes: 2 additions & 0 deletions doc/lua_api.txt
Expand Up @@ -4207,6 +4207,8 @@ Callbacks:
* Called when the object is instantiated.
* `dtime_s` is the time passed since the object was unloaded, which can be
used for updating the entity state.
* `on_deactivate(self)
* Called when the object is about to get removed or unloaded.
* `on_step(self, dtime)`
* Called on every server tick, after movement and collision processing.
`dtime` is usually 0.1 seconds, as per the `dedicated_server_step` setting
Expand Down
3 changes: 3 additions & 0 deletions games/devtest/mods/testentities/callbacks.lua
Expand Up @@ -31,6 +31,9 @@ minetest.register_entity("testentities:callback", {
on_activate = function(self, staticdata, dtime_s)
message("Callback entity: on_activate! pos="..spos(self).."; dtime_s="..dtime_s)
end,
on_deactivate = function(self)
message("Callback entity: on_deactivate! pos="..spos(self))
end,
on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir, damage)
local name = get_object_name(puncher)
message(
Expand Down
26 changes: 26 additions & 0 deletions src/script/cpp_api/s_entity.cpp
Expand Up @@ -103,6 +103,32 @@ void ScriptApiEntity::luaentity_Activate(u16 id,
lua_pop(L, 2); // Pop object and error handler
}

void ScriptApiEntity::luaentity_Deactivate(u16 id)
{
SCRIPTAPI_PRECHECKHEADER

verbosestream << "scriptapi_luaentity_deactivate: id=" << id << std::endl;

int error_handler = PUSH_ERROR_HANDLER(L);

// Get the entity
luaentity_get(L, id);
int object = lua_gettop(L);

// Get on_deactivate
lua_getfield(L, -1, "on_deactivate");
if (!lua_isnil(L, -1)) {
luaL_checktype(L, -1, LUA_TFUNCTION);
lua_pushvalue(L, object);

setOriginFromTable(object);
PCALL_RES(lua_pcall(L, 1, 0, error_handler));
} else {
lua_pop(L, 1);
}
lua_pop(L, 2); // Pop object and error handler
}

void ScriptApiEntity::luaentity_Remove(u16 id)
{
SCRIPTAPI_PRECHECKHEADER
Expand Down
1 change: 1 addition & 0 deletions src/script/cpp_api/s_entity.h
Expand Up @@ -33,6 +33,7 @@ class ScriptApiEntity
bool luaentity_Add(u16 id, const char *name);
void luaentity_Activate(u16 id,
const std::string &staticdata, u32 dtime_s);
void luaentity_Deactivate(u16 id);
void luaentity_Remove(u16 id);
std::string luaentity_GetStaticdata(u16 id);
void luaentity_GetProperties(u16 id,
Expand Down
2 changes: 1 addition & 1 deletion src/script/lua_api/l_object.cpp
Expand Up @@ -110,7 +110,7 @@ int ObjectRef::l_remove(lua_State *L)
sao->clearParentAttachment();

verbosestream << "ObjectRef::l_remove(): id=" << sao->getId() << std::endl;
sao->m_pending_removal = true;
sao->markForRemoval();
return 0;
}

Expand Down
13 changes: 11 additions & 2 deletions src/server/luaentity_sao.cpp
Expand Up @@ -112,6 +112,15 @@ void LuaEntitySAO::addedToEnvironment(u32 dtime_s)
}
}

void LuaEntitySAO::dispatchScriptDeactivate()
{
// Ensure that this is in fact a registered entity,
// and that it isn't already gone.
// The latter also prevents this from ever being called twice.
if (m_registered && !isGone())
m_env->getScriptIface()->luaentity_Deactivate(m_id);
}

void LuaEntitySAO::step(float dtime, bool send_recommended)
{
if(!m_properties_sent)
Expand Down Expand Up @@ -302,7 +311,7 @@ u16 LuaEntitySAO::punch(v3f dir,
{
if (!m_registered) {
// Delete unknown LuaEntities when punched
m_pending_removal = true;
markForRemoval();
return 0;
}

Expand Down Expand Up @@ -335,7 +344,7 @@ u16 LuaEntitySAO::punch(v3f dir,
clearParentAttachment();
clearChildAttachments();
m_env->getScriptIface()->luaentity_on_death(m_id, puncher);
m_pending_removal = true;
markForRemoval();
}

actionstream << puncher->getDescription() << " (id=" << puncher->getId() <<
Expand Down
5 changes: 5 additions & 0 deletions src/server/luaentity_sao.h
Expand Up @@ -71,6 +71,11 @@ class LuaEntitySAO : public UnitSAO
bool getSelectionBox(aabb3f *toset) const;
bool collideWithObjects() const;

protected:
void dispatchScriptDeactivate();
virtual void onMarkedForDeactivation() { dispatchScriptDeactivate(); }
virtual void onMarkedForRemoval() { dispatchScriptDeactivate(); }

private:
std::string getPropertyPacket();
void sendPosition(bool do_interpolate, bool is_movement_end);
Expand Down
2 changes: 1 addition & 1 deletion src/server/player_sao.cpp
Expand Up @@ -531,7 +531,7 @@ bool PlayerSAO::setWieldedItem(const ItemStack &item)
void PlayerSAO::disconnected()
{
m_peer_id = PEER_ID_INEXISTENT;
m_pending_removal = true;
markForRemoval();
}

void PlayerSAO::unlinkPlayerSessionAndSave()
Expand Down
16 changes: 16 additions & 0 deletions src/server/serveractiveobject.cpp
Expand Up @@ -73,3 +73,19 @@ void ServerActiveObject::dumpAOMessagesToQueue(std::queue<ActiveObjectMessage> &
m_messages_out.pop();
}
}

void ServerActiveObject::markForRemoval()
{
if (!m_pending_removal) {
onMarkedForRemoval();
m_pending_removal = true;
}
}

void ServerActiveObject::markForDeactivation()
{
if (!m_pending_deactivation) {
onMarkedForDeactivation();
m_pending_deactivation = true;
}
}
50 changes: 31 additions & 19 deletions src/server/serveractiveobject.h
Expand Up @@ -70,6 +70,10 @@ class ServerActiveObject : public ActiveObject
virtual bool environmentDeletes() const
{ return true; }

// Safely mark the object for removal or deactivation
void markForRemoval();
void markForDeactivation();

// Create a certain type of ServerActiveObject
static ServerActiveObject* create(ActiveObjectType type,
ServerEnvironment *env, u16 id, v3f pos,
Expand Down Expand Up @@ -213,32 +217,16 @@ class ServerActiveObject : public ActiveObject
*/
u16 m_known_by_count = 0;

/*
- Whether this object is to be removed when nobody knows about
it anymore.
- Removal is delayed to preserve the id for the time during which
it could be confused to some other object by some client.
- This is usually set to true by the step() method when the object wants
to be deleted but can be set by anything else too.
*/
bool m_pending_removal = false;

/*
Same purpose as m_pending_removal but for deactivation.
deactvation = save static data in block, remove active object
If this is set alongside with m_pending_removal, removal takes
priority.
*/
bool m_pending_deactivation = false;

/*
A getter that unifies the above to answer the question:
"Can the environment still interact with this object?"
*/
inline bool isGone() const
{ return m_pending_removal || m_pending_deactivation; }

inline bool isPendingRemoval() const
{ return m_pending_removal; }

/*
Whether the object's static data has been stored to a block
*/
Expand All @@ -250,13 +238,37 @@ class ServerActiveObject : public ActiveObject
v3s16 m_static_block = v3s16(1337,1337,1337);

protected:
virtual void onMarkedForDeactivation() {}
virtual void onMarkedForRemoval() {}

virtual void onAttach(int parent_id) {}
virtual void onDetach(int parent_id) {}

ServerEnvironment *m_env;
v3f m_base_position;
std::unordered_set<u32> m_attached_particle_spawners;

/*
Same purpose as m_pending_removal but for deactivation.
deactvation = save static data in block, remove active object
If this is set alongside with m_pending_removal, removal takes
priority.
Note: Do not assign this directly, use markForDeactivation() instead.
*/
bool m_pending_deactivation = false;

/*
- Whether this object is to be removed when nobody knows about
it anymore.
- Removal is delayed to preserve the id for the time during which
it could be confused to some other object by some client.
- This is usually set to true by the step() method when the object wants
to be deleted but can be set by anything else too.
Note: Do not assign this directly, use markForRemoval() instead.
*/
bool m_pending_removal = false;

/*
Queue of messages to be sent to the client
*/
Expand Down
12 changes: 8 additions & 4 deletions src/serverenvironment.cpp
Expand Up @@ -1164,7 +1164,7 @@ void ServerEnvironment::clearObjects(ClearObjectsMode mode)

// If known by some client, don't delete immediately
if (obj->m_known_by_count > 0) {
obj->m_pending_removal = true;
obj->markForRemoval();
return false;
}

Expand Down Expand Up @@ -1792,7 +1792,7 @@ void ServerEnvironment::removeRemovedObjects()
/*
Delete static data from block if removed
*/
if (obj->m_pending_removal)
if (obj->isPendingRemoval())
deleteStaticFromBlock(obj, id, MOD_REASON_REMOVE_OBJECTS_REMOVE, false);

// If still known by clients, don't actually remove. On some future
Expand All @@ -1803,7 +1803,7 @@ void ServerEnvironment::removeRemovedObjects()
/*
Move static data from active to stored if deactivated
*/
if (!obj->m_pending_removal && obj->m_static_exists) {
if (!obj->isPendingRemoval() && obj->m_static_exists) {
MapBlock *block = m_map->emergeBlock(obj->m_static_block, false);
if (block) {
const auto i = block->m_static_objects.m_active.find(id);
Expand Down Expand Up @@ -1991,6 +1991,7 @@ void ServerEnvironment::deactivateFarObjects(bool _force_delete)
if (!force_delete && obj->m_static_exists &&
!m_active_blocks.contains(obj->m_static_block) &&
m_active_blocks.contains(blockpos_o)) {

// Delete from block where object was located
deleteStaticFromBlock(obj, id, MOD_REASON_STATIC_DATA_REMOVED, false);

Expand Down Expand Up @@ -2068,6 +2069,10 @@ void ServerEnvironment::deactivateFarObjects(bool _force_delete)
force_delete = true;
}

// Regardless of what happens to the object at this point, deactivate it first.
// This ensures that LuaEntity on_deactivate is always called.
obj->markForDeactivation();

/*
If known by some client, set pending deactivation.
Otherwise delete it immediately.
Expand All @@ -2077,7 +2082,6 @@ void ServerEnvironment::deactivateFarObjects(bool _force_delete)
<< "object id=" << id << " is known by clients"
<< "; not deleting yet" << std::endl;

obj->m_pending_deactivation = true;
return false;
}

Expand Down

0 comments on commit dd5a732

Please sign in to comment.