mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Serialize PTM service
This commit is contained in:
		
							parent
							
								
									f5e2f873b0
								
							
						
					
					
						commit
						92857efca4
					
				
					 17 changed files with 77 additions and 3 deletions
				
			
		|  | @ -2,9 +2,12 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/ipc_helpers.h" | ||||
| #include "core/hle/service/pm/pm_app.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PM::PM_APP) | ||||
| 
 | ||||
| namespace Service::PM { | ||||
| 
 | ||||
| PM_APP::PM_APP() : ServiceFramework("pm:app", 3) { | ||||
|  |  | |||
|  | @ -15,3 +15,5 @@ public: | |||
| }; | ||||
| 
 | ||||
| } // namespace Service::PM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PM::PM_APP) | ||||
|  |  | |||
|  | @ -2,9 +2,12 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/ipc_helpers.h" | ||||
| #include "core/hle/service/pm/pm_dbg.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PM::PM_DBG) | ||||
| 
 | ||||
| namespace Service::PM { | ||||
| 
 | ||||
| PM_DBG::PM_DBG() : ServiceFramework("pm:dbg", 3) { | ||||
|  |  | |||
|  | @ -15,3 +15,5 @@ public: | |||
| }; | ||||
| 
 | ||||
| } // namespace Service::PM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PM::PM_DBG) | ||||
|  |  | |||
|  | @ -3,6 +3,7 @@ | |||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include <cinttypes> | ||||
| #include "common/archives.h" | ||||
| #include "common/common_paths.h" | ||||
| #include "common/file_util.h" | ||||
| #include "common/logging/log.h" | ||||
|  | @ -18,6 +19,8 @@ | |||
| #include "core/hle/service/ptm/ptm_u.h" | ||||
| #include "core/settings.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::Module) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| /// Values for the default gamecoin.dat file
 | ||||
|  |  | |||
|  | @ -137,7 +137,7 @@ public: | |||
|          */ | ||||
|         void CheckNew3DS(Kernel::HLERequestContext& ctx); | ||||
| 
 | ||||
|     private: | ||||
|     protected: | ||||
|         std::shared_ptr<Module> ptm; | ||||
|     }; | ||||
| 
 | ||||
|  | @ -145,8 +145,18 @@ private: | |||
|     bool shell_open = true; | ||||
|     bool battery_is_charging = true; | ||||
|     bool pedometer_is_counting = false; | ||||
| 
 | ||||
|     template <class Archive> | ||||
|     void serialize(Archive& ar, const unsigned int) { | ||||
|         ar& shell_open; | ||||
|         ar& battery_is_charging; | ||||
|         ar& pedometer_is_counting; | ||||
|     } | ||||
|     friend class boost::serialization::access; | ||||
| }; | ||||
| 
 | ||||
| void InstallInterfaces(Core::System& system); | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::Module) | ||||
|  |  | |||
|  | @ -2,8 +2,11 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/service/ptm/ptm_gets.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_Gets) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| PTM_Gets::PTM_Gets(std::shared_ptr<Module> ptm) | ||||
|  |  | |||
|  | @ -12,6 +12,12 @@ namespace Service::PTM { | |||
| class PTM_Gets final : public Module::Interface { | ||||
| public: | ||||
|     explicit PTM_Gets(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_Gets, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_Gets) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_Gets) | ||||
|  |  | |||
|  | @ -2,8 +2,11 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/service/ptm/ptm_play.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_Play) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| PTM_Play::PTM_Play(std::shared_ptr<Module> ptm) | ||||
|  |  | |||
|  | @ -12,6 +12,12 @@ namespace Service::PTM { | |||
| class PTM_Play final : public Module::Interface { | ||||
| public: | ||||
|     explicit PTM_Play(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_Play, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_Play) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_Play) | ||||
|  |  | |||
|  | @ -2,8 +2,11 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/service/ptm/ptm_sets.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_Sets) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| PTM_Sets::PTM_Sets(std::shared_ptr<Module> ptm) : Module::Interface(std::move(ptm), "ptm:sets", 1) { | ||||
|  |  | |||
|  | @ -12,6 +12,12 @@ namespace Service::PTM { | |||
| class PTM_Sets final : public Module::Interface { | ||||
| public: | ||||
|     explicit PTM_Sets(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_Sets, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_Sets) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_Sets) | ||||
|  |  | |||
|  | @ -2,8 +2,12 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/service/ptm/ptm_sysm.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_S) | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_Sysm) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| PTM_S_Common::PTM_S_Common(std::shared_ptr<Module> ptm, const char* name) | ||||
|  |  | |||
|  | @ -17,11 +17,22 @@ public: | |||
| class PTM_S final : public PTM_S_Common { | ||||
| public: | ||||
|     explicit PTM_S(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_S, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| class PTM_Sysm final : public PTM_S_Common { | ||||
| public: | ||||
|     explicit PTM_Sysm(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_Sysm, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_S) | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_Sysm) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_S) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_Sysm) | ||||
|  |  | |||
|  | @ -2,8 +2,11 @@ | |||
| // Licensed under GPLv2 or any later version
 | ||||
| // Refer to the license.txt file included.
 | ||||
| 
 | ||||
| #include "common/archives.h" | ||||
| #include "core/hle/service/ptm/ptm_u.h" | ||||
| 
 | ||||
| SERIALIZE_EXPORT_IMPL(Service::PTM::PTM_U) | ||||
| 
 | ||||
| namespace Service::PTM { | ||||
| 
 | ||||
| PTM_U::PTM_U(std::shared_ptr<Module> ptm) : Module::Interface(std::move(ptm), "ptm:u", 26) { | ||||
|  |  | |||
|  | @ -12,6 +12,12 @@ namespace Service::PTM { | |||
| class PTM_U final : public Module::Interface { | ||||
| public: | ||||
|     explicit PTM_U(std::shared_ptr<Module> ptm); | ||||
| 
 | ||||
| private: | ||||
|     SERVICE_SERIALIZATION(PTM_U, ptm, Module) | ||||
| }; | ||||
| 
 | ||||
| } // namespace Service::PTM
 | ||||
| 
 | ||||
| BOOST_CLASS_EXPORT_KEY(Service::PTM::PTM_U) | ||||
| BOOST_SERIALIZATION_CONSTRUCT(Service::PTM::PTM_U) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue