2017-01-31 09:16:58 +00:00
|
|
|
// Copyright 2016 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "common/string_util.h"
|
2018-10-13 22:08:37 +01:00
|
|
|
#include "core/core.h"
|
2017-01-31 09:16:58 +00:00
|
|
|
#include "core/hle/applets/mint.h"
|
|
|
|
#include "core/hle/service/apt/apt.h"
|
|
|
|
|
2019-02-19 01:34:18 +00:00
|
|
|
namespace HLE::Applets {
|
2017-01-31 09:16:58 +00:00
|
|
|
|
2023-02-28 12:09:54 +00:00
|
|
|
ResultCode Mint::ReceiveParameterImpl(const Service::APT::MessageParameter& parameter) {
|
2018-01-25 13:39:54 +00:00
|
|
|
if (parameter.signal != Service::APT::SignalType::Request) {
|
2020-12-29 05:39:21 +00:00
|
|
|
LOG_ERROR(Service_APT, "unsupported signal {}", parameter.signal);
|
2017-01-31 09:16:58 +00:00
|
|
|
UNIMPLEMENTED();
|
|
|
|
// TODO(Subv): Find the right error code
|
|
|
|
return ResultCode(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The Request message contains a buffer with the size of the framebuffer shared
|
|
|
|
// memory.
|
|
|
|
// Create the SharedMemory that will hold the framebuffer data
|
|
|
|
Service::APT::CaptureBufferInfo capture_info;
|
|
|
|
ASSERT(sizeof(capture_info) == parameter.buffer.size());
|
|
|
|
|
|
|
|
memcpy(&capture_info, parameter.buffer.data(), sizeof(capture_info));
|
|
|
|
|
|
|
|
// TODO: allocated memory never released
|
|
|
|
using Kernel::MemoryPermission;
|
|
|
|
// Create a SharedMemory that directly points to this heap block.
|
2018-10-13 22:08:37 +01:00
|
|
|
framebuffer_memory = Core::System::GetInstance().Kernel().CreateSharedMemoryForApplet(
|
2018-11-06 20:00:47 +00:00
|
|
|
0, capture_info.size, MemoryPermission::ReadWrite, MemoryPermission::ReadWrite,
|
2017-08-19 17:37:21 +01:00
|
|
|
"Mint Memory");
|
2017-01-31 09:16:58 +00:00
|
|
|
|
|
|
|
// Send the response message with the newly created SharedMemory
|
2023-02-28 12:09:54 +00:00
|
|
|
SendParameter({
|
|
|
|
.sender_id = id,
|
|
|
|
.destination_id = parent,
|
|
|
|
.signal = Service::APT::SignalType::Response,
|
|
|
|
.object = framebuffer_memory,
|
|
|
|
});
|
2017-01-31 09:16:58 +00:00
|
|
|
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2023-02-28 12:09:54 +00:00
|
|
|
ResultCode Mint::Start(const Service::APT::MessageParameter& parameter) {
|
|
|
|
startup_param = parameter.buffer;
|
2017-01-31 09:16:58 +00:00
|
|
|
|
|
|
|
// TODO(Subv): Set the expected fields in the response buffer before resending it to the
|
|
|
|
// application.
|
|
|
|
// TODO(Subv): Reverse the parameter format for the Mint applet
|
|
|
|
|
|
|
|
// Let the application know that we're closing
|
2023-02-28 12:09:54 +00:00
|
|
|
Finalize();
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
2017-01-31 09:16:58 +00:00
|
|
|
|
2023-02-28 12:09:54 +00:00
|
|
|
ResultCode Mint::Finalize() {
|
|
|
|
std::vector<u8> buffer(startup_param.size());
|
|
|
|
std::fill(buffer.begin(), buffer.end(), 0);
|
|
|
|
CloseApplet(nullptr, buffer);
|
2017-01-31 09:16:58 +00:00
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Mint::Update() {}
|
|
|
|
|
2019-02-19 01:34:18 +00:00
|
|
|
} // namespace HLE::Applets
|