mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Address first batch of review comments
This commit is contained in:
		
							parent
							
								
									041638ea4d
								
							
						
					
					
						commit
						781d4b787a
					
				
					 14 changed files with 91 additions and 131 deletions
				
			
		|  | @ -11,66 +11,58 @@ | |||
| #include "common/file_util.h" | ||||
| #include "core/file_sys/archive_extsavedata.h" | ||||
| #include "core/file_sys/file_backend.h" | ||||
| #include "core/hle/applets/buttons.h" | ||||
| #include "core/hle/service/ptm/ptm.h" | ||||
| 
 | ||||
| QtMiiSelectorDialog::QtMiiSelectorDialog(QWidget* parent, QtMiiSelector* mii_selector_) | ||||
|     : QDialog(parent), mii_selector(mii_selector_) { | ||||
|     Frontend::MiiSelectorConfig config = mii_selector->config; | ||||
|     using namespace Frontend; | ||||
|     const auto config = mii_selector->config; | ||||
|     layout = new QVBoxLayout; | ||||
|     combobox = new QComboBox; | ||||
|     buttons = new QDialogButtonBox; | ||||
|     // Initialize buttons
 | ||||
|     buttons->addButton(tr(AppletButton::Ok), QDialogButtonBox::ButtonRole::AcceptRole); | ||||
|     buttons->addButton(tr(MII_BUTTON_OKAY), QDialogButtonBox::ButtonRole::AcceptRole); | ||||
|     if (config.enable_cancel_button) { | ||||
|         buttons->addButton(tr(AppletButton::Cancel), QDialogButtonBox::ButtonRole::RejectRole); | ||||
|         buttons->addButton(tr(MII_BUTTON_CANCEL), QDialogButtonBox::ButtonRole::RejectRole); | ||||
|     } | ||||
| 
 | ||||
|     setWindowTitle(config.title.empty() ? tr("Mii Selector") | ||||
|                                         : QString::fromStdU16String(config.title)); | ||||
| 
 | ||||
|     miis.push_back(HLE::Applets::MiiSelector::GetStandardMiiResult().selected_mii_data); | ||||
|     combobox->addItem(tr("Standard Mii")); | ||||
| 
 | ||||
|     std::string nand_directory{FileUtil::GetUserPath(FileUtil::UserPath::NANDDir)}; | ||||
|     FileSys::ArchiveFactory_ExtSaveData extdata_archive_factory(nand_directory, true); | ||||
| 
 | ||||
|     auto archive_result = extdata_archive_factory.Open(Service::PTM::ptm_shared_extdata_id); | ||||
|     if (!archive_result.Succeeded()) { | ||||
|         ShowNoMiis(); | ||||
|         return; | ||||
|     } | ||||
|     if (archive_result.Succeeded()) { | ||||
|         auto archive = std::move(archive_result).Unwrap(); | ||||
| 
 | ||||
|     auto archive = std::move(archive_result).Unwrap(); | ||||
|         FileSys::Path file_path = "/CFL_DB.dat"; | ||||
|         FileSys::Mode mode{}; | ||||
|         mode.read_flag.Assign(1); | ||||
| 
 | ||||
|     FileSys::Path file_path = "/CFL_DB.dat"; | ||||
|     FileSys::Mode mode{}; | ||||
|     mode.read_flag.Assign(1); | ||||
|         auto file_result = archive->OpenFile(file_path, mode); | ||||
|         if (file_result.Succeeded()) { | ||||
|             auto file = std::move(file_result).Unwrap(); | ||||
| 
 | ||||
|     auto file_result = archive->OpenFile(file_path, mode); | ||||
|     if (!file_result.Succeeded()) { | ||||
|         ShowNoMiis(); | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     auto file = std::move(file_result).Unwrap(); | ||||
| 
 | ||||
|     u32 saved_miis_offset = 0x8; | ||||
|     // The Mii Maker has a 100 Mii limit on the 3ds
 | ||||
|     for (int i = 0; i < 100; ++i) { | ||||
|         HLE::Applets::MiiData mii; | ||||
|         std::array<u8, sizeof(mii)> mii_raw; | ||||
|         file->Read(saved_miis_offset, sizeof(mii), mii_raw.data()); | ||||
|         std::memcpy(&mii, mii_raw.data(), sizeof(mii)); | ||||
|         if (mii.mii_id != 0) { | ||||
|             std::u16string name(sizeof(mii.mii_name), '\0'); | ||||
|             std::memcpy(&name[0], mii.mii_name.data(), sizeof(mii.mii_name)); | ||||
|             miis.emplace(combobox->count(), mii); | ||||
|             combobox->addItem(QString::fromStdU16String(name)); | ||||
|             u32 saved_miis_offset = 0x8; | ||||
|             // The Mii Maker has a 100 Mii limit on the 3ds
 | ||||
|             for (int i = 0; i < 100; ++i) { | ||||
|                 HLE::Applets::MiiData mii; | ||||
|                 std::array<u8, sizeof(mii)> mii_raw; | ||||
|                 file->Read(saved_miis_offset, sizeof(mii), mii_raw.data()); | ||||
|                 std::memcpy(&mii, mii_raw.data(), sizeof(mii)); | ||||
|                 if (mii.mii_id != 0) { | ||||
|                     std::u16string name(sizeof(mii.mii_name), '\0'); | ||||
|                     std::memcpy(name.data(), mii.mii_name.data(), sizeof(mii.mii_name)); | ||||
|                     miis.push_back(mii); | ||||
|                     combobox->addItem(QString::fromStdU16String(name)); | ||||
|                 } | ||||
|                 saved_miis_offset += sizeof(mii); | ||||
|             } | ||||
|         } | ||||
|         saved_miis_offset += sizeof(mii); | ||||
|     } | ||||
| 
 | ||||
|     if (miis.empty()) { | ||||
|         ShowNoMiis(); | ||||
|         return; | ||||
|     } | ||||
| 
 | ||||
|     if (combobox->count() > static_cast<int>(config.initially_selected_mii_index)) { | ||||
|  | @ -87,22 +79,9 @@ QtMiiSelectorDialog::QtMiiSelectorDialog(QWidget* parent, QtMiiSelector* mii_sel | |||
|     setLayout(layout); | ||||
| } | ||||
| 
 | ||||
| void QtMiiSelectorDialog::ShowNoMiis() { | ||||
|     Frontend::MiiSelectorConfig config = mii_selector->config; | ||||
|     QMessageBox::StandardButton answer = QMessageBox::question( | ||||
|         nullptr, | ||||
|         config.title.empty() ? tr("Mii Selector") : QString::fromStdU16String(config.title), | ||||
|         tr("You don't have any Miis.\nUse standard Mii?"), QMessageBox::Yes | QMessageBox::No); | ||||
| 
 | ||||
|     if (answer == QMessageBox::No) | ||||
|         return_code = 1; | ||||
| 
 | ||||
|     QMetaObject::invokeMethod(this, "close", Qt::QueuedConnection); | ||||
| } | ||||
| 
 | ||||
| QtMiiSelector::QtMiiSelector(QWidget& parent_) : parent(parent_) {} | ||||
| 
 | ||||
| void QtMiiSelector::Setup(const Frontend::MiiSelectorConfig* config) { | ||||
| void QtMiiSelector::Setup(const Frontend::MiiSelectorConfig& config) { | ||||
|     MiiSelector::Setup(config); | ||||
|     QMetaObject::invokeMethod(this, "OpenDialog", Qt::BlockingQueuedConnection); | ||||
| } | ||||
|  | @ -114,12 +93,11 @@ void QtMiiSelector::OpenDialog() { | |||
|     dialog.setWindowModality(Qt::WindowModal); | ||||
|     dialog.exec(); | ||||
| 
 | ||||
|     int index = dialog.combobox->currentIndex(); | ||||
|     const auto index = dialog.combobox->currentIndex(); | ||||
|     LOG_INFO(Frontend, "Mii Selector dialog finished (return_code={}, index={})", | ||||
|              dialog.return_code, index); | ||||
| 
 | ||||
|     HLE::Applets::MiiData mii_data = | ||||
|         index == -1 ? HLE::Applets::MiiSelector::GetStandardMiiResult().selected_mii_data | ||||
|                     : dialog.miis.at(dialog.combobox->currentIndex()); | ||||
|     Finalize(dialog.return_code, dialog.return_code == 0 ? mii_data : HLE::Applets::MiiData{}); | ||||
|     const auto mii_data = dialog.miis.at(index); | ||||
|     Finalize(dialog.return_code, | ||||
|              dialog.return_code == 0 ? std::move(mii_data) : HLE::Applets::MiiData{}); | ||||
| } | ||||
|  |  | |||
|  | @ -8,8 +8,8 @@ | |||
| #include <QDialog> | ||||
| #include "core/frontend/applets/mii_selector.h" | ||||
| 
 | ||||
| class QDialogButtonBox; | ||||
| class QComboBox; | ||||
| class QDialogButtonBox; | ||||
| class QVBoxLayout; | ||||
| class QtMiiSelector; | ||||
| 
 | ||||
|  | @ -20,14 +20,12 @@ public: | |||
|     QtMiiSelectorDialog(QWidget* parent, QtMiiSelector* mii_selector_); | ||||
| 
 | ||||
| private: | ||||
|     void ShowNoMiis(); | ||||
| 
 | ||||
|     QDialogButtonBox* buttons; | ||||
|     QComboBox* combobox; | ||||
|     QVBoxLayout* layout; | ||||
|     QtMiiSelector* mii_selector; | ||||
|     u32 return_code = 0; | ||||
|     std::unordered_map<int, HLE::Applets::MiiData> miis; | ||||
|     std::vector<HLE::Applets::MiiData> miis; | ||||
| 
 | ||||
|     friend class QtMiiSelector; | ||||
| }; | ||||
|  | @ -37,7 +35,7 @@ class QtMiiSelector final : public QObject, public Frontend::MiiSelector { | |||
| 
 | ||||
| public: | ||||
|     explicit QtMiiSelector(QWidget& parent); | ||||
|     void Setup(const Frontend::MiiSelectorConfig* config) override; | ||||
|     void Setup(const Frontend::MiiSelectorConfig& config) override; | ||||
| 
 | ||||
| private: | ||||
|     Q_INVOKABLE void OpenDialog(); | ||||
|  |  | |||
|  | @ -25,7 +25,7 @@ QtKeyboardValidator::State QtKeyboardValidator::validate(QString& input, int& po | |||
| QtKeyboardDialog::QtKeyboardDialog(QWidget* parent, QtKeyboard* keyboard_) | ||||
|     : QDialog(parent), keyboard(keyboard_) { | ||||
|     using namespace Frontend; | ||||
|     KeyboardConfig config = keyboard->config; | ||||
|     const auto config = keyboard->config; | ||||
|     layout = new QVBoxLayout; | ||||
|     label = new QLabel(QString::fromStdString(config.hint_text)); | ||||
|     line_edit = new QLineEdit; | ||||
|  | @ -36,31 +36,31 @@ QtKeyboardDialog::QtKeyboardDialog(QWidget* parent, QtKeyboard* keyboard_) | |||
|     case ButtonConfig::Triple: | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[2]) | ||||
|                                : tr(BUTTON_OKAY), | ||||
|                                : tr(SWKBD_BUTTON_OKAY), | ||||
|                            QDialogButtonBox::ButtonRole::AcceptRole); | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[1]) | ||||
|                                : tr(BUTTON_FORGOT), | ||||
|                                : tr(SWKBD_BUTTON_FORGOT), | ||||
|                            QDialogButtonBox::ButtonRole::HelpRole); | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[0]) | ||||
|                                : tr(BUTTON_CANCEL), | ||||
|                                : tr(SWKBD_BUTTON_CANCEL), | ||||
|                            QDialogButtonBox::ButtonRole::RejectRole); | ||||
|         break; | ||||
|     case ButtonConfig::Dual: | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[1]) | ||||
|                                : tr(BUTTON_OKAY), | ||||
|                                : tr(SWKBD_BUTTON_OKAY), | ||||
|                            QDialogButtonBox::ButtonRole::AcceptRole); | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[0]) | ||||
|                                : tr(BUTTON_CANCEL), | ||||
|                                : tr(SWKBD_BUTTON_CANCEL), | ||||
|                            QDialogButtonBox::ButtonRole::RejectRole); | ||||
|         break; | ||||
|     case ButtonConfig::Single: | ||||
|         buttons->addButton(config.has_custom_button_text | ||||
|                                ? QString::fromStdString(config.button_text[0]) | ||||
|                                : tr(BUTTON_OKAY), | ||||
|                                : tr(SWKBD_BUTTON_OKAY), | ||||
|                            QDialogButtonBox::ButtonRole::AcceptRole); | ||||
|         break; | ||||
|     case ButtonConfig::None: | ||||
|  | @ -109,7 +109,7 @@ void QtKeyboardDialog::HandleValidationError(Frontend::ValidationError error) { | |||
| 
 | ||||
| QtKeyboard::QtKeyboard(QWidget& parent_) : parent(parent_) {} | ||||
| 
 | ||||
| void QtKeyboard::Setup(const Frontend::KeyboardConfig* config) { | ||||
| void QtKeyboard::Setup(const Frontend::KeyboardConfig& config) { | ||||
|     SoftwareKeyboard::Setup(config); | ||||
|     if (this->config.button_config != Frontend::ButtonConfig::None) { | ||||
|         ok_id = static_cast<u8>(this->config.button_config); | ||||
|  |  | |||
|  | @ -48,7 +48,7 @@ class QtKeyboard final : public QObject, public Frontend::SoftwareKeyboard { | |||
| 
 | ||||
| public: | ||||
|     explicit QtKeyboard(QWidget& parent); | ||||
|     void Setup(const Frontend::KeyboardConfig* config) override; | ||||
|     void Setup(const Frontend::KeyboardConfig& config) override; | ||||
| 
 | ||||
| private: | ||||
|     Q_INVOKABLE void OpenInputDialog(); | ||||
|  |  | |||
|  | @ -1897,8 +1897,8 @@ int main(int argc, char* argv[]) { | |||
| 
 | ||||
|     // Register frontend applets
 | ||||
|     Frontend::RegisterDefaultApplets(); | ||||
|     Frontend::RegisterMiiSelector(std::make_shared<QtMiiSelector>(main_window)); | ||||
|     Frontend::RegisterSoftwareKeyboard(std::make_shared<QtKeyboard>(main_window)); | ||||
|     Core::System::GetInstance().RegisterMiiSelector(std::make_shared<QtMiiSelector>(main_window)); | ||||
|     Core::System::GetInstance().RegisterSoftwareKeyboard(std::make_shared<QtKeyboard>(main_window)); | ||||
| 
 | ||||
|     main_window.show(); | ||||
|     int result = app.exec(); | ||||
|  |  | |||
|  | @ -40,6 +40,9 @@ public: | |||
|     Path() : type(LowPathType::Invalid) {} | ||||
|     Path(const char* path) : type(LowPathType::Char), string(path) {} | ||||
|     Path(std::vector<u8> binary_data) : type(LowPathType::Binary), binary(std::move(binary_data)) {} | ||||
|     template <std::size_t size> | ||||
|     Path(std::array<u8, size> binary_data) | ||||
|         : type(LowPathType::Binary), binary(binary_data.begin(), binary_data.end()) {} | ||||
|     Path(LowPathType type, const std::vector<u8>& data); | ||||
| 
 | ||||
|     LowPathType GetType() const { | ||||
|  |  | |||
|  | @ -2,13 +2,14 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "core/core.h" | ||||
| #include "core/frontend/applets/default_applets.h" | ||||
| #include "core/frontend/applets/mii_selector.h" | ||||
| #include "core/frontend/applets/swkbd.h" | ||||
| 
 | ||||
| namespace Frontend { | ||||
| void RegisterDefaultApplets() { | ||||
|     RegisterSoftwareKeyboard(std::make_shared<DefaultKeyboard>()); | ||||
|     RegisterMiiSelector(std::make_shared<DefaultMiiSelector>()); | ||||
|     Core::System::GetInstance().RegisterSoftwareKeyboard(std::make_shared<DefaultKeyboard>()); | ||||
|     Core::System::GetInstance().RegisterMiiSelector(std::make_shared<DefaultMiiSelector>()); | ||||
| } | ||||
| } // namespace Frontend
 | ||||
|  |  | |||
|  | @ -2,7 +2,6 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "core/core.h" | ||||
| #include "core/frontend/applets/mii_selector.h" | ||||
| 
 | ||||
| namespace Frontend { | ||||
|  | @ -11,17 +10,9 @@ void MiiSelector::Finalize(u32 return_code, HLE::Applets::MiiData mii) { | |||
|     data = {return_code, mii}; | ||||
| } | ||||
| 
 | ||||
| void DefaultMiiSelector::Setup(const Frontend::MiiSelectorConfig* config) { | ||||
| void DefaultMiiSelector::Setup(const Frontend::MiiSelectorConfig& config) { | ||||
|     MiiSelector::Setup(config); | ||||
|     Finalize(0, HLE::Applets::MiiSelector::GetStandardMiiResult().selected_mii_data); | ||||
| } | ||||
| 
 | ||||
| void RegisterMiiSelector(std::shared_ptr<MiiSelector> applet) { | ||||
|     Core::System::GetInstance().RegisterMiiSelector(applet); | ||||
| } | ||||
| 
 | ||||
| std::shared_ptr<MiiSelector> GetRegisteredMiiSelector() { | ||||
|     return Core::System::GetInstance().GetMiiSelector(); | ||||
| } | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
|  |  | |||
|  | @ -4,13 +4,16 @@ | |||
| 
 | ||||
| #pragma once | ||||
| 
 | ||||
| #include <array> | ||||
| #include <memory> | ||||
| #include <string> | ||||
| #include "core/hle/applets/mii_selector.h" | ||||
| 
 | ||||
| namespace Frontend { | ||||
| 
 | ||||
| /// Default English button text mappings. Frontends may need to copy this to internationalize it.
 | ||||
| constexpr char MII_BUTTON_OKAY[] = "Ok"; | ||||
| constexpr char MII_BUTTON_CANCEL[] = "Cancel"; | ||||
| 
 | ||||
| /// Configuration that's relevant to frontend implementation of applet. Anything missing that we
 | ||||
| /// later learn is needed can be added here and filled in by the backend HLE applet
 | ||||
| struct MiiSelectorConfig { | ||||
|  | @ -26,11 +29,12 @@ struct MiiSelectorData { | |||
| 
 | ||||
| class MiiSelector { | ||||
| public: | ||||
|     virtual void Setup(const MiiSelectorConfig* config) { | ||||
|         this->config = MiiSelectorConfig(*config); | ||||
|     virtual void Setup(const MiiSelectorConfig& config) { | ||||
|         this->config = MiiSelectorConfig(config); | ||||
|     } | ||||
|     const MiiSelectorData* ReceiveData() { | ||||
|         return &data; | ||||
| 
 | ||||
|     const MiiSelectorData& ReceiveData() const { | ||||
|         return data; | ||||
|     } | ||||
| 
 | ||||
|     /**
 | ||||
|  | @ -46,11 +50,7 @@ protected: | |||
| 
 | ||||
| class DefaultMiiSelector final : public MiiSelector { | ||||
| public: | ||||
|     void Setup(const MiiSelectorConfig* config) override; | ||||
|     void Setup(const MiiSelectorConfig& config) override; | ||||
| }; | ||||
| 
 | ||||
| void RegisterMiiSelector(std::shared_ptr<MiiSelector> applet); | ||||
| 
 | ||||
| std::shared_ptr<MiiSelector> GetRegisteredMiiSelector(); | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
|  |  | |||
|  | @ -135,7 +135,7 @@ ValidationError SoftwareKeyboard::Finalize(const std::string& text, u8 button) { | |||
|     return ValidationError::None; | ||||
| } | ||||
| 
 | ||||
| void DefaultKeyboard::Setup(const Frontend::KeyboardConfig* config) { | ||||
| void DefaultKeyboard::Setup(const Frontend::KeyboardConfig& config) { | ||||
|     SoftwareKeyboard::Setup(config); | ||||
| 
 | ||||
|     auto cfg = Service::CFG::GetModule(Core::System::GetInstance()); | ||||
|  | @ -157,12 +157,4 @@ void DefaultKeyboard::Setup(const Frontend::KeyboardConfig* config) { | |||
|     } | ||||
| } | ||||
| 
 | ||||
| void RegisterSoftwareKeyboard(std::shared_ptr<SoftwareKeyboard> applet) { | ||||
|     Core::System::GetInstance().RegisterSoftwareKeyboard(applet); | ||||
| } | ||||
| 
 | ||||
| std::shared_ptr<SoftwareKeyboard> GetRegisteredSoftwareKeyboard() { | ||||
|     return Core::System::GetInstance().GetSoftwareKeyboard(); | ||||
| } | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
|  |  | |||
|  | @ -30,9 +30,9 @@ enum class ButtonConfig { | |||
| }; | ||||
| 
 | ||||
| /// Default English button text mappings. Frontends may need to copy this to internationalize it.
 | ||||
| constexpr char BUTTON_OKAY[] = "Ok"; | ||||
| constexpr char BUTTON_CANCEL[] = "Cancel"; | ||||
| constexpr char BUTTON_FORGOT[] = "I Forgot"; | ||||
| constexpr char SWKBD_BUTTON_OKAY[] = "Ok"; | ||||
| constexpr char SWKBD_BUTTON_CANCEL[] = "Cancel"; | ||||
| constexpr char SWKBD_BUTTON_FORGOT[] = "I Forgot"; | ||||
| 
 | ||||
| /// Configuration thats relevent to frontend implementation of applets. Anything missing that we
 | ||||
| /// later learn is needed can be added here and filled in by the backend HLE applet
 | ||||
|  | @ -82,11 +82,12 @@ enum class ValidationError { | |||
| 
 | ||||
| class SoftwareKeyboard { | ||||
| public: | ||||
|     virtual void Setup(const KeyboardConfig* config) { | ||||
|         this->config = KeyboardConfig(*config); | ||||
|     virtual void Setup(const KeyboardConfig& config) { | ||||
|         this->config = KeyboardConfig(config); | ||||
|     } | ||||
|     const KeyboardData* ReceiveData() { | ||||
|         return &data; | ||||
| 
 | ||||
|     const KeyboardData& ReceiveData() const { | ||||
|         return data; | ||||
|     } | ||||
| 
 | ||||
|     /**
 | ||||
|  | @ -121,11 +122,7 @@ protected: | |||
| 
 | ||||
| class DefaultKeyboard final : public SoftwareKeyboard { | ||||
| public: | ||||
|     void Setup(const KeyboardConfig* config) override; | ||||
|     void Setup(const KeyboardConfig& config) override; | ||||
| }; | ||||
| 
 | ||||
| void RegisterSoftwareKeyboard(std::shared_ptr<SoftwareKeyboard> applet); | ||||
| 
 | ||||
| std::shared_ptr<SoftwareKeyboard> GetRegisteredSoftwareKeyboard(); | ||||
| 
 | ||||
| } // namespace Frontend
 | ||||
|  |  | |||
|  | @ -60,11 +60,11 @@ ResultCode MiiSelector::StartImpl(const Service::APT::AppletStartupParameter& pa | |||
|     memcpy(&config, parameter.buffer.data(), parameter.buffer.size()); | ||||
| 
 | ||||
|     using namespace Frontend; | ||||
|     frontend_applet = GetRegisteredMiiSelector(); | ||||
|     if (frontend_applet) { | ||||
|         MiiSelectorConfig frontend_config = ToFrontendConfig(config); | ||||
|         frontend_applet->Setup(&frontend_config); | ||||
|     } | ||||
|     frontend_applet = Core::System::GetInstance().GetMiiSelector(); | ||||
|     ASSERT(frontend_applet); | ||||
| 
 | ||||
|     MiiSelectorConfig frontend_config = ToFrontendConfig(config); | ||||
|     frontend_applet->Setup(frontend_config); | ||||
| 
 | ||||
|     is_running = true; | ||||
|     return RESULT_SUCCESS; | ||||
|  | @ -72,9 +72,9 @@ ResultCode MiiSelector::StartImpl(const Service::APT::AppletStartupParameter& pa | |||
| 
 | ||||
| void MiiSelector::Update() { | ||||
|     using namespace Frontend; | ||||
|     const MiiSelectorData* data = frontend_applet->ReceiveData(); | ||||
|     result.return_code = data->return_code; | ||||
|     result.selected_mii_data = data->mii; | ||||
|     const MiiSelectorData& data = frontend_applet->ReceiveData(); | ||||
|     result.return_code = data.return_code; | ||||
|     result.selected_mii_data = data.mii; | ||||
|     // Calculate the checksum of the selected Mii, see https://www.3dbrew.org/wiki/Mii#Checksum
 | ||||
|     result.mii_data_checksum = boost::crc<16, 0x1021, 0, 0, false, false>( | ||||
|         &result.selected_mii_data, sizeof(HLE::Applets::MiiData) + sizeof(result.unknown1)); | ||||
|  |  | |||
|  | @ -68,11 +68,11 @@ ResultCode SoftwareKeyboard::StartImpl(Service::APT::AppletStartupParameter cons | |||
|     DrawScreenKeyboard(); | ||||
| 
 | ||||
|     using namespace Frontend; | ||||
|     frontend_applet = GetRegisteredSoftwareKeyboard(); | ||||
|     if (frontend_applet) { | ||||
|         KeyboardConfig frontend_config = ToFrontendConfig(config); | ||||
|         frontend_applet->Setup(&frontend_config); | ||||
|     } | ||||
|     frontend_applet = Core::System::GetInstance().GetSoftwareKeyboard(); | ||||
|     ASSERT(frontend_applet); | ||||
| 
 | ||||
|     KeyboardConfig frontend_config = ToFrontendConfig(config); | ||||
|     frontend_applet->Setup(frontend_config); | ||||
| 
 | ||||
|     is_running = true; | ||||
|     return RESULT_SUCCESS; | ||||
|  | @ -80,7 +80,7 @@ ResultCode SoftwareKeyboard::StartImpl(Service::APT::AppletStartupParameter cons | |||
| 
 | ||||
| void SoftwareKeyboard::Update() { | ||||
|     using namespace Frontend; | ||||
|     KeyboardData data(*frontend_applet->ReceiveData()); | ||||
|     KeyboardData data(frontend_applet->ReceiveData()); | ||||
|     std::u16string text = Common::UTF8ToUTF16(data.text); | ||||
|     memcpy(text_memory->GetPointer(), text.c_str(), text.length() * sizeof(char16_t)); | ||||
|     switch (config.num_buttons_m1) { | ||||
|  |  | |||
|  | @ -16,7 +16,7 @@ class System; | |||
| namespace Service::PTM { | ||||
| 
 | ||||
| /// Id of the SharedExtData archive used by the PTM process
 | ||||
| static const std::vector<u8> ptm_shared_extdata_id = {0, 0, 0, 0, 0x0B, 0, 0, 0xF0, 0, 0, 0, 0}; | ||||
| constexpr std::array<u8, 12> ptm_shared_extdata_id = {0, 0, 0, 0, 0x0B, 0, 0, 0xF0, 0, 0, 0, 0}; | ||||
| 
 | ||||
| /// Charge levels used by PTM functions
 | ||||
| enum class ChargeLevels : u32 { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue