OpenTTD
company_func.h
Go to the documentation of this file.
1 /* $Id: company_func.h 24996 2013-02-14 17:08:56Z 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 COMPANY_FUNC_H
13 #define COMPANY_FUNC_H
14 
15 #include "command_type.h"
16 #include "company_type.h"
17 #include "gfx_type.h"
18 #include "vehicle_type.h"
19 
20 bool MayCompanyTakeOver(CompanyID cbig, CompanyID small);
21 void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner);
22 void GetNameOfOwner(Owner owner, TileIndex tile);
23 void SetLocalCompany(CompanyID new_company);
24 void ShowBuyCompanyDialog(CompanyID company);
25 void CompanyAdminUpdate(const Company *company);
26 void CompanyAdminBankrupt(CompanyID company_id);
28 
32 CommandCost CheckOwnership(Owner owner, TileIndex tile = 0);
34 
37 
38 extern Colours _company_colours[MAX_COMPANIES];
40 
45 static inline bool IsLocalCompany()
46 {
47  return _local_company == _current_company;
48 }
49 
55 static inline bool IsInteractiveCompany(CompanyID company)
56 {
57  return company == _local_company;
58 }
59 
60 int CompanyServiceInterval(const Company *c, VehicleType type);
61 
62 #endif /* COMPANY_FUNC_H */