mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
4ca5da5666
Use LibFFI for Public & Timer APIs Use "PlayerId" type instead "unsigned short" Add GetPluginDir() function
26 lines
755 B
C++
26 lines
755 B
C++
#ifndef OPENMW_PROCESSOROBJECTACTIVATE_HPP
|
|
#define OPENMW_PROCESSOROBJECTACTIVATE_HPP
|
|
|
|
#include "../ObjectProcessor.hpp"
|
|
#include <apps/openmw-mp/Networking.hpp>
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorObjectActivate : public ObjectProcessor
|
|
{
|
|
public:
|
|
ProcessorObjectActivate()
|
|
{
|
|
BPP_INIT(ID_OBJECT_ACTIVATE)
|
|
}
|
|
|
|
void Do(ObjectPacket &packet, Player &player, BaseObjectList &objectList) override
|
|
{
|
|
LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Received %s from %s", strPacketID.c_str(), player.npc.mName.c_str());
|
|
|
|
Plugin::Call<CallbackIndex("OnObjectActivate")>(player.getId(), objectList.cell.getDescription().c_str());
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSOROBJECTACTIVATE_HPP
|