OpenTTD Source 20260911-master-gee2b2ac12a
base_media_base.h
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 <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#ifndef BASE_MEDIA_BASE_H
11#define BASE_MEDIA_BASE_H
12
13#include "debug_type.h"
14#include "fileio_func.h"
15#include "textfile_type.h"
16#include "textfile_gui.h"
17#include "3rdparty/md5/md5.h"
18#include <unordered_map>
19
20struct IniFile;
21struct IniGroup;
22struct IniItem;
23struct ContentInfo;
24
26struct MD5File {
28 enum class ChecksumResult : uint8_t {
33 };
34
35 std::string filename;
36 MD5Hash hash;
37 std::string missing_warning;
39
40 ChecksumResult CheckMD5(Subdirectory subdir, size_t max_size) const;
41};
42
44template <class T> struct BaseSetTraits;
45
50template <class T>
51struct BaseSet {
53 virtual ~BaseSet() = default;
54
56 using TranslatedStrings = std::unordered_map<std::string, std::string, StringHash, std::equal_to<>>;
57
59 static constexpr size_t NUM_FILES = BaseSetTraits<T>::num_files;
60
63
65 static constexpr std::string_view SET_TYPE = BaseSetTraits<T>::set_type;
66
67 std::string name;
68 std::string url;
70 uint32_t shortname = 0;
71 std::vector<uint32_t> version;
72 bool fallback = false;
73
74 std::array<MD5File, BaseSet<T>::NUM_FILES> files{};
75 uint found_files = 0;
76 uint valid_files = 0;
77
82 int GetNumMissing() const
83 {
84 return BaseSet<T>::NUM_FILES - this->found_files;
85 }
86
92 int GetNumInvalid() const
93 {
94 return BaseSet<T>::NUM_FILES - this->valid_files;
95 }
96
97 void LogError(std::string_view full_filename, std::string_view detail, Severity severity = {}) const;
98 const IniItem *GetMandatoryItem(std::string_view full_filename, const IniGroup &group, std::string_view name) const;
99
100 bool FillSetDetails(const IniFile &ini, const std::string &path, const std::string &full_filename, bool allow_empty_filename = true);
101
106 void CopyCompatibleConfig([[maybe_unused]] const T &src) {}
107
116 const std::string &GetDescription(std::string_view isocode) const
117 {
118 if (!isocode.empty()) {
119 /* First the full ISO code */
120 auto desc = this->description.find(isocode);
121 if (desc != this->description.end()) return desc->second;
122
123 /* Then the first two characters */
124 desc = this->description.find(isocode.substr(0, 2));
125 if (desc != this->description.end()) return desc->second;
126 }
127 /* Then fall back */
128 return this->description.at(std::string{});
129 }
130
141 {
142 return file->CheckMD5(subdir, SIZE_MAX);
143 }
144
150 std::optional<std::string> GetTextfile(TextfileType type) const
151 {
152 for (const auto &file : this->files) {
153 auto textfile = ::GetTextfile(type, Subdirectory::Baseset, file.filename);
154 if (textfile.has_value()) {
155 return textfile;
156 }
157 }
158 return std::nullopt;
159 }
160
165 static std::span<const std::string_view> GetFilenames();
166};
167
172template <class Tbase_set>
174protected:
175 static inline std::vector<std::unique_ptr<Tbase_set>> available_sets;
176 static inline std::vector<std::unique_ptr<Tbase_set>> duplicate_sets;
177 static inline const Tbase_set *used_set;
178
179 bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename) override;
180
185 static std::string_view GetExtension();
186
191 static std::span<const std::unique_ptr<Tbase_set>> GetDuplicateSets() { return BaseMedia<Tbase_set>::duplicate_sets; }
192public:
198 static bool DetermineBestSet();
199
204 static uint FindSets()
205 {
207 /* Searching in tars is only done in the old "data" directories basesets. */
208 uint num = fs.Scan(GetExtension(), Tbase_set::SEARCH_IN_TARS ? Subdirectory::OldData : Subdirectory::OldGm, Tbase_set::SEARCH_IN_TARS);
209 return num + fs.Scan(GetExtension(), Subdirectory::Baseset, Tbase_set::SEARCH_IN_TARS);
210 }
211
216 static std::span<const std::unique_ptr<Tbase_set>> GetAvailableSets() { return BaseMedia<Tbase_set>::available_sets; }
217
218 static bool SetSet(const Tbase_set *set);
219 static bool SetSetByName(const std::string &name);
220 static bool SetSetByShortname(uint32_t shortname);
221 static void GetSetsList(std::back_insert_iterator<std::string> &output_iterator);
222 static int GetNumSets();
223 static int GetIndexOfUsedSet();
224 static const Tbase_set *GetSet(int index);
225 static const Tbase_set *GetUsedSet();
226
233 static bool HasSet(const ContentInfo &ci, bool md5sum);
234};
235
243template <class Tbase_set>
244std::optional<std::string_view> TryGetBaseSetFile(const ContentInfo &ci, bool md5sum, std::span<const std::unique_ptr<Tbase_set>> sets);
245
246#endif /* BASE_MEDIA_BASE_H */
std::optional< std::string_view > TryGetBaseSetFile(const ContentInfo &ci, bool md5sum, std::span< const std::unique_ptr< Tbase_set > > sets)
Check whether there's a base set matching some information.
Base for all base media (graphics, sounds).
static const Tbase_set * GetUsedSet()
Return the used set.
static std::vector< std::unique_ptr< Tbase_set > > available_sets
All available sets.
bool AddFile(const std::string &filename, size_t basepath_length, const std::string &tar_filename) override
Add a file with the given filename.
static bool SetSetByShortname(uint32_t shortname)
Set the set to be used.
static void GetSetsList(std::back_insert_iterator< std::string > &output_iterator)
Returns a list with the sets.
static std::span< const std::unique_ptr< Tbase_set > > GetAvailableSets()
Return the available sets.
static int GetNumSets()
Count the number of available graphics sets.
static uint FindSets()
Do the scan for files.
static bool HasSet(const ContentInfo &ci, bool md5sum)
Check whether we have an set with the exact characteristics as ci.
static const Tbase_set * used_set
The currently used set.
static std::vector< std::unique_ptr< Tbase_set > > duplicate_sets
All sets that aren't available, but needed for not downloading base sets when a newer version than th...
static const Tbase_set * GetSet(int index)
Get the base set at a specified index.
static int GetIndexOfUsedSet()
Get the index of the currently active graphics set.
static bool DetermineBestSet()
Determine the graphics pack that has to be used.
static bool SetSetByName(const std::string &name)
Set the set to be used.
static std::span< const std::unique_ptr< Tbase_set > > GetDuplicateSets()
Return the duplicate sets.
static bool SetSet(const Tbase_set *set)
Set the set to be used.
static std::string_view GetExtension()
Get the extension that is used to identify this set.
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:1170
Types related to debugging.
Severity
Debug message severity levels.
Definition debug_type.h:14
#define T
Climate temperate.
Definition engines.h:91
Functions for standard in/out file operations.
Subdirectory
The different kinds of subdirectories OpenTTD uses.
Definition fileio_type.h:88
@ Baseset
Subdirectory for all base data (base sets, intro game).
Definition fileio_type.h:96
@ OldData
Old subdirectory for the data.
Definition fileio_type.h:95
@ OldGm
Old subdirectory for the music.
Definition fileio_type.h:94
Defines the traits of a BaseSet type.
Information about a single base set.
uint found_files
Number of the files that could be found.
std::array< MD5File, BaseSet< T >::NUM_FILES > files
All files part of this set.
void LogError(std::string_view full_filename, std::string_view detail, Severity severity={}) const
Log error from reading basesets.
uint valid_files
Number of the files that could be found and are valid.
const IniItem * GetMandatoryItem(std::string_view full_filename, const IniGroup &group, std::string_view name) const
Try to read a single piece of metadata and return nullptr if it doesn't exist.
std::string url
URL for information about the base set.
TranslatedStrings description
Description of the base set.
static constexpr size_t NUM_FILES
Number of files in this set.
std::optional< std::string > GetTextfile(TextfileType type) const
Search a textfile file next to this base media.
static constexpr bool SEARCH_IN_TARS
Whether to search in the tars or not.
static MD5File::ChecksumResult CheckMD5(const MD5File *file, Subdirectory subdir)
Calculate and check the MD5 hash of the supplied file.
void CopyCompatibleConfig(const T &src)
Copy settings from the given set into this set when they are compatible.
static std::span< const std::string_view > GetFilenames()
Get the internal names of the files in this set.
static constexpr std::string_view SET_TYPE
BaseSet type name.
std::string name
The name of the base set.
bool fallback
This set is a fallback set, i.e. it should be used only as last resort.
bool FillSetDetails(const IniFile &ini, const std::string &path, const std::string &full_filename, bool allow_empty_filename=true)
Read the set information from a loaded ini.
int GetNumMissing() const
Get the number of missing files.
std::vector< uint32_t > version
The version of this base set.
virtual ~BaseSet()=default
Ensure the destructor of the sub classes are called as well.
std::unordered_map< std::string, std::string, StringHash, std::equal_to<> > TranslatedStrings
Mapping of translations: language -> string.
uint32_t shortname
Four letter short variant of the name.
int GetNumInvalid() const
Get the number of invalid files.
const std::string & GetDescription(std::string_view isocode) const
Get the description for the given ISO code.
Container for all important information about a piece of content.
Ini file that supports both loading and saving.
Definition ini_type.h:87
A group within an ini file.
Definition ini_type.h:34
A single "line" in an ini file.
Definition ini_type.h:23
Structure holding filename and MD5 information about a single file.
std::string missing_warning
warning when this file is missing
ChecksumResult check_result
cached result of md5 check
ChecksumResult CheckMD5(Subdirectory subdir, size_t max_size) const
Calculate and check the MD5 hash of the supplied filename.
Definition gfxinit.cpp:447
ChecksumResult
The result of a checksum check.
@ NoFile
The file did not exist.
@ Mismatch
The file did exist, just the md5 checksum did not match.
@ Match
The file did exist and the md5 checksum did match.
@ Unknown
The file has not been checked yet.
MD5Hash hash
md5 sum of the file
std::string filename
filename
GUI functions related to textfiles.
Types related to textfiles.
TextfileType
Additional text files accompanying Tar archives.