company_type.h

Go to the documentation of this file.
00001 /* $Id: company_type.h 17248 2009-08-21 20:21:05Z rubidium $ */
00002 
00003 /*
00004  * This file is part of OpenTTD.
00005  * 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.
00006  * 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.
00007  * 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/>.
00008  */
00009 
00012 #ifndef COMPANY_TYPE_H
00013 #define COMPANY_TYPE_H
00014 
00015 #include "core/enum_type.hpp"
00016 
00020 enum Owner {
00021   /* All companies below MAX_COMPANIES are playable
00022    * companies, above, they are special, computer controlled 'companies' */
00023   OWNER_BEGIN     = 0x00, 
00024   COMPANY_FIRST   = 0x00, 
00025   MAX_COMPANIES   = 0x0F, 
00026   OWNER_TOWN      = 0x0F, 
00027   OWNER_NONE      = 0x10, 
00028   OWNER_WATER     = 0x11, 
00029   OWNER_END,              
00030   INVALID_OWNER   = 0xFF, 
00031   INVALID_COMPANY = 0xFF, 
00032 
00033   /* 'Fake' companies used for networks */
00034   COMPANY_INACTIVE_CLIENT = 253, 
00035   COMPANY_NEW_COMPANY     = 254, 
00036   COMPANY_SPECTATOR       = 255, 
00037 };
00038 DECLARE_POSTFIX_INCREMENT(Owner);
00039 
00040 enum {
00041   MAX_LENGTH_PRESIDENT_NAME_BYTES  =  31, 
00042   MAX_LENGTH_PRESIDENT_NAME_PIXELS =  94, 
00043   MAX_LENGTH_COMPANY_NAME_BYTES    =  31, 
00044   MAX_LENGTH_COMPANY_NAME_PIXELS   = 150, 
00045 };
00046 
00047 enum {
00048   MAX_HISTORY_MONTHS               =  24, 
00049 };
00050 
00052 template <> struct EnumPropsT<Owner> : MakeEnumPropsT<Owner, byte, OWNER_BEGIN, OWNER_END, INVALID_OWNER> {};
00053 typedef TinyEnumT<Owner> OwnerByte;
00054 
00055 typedef Owner CompanyID;
00056 typedef OwnerByte CompanyByte;
00057 
00058 typedef uint16 CompanyMask;
00059 
00060 struct Company;
00061 typedef uint32 CompanyManagerFace; 
00062 
00063 #endif /* COMPANY_TYPE_H */

Generated on Mon Aug 30 19:36:53 2010 for OpenTTD by  doxygen 1.6.1