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 RideSetPriceAction final : public GameActionBase<GameCommand::SetRidePrice>
15 {
16 private:
17     NetworkRideId_t _rideIndex{ RIDE_ID_NULL };
18     money16 _price{ MONEY16_UNDEFINED };
19     bool _primaryPrice{ true };
20 
21 public:
22     RideSetPriceAction() = default;
23     RideSetPriceAction(ride_id_t rideIndex, money16 price, bool primaryPrice);
24 
25     void AcceptParameters(GameActionParameterVisitor& visitor) override;
26 
27     uint16_t GetActionFlags() const override;
28 
29     void Serialise(DataSerialiser& stream) override;
30     GameActions::Result::Ptr Query() const override;
31     GameActions::Result::Ptr Execute() const override;
32 
33 private:
34     void RideSetCommonPrice(ShopItem shopItem) const;
35 };
36