OpenTTD Source
20241108-master-g80f628063a
|
Basic data to distinguish a GRF. More...
#include <newgrf_config.h>
Public Member Functions | |
GRFIdentifier (const GRFIdentifier &other)=default | |
GRFIdentifier (GRFIdentifier &&other)=default | |
GRFIdentifier (uint32_t grfid, const MD5Hash &md5sum) | |
GRFIdentifier & | operator= (const GRFIdentifier &other)=default |
bool | HasGrfIdentifier (uint32_t grfid, const MD5Hash *md5sum) const |
Does the identification match the provided values? More... | |
Data Fields | |
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) | |
Basic data to distinguish a GRF.
Used in the server list window
Definition at line 82 of file newgrf_config.h.
|
inline |
Does the identification match the provided values?
grfid | Expected grfid. |
md5sum | Expected md5sum, may be nullptr (in which case, do not check it). |
Definition at line 99 of file newgrf_config.h.