OpenTTD Source 20250531-master-g621c031307
newgrf_config.cpp
Go to the documentation of this file.
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 */
7
10#include "stdafx.h"
11#include "debug.h"
12#include "3rdparty/md5/md5.h"
13#include "newgrf.h"
15#include "gfx_func.h"
16#include "newgrf_text.h"
17#include "window_func.h"
18#include "progress.h"
20#include "string_func.h"
21#include "strings_func.h"
22#include "textfile_gui.h"
23#include "thread.h"
24#include "newgrf_config.h"
25#include "newgrf_text.h"
26
27#include "fileio_func.h"
28#include "fios.h"
29
30#include "safeguards.h"
31
36GRFConfig::GRFConfig(const GRFConfig &config) :
37 ident(config.ident),
38 original_md5sum(config.original_md5sum),
39 filename(config.filename),
40 name(config.name),
41 info(config.info),
42 url(config.url),
43 error(config.error),
44 version(config.version),
45 min_loadable_version(config.min_loadable_version),
46 flags(config.flags),
47 status(config.status),
48 grf_bugs(config.grf_bugs),
49 num_valid_params(config.num_valid_params),
50 palette(config.palette),
51 has_param_defaults(config.has_param_defaults),
52 param_info(config.param_info),
53 param(config.param)
54{
56}
57
58void GRFConfig::SetParams(std::span<const uint32_t> pars)
59{
60 this->param.assign(std::begin(pars), std::end(pars));
61}
62
66bool GRFConfig::IsCompatible(uint32_t old_version) const
67{
68 return this->min_loadable_version <= old_version && old_version <= this->version;
69}
70
76{
77 this->param = src.param;
78}
79
85std::string GRFConfig::GetName() const
86{
87 auto name = GetGRFStringFromGRFText(this->name);
88 return name.has_value() && !name->empty() ? std::string(*name) : this->filename;
89}
90
95std::optional<std::string> GRFConfig::GetDescription() const
96{
97 auto str = GetGRFStringFromGRFText(this->info);
98 if (!str.has_value()) return std::nullopt;
99 return std::string(*str);
100}
101
106std::optional<std::string> GRFConfig::GetURL() const
107{
108 auto str = GetGRFStringFromGRFText(this->url);
109 if (!str.has_value()) return std::nullopt;
110 return std::string(*str);
111}
112
115{
116 this->param.clear();
117
118 if (!this->has_param_defaults) return;
119
120 for (const auto &info : this->param_info) {
121 if (!info.has_value()) continue;
122 this->SetValue(info.value(), info->def_value);
123 }
124}
125
132{
133 PaletteType pal;
134 switch (this->palette & GRFP_GRF_MASK) {
135 case GRFP_GRF_DOS: pal = PAL_DOS; break;
136 case GRFP_GRF_WINDOWS: pal = PAL_WINDOWS; break;
137 default: pal = _settings_client.gui.newgrf_default_palette == 1 ? PAL_WINDOWS : PAL_DOS; break;
138 }
140}
141
146{
147 for (auto &info : this->param_info) {
148 if (!info.has_value()) continue;
149 info->Finalize();
150 }
151}
152
153GRFConfigList _all_grfs;
154GRFConfigList _grfconfig;
155GRFConfigList _grfconfig_newgame;
156GRFConfigList _grfconfig_static;
158
164GRFError::GRFError(StringID severity, StringID message) : message(message), severity(severity)
165{
166}
167
173uint32_t GRFConfig::GetValue(const GRFParameterInfo &info) const
174{
175 /* If the parameter is not set then it must be 0. */
176 if (info.param_nr >= std::size(this->param)) return 0;
177
178 /* GB doesn't work correctly with nbits == 32, so handle that case here. */
179 if (info.num_bit == 32) return this->param[info.param_nr];
180
181 return GB(this->param[info.param_nr], info.first_bit, info.num_bit);
182}
183
189void GRFConfig::SetValue(const GRFParameterInfo &info, uint32_t value)
190{
191 value = Clamp(value, info.min_value, info.max_value);
192
193 /* Allocate the new parameter if it's not already present. */
194 if (info.param_nr >= std::size(this->param)) this->param.resize(info.param_nr + 1);
195
196 /* SB doesn't work correctly with nbits == 32, so handle that case here. */
197 if (info.num_bit == 32) {
198 this->param[info.param_nr] = value;
199 } else {
200 SB(this->param[info.param_nr], info.first_bit, info.num_bit, value);
201 }
202
204}
205
210{
211 /* Remove value names outside of the permitted range of values. */
212 auto it = std::remove_if(std::begin(this->value_names), std::end(this->value_names),
213 [this](const ValueName &vn) { return vn.first < this->min_value || vn.first > this->max_value; });
214 this->value_names.erase(it, std::end(this->value_names));
215
216 /* Test if the number of named values matches the full ranges of values. -1 because the range is inclusive. */
217 this->complete_labels = (this->max_value - this->min_value) == std::size(this->value_names) - 1;
218}
219
225{
226 for (const auto &c : _grfconfig_newgame) c->SetSuitablePalette();
227 for (const auto &c : _grfconfig_static ) c->SetSuitablePalette();
228 for (const auto &c : _all_grfs ) c->SetSuitablePalette();
229}
230
237{
238 extern const std::array<uint8_t, 8> _grf_cont_v2_sig;
239 static const uint header_len = 14;
240
241 uint8_t data[header_len];
242 if (fread(data, 1, header_len, f) == header_len) {
243 if (data[0] == 0 && data[1] == 0 && std::ranges::equal(std::span(data + 2, _grf_cont_v2_sig.size()), _grf_cont_v2_sig)) {
244 /* Valid container version 2, get data section size. */
245 size_t offset = (static_cast<size_t>(data[13]) << 24) | (static_cast<size_t>(data[12]) << 16) | (static_cast<size_t>(data[11]) << 8) | static_cast<size_t>(data[10]);
246 if (offset >= 1 * 1024 * 1024 * 1024) {
247 Debug(grf, 0, "Unexpectedly large offset for NewGRF");
248 /* Having more than 1 GiB of data is very implausible. Mostly because then
249 * all pools in OpenTTD are flooded already. Or it's just Action C all over.
250 * In any case, the offsets to graphics will likely not work either. */
251 return SIZE_MAX;
252 }
253 return header_len + offset;
254 }
255 }
256
257 return SIZE_MAX;
258}
259
266static bool CalcGRFMD5Sum(GRFConfig &config, Subdirectory subdir)
267{
268 Md5 checksum;
269 uint8_t buffer[1024];
270 size_t len, size;
271
272 /* open the file */
273 auto f = FioFOpenFile(config.filename, "rb", subdir, &size);
274 if (!f.has_value()) return false;
275
276 long start = ftell(*f);
277 size = std::min(size, GRFGetSizeOfDataSection(*f));
278
279 if (start < 0 || fseek(*f, start, SEEK_SET) < 0) {
280 return false;
281 }
282
283 /* calculate md5sum */
284 while ((len = fread(buffer, 1, (size > sizeof(buffer)) ? sizeof(buffer) : size, *f)) != 0 && size != 0) {
285 size -= len;
286 checksum.Append(buffer, len);
287 }
288 checksum.Finish(config.ident.md5sum);
289
290 return true;
291}
292
293
301bool FillGRFDetails(GRFConfig &config, bool is_static, Subdirectory subdir)
302{
303 if (!FioCheckFileExists(config.filename, subdir)) {
304 config.status = GCS_NOT_FOUND;
305 return false;
306 }
307
308 /* Find and load the Action 8 information */
309 LoadNewGRFFile(config, GLS_FILESCAN, subdir, true);
310 config.SetSuitablePalette();
311 config.FinalizeParameterInfo();
312
313 /* Skip if the grfid is 0 (not read) or if it is an internal GRF */
314 if (config.ident.grfid == 0 || config.flags.Test(GRFConfigFlag::System)) return false;
315
316 if (is_static) {
317 /* Perform a 'safety scan' for static GRFs */
318 LoadNewGRFFile(config, GLS_SAFETYSCAN, subdir, true);
319
320 /* GRFConfigFlag::Unsafe is set if GLS_SAFETYSCAN finds unsafe actions */
321 if (config.flags.Test(GRFConfigFlag::Unsafe)) return false;
322 }
323
324 return CalcGRFMD5Sum(config, subdir);
325}
326
327
333void ClearGRFConfigList(GRFConfigList &config)
334{
335 config.clear();
336}
337
344static void AppendGRFConfigList(GRFConfigList &dst, const GRFConfigList &src, bool init_only)
345{
346 for (const auto &s : src) {
347 auto &c = dst.emplace_back(std::make_unique<GRFConfig>(*s));
348 if (init_only) {
349 c->flags.Set(GRFConfigFlag::InitOnly);
350 } else {
351 c->flags.Reset(GRFConfigFlag::InitOnly);
352 }
353 }
354}
355
362void CopyGRFConfigList(GRFConfigList &dst, const GRFConfigList &src, bool init_only)
363{
364 /* Clear destination as it will be overwritten */
366 AppendGRFConfigList(dst, src, init_only);
367}
368
382static void RemoveDuplicatesFromGRFConfigList(GRFConfigList &list)
383{
384 if (list.empty()) return;
385
386 auto last = std::end(list);
387 for (auto it = std::begin(list); it != last; ++it) {
388 auto remove = std::remove_if(std::next(it), last, [&grfid = (*it)->ident.grfid](const auto &c) { return grfid == c->ident.grfid; });
389 last = list.erase(remove, last);
390 }
391}
392
397void AppendStaticGRFConfigs(GRFConfigList &dst)
398{
401}
402
408void AppendToGRFConfigList(GRFConfigList &dst, std::unique_ptr<GRFConfig> &&el)
409{
410 dst.push_back(std::move(el));
412}
413
414
421
422
435{
437
438 for (auto &c : grfconfig) {
439 const GRFConfig *f = FindGRFConfig(c->ident.grfid, FGCM_EXACT, &c->ident.md5sum);
440 if (f == nullptr || f->flags.Test(GRFConfigFlag::Invalid)) {
441 /* If we have not found the exactly matching GRF try to find one with the
442 * same grfid, as it most likely is compatible */
443 f = FindGRFConfig(c->ident.grfid, FGCM_COMPATIBLE, nullptr, c->version);
444 if (f != nullptr) {
445 Debug(grf, 1, "NewGRF {:08X} ({}) not found; checksum {}. Compatibility mode on", std::byteswap(c->ident.grfid), c->filename, FormatArrayAsHex(c->ident.md5sum));
446 if (!c->flags.Test(GRFConfigFlag::Compatible)) {
447 /* Preserve original_md5sum after it has been assigned */
448 c->flags.Set(GRFConfigFlag::Compatible);
449 c->original_md5sum = c->ident.md5sum;
450 }
451
452 /* Non-found has precedence over compatibility load */
453 if (res != GLC_NOT_FOUND) res = GLC_COMPATIBLE;
454 goto compatible_grf;
455 }
456
457 /* No compatible grf was found, mark it as disabled */
458 Debug(grf, 0, "NewGRF {:08X} ({}) not found; checksum {}", std::byteswap(c->ident.grfid), c->filename, FormatArrayAsHex(c->ident.md5sum));
459
460 c->status = GCS_NOT_FOUND;
461 res = GLC_NOT_FOUND;
462 } else {
463compatible_grf:
464 Debug(grf, 1, "Loading GRF {:08X} from {}", std::byteswap(f->ident.grfid), f->filename);
465 /* The filename could be the filename as in the savegame. As we need
466 * to load the GRF here, we need the correct filename, so overwrite that
467 * in any case and set the name and info when it is not set already.
468 * When the GRFConfigFlag::Copy flag is set, it is certain that the filename is
469 * already a local one, so there is no need to replace it. */
470 if (!c->flags.Test(GRFConfigFlag::Copy)) {
471 c->filename = f->filename;
472 c->ident.md5sum = f->ident.md5sum;
473 c->name = f->name;
474 c->info = f->name;
475 c->error.reset();
476 c->version = f->version;
477 c->min_loadable_version = f->min_loadable_version;
478 c->num_valid_params = f->num_valid_params;
479 c->param_info = f->param_info;
480 c->has_param_defaults = f->has_param_defaults;
481 }
482 }
483 }
484
485 return res;
486}
487
488
491
494 std::chrono::steady_clock::time_point next_update;
496
497public:
499 {
500 this->next_update = std::chrono::steady_clock::now();
501 }
502
503 bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename) override;
504
506 static uint DoScan()
507 {
510 return 0;
511 }
512
514 int ret = fs.Scan(".grf", NEWGRF_DIR);
515 /* The number scanned and the number returned may not be the same;
516 * duplicate NewGRFs and base sets are ignored in the return value. */
518 return ret;
519 }
520};
521
522bool GRFFileScanner::AddFile(const std::string &filename, size_t basepath_length, const std::string &)
523{
524 /* Abort if the user stopped the game during a scan. */
525 if (_exit_game) return false;
526
527 bool added = false;
528 auto c = std::make_unique<GRFConfig>(filename.substr(basepath_length));
529 GRFConfig *grfconfig = c.get();
530 if (FillGRFDetails(*c, false)) {
531 if (std::ranges::none_of(_all_grfs, [&c](const auto &gc) { return c->ident.grfid == gc->ident.grfid && c->ident.md5sum == gc->ident.md5sum; })) {
532 _all_grfs.push_back(std::move(c));
533 added = true;
534 }
535 }
536
537 this->num_scanned++;
538
539 std::string name = grfconfig->GetName();
540 UpdateNewGRFScanStatus(this->num_scanned, std::move(name));
542
543 return added;
544}
545
552static bool GRFSorter(std::unique_ptr<GRFConfig> const &c1, std::unique_ptr<GRFConfig> const &c2)
553{
554 return StrNaturalCompare(c1->GetName(), c2->GetName()) < 0;
555}
556
562{
565
566 Debug(grf, 1, "Scanning for NewGRFs");
567 uint num = GRFFileScanner::DoScan();
568
569 Debug(grf, 1, "Scan complete, found {} files", num);
570 std::ranges::sort(_all_grfs, GRFSorter);
572
573 /* Yes... these are the NewGRF windows */
576 if (!_exit_game && callback != nullptr) callback->OnNewGRFsScanned();
577
579 SetModalProgress(false);
581}
582
588{
589 /* First set the modal progress. This ensures that it will eventually let go of the paint mutex. */
590 SetModalProgress(true);
591 /* Only then can we really start, especially by marking the whole screen dirty. Get those other windows hidden!. */
593
594 DoScanNewGRFFiles(callback);
595}
596
605const GRFConfig *FindGRFConfig(uint32_t grfid, FindGRFConfigMode mode, const MD5Hash *md5sum, uint32_t desired_version)
606{
607 assert((mode == FGCM_EXACT) != (md5sum == nullptr));
608 const GRFConfig *best = nullptr;
609 for (const auto &c : _all_grfs) {
610 /* if md5sum is set, we look for an exact match and continue if not found */
611 if (!c->ident.HasGrfIdentifier(grfid, md5sum)) continue;
612 /* return it, if the exact same newgrf is found, or if we do not care about finding "the best" */
613 if (md5sum != nullptr || mode == FGCM_ANY) return c.get();
614 /* Skip incompatible stuff, unless explicitly allowed */
615 if (mode != FGCM_NEWEST && c->flags.Test(GRFConfigFlag::Invalid)) continue;
616 /* check version compatibility */
617 if (mode == FGCM_COMPATIBLE && !c->IsCompatible(desired_version)) continue;
618 /* remember the newest one as "the best" */
619 if (best == nullptr || c->version > best->version) best = c.get();
620 }
621
622 return best;
623}
624
631GRFConfig *GetGRFConfig(uint32_t grfid, uint32_t mask)
632{
633 auto it = std::ranges::find_if(_grfconfig, [grfid, mask](const auto &c) { return (c->ident.grfid & mask) == (grfid & mask); });
634 if (it != std::end(_grfconfig)) return it->get();
635
636 return nullptr;
637}
638
639
641std::string GRFBuildParamList(const GRFConfig &c)
642{
643 std::string result;
644 for (const uint32_t &value : c.param) {
645 if (!result.empty()) result += ' ';
646 format_append(result, "{}", value);
647 }
648 return result;
649}
650
656std::optional<std::string> GRFConfig::GetTextfile(TextfileType type) const
657{
658 return ::GetTextfile(type, NEWGRF_DIR, this->filename);
659}
constexpr T SB(T &x, const uint8_t s, const uint8_t n, const U d)
Set n bits in x starting at bit s to d.
debug_inline static constexpr uint GB(const T x, const uint8_t s, const uint8_t n)
Fetch n bits from x, started at bit s.
constexpr bool Test(Tvalue_type value) const
Test if the value-th bit is set.
constexpr Timpl & Reset()
Reset all bits.
Helper for scanning for files with a given name.
Definition fileio_func.h:37
uint Scan(std::string_view extension, Subdirectory sd, bool tars=true, bool recursive=true)
Scan for files with the given extension in the given search path.
Definition fileio.cpp:1112
Helper for scanning for files with GRF as extension.
static uint DoScan()
Do the scan for GRFs.
std::chrono::steady_clock::time_point next_update
The next moment we do update the screen.
bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename) override
Add a file with the given filename.
uint num_scanned
The number of GRFs we have scanned.
@ NewGRF
Scan for non-base sets.
uint DoScan(Subdirectory sd)
Perform the scanning of a particular subdirectory.
Definition fileio.cpp:374
static VideoDriver * GetInstance()
Get the currently active instance of the video driver.
void GameLoopPause()
Pause the game-loop for a bit, releasing the game-state lock.
Functions related to debugging.
#define Debug(category, level, format_string,...)
Output a line of debugging information.
Definition debug.h:37
std::optional< FileHandle > FioFOpenFile(std::string_view filename, std::string_view mode, Subdirectory subdir, size_t *filesize)
Opens a OpenTTD file somewhere in a personal or global directory.
Definition fileio.cpp:242
bool FioCheckFileExists(std::string_view filename, Subdirectory subdir)
Check whether the given file exists.
Definition fileio.cpp:121
Functions for Standard In/Out file operations.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition fileio_type.h:87
@ NEWGRF_DIR
Subdirectory for all NewGRFs.
Definition fileio_type.h:96
Declarations for savegames operations.
Functions related to the gfx engine.
PaletteType
Palettes OpenTTD supports.
Definition gfx_type.h:346
@ PAL_DOS
Use the DOS palette.
Definition gfx_type.h:347
@ PAL_WINDOWS
Use the Windows palette.
Definition gfx_type.h:348
void MarkWholeScreenDirty()
This function mark the whole screen as dirty.
Definition gfx.cpp:1535
constexpr T Clamp(const T a, const T min, const T max)
Clamp a value between an interval.
Definition math_func.hpp:79
Network functions used by other parts of OpenTTD.
void NetworkAfterNewGRFScan()
Rebuild the GRFConfig's of the servers in the game list as we did a rescan and might have found new N...
void LoadNewGRFFile(GRFConfig &config, GrfLoadingStage stage, Subdirectory subdir, bool temporary)
Load a particular NewGRF.
Definition newgrf.cpp:1373
Base for the NewGRF implementation.
void UpdateNewGRFConfigPalette(int32_t)
Update the palettes of the graphics from the config file.
GRFConfigList _grfconfig
First item in list of current GRF set up.
GRFConfigList _grfconfig_static
First item in list of static GRF set up.
void CopyGRFConfigList(GRFConfigList &dst, const GRFConfigList &src, bool init_only)
Copy a GRF Config list.
GRFListCompatibility IsGoodGRFConfigList(GRFConfigList &grfconfig)
Check if all GRFs in the GRF config from a savegame can be loaded.
static bool CalcGRFMD5Sum(GRFConfig &config, Subdirectory subdir)
Calculate the MD5 sum for a GRF, and store it in the config.
std::string GRFBuildParamList(const GRFConfig &c)
Build a string containing space separated parameter values, and terminate.
uint _missing_extra_graphics
Number of sprites provided by the fallback extra GRF, i.e. missing in the baseset.
static void RemoveDuplicatesFromGRFConfigList(GRFConfigList &list)
Removes duplicates from lists of GRFConfigs.
const GRFConfig * FindGRFConfig(uint32_t grfid, FindGRFConfigMode mode, const MD5Hash *md5sum, uint32_t desired_version)
Find a NewGRF in the scanned list.
void ResetGRFConfig(bool defaults)
Reset the current GRF Config to either blank or newgame settings.
GRFConfigList _grfconfig_newgame
First item in list of default GRF set up.
GRFConfigList _all_grfs
First item in list of all scanned NewGRFs.
bool FillGRFDetails(GRFConfig &config, bool is_static, Subdirectory subdir)
Find the GRFID of a given grf, and calculate its md5sum.
static void AppendGRFConfigList(GRFConfigList &dst, const GRFConfigList &src, bool init_only)
Append a GRF Config list onto another list.
void AppendStaticGRFConfigs(GRFConfigList &dst)
Appends the static GRFs to a list of GRFs.
void ScanNewGRFFiles(NewGRFScanCallback *callback)
Scan for all NewGRFs.
static bool GRFSorter(std::unique_ptr< GRFConfig > const &c1, std::unique_ptr< GRFConfig > const &c2)
Simple sorter for GRFS.
GRFConfig * GetGRFConfig(uint32_t grfid, uint32_t mask)
Retrieve a NewGRF from the current config by its grfid.
size_t GRFGetSizeOfDataSection(FileHandle &f)
Get the data section size of a GRF.
void DoScanNewGRFFiles(NewGRFScanCallback *callback)
Really perform the scan for all NewGRFs.
int _skip_all_newgrf_scanning
Set this flag to prevent any NewGRF scanning from being done.
void AppendToGRFConfigList(GRFConfigList &dst, std::unique_ptr< GRFConfig > &&el)
Appends an element to a list of GRFs.
void ClearGRFConfigList(GRFConfigList &config)
Clear a GRF Config list, freeing all nodes.
Functions to find and configure NewGRFs.
GRFListCompatibility
Status of post-gameload GRF compatibility check.
@ GLC_COMPATIBLE
Compatible (eg. the same ID, but different checksum) GRF found in at least one case.
@ GLC_ALL_GOOD
All GRF needed by game are present.
@ GLC_NOT_FOUND
At least one GRF couldn't be found (higher priority than GLC_COMPATIBLE)
@ GCS_NOT_FOUND
GRF file was not found in the local cache.
@ InitOnly
GRF file is processed up to GLS_INIT.
@ System
GRF file is an openttd-internal system grf.
@ Copy
The data is copied from a grf in _all_grfs.
@ Compatible
GRF file does not exactly match the requested GRF (different MD5SUM), but grfid matches)
@ Unsafe
GRF file is unsafe for static usage.
@ Invalid
GRF is unusable with this version of OpenTTD.
void UpdateNewGRFScanStatus(uint num, std::string &&name)
Update the NewGRF scan status.
FindGRFConfigMode
Method to find GRFs using FindGRFConfig.
@ FGCM_NEWEST
Find newest Grf.
@ FGCM_ANY
Use first found.
@ FGCM_EXACT
Only find Grfs matching md5sum.
@ FGCM_COMPATIBLE
Find best compatible Grf wrt. desired_version.
@ GRFP_USE_DOS
The palette state is set to use the DOS palette.
@ GRFP_GRF_WINDOWS
The NewGRF says the Windows palette can be used.
@ GRFP_USE_WINDOWS
The palette state is set to use the Windows palette.
@ GRFP_GRF_DOS
The NewGRF says the DOS palette can be used.
@ GRFP_USE_BIT
The bit used for storing the palette to use.
@ GRFP_GRF_MASK
Bitmask to get only the NewGRF supplied information.
std::optional< std::string_view > GetGRFStringFromGRFText(const GRFTextList &text_list)
Get a C-string from a GRFText-list.
Header of Action 04 "universal holder" structure and functions.
void SetModalProgress(bool state)
Set the modal progress state.
Definition progress.cpp:22
Functions related to modal progress.
A number of safeguards to prevent using unsafe methods.
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:60
const std::array< uint8_t, 8 > _grf_cont_v2_sig
Signature of a container version 2 GRF.
Definition of base types and functions in a cross-platform compatible way.
std::string FormatArrayAsHex(std::span< const uint8_t > data)
Format a byte array into a continuous hex string.
Definition string.cpp:75
int StrNaturalCompare(std::string_view s1, std::string_view s2, bool ignore_garbage_at_front)
Compares two strings using case insensitive natural sort.
Definition string.cpp:425
Functions related to low-level strings.
Functions related to OTTD's strings.
uint32_t StringID
Numeric value that represents a string, independent of the selected language.
GUISettings gui
settings related to the GUI
Information about GRF, used in the game and (part of it) in savegames.
void SetParameterDefaults()
Set the default value for all parameters as specified by action14.
GRFTextWrapper url
NOSAVE: URL belonging to this GRF.
uint8_t palette
GRFPalette, bitset.
GRFTextWrapper info
NOSAVE: GRF info (author, copyright, ...) (Action 0x08)
std::vector< std::optional< GRFParameterInfo > > param_info
NOSAVE: extra information about the parameters.
uint32_t version
NOSAVE: Version a NewGRF can set so only the newest NewGRF is shown.
std::vector< uint32_t > param
GRF parameters.
void FinalizeParameterInfo()
Finalize Action 14 info after file scan is finished.
bool has_param_defaults
NOSAVE: did this newgrf specify any defaults for it's parameters.
GRFTextWrapper name
NOSAVE: GRF name (Action 0x08)
std::optional< std::string > GetURL() const
Get the grf url.
GRFStatus status
NOSAVE: GRFStatus, enum.
void SetValue(const GRFParameterInfo &info, uint32_t value)
Set the value of the given user-changeable parameter.
bool IsCompatible(uint32_t old_version) const
Return whether this NewGRF can replace an older version of the same NewGRF.
void CopyParams(const GRFConfig &src)
Copy the parameter information from the src config.
std::optional< std::string > GetTextfile(TextfileType type) const
Search a textfile file next to this NewGRF.
GRFConfigFlags flags
NOSAVE: GCF_Flags, bitset.
uint8_t num_valid_params
NOSAVE: Number of valid parameters (action 0x14)
std::string filename
Filename - either with or without full path.
GRFIdentifier ident
grfid and md5sum to uniquely identify newgrfs
void SetSuitablePalette()
Set the palette of this GRFConfig to something suitable.
uint32_t min_loadable_version
NOSAVE: Minimum compatible version a NewGRF can define.
std::string GetName() const
Get the name of this grf.
std::optional< std::string > GetDescription() const
Get the grf info.
uint32_t GetValue(const GRFParameterInfo &info) const
Get the value of the given user-changeable parameter.
GRFError(StringID severity, StringID message={})
Construct a new GRFError.
uint32_t grfid
GRF ID (defined by Action 0x08)
MD5Hash md5sum
MD5 checksum of file to distinguish files with the same GRF ID (eg. newer version of GRF)
Information about one grf parameter.
bool complete_labels
True if all values have a label.
uint8_t param_nr
GRF parameter to store content in.
uint32_t min_value
The minimal value this parameter can have.
uint32_t max_value
The maximal value of this parameter.
std::vector< ValueName > value_names
Names for each value.
void Finalize()
Finalize Action 14 info after file scan is finished.
uint32_t last_newgrf_count
the numbers of NewGRFs we found during the last scan
uint8_t newgrf_default_palette
default palette to use for NewGRFs without action 14 palette information
Callback for NewGRF scanning.
virtual void OnNewGRFsScanned()=0
Called whenever the NewGRF scan completed.
GUI functions related to textfiles.
TextfileType
Additional text files accompanying Tar archives.
Base of all threads.
Base of all video drivers.
void CloseWindowByClass(WindowClass cls, int data)
Close all windows of a given class.
Definition window.cpp:1194
void InvalidateWindowData(WindowClass cls, WindowNumber number, int data, bool gui_scope)
Mark window data of the window of a given class and specific window number as invalid (in need of re-...
Definition window.cpp:3265
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Definition window.cpp:3147
void InvalidateWindowClassesData(WindowClass cls, int data, bool gui_scope)
Mark window data of all windows of a given class as invalid (in need of re-computing) Note that by de...
Definition window.cpp:3282
Window functions not directly related to making/drawing windows.
@ WN_GAME_OPTIONS_NEWGRF_STATE
NewGRF settings.
Definition window_type.h:27
@ GOID_NEWGRF_RESCANNED
NewGRFs were just rescanned.
@ WC_GAME_OPTIONS
Game options window; Window numbers:
@ WC_SAVELOAD
Saveload window; Window numbers:
@ WC_MODAL_PROGRESS
Progress report of landscape generation; Window numbers: