Add: allow making heightmap screenshot via console
[openttd-github.git] / src / newgrf_townname.h
blobd8fc462aae705afd171afa15b2844ab78e744f50
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 */
8 /**
9 * @file newgrf_townname.h
10 * Header of Action 0F "universal holder" structure and functions
13 #ifndef NEWGRF_TOWNNAME_H
14 #define NEWGRF_TOWNNAME_H
16 #include <vector>
17 #include "strings_type.h"
19 struct NamePart {
20 byte prob; ///< The relative probability of the following name to appear in the bottom 7 bits.
21 union {
22 char *text; ///< If probability bit 7 is clear
23 byte id; ///< If probability bit 7 is set
24 } data;
27 struct NamePartList {
28 byte partcount;
29 byte bitstart;
30 byte bitcount;
31 uint16 maxprob;
32 NamePart *parts;
35 struct GRFTownName {
36 uint32 grfid;
37 byte nb_gen;
38 byte id[128];
39 StringID name[128];
40 byte nbparts[128];
41 NamePartList *partlist[128];
42 GRFTownName *next;
45 GRFTownName *AddGRFTownName(uint32 grfid);
46 GRFTownName *GetGRFTownName(uint32 grfid);
47 void DelGRFTownName(uint32 grfid);
48 void CleanUpGRFTownNames();
49 char *GRFTownNameGenerate(char *buf, uint32 grfid, uint16 gen, uint32 seed, const char *last);
50 uint32 GetGRFTownNameId(int gen);
51 uint16 GetGRFTownNameType(int gen);
52 StringID GetGRFTownNameName(uint gen);
54 const std::vector<StringID>& GetGRFTownNameList();
56 #endif /* NEWGRF_TOWNNAME_H */