/* $Id$ */ /* * This file is part of OpenTTD. * 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. * 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. * 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 . */ /** @file newgrf_class.h Header file for classes to be used by e.g. NewGRF stations and airports */ #ifndef NEWGRF_CLASS_H #define NEWGRF_CLASS_H #include "strings_type.h" /** * Struct containing information relating to NewGRF classes for stations and airports. */ template struct NewGRFClass { uint32 global_id; ///< Global ID for class, e.g. 'DFLT', 'WAYP', etc. StringID name; ///< Name of this class. uint count; ///< Number of stations in this class. Tspec **spec; ///< Array of station specifications. /** The actual classes. */ static NewGRFClass classes[Tmax]; static void Reset(); /** Initialise the defaults. */ static void InsertDefaults(); static Tid Allocate(uint32 global_id); static void SetName(Tid cls_id, StringID name); static void Assign(Tspec *spec); static StringID GetName(Tid cls_id); static uint GetCount(); static uint GetCount(Tid cls_id); static const Tspec *Get(Tid cls_id, uint index); static const Tspec *GetByGrf(uint32 grfid, byte local_id, int *index); }; #endif /* NEWGRF_CLASS_H */