mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 00:49:54 +00:00
62 lines
2.5 KiB
C++
62 lines
2.5 KiB
C++
#ifndef OPENMW_PROCESSORGAMESETTINGS_HPP
|
|
#define OPENMW_PROCESSORGAMESETTINGS_HPP
|
|
|
|
#include "apps/openmw/mwbase/environment.hpp"
|
|
#include "apps/openmw/mwworld/worldimp.hpp"
|
|
#include "apps/openmw/mwgui/windowmanagerimp.hpp"
|
|
|
|
#include "../PlayerProcessor.hpp"
|
|
|
|
namespace mwmp
|
|
{
|
|
class ProcessorGameSettings final: public PlayerProcessor
|
|
{
|
|
const std::string GAME_SETTING_CATEGORY = "Game";
|
|
public:
|
|
ProcessorGameSettings()
|
|
{
|
|
BPP_INIT(ID_GAME_SETTINGS)
|
|
}
|
|
|
|
virtual void Do(PlayerPacket &packet, BasePlayer *player)
|
|
{
|
|
static const int initialLogLevel = TimedLog::GetLevel();
|
|
|
|
if (isLocal())
|
|
{
|
|
LOG_MESSAGE_SIMPLE(TimedLog::LOG_INFO, "Received ID_GAME_SETTINGS");
|
|
LOG_APPEND(TimedLog::LOG_INFO, "- player %s rest in beds, %s rest in the wilderness, %s wait",
|
|
player->bedRestAllowed ? "can" : "cannot", player->wildernessRestAllowed ? "can" : "cannot",
|
|
player->waitAllowed ? "can" : "cannot");
|
|
|
|
if (MWBase::Environment::get().getWindowManager()->isGuiMode())
|
|
{
|
|
if (MWBase::Environment::get().getWindowManager()->isConsoleMode() && !player->consoleAllowed)
|
|
MWBase::Environment::get().getWindowManager()->popGuiMode();
|
|
else if (MWBase::Environment::get().getWindowManager()->getMode() == MWGui::GM_Rest &&
|
|
(!player->bedRestAllowed || !player->wildernessRestAllowed || !player->waitAllowed))
|
|
MWBase::Environment::get().getWindowManager()->popGuiMode();
|
|
}
|
|
|
|
if (player->enforcedLogLevel > -1)
|
|
{
|
|
LOG_APPEND(TimedLog::LOG_INFO, "- server is enforcing log level %i", player->enforcedLogLevel);
|
|
TimedLog::SetLevel(player->enforcedLogLevel);
|
|
}
|
|
else if (initialLogLevel != TimedLog::GetLevel())
|
|
{
|
|
LOG_APPEND(TimedLog::LOG_INFO, "- log level has been reset to initial value %i", initialLogLevel);
|
|
TimedLog::SetLevel(initialLogLevel);
|
|
}
|
|
|
|
MWBase::Environment::get().getWorld()->setPhysicsFramerate(player->physicsFramerate);
|
|
|
|
for (auto setting : player->gameSettings) {
|
|
Settings::Manager::setString(setting.first, GAME_SETTING_CATEGORY, setting.second);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif //OPENMW_PROCESSORGAMESETTINGS_HPP
|