8 changed files with 146 additions and 170 deletions
-
4src/core/CMakeLists.txt
-
135src/core/hle/service/am/display_controller.cpp
-
30src/core/hle/service/am/display_controller.h
-
2src/core/hle/service/am/service/application_proxy.cpp
-
105src/core/hle/service/am/service/display_controller.cpp
-
36src/core/hle/service/am/service/display_controller.h
-
2src/core/hle/service/am/service/library_applet_proxy.cpp
-
2src/core/hle/service/am/service/system_applet_proxy.cpp
@ -1,135 +0,0 @@ |
|||||
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
||||
|
|
||||
#include "core/hle/service/am/applet.h"
|
|
||||
#include "core/hle/service/am/display_controller.h"
|
|
||||
#include "core/hle/service/ipc_helpers.h"
|
|
||||
|
|
||||
namespace Service::AM { |
|
||||
|
|
||||
namespace { |
|
||||
struct OutputParameters { |
|
||||
bool was_written; |
|
||||
s32 fbshare_layer_index; |
|
||||
}; |
|
||||
|
|
||||
static_assert(sizeof(OutputParameters) == 8, "OutputParameters has wrong size"); |
|
||||
} // namespace
|
|
||||
|
|
||||
IDisplayController::IDisplayController(Core::System& system_, std::shared_ptr<Applet> applet_) |
|
||||
: ServiceFramework{system_, "IDisplayController"}, applet(std::move(applet_)) { |
|
||||
// clang-format off
|
|
||||
static const FunctionInfo functions[] = { |
|
||||
{0, nullptr, "GetLastForegroundCaptureImage"}, |
|
||||
{1, nullptr, "UpdateLastForegroundCaptureImage"}, |
|
||||
{2, nullptr, "GetLastApplicationCaptureImage"}, |
|
||||
{3, nullptr, "GetCallerAppletCaptureImage"}, |
|
||||
{4, nullptr, "UpdateCallerAppletCaptureImage"}, |
|
||||
{5, nullptr, "GetLastForegroundCaptureImageEx"}, |
|
||||
{6, nullptr, "GetLastApplicationCaptureImageEx"}, |
|
||||
{7, &IDisplayController::GetCallerAppletCaptureImageEx, "GetCallerAppletCaptureImageEx"}, |
|
||||
{8, &IDisplayController::TakeScreenShotOfOwnLayer, "TakeScreenShotOfOwnLayer"}, |
|
||||
{9, nullptr, "CopyBetweenCaptureBuffers"}, |
|
||||
{10, nullptr, "AcquireLastApplicationCaptureBuffer"}, |
|
||||
{11, nullptr, "ReleaseLastApplicationCaptureBuffer"}, |
|
||||
{12, nullptr, "AcquireLastForegroundCaptureBuffer"}, |
|
||||
{13, nullptr, "ReleaseLastForegroundCaptureBuffer"}, |
|
||||
{14, nullptr, "AcquireCallerAppletCaptureBuffer"}, |
|
||||
{15, nullptr, "ReleaseCallerAppletCaptureBuffer"}, |
|
||||
{16, nullptr, "AcquireLastApplicationCaptureBufferEx"}, |
|
||||
{17, nullptr, "AcquireLastForegroundCaptureBufferEx"}, |
|
||||
{18, nullptr, "AcquireCallerAppletCaptureBufferEx"}, |
|
||||
{20, nullptr, "ClearCaptureBuffer"}, |
|
||||
{21, nullptr, "ClearAppletTransitionBuffer"}, |
|
||||
{22, &IDisplayController::AcquireLastApplicationCaptureSharedBuffer, "AcquireLastApplicationCaptureSharedBuffer"}, |
|
||||
{23, &IDisplayController::ReleaseLastApplicationCaptureSharedBuffer, "ReleaseLastApplicationCaptureSharedBuffer"}, |
|
||||
{24, &IDisplayController::AcquireLastForegroundCaptureSharedBuffer, "AcquireLastForegroundCaptureSharedBuffer"}, |
|
||||
{25, &IDisplayController::ReleaseLastForegroundCaptureSharedBuffer, "ReleaseLastForegroundCaptureSharedBuffer"}, |
|
||||
{26, &IDisplayController::AcquireCallerAppletCaptureSharedBuffer, "AcquireCallerAppletCaptureSharedBuffer"}, |
|
||||
{27, &IDisplayController::ReleaseCallerAppletCaptureSharedBuffer, "ReleaseCallerAppletCaptureSharedBuffer"}, |
|
||||
{28, nullptr, "TakeScreenShotOfOwnLayerEx"}, |
|
||||
}; |
|
||||
// clang-format on
|
|
||||
|
|
||||
RegisterHandlers(functions); |
|
||||
} |
|
||||
|
|
||||
IDisplayController::~IDisplayController() = default; |
|
||||
|
|
||||
void IDisplayController::GetCallerAppletCaptureImageEx(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
OutputParameters params{}; |
|
||||
const auto res = applet->system_buffer_manager.WriteAppletCaptureBuffer( |
|
||||
¶ms.was_written, ¶ms.fbshare_layer_index); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 4}; |
|
||||
rb.Push(res); |
|
||||
rb.PushRaw(params); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::TakeScreenShotOfOwnLayer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 2}; |
|
||||
rb.Push(ResultSuccess); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::AcquireLastApplicationCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
OutputParameters params{}; |
|
||||
const auto res = applet->system_buffer_manager.WriteAppletCaptureBuffer( |
|
||||
¶ms.was_written, ¶ms.fbshare_layer_index); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 4}; |
|
||||
rb.Push(res); |
|
||||
rb.PushRaw(params); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::ReleaseLastApplicationCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 2}; |
|
||||
rb.Push(ResultSuccess); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::AcquireLastForegroundCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
OutputParameters params{}; |
|
||||
const auto res = applet->system_buffer_manager.WriteAppletCaptureBuffer( |
|
||||
¶ms.was_written, ¶ms.fbshare_layer_index); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 4}; |
|
||||
rb.Push(res); |
|
||||
rb.PushRaw(params); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::ReleaseLastForegroundCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 2}; |
|
||||
rb.Push(ResultSuccess); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::AcquireCallerAppletCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
OutputParameters params{}; |
|
||||
const auto res = applet->system_buffer_manager.WriteAppletCaptureBuffer( |
|
||||
¶ms.was_written, ¶ms.fbshare_layer_index); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 4}; |
|
||||
rb.Push(res); |
|
||||
rb.PushRaw(params); |
|
||||
} |
|
||||
|
|
||||
void IDisplayController::ReleaseCallerAppletCaptureSharedBuffer(HLERequestContext& ctx) { |
|
||||
LOG_WARNING(Service_AM, "(STUBBED) called"); |
|
||||
|
|
||||
IPC::ResponseBuilder rb{ctx, 2}; |
|
||||
rb.Push(ResultSuccess); |
|
||||
} |
|
||||
|
|
||||
} // namespace Service::AM
|
|
||||
@ -1,30 +0,0 @@ |
|||||
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project |
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later |
|
||||
|
|
||||
#pragma once |
|
||||
|
|
||||
#include "core/hle/service/service.h" |
|
||||
|
|
||||
namespace Service::AM { |
|
||||
|
|
||||
struct Applet; |
|
||||
|
|
||||
class IDisplayController final : public ServiceFramework<IDisplayController> { |
|
||||
public: |
|
||||
explicit IDisplayController(Core::System& system_, std::shared_ptr<Applet> applet_); |
|
||||
~IDisplayController() override; |
|
||||
|
|
||||
private: |
|
||||
void GetCallerAppletCaptureImageEx(HLERequestContext& ctx); |
|
||||
void TakeScreenShotOfOwnLayer(HLERequestContext& ctx); |
|
||||
void AcquireLastForegroundCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
void ReleaseLastForegroundCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
void AcquireCallerAppletCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
void ReleaseCallerAppletCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
void AcquireLastApplicationCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
void ReleaseLastApplicationCaptureSharedBuffer(HLERequestContext& ctx); |
|
||||
|
|
||||
const std::shared_ptr<Applet> applet; |
|
||||
}; |
|
||||
|
|
||||
} // namespace Service::AM |
|
||||
@ -0,0 +1,105 @@ |
|||||
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
|
||||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
|
||||
|
#include "core/hle/result.h"
|
||||
|
#include "core/hle/service/am/applet.h"
|
||||
|
#include "core/hle/service/am/service/display_controller.h"
|
||||
|
#include "core/hle/service/cmif_serialization.h"
|
||||
|
|
||||
|
namespace Service::AM { |
||||
|
|
||||
|
IDisplayController::IDisplayController(Core::System& system_, std::shared_ptr<Applet> applet_) |
||||
|
: ServiceFramework{system_, "IDisplayController"}, applet(std::move(applet_)) { |
||||
|
// clang-format off
|
||||
|
static const FunctionInfo functions[] = { |
||||
|
{0, nullptr, "GetLastForegroundCaptureImage"}, |
||||
|
{1, nullptr, "UpdateLastForegroundCaptureImage"}, |
||||
|
{2, nullptr, "GetLastApplicationCaptureImage"}, |
||||
|
{3, nullptr, "GetCallerAppletCaptureImage"}, |
||||
|
{4, nullptr, "UpdateCallerAppletCaptureImage"}, |
||||
|
{5, nullptr, "GetLastForegroundCaptureImageEx"}, |
||||
|
{6, nullptr, "GetLastApplicationCaptureImageEx"}, |
||||
|
{7, D<&IDisplayController::GetCallerAppletCaptureImageEx>, "GetCallerAppletCaptureImageEx"}, |
||||
|
{8, D<&IDisplayController::TakeScreenShotOfOwnLayer>, "TakeScreenShotOfOwnLayer"}, |
||||
|
{9, nullptr, "CopyBetweenCaptureBuffers"}, |
||||
|
{10, nullptr, "AcquireLastApplicationCaptureBuffer"}, |
||||
|
{11, nullptr, "ReleaseLastApplicationCaptureBuffer"}, |
||||
|
{12, nullptr, "AcquireLastForegroundCaptureBuffer"}, |
||||
|
{13, nullptr, "ReleaseLastForegroundCaptureBuffer"}, |
||||
|
{14, nullptr, "AcquireCallerAppletCaptureBuffer"}, |
||||
|
{15, nullptr, "ReleaseCallerAppletCaptureBuffer"}, |
||||
|
{16, nullptr, "AcquireLastApplicationCaptureBufferEx"}, |
||||
|
{17, nullptr, "AcquireLastForegroundCaptureBufferEx"}, |
||||
|
{18, nullptr, "AcquireCallerAppletCaptureBufferEx"}, |
||||
|
{20, D<&IDisplayController::ClearCaptureBuffer>, "ClearCaptureBuffer"}, |
||||
|
{21, nullptr, "ClearAppletTransitionBuffer"}, |
||||
|
{22, D<&IDisplayController::AcquireLastApplicationCaptureSharedBuffer>, "AcquireLastApplicationCaptureSharedBuffer"}, |
||||
|
{23, D<&IDisplayController::ReleaseLastApplicationCaptureSharedBuffer>, "ReleaseLastApplicationCaptureSharedBuffer"}, |
||||
|
{24, D<&IDisplayController::AcquireLastForegroundCaptureSharedBuffer>, "AcquireLastForegroundCaptureSharedBuffer"}, |
||||
|
{25, D<&IDisplayController::ReleaseLastForegroundCaptureSharedBuffer>, "ReleaseLastForegroundCaptureSharedBuffer"}, |
||||
|
{26, D<&IDisplayController::AcquireCallerAppletCaptureSharedBuffer>, "AcquireCallerAppletCaptureSharedBuffer"}, |
||||
|
{27, D<&IDisplayController::ReleaseCallerAppletCaptureSharedBuffer>, "ReleaseCallerAppletCaptureSharedBuffer"}, |
||||
|
{28, nullptr, "TakeScreenShotOfOwnLayerEx"}, |
||||
|
}; |
||||
|
// clang-format on
|
||||
|
|
||||
|
RegisterHandlers(functions); |
||||
|
} |
||||
|
|
||||
|
IDisplayController::~IDisplayController() = default; |
||||
|
|
||||
|
Result IDisplayController::GetCallerAppletCaptureImageEx( |
||||
|
Out<bool> out_was_written, OutBuffer<BufferAttr_HipcMapAlias> out_image_data) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
*out_was_written = true; |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::TakeScreenShotOfOwnLayer(bool unknown0, s32 fbshare_layer_index) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::ClearCaptureBuffer(bool unknown0, s32 fbshare_layer_index, u32 color) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called, unknown0={} fbshare_layer_index={} color={:#x}", |
||||
|
unknown0, fbshare_layer_index, color); |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::AcquireLastForegroundCaptureSharedBuffer( |
||||
|
Out<bool> out_was_written, Out<s32> out_fbshare_layer_index) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_RETURN(applet->system_buffer_manager.WriteAppletCaptureBuffer(out_was_written, |
||||
|
out_fbshare_layer_index)); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::ReleaseLastForegroundCaptureSharedBuffer() { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::AcquireCallerAppletCaptureSharedBuffer( |
||||
|
Out<bool> out_was_written, Out<s32> out_fbshare_layer_index) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_RETURN(applet->system_buffer_manager.WriteAppletCaptureBuffer(out_was_written, |
||||
|
out_fbshare_layer_index)); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::ReleaseCallerAppletCaptureSharedBuffer() { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::AcquireLastApplicationCaptureSharedBuffer( |
||||
|
Out<bool> out_was_written, Out<s32> out_fbshare_layer_index) { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_RETURN(applet->system_buffer_manager.WriteAppletCaptureBuffer(out_was_written, |
||||
|
out_fbshare_layer_index)); |
||||
|
} |
||||
|
|
||||
|
Result IDisplayController::ReleaseLastApplicationCaptureSharedBuffer() { |
||||
|
LOG_WARNING(Service_AM, "(STUBBED) called"); |
||||
|
R_SUCCEED(); |
||||
|
} |
||||
|
|
||||
|
} // namespace Service::AM
|
||||
@ -0,0 +1,36 @@ |
|||||
|
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project |
||||
|
// SPDX-License-Identifier: GPL-2.0-or-later |
||||
|
|
||||
|
#pragma once |
||||
|
|
||||
|
#include "core/hle/service/cmif_types.h" |
||||
|
#include "core/hle/service/service.h" |
||||
|
|
||||
|
namespace Service::AM { |
||||
|
|
||||
|
struct Applet; |
||||
|
|
||||
|
class IDisplayController final : public ServiceFramework<IDisplayController> { |
||||
|
public: |
||||
|
explicit IDisplayController(Core::System& system_, std::shared_ptr<Applet> applet_); |
||||
|
~IDisplayController() override; |
||||
|
|
||||
|
private: |
||||
|
Result GetCallerAppletCaptureImageEx(Out<bool> out_was_written, |
||||
|
OutBuffer<BufferAttr_HipcMapAlias> out_image_data); |
||||
|
Result TakeScreenShotOfOwnLayer(bool unknown0, s32 fbshare_layer_index); |
||||
|
Result ClearCaptureBuffer(bool unknown0, s32 fbshare_layer_index, u32 color); |
||||
|
Result AcquireLastForegroundCaptureSharedBuffer(Out<bool> out_was_written, |
||||
|
Out<s32> out_fbshare_layer_index); |
||||
|
Result ReleaseLastForegroundCaptureSharedBuffer(); |
||||
|
Result AcquireCallerAppletCaptureSharedBuffer(Out<bool> out_was_written, |
||||
|
Out<s32> out_fbshare_layer_index); |
||||
|
Result ReleaseCallerAppletCaptureSharedBuffer(); |
||||
|
Result AcquireLastApplicationCaptureSharedBuffer(Out<bool> out_was_written, |
||||
|
Out<s32> out_fbshare_layer_index); |
||||
|
Result ReleaseLastApplicationCaptureSharedBuffer(); |
||||
|
|
||||
|
const std::shared_ptr<Applet> applet; |
||||
|
}; |
||||
|
|
||||
|
} // namespace Service::AM |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue