diff options
| author | 2016-04-14 00:04:05 +0300 | |
|---|---|---|
| committer | 2016-05-04 13:02:49 +0300 | |
| commit | 5d5dd66d9222ced82dd61747ef4078fc1eae2496 (patch) | |
| tree | e7495d933b0fbdc767426fc18940f95b7817c8ab /src/core/loader/loader.h | |
| parent | Merge pull request #1726 from MerryMage/read-write-region (diff) | |
| download | yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.gz yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.tar.xz yuzu-5d5dd66d9222ced82dd61747ef4078fc1eae2496.zip | |
add icon & title to game list
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 84a4ce5fc..9d3e9ed3b 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -10,8 +10,10 @@ | |||
| 10 | #include <string> | 10 | #include <string> |
| 11 | #include <vector> | 11 | #include <vector> |
| 12 | 12 | ||
| 13 | #include "common/common_funcs.h" | ||
| 13 | #include "common/common_types.h" | 14 | #include "common/common_types.h" |
| 14 | #include "common/file_util.h" | 15 | #include "common/file_util.h" |
| 16 | #include "common/swap.h" | ||
| 15 | 17 | ||
| 16 | namespace Kernel { | 18 | namespace Kernel { |
| 17 | struct AddressMapping; | 19 | struct AddressMapping; |
| @@ -78,6 +80,51 @@ constexpr u32 MakeMagic(char a, char b, char c, char d) { | |||
| 78 | return a | b << 8 | c << 16 | d << 24; | 80 | return a | b << 8 | c << 16 | d << 24; |
| 79 | } | 81 | } |
| 80 | 82 | ||
| 83 | /// SMDH data structure that contains titles, icons etc. See https://www.3dbrew.org/wiki/SMDH | ||
| 84 | struct SMDH { | ||
| 85 | u32_le magic; | ||
| 86 | u16_le version; | ||
| 87 | INSERT_PADDING_BYTES(2); | ||
| 88 | |||
| 89 | struct Title { | ||
| 90 | std::array<u16, 0x40> short_title; | ||
| 91 | std::array<u16, 0x80> long_title; | ||
| 92 | std::array<u16, 0x40> publisher; | ||
| 93 | }; | ||
| 94 | std::array<Title, 16> titles; | ||
| 95 | |||
| 96 | std::array<u8, 16> ratings; | ||
| 97 | u32_le region_lockout; | ||
| 98 | u32_le match_maker_id; | ||
| 99 | u64_le match_maker_bit_id; | ||
| 100 | u32_le flags; | ||
| 101 | u16_le eula_version; | ||
| 102 | INSERT_PADDING_BYTES(2); | ||
| 103 | float_le banner_animation_frame; | ||
| 104 | u32_le cec_id; | ||
| 105 | INSERT_PADDING_BYTES(8); | ||
| 106 | |||
| 107 | std::array<u8, 0x480> small_icon; | ||
| 108 | std::array<u8, 0x1200> large_icon; | ||
| 109 | |||
| 110 | /// indicates the language used for each title entry | ||
| 111 | enum class TitleLanguage { | ||
| 112 | Japanese = 0, | ||
| 113 | English = 1, | ||
| 114 | French = 2, | ||
| 115 | German = 3, | ||
| 116 | Italian = 4, | ||
| 117 | Spanish = 5, | ||
| 118 | SimplifiedChinese = 6, | ||
| 119 | Korean= 7, | ||
| 120 | Dutch = 8, | ||
| 121 | Portuguese = 9, | ||
| 122 | Russian = 10, | ||
| 123 | TraditionalChinese = 11 | ||
| 124 | }; | ||
| 125 | }; | ||
| 126 | static_assert(sizeof(SMDH) == 0x36C0, "SMDH structure size is wrong"); | ||
| 127 | |||
| 81 | /// Interface for loading an application | 128 | /// Interface for loading an application |
| 82 | class AppLoader : NonCopyable { | 129 | class AppLoader : NonCopyable { |
| 83 | public: | 130 | public: |
| @@ -150,6 +197,16 @@ protected: | |||
| 150 | extern const std::initializer_list<Kernel::AddressMapping> default_address_mappings; | 197 | extern const std::initializer_list<Kernel::AddressMapping> default_address_mappings; |
| 151 | 198 | ||
| 152 | /** | 199 | /** |
| 200 | * Get a loader for a file with a specific type | ||
| 201 | * @param file The file to load | ||
| 202 | * @param type The type of the file | ||
| 203 | * @param filename the file name (without path) | ||
| 204 | * @param filepath the file full path (with name) | ||
| 205 | * @return std::unique_ptr<AppLoader> a pointer to a loader object; nullptr for unsupported type | ||
| 206 | */ | ||
| 207 | std::unique_ptr<AppLoader> GetLoader(FileUtil::IOFile&& file, FileType type, const std::string& filename, const std::string& filepath); | ||
| 208 | |||
| 209 | /** | ||
| 153 | * Identifies and loads a bootable file | 210 | * Identifies and loads a bootable file |
| 154 | * @param filename String filename of bootable file | 211 | * @param filename String filename of bootable file |
| 155 | * @return ResultStatus result of function | 212 | * @return ResultStatus result of function |