From aa1cfa7add6cf89c62aa7159340f1602bbce082e Mon Sep 17 00:00:00 2001 From: wheremyfoodat Date: Mon, 1 May 2023 20:37:48 +0300 Subject: [PATCH] [CFG] Add GetSystemModel --- CMakeLists.txt | 1 + include/services/cfg.hpp | 1 + include/system_models.hpp | 23 +++++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 include/system_models.hpp diff --git a/CMakeLists.txt b/CMakeLists.txt index af6d1572..9d4bd9b4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,6 +97,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/opengl.hpp inc include/fs/archive_ext_save_data.hpp include/services/shared_font.hpp include/fs/archive_ncch.hpp include/renderer_gl/textures.hpp include/colour.hpp include/services/y2r.hpp include/services/cam.hpp include/services/ldr_ro.hpp include/ipc.hpp include/services/act.hpp include/services/nfc.hpp + include/system_models.hpp ) set(THIRD_PARTY_SOURCE_FILES third_party/imgui/imgui.cpp diff --git a/include/services/cfg.hpp b/include/services/cfg.hpp index acaf50f1..b15bc707 100644 --- a/include/services/cfg.hpp +++ b/include/services/cfg.hpp @@ -16,6 +16,7 @@ class CFGService { // Service functions void getConfigInfoBlk2(u32 messagePointer); void getRegionCanadaUSA(u32 messagePointer); + void getSystemModel(u32 messagePointer); void genUniqueConsoleHash(u32 messagePointer); void secureInfoGetRegion(u32 messagePointer); diff --git a/include/system_models.hpp b/include/system_models.hpp new file mode 100644 index 00000000..b24bfdcd --- /dev/null +++ b/include/system_models.hpp @@ -0,0 +1,23 @@ +#pragma once +#include + +// Codes for every 3DS system model +// The 3-letter codes are codenames used by the ACT service, and can also be found on the hardware itself +// This info can be retrieved in a variety of ways, usually through CFG::GetSystemModel +namespace SystemModel { + enum : std::uint32_t { + Nintendo3DS = 0, + Nintendo3DS_XL = 1, + NewNintendo3DS = 2, + Nintendo2DS = 3, + NewNintendo3DS_XL = 4, + NewNintendo2DS_XL = 5, + + CTR = Nintendo3DS, + SPR = Nintendo3DS_XL, + KTR = NewNintendo3DS, + FTR = Nintendo2DS, + RED = NewNintendo3DS_XL, + JAN = NewNintendo2DS_XL + }; +} \ No newline at end of file