OpenTTD
economy_base.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef ECONOMY_BASE_H
11 #define ECONOMY_BASE_H
12 
13 #include "cargopacket.h"
14 #include "company_type.h"
15 
20 
24 struct CargoPayment : CargoPaymentPool::PoolItem<&_cargo_payment_pool> {
29 
30  /* Unsaved variables */
32  StationID current_station;
34 
37  CargoPayment(Vehicle *front);
38  ~CargoPayment();
39 
40  Money PayTransfer(const CargoPacket *cp, uint count);
41  void PayFinalDelivery(const CargoPacket *cp, uint count);
42 
47  void SetCargo(CargoID ct) { this->ct = ct; }
48 };
49 
50 #endif /* ECONOMY_BASE_H */
Company * owner
The owner of the vehicle.
Definition: economy_base.h:31
Vehicle data structure.
Definition: vehicle_base.h:210
CargoPaymentPool _cargo_payment_pool
The actual pool to store cargo payments in.
CargoID ct
The currently handled cargo type.
Definition: economy_base.h:33
Base class for cargo packets.
Vehicle * front
The front vehicle to do the payment of.
Definition: economy_base.h:25
Pool< CargoPayment, CargoPaymentID, 512, 0xFF000 > CargoPaymentPool
Type of pool to store cargo payments in; little over 1 million.
Definition: economy_base.h:17
Money PayTransfer(const CargoPacket *cp, uint count)
Handle payment for transfer of the given cargo packet.
Definition: economy.cpp:1217
Money visual_profit
The visual profit to show.
Definition: economy_base.h:27
Container for cargo from the same location and time.
Definition: cargopacket.h:42
void PayFinalDelivery(const CargoPacket *cp, uint count)
Handle payment for final delivery of the given cargo packet.
Definition: economy.cpp:1197
Money route_profit
The amount of money to add/remove from the bank account.
Definition: economy_base.h:26
CargoPayment()
Constructor for pool saveload.
Definition: economy_base.h:36
Helper class to perform the cargo payment.
Definition: economy_base.h:24
Base class for all PoolItems.
Definition: pool_type.hpp:188
Base class for all pools.
Definition: pool_type.hpp:82
void SetCargo(CargoID ct)
Sets the currently handled cargo type.
Definition: economy_base.h:47
Types related to companies.
byte CargoID
Cargo slots to indicate a cargo type within a game.
Definition: cargo_type.h:20
StationID current_station
The current station.
Definition: economy_base.h:32
Money visual_transfer
The transfer credits to be shown.
Definition: economy_base.h:28