mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 14:24:33 +01:00
* Refactor to result GameActions::Result as copy instead of unique_ptr * Remove alias GameActions::Result::Ptr * Remove MakeResult wrapper * Remove type forwarder in TileInspector
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2020 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#include "PlayerKickAction.h"
|
|
|
|
#include "../network/network.h"
|
|
|
|
PlayerKickAction::PlayerKickAction(NetworkPlayerId_t playerId)
|
|
: _playerId(playerId)
|
|
{
|
|
}
|
|
|
|
uint16_t PlayerKickAction::GetActionFlags() const
|
|
{
|
|
return GameAction::GetActionFlags() | GameActions::Flags::AllowWhilePaused;
|
|
}
|
|
|
|
void PlayerKickAction::Serialise(DataSerialiser& stream)
|
|
{
|
|
GameAction::Serialise(stream);
|
|
|
|
stream << DS_TAG(_playerId);
|
|
}
|
|
GameActions::Result PlayerKickAction::Query() const
|
|
{
|
|
return network_kick_player(_playerId, false);
|
|
}
|
|
|
|
GameActions::Result PlayerKickAction::Execute() const
|
|
{
|
|
return network_kick_player(_playerId, true);
|
|
}
|