1 /*****************************************************************************
2  * Copyright (c) 2014-2020 OpenRCT2 developers
3  *
4  * For a complete list of all authors, please refer to contributors.md
5  * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
6  *
7  * OpenRCT2 is licensed under the GNU General Public License version 3.
8  *****************************************************************************/
9 
10 #pragma once
11 
12 #include "GameAction.h"
13 
14 class RideSetNameAction final : public GameActionBase<GameCommand::SetRideName>
15 {
16 private:
17     NetworkRideId_t _rideIndex{ RIDE_ID_NULL };
18     std::string _name;
19 
20 public:
21     RideSetNameAction() = default;
22     RideSetNameAction(ride_id_t rideIndex, const std::string& name);
23 
24     void AcceptParameters(GameActionParameterVisitor& visitor) override;
25 
26     uint16_t GetActionFlags() const override;
27 
28     void Serialise(DataSerialiser& stream) override;
29     GameActions::Result::Ptr Query() const override;
30     GameActions::Result::Ptr Execute() const override;
31 };
32