|
|
|
@ -1,13 +1,83 @@
|
|
|
|
|
//
|
|
|
|
|
// Created by koncord on 30.08.16.
|
|
|
|
|
//
|
|
|
|
|
#include <regex>
|
|
|
|
|
|
|
|
|
|
#include <apps/openmw-mp/Player.hpp>
|
|
|
|
|
#include <apps/openmw-mp/Script/ScriptFunctions.hpp>
|
|
|
|
|
#include <apps/openmw-mp/Networking.hpp>
|
|
|
|
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
|
|
|
|
#include <components/openmw-mp/Base/WorldEvent.hpp>
|
|
|
|
|
#include "World.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace mwmp;
|
|
|
|
|
|
|
|
|
|
static WorldEvent *worldEvent;
|
|
|
|
|
|
|
|
|
|
std::regex exteriorCellPattern("^(-?\\d+), (-?\\d+)$");
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::CreateWorldEvent(unsigned short pid) noexcept
|
|
|
|
|
{
|
|
|
|
|
Player *player;
|
|
|
|
|
GET_PLAYER(pid, player, );
|
|
|
|
|
|
|
|
|
|
worldEvent = new WorldEvent(player->guid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::AddWorldObject() noexcept
|
|
|
|
|
{
|
|
|
|
|
WorldObject worldObject;
|
|
|
|
|
|
|
|
|
|
worldEvent->objectChanges.objects.push_back(worldObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SetWorldEventCell(const char* cellDescription) noexcept
|
|
|
|
|
{
|
|
|
|
|
std::string description = cellDescription;
|
|
|
|
|
std::smatch baseMatch;
|
|
|
|
|
|
|
|
|
|
if (std::regex_match(description, baseMatch, exteriorCellPattern))
|
|
|
|
|
{
|
|
|
|
|
worldEvent->cell.mData.mFlags &= ~ESM::Cell::Interior;
|
|
|
|
|
|
|
|
|
|
// The first sub match is the whole string, so check for a length of 3
|
|
|
|
|
if (baseMatch.size() == 3) {
|
|
|
|
|
|
|
|
|
|
worldEvent->cell.mData.mX = stoi(baseMatch[1].str());
|
|
|
|
|
worldEvent->cell.mData.mY = stoi(baseMatch[2].str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
worldEvent->cell.mData.mFlags |= ESM::Cell::Interior;
|
|
|
|
|
worldEvent->cell.mName = description;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SetObjectRefId(unsigned int i, const char* refId) noexcept
|
|
|
|
|
{
|
|
|
|
|
worldEvent->objectChanges.objects[i].refId = refId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SetObjectRefNumIndex(unsigned int i, int refNumIndex) noexcept
|
|
|
|
|
{
|
|
|
|
|
worldEvent->objectChanges.objects[i].refNumIndex = refNumIndex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SetObjectPosition(unsigned int i, double x, double y, double z) noexcept
|
|
|
|
|
{
|
|
|
|
|
worldEvent->objectChanges.objects[i].pos.pos[0] = x;
|
|
|
|
|
worldEvent->objectChanges.objects[i].pos.pos[1] = y;
|
|
|
|
|
worldEvent->objectChanges.objects[i].pos.pos[2] = z;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SendObjectDelete() noexcept
|
|
|
|
|
{
|
|
|
|
|
mwmp::Networking::get().getWorldController()->GetPacket(ID_OBJECT_DELETE)->Send(worldEvent, worldEvent->guid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SendObjectPlace() noexcept
|
|
|
|
|
{
|
|
|
|
|
mwmp::Networking::get().getWorldController()->GetPacket(ID_OBJECT_PLACE)->Send(worldEvent, worldEvent->guid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WorldFunctions::SetHour(unsigned short pid, double hour) noexcept
|
|
|
|
|
{
|
|
|
|
|
Player *player;
|
|
|
|
|