forked from mirror/openmw-tes3mp
[Server] Add Weather API
parent
1ef6ad6215
commit
44dc153ebe
@ -0,0 +1,111 @@
|
|||||||
|
//
|
||||||
|
// Created by koncord on 30.11.17.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "Weather.hpp"
|
||||||
|
#include "Script/LuaState.hpp"
|
||||||
|
#include "Networking.hpp"
|
||||||
|
#include <Player.hpp>
|
||||||
|
#include <components/openmw-mp/NetworkMessages.hpp>
|
||||||
|
#include <components/openmw-mp/Base/BasePlayer.hpp>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
using namespace mwmp;
|
||||||
|
|
||||||
|
void WeatherMgr::Init(LuaState &lua)
|
||||||
|
{
|
||||||
|
lua.getState()->new_usertype<WeatherMgr>("WeatherMgr",
|
||||||
|
"current", sol::property(&WeatherMgr::getCurrent, &WeatherMgr::setCurrent),
|
||||||
|
"next", sol::property(&WeatherMgr::getNext, &WeatherMgr::setNext),
|
||||||
|
"transitionFactor", sol::property(&WeatherMgr::getTransition, &WeatherMgr::setTransition),
|
||||||
|
"updateTime", sol::property(&WeatherMgr::getUpdate, &WeatherMgr::setUpdate),
|
||||||
|
"copy", &WeatherMgr::copy,
|
||||||
|
"setWeather", &WeatherMgr::setWeather,
|
||||||
|
"request", &WeatherMgr::requestWeather
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
WeatherMgr::WeatherMgr(Player *player) : player(player), changed(false)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::setWeather(int weather)
|
||||||
|
{
|
||||||
|
changed = true;
|
||||||
|
|
||||||
|
player->weather.nextWeather = weather;
|
||||||
|
player->weather.transitionFactor = 0.0f;
|
||||||
|
player->weather.updateTime = 0.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::update()
|
||||||
|
{
|
||||||
|
if (!changed)
|
||||||
|
return;
|
||||||
|
changed = false;
|
||||||
|
|
||||||
|
auto packet = mwmp::Networking::get().getPlayerPacketController()->GetPacket(ID_GAME_WEATHER);
|
||||||
|
|
||||||
|
packet->setPlayer(player);
|
||||||
|
|
||||||
|
packet->Send(/*toOthers*/ false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::setCurrent(int weather)
|
||||||
|
{
|
||||||
|
player->weather.currentWeather = weather;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WeatherMgr::getCurrent() const
|
||||||
|
{
|
||||||
|
return player->weather.currentWeather;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::setNext(int weather)
|
||||||
|
{
|
||||||
|
player->weather.nextWeather = weather;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
int WeatherMgr::getNext() const
|
||||||
|
{
|
||||||
|
return player->weather.nextWeather;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::setTransition(float time)
|
||||||
|
{
|
||||||
|
player->weather.transitionFactor = time;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
float WeatherMgr::getTransition() const
|
||||||
|
{
|
||||||
|
return player->weather.transitionFactor;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::setUpdate(float time)
|
||||||
|
{
|
||||||
|
player->weather.updateTime = time;
|
||||||
|
changed = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
float WeatherMgr::getUpdate() const
|
||||||
|
{
|
||||||
|
return player->weather.updateTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::requestWeather()
|
||||||
|
{
|
||||||
|
auto packet = mwmp::Networking::get().getPlayerPacketController()->GetPacket(ID_GAME_WEATHER);
|
||||||
|
packet->RequestData(player->guid);
|
||||||
|
}
|
||||||
|
|
||||||
|
void WeatherMgr::copy(const WeatherMgr &other)
|
||||||
|
{
|
||||||
|
if(other.player == player)
|
||||||
|
return;
|
||||||
|
player->weather = other.player->weather;
|
||||||
|
changed = true;
|
||||||
|
}
|
@ -0,0 +1,45 @@
|
|||||||
|
//
|
||||||
|
// Created by koncord on 30.11.17.
|
||||||
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <components/openmw-mp/Base/BasePlayer.hpp>
|
||||||
|
#include <apps/openmw-mp/Script/LuaState.hpp>
|
||||||
|
|
||||||
|
class Player;
|
||||||
|
|
||||||
|
class WeatherMgr
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static void Init(LuaState &lua);
|
||||||
|
public:
|
||||||
|
explicit WeatherMgr(Player *player);
|
||||||
|
~WeatherMgr() = default;
|
||||||
|
|
||||||
|
void update();
|
||||||
|
|
||||||
|
void setWeather(int weather);
|
||||||
|
|
||||||
|
void setCurrent(int weather);
|
||||||
|
int getCurrent() const;
|
||||||
|
|
||||||
|
void setNext(int weather);
|
||||||
|
int getNext() const;
|
||||||
|
|
||||||
|
void setTransition(float time);
|
||||||
|
float getTransition() const;
|
||||||
|
|
||||||
|
void setUpdate(float time);
|
||||||
|
float getUpdate() const;
|
||||||
|
|
||||||
|
void requestWeather();
|
||||||
|
|
||||||
|
void copy(const WeatherMgr &other);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Player *player;
|
||||||
|
bool changed;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue