OpenTTD
economy_base.h
Go to the documentation of this file.
1 /* $Id: economy_base.h 25011 2013-02-17 14:50:54Z rubidium $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * 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.
6  * 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.
7  * 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/>.
8  */
9 
12 #ifndef ECONOMY_BASE_H
13 #define ECONOMY_BASE_H
14 
15 #include "cargopacket.h"
16 #include "company_type.h"
17 
22 
26 struct CargoPayment : CargoPaymentPool::PoolItem<&_cargo_payment_pool> {
31 
32  /* Unsaved variables */
34  StationID current_station;
36 
40  ~CargoPayment();
41 
42  Money PayTransfer(const CargoPacket *cp, uint count);
43  void PayFinalDelivery(const CargoPacket *cp, uint count);
44 
49  void SetCargo(CargoID ct) { this->ct = ct; }
50 };
51 
57 #define FOR_ALL_CARGO_PAYMENTS_FROM(var, start) FOR_ALL_ITEMS_FROM(CargoPayment, cargo_payment_index, var, start)
58 
63 #define FOR_ALL_CARGO_PAYMENTS(var) FOR_ALL_CARGO_PAYMENTS_FROM(var, 0)
64 
65 #endif /* ECONOMY_BASE_H */