mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-22 22:34:33 +01:00
39 lines
1.3 KiB
C++
39 lines
1.3 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2025 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.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "GameAction.h"
|
|
|
|
namespace OpenRCT2::GameActions
|
|
{
|
|
class TrackSetBrakeSpeedAction final : public GameActionBase<GameCommand::SetBrakesSpeed>
|
|
{
|
|
private:
|
|
CoordsXYZ _loc;
|
|
TrackElemType _trackType{};
|
|
uint8_t _brakeSpeed{};
|
|
|
|
public:
|
|
TrackSetBrakeSpeedAction() = default;
|
|
TrackSetBrakeSpeedAction(const CoordsXYZ& loc, OpenRCT2::TrackElemType trackType, uint8_t brakeSpeed);
|
|
|
|
void AcceptParameters(GameActionParameterVisitor&) final;
|
|
|
|
uint16_t GetActionFlags() const final;
|
|
|
|
void Serialise(DataSerialiser& stream) override;
|
|
Result Query(GameState_t& gameState) const override;
|
|
Result Execute(GameState_t& gameState) const override;
|
|
|
|
private:
|
|
Result QueryExecute(bool isExecuting) const;
|
|
};
|
|
} // namespace OpenRCT2::GameActions
|