mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:19:56 +00:00
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
|
//
|
||
|
// Created by koncord on 30.08.16.
|
||
|
//
|
||
|
|
||
|
#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 "World.hpp"
|
||
|
|
||
|
void WorldFunctions::SetHour(unsigned short pid, double hour) noexcept
|
||
|
{
|
||
|
Player *player;
|
||
|
GET_PLAYER(pid, player,);
|
||
|
|
||
|
player->hour = hour;
|
||
|
player->month = -1;
|
||
|
player->day = -1;
|
||
|
|
||
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_TIME)->Send(player, false);
|
||
|
}
|
||
|
|
||
|
void WorldFunctions::SetMonth(unsigned short pid, int month) noexcept
|
||
|
{
|
||
|
Player *player;
|
||
|
GET_PLAYER(pid, player,);
|
||
|
|
||
|
player->hour = -1;
|
||
|
player->month = month;
|
||
|
player->day = -1;
|
||
|
|
||
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_TIME)->Send(player, false);
|
||
|
|
||
|
}
|
||
|
|
||
|
void WorldFunctions::SetDay(unsigned short pid, int day) noexcept
|
||
|
{
|
||
|
Player *player;
|
||
|
GET_PLAYER(pid, player,);
|
||
|
|
||
|
player->hour = -1;
|
||
|
player->month = -1;
|
||
|
player->day = day;
|
||
|
|
||
|
mwmp::Networking::Get().GetController()->GetPacket(ID_GAME_TIME)->Send(player, false);
|
||
|
}
|