mirror of
				https://git.tardis.systems/mirrors/yuzu
				synced 2025-10-31 02:34:11 +01:00 
			
		
		
		
	Merge pull request #280 from bunnei/misc-service-fixes
Minor changes to VI, PL, HID, and AUDREN
This commit is contained in:
		
						commit
						8c8da93693
					
				| @ -151,12 +151,52 @@ private: | |||||||
|     Kernel::SharedPtr<Kernel::Event> system_event; |     Kernel::SharedPtr<Kernel::Event> system_event; | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
|  | class IAudioDevice final : public ServiceFramework<IAudioDevice> { | ||||||
|  | public: | ||||||
|  |     IAudioDevice() : ServiceFramework("IAudioDevice") { | ||||||
|  |         static const FunctionInfo functions[] = { | ||||||
|  |             {0x0, &IAudioDevice::ListAudioDeviceName, "ListAudioDeviceName"}, | ||||||
|  |             {0x1, &IAudioDevice::SetAudioDeviceOutputVolume, "SetAudioDeviceOutputVolume"}}; | ||||||
|  |         RegisterHandlers(functions); | ||||||
|  | 
 | ||||||
|  |         buffer_event = | ||||||
|  |             Kernel::Event::Create(Kernel::ResetType::OneShot, "IAudioOutBufferReleasedEvent"); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  | private: | ||||||
|  |     void ListAudioDeviceName(Kernel::HLERequestContext& ctx) { | ||||||
|  |         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||||
|  |         IPC::RequestParser rp{ctx}; | ||||||
|  | 
 | ||||||
|  |         const std::string audio_interface = "AudioInterface"; | ||||||
|  |         ctx.WriteBuffer(audio_interface.c_str(), audio_interface.size()); | ||||||
|  | 
 | ||||||
|  |         IPC::ResponseBuilder rb = rp.MakeBuilder(3, 0, 0); | ||||||
|  |         rb.Push(RESULT_SUCCESS); | ||||||
|  |         rb.Push<u32>(1); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     void SetAudioDeviceOutputVolume(Kernel::HLERequestContext& ctx) { | ||||||
|  |         LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||||
|  | 
 | ||||||
|  |         IPC::RequestParser rp{ctx}; | ||||||
|  |         f32 volume = static_cast<f32>(rp.Pop<u32>()); | ||||||
|  | 
 | ||||||
|  |         auto file_buffer = ctx.ReadBuffer(); | ||||||
|  |         auto end = std::find(file_buffer.begin(), file_buffer.end(), '\0'); | ||||||
|  | 
 | ||||||
|  |         IPC::ResponseBuilder rb = rp.MakeBuilder(2, 0, 0); | ||||||
|  |         rb.Push(RESULT_SUCCESS); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     Kernel::SharedPtr<Kernel::Event> buffer_event; | ||||||
|  | }; | ||||||
|  | 
 | ||||||
| AudRenU::AudRenU() : ServiceFramework("audren:u") { | AudRenU::AudRenU() : ServiceFramework("audren:u") { | ||||||
|     static const FunctionInfo functions[] = { |     static const FunctionInfo functions[] = { | ||||||
|         {0, &AudRenU::OpenAudioRenderer, "OpenAudioRenderer"}, |         {0, &AudRenU::OpenAudioRenderer, "OpenAudioRenderer"}, | ||||||
|         {1, &AudRenU::GetAudioRendererWorkBufferSize, "GetAudioRendererWorkBufferSize"}, |         {1, &AudRenU::GetAudioRendererWorkBufferSize, "GetAudioRendererWorkBufferSize"}, | ||||||
|         {2, &AudRenU::GetAudioRenderersProcessMasterVolume, "GetAudioRenderersProcessMasterVolume"}, |         {2, &AudRenU::GetAudioDevice, "GetAudioDevice"}, | ||||||
|         {3, nullptr, "SetAudioRenderersProcessMasterVolume"}, |  | ||||||
|     }; |     }; | ||||||
|     RegisterHandlers(functions); |     RegisterHandlers(functions); | ||||||
| } | } | ||||||
| @ -179,12 +219,13 @@ void AudRenU::GetAudioRendererWorkBufferSize(Kernel::HLERequestContext& ctx) { | |||||||
|     LOG_WARNING(Service_Audio, "(STUBBED) called"); |     LOG_WARNING(Service_Audio, "(STUBBED) called"); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| void AudRenU::GetAudioRenderersProcessMasterVolume(Kernel::HLERequestContext& ctx) { | void AudRenU::GetAudioDevice(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::ResponseBuilder rb{ctx, 3}; |     IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | ||||||
| 
 | 
 | ||||||
|     rb.Push(RESULT_SUCCESS); |     rb.Push(RESULT_SUCCESS); | ||||||
|     rb.Push<u32>(100); |     rb.PushIpcInterface<Audio::IAudioDevice>(); | ||||||
|     LOG_WARNING(Service_Audio, "(STUBBED) called"); | 
 | ||||||
|  |     LOG_DEBUG(Service_Audio, "called"); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| } // namespace Audio
 | } // namespace Audio
 | ||||||
|  | |||||||
| @ -21,7 +21,7 @@ public: | |||||||
| private: | private: | ||||||
|     void OpenAudioRenderer(Kernel::HLERequestContext& ctx); |     void OpenAudioRenderer(Kernel::HLERequestContext& ctx); | ||||||
|     void GetAudioRendererWorkBufferSize(Kernel::HLERequestContext& ctx); |     void GetAudioRendererWorkBufferSize(Kernel::HLERequestContext& ctx); | ||||||
|     void GetAudioRenderersProcessMasterVolume(Kernel::HLERequestContext& ctx); |     void GetAudioDevice(Kernel::HLERequestContext& ctx); | ||||||
| }; | }; | ||||||
| 
 | 
 | ||||||
| } // namespace Audio
 | } // namespace Audio
 | ||||||
|  | |||||||
| @ -193,7 +193,7 @@ public: | |||||||
|             {121, &Hid::GetNpadJoyHoldType, "GetNpadJoyHoldType"}, |             {121, &Hid::GetNpadJoyHoldType, "GetNpadJoyHoldType"}, | ||||||
|             {122, &Hid::SetNpadJoyAssignmentModeSingleByDefault, |             {122, &Hid::SetNpadJoyAssignmentModeSingleByDefault, | ||||||
|              "SetNpadJoyAssignmentModeSingleByDefault"}, |              "SetNpadJoyAssignmentModeSingleByDefault"}, | ||||||
|             {124, nullptr, "SetNpadJoyAssignmentModeDual"}, |             {124, &Hid::SetNpadJoyAssignmentModeDual, "SetNpadJoyAssignmentModeDual"}, | ||||||
|             {128, &Hid::SetNpadHandheldActivationMode, "SetNpadHandheldActivationMode"}, |             {128, &Hid::SetNpadHandheldActivationMode, "SetNpadHandheldActivationMode"}, | ||||||
|             {200, &Hid::GetVibrationDeviceInfo, "GetVibrationDeviceInfo"}, |             {200, &Hid::GetVibrationDeviceInfo, "GetVibrationDeviceInfo"}, | ||||||
|             {201, &Hid::SendVibrationValue, "SendVibrationValue"}, |             {201, &Hid::SendVibrationValue, "SendVibrationValue"}, | ||||||
| @ -315,6 +315,12 @@ private: | |||||||
|         LOG_WARNING(Service_HID, "(STUBBED) called"); |         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  |     void SetNpadJoyAssignmentModeDual(Kernel::HLERequestContext& ctx) { | ||||||
|  |         IPC::ResponseBuilder rb{ctx, 2}; | ||||||
|  |         rb.Push(RESULT_SUCCESS); | ||||||
|  |         LOG_WARNING(Service_HID, "(STUBBED) called"); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|     void SetNpadHandheldActivationMode(Kernel::HLERequestContext& ctx) { |     void SetNpadHandheldActivationMode(Kernel::HLERequestContext& ctx) { | ||||||
|         IPC::ResponseBuilder rb{ctx, 2}; |         IPC::ResponseBuilder rb{ctx, 2}; | ||||||
|         rb.Push(RESULT_SUCCESS); |         rb.Push(RESULT_SUCCESS); | ||||||
|  | |||||||
| @ -33,6 +33,7 @@ enum class LoadState : u32 { | |||||||
| 
 | 
 | ||||||
| PL_U::PL_U() : ServiceFramework("pl:u") { | PL_U::PL_U() : ServiceFramework("pl:u") { | ||||||
|     static const FunctionInfo functions[] = { |     static const FunctionInfo functions[] = { | ||||||
|  |         {0, &PL_U::RequestLoad, "RequestLoad"}, | ||||||
|         {1, &PL_U::GetLoadState, "GetLoadState"}, |         {1, &PL_U::GetLoadState, "GetLoadState"}, | ||||||
|         {2, &PL_U::GetSize, "GetSize"}, |         {2, &PL_U::GetSize, "GetSize"}, | ||||||
|         {3, &PL_U::GetSharedMemoryAddressOffset, "GetSharedMemoryAddressOffset"}, |         {3, &PL_U::GetSharedMemoryAddressOffset, "GetSharedMemoryAddressOffset"}, | ||||||
| @ -54,6 +55,15 @@ PL_U::PL_U() : ServiceFramework("pl:u") { | |||||||
|     } |     } | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | void PL_U::RequestLoad(Kernel::HLERequestContext& ctx) { | ||||||
|  |     IPC::RequestParser rp{ctx}; | ||||||
|  |     const u32 shared_font_type{rp.Pop<u32>()}; | ||||||
|  | 
 | ||||||
|  |     LOG_DEBUG(Service_NS, "called, shared_font_type=%d", shared_font_type); | ||||||
|  |     IPC::ResponseBuilder rb{ctx, 2}; | ||||||
|  |     rb.Push(RESULT_SUCCESS); | ||||||
|  | } | ||||||
|  | 
 | ||||||
| void PL_U::GetLoadState(Kernel::HLERequestContext& ctx) { | void PL_U::GetLoadState(Kernel::HLERequestContext& ctx) { | ||||||
|     IPC::RequestParser rp{ctx}; |     IPC::RequestParser rp{ctx}; | ||||||
|     const u32 font_id{rp.Pop<u32>()}; |     const u32 font_id{rp.Pop<u32>()}; | ||||||
|  | |||||||
| @ -17,6 +17,7 @@ public: | |||||||
|     ~PL_U() = default; |     ~PL_U() = default; | ||||||
| 
 | 
 | ||||||
| private: | private: | ||||||
|  |     void RequestLoad(Kernel::HLERequestContext& ctx); | ||||||
|     void GetLoadState(Kernel::HLERequestContext& ctx); |     void GetLoadState(Kernel::HLERequestContext& ctx); | ||||||
|     void GetSize(Kernel::HLERequestContext& ctx); |     void GetSize(Kernel::HLERequestContext& ctx); | ||||||
|     void GetSharedMemoryAddressOffset(Kernel::HLERequestContext& ctx); |     void GetSharedMemoryAddressOffset(Kernel::HLERequestContext& ctx); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user