2020-04-19 23:04:05 +02:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
2020-03-27 20:36:02 +01:00
|
|
|
// Copyright © 2020 Skyline Team and Contributors (https://github.com/skyline-emu/)
|
|
|
|
|
2020-03-26 15:33:19 +01:00
|
|
|
#include <csignal>
|
|
|
|
#include <unistd.h>
|
2020-06-19 22:18:33 +02:00
|
|
|
#include "skyline/loader/loader.h"
|
2019-09-24 22:54:27 +02:00
|
|
|
#include "skyline/common.h"
|
|
|
|
#include "skyline/os.h"
|
2019-12-05 16:35:34 +01:00
|
|
|
#include "skyline/jvm.h"
|
2020-04-26 01:34:35 +02:00
|
|
|
#include "skyline/input.h"
|
2019-09-24 22:54:27 +02:00
|
|
|
|
2019-12-05 16:35:34 +01:00
|
|
|
bool Halt;
|
2019-12-26 19:10:29 +01:00
|
|
|
jobject Surface;
|
2019-12-05 16:35:34 +01:00
|
|
|
uint FaultCount;
|
2020-03-24 21:20:28 +01:00
|
|
|
skyline::GroupMutex JniMtx;
|
2020-04-18 02:16:09 +02:00
|
|
|
skyline::u16 fps;
|
|
|
|
skyline::u32 frametime;
|
2020-08-20 20:31:32 +02:00
|
|
|
std::weak_ptr<skyline::input::Input> inputWeak;
|
2019-12-02 18:40:53 +01:00
|
|
|
|
|
|
|
void signalHandler(int signal) {
|
|
|
|
syslog(LOG_ERR, "Halting program due to signal: %s", strsignal(signal));
|
|
|
|
if (FaultCount > 2)
|
|
|
|
exit(SIGKILL);
|
|
|
|
else
|
|
|
|
Halt = true;
|
|
|
|
FaultCount++;
|
|
|
|
}
|
|
|
|
|
2020-08-08 21:38:51 +02:00
|
|
|
extern "C" JNIEXPORT void Java_emu_skyline_EmulationActivity_executeApplication(JNIEnv *env, jobject instance, jstring romUriJstring, jint romType, jint romFd, jint preferenceFd, jstring appFilesPathJstring) {
|
2019-12-05 16:35:34 +01:00
|
|
|
Halt = false;
|
|
|
|
FaultCount = 0;
|
2020-04-23 20:37:52 +02:00
|
|
|
fps = 0;
|
|
|
|
frametime = 0;
|
2019-12-05 16:35:34 +01:00
|
|
|
|
2019-12-02 18:40:53 +01:00
|
|
|
std::signal(SIGTERM, signalHandler);
|
|
|
|
std::signal(SIGSEGV, signalHandler);
|
|
|
|
std::signal(SIGINT, signalHandler);
|
|
|
|
std::signal(SIGILL, signalHandler);
|
|
|
|
std::signal(SIGABRT, signalHandler);
|
|
|
|
std::signal(SIGFPE, signalHandler);
|
2019-09-24 22:54:27 +02:00
|
|
|
|
2020-04-22 19:02:27 +02:00
|
|
|
setpriority(PRIO_PROCESS, static_cast<id_t>(gettid()), -8); // Set the priority of this process to the highest value
|
2019-12-02 18:40:53 +01:00
|
|
|
|
|
|
|
auto jvmManager = std::make_shared<skyline::JvmManager>(env, instance);
|
|
|
|
auto settings = std::make_shared<skyline::Settings>(preferenceFd);
|
2020-08-08 21:38:51 +02:00
|
|
|
|
|
|
|
auto appFilesPath = env->GetStringUTFChars(appFilesPathJstring, nullptr);
|
|
|
|
auto logger = std::make_shared<skyline::Logger>(std::string(appFilesPath) + "skyline.log", static_cast<skyline::Logger::LogLevel>(std::stoi(settings->GetString("log_level"))));
|
2019-09-27 18:09:48 +02:00
|
|
|
//settings->List(logger); // (Uncomment when you want to print out all settings strings)
|
2019-12-02 18:40:53 +01:00
|
|
|
|
2019-09-25 11:32:17 +02:00
|
|
|
auto start = std::chrono::steady_clock::now();
|
2019-12-02 18:40:53 +01:00
|
|
|
|
2019-09-24 22:54:27 +02:00
|
|
|
try {
|
2020-08-08 21:38:51 +02:00
|
|
|
skyline::kernel::OS os(jvmManager, logger, settings, std::string(appFilesPath));
|
2020-08-20 20:31:32 +02:00
|
|
|
inputWeak = os.state.input;
|
2020-08-21 13:14:27 +02:00
|
|
|
jvmManager->InitializeControllers();
|
2020-08-08 21:38:51 +02:00
|
|
|
env->ReleaseStringUTFChars(appFilesPathJstring, appFilesPath);
|
|
|
|
|
2020-04-22 19:02:27 +02:00
|
|
|
auto romUri = env->GetStringUTFChars(romUriJstring, nullptr);
|
2020-04-03 13:47:32 +02:00
|
|
|
logger->Info("Launching ROM {}", romUri);
|
|
|
|
env->ReleaseStringUTFChars(romUriJstring, romUri);
|
2020-04-26 01:34:35 +02:00
|
|
|
|
2020-06-19 22:18:33 +02:00
|
|
|
os.Execute(romFd, static_cast<skyline::loader::RomFormat>(romType));
|
2019-09-24 22:54:27 +02:00
|
|
|
} catch (std::exception &e) {
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
logger->Error(e.what());
|
2019-09-24 22:54:27 +02:00
|
|
|
} catch (...) {
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
logger->Error("An unknown exception has occurred");
|
2019-09-24 22:54:27 +02:00
|
|
|
}
|
2020-04-26 01:34:35 +02:00
|
|
|
|
2020-08-20 20:31:32 +02:00
|
|
|
inputWeak.reset();
|
|
|
|
|
2020-02-11 07:34:22 +01:00
|
|
|
logger->Info("Emulation has ended");
|
2019-12-02 18:40:53 +01:00
|
|
|
|
2019-09-25 11:32:17 +02:00
|
|
|
auto end = std::chrono::steady_clock::now();
|
Framebuffer and NativeActivity
What was added:
* Framebuffer
* NativeActivity
* NV Services
* IOCTL Handler
* NV Devices:
* * /dev/nvmap - 0xC0080101, 0xC0080103, 0xC0200104, 0xC0180105, 0xC00C0109, 0xC008010E
* * /dev/nvhost-as-gpu
* * /dev/nvhost-channel - 0x40044801, 0xC0104809, 0xC010480B, 0xC018480C, 0x4004480D, 0xC020481A, 0x40084714
* * /dev/nvhost-ctrl
* * /dev/nvhost-ctrl-gpu - 0x80044701, 0x80284702, 0xC0184706, 0xC0B04705, 0x80084714
* SVCs:
* * SetMemoryAttribute
* * CreateTransferMemory
* * ResetSignal
* * GetSystemTick
* Addition of Compact Logger
What was fixed:
* SVCs:
* * SetHeapSize
* * SetMemoryAttribute
* * QueryMemory
* A release build would not set CMAKE_BUILD_TYPE to "RELEASE"
* The logger code was simplified
2019-11-13 21:09:31 +01:00
|
|
|
logger->Info("Done in: {} ms", (std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count()));
|
2019-09-24 22:54:27 +02:00
|
|
|
}
|
2019-12-05 16:35:34 +01:00
|
|
|
|
2020-04-26 01:34:35 +02:00
|
|
|
extern "C" JNIEXPORT void Java_emu_skyline_EmulationActivity_setHalt(JNIEnv *, jobject, jboolean halt) {
|
2020-03-24 21:20:28 +01:00
|
|
|
JniMtx.lock(skyline::GroupMutex::Group::Group2);
|
2019-12-26 19:10:29 +01:00
|
|
|
Halt = halt;
|
2020-03-24 21:20:28 +01:00
|
|
|
JniMtx.unlock();
|
2019-12-05 16:35:34 +01:00
|
|
|
}
|
|
|
|
|
2020-04-26 01:34:35 +02:00
|
|
|
extern "C" JNIEXPORT void Java_emu_skyline_EmulationActivity_setSurface(JNIEnv *env, jobject, jobject surface) {
|
2020-03-24 21:20:28 +01:00
|
|
|
JniMtx.lock(skyline::GroupMutex::Group::Group2);
|
2020-01-11 05:52:25 +01:00
|
|
|
if (!env->IsSameObject(Surface, nullptr))
|
2019-12-26 19:10:29 +01:00
|
|
|
env->DeleteGlobalRef(Surface);
|
2020-01-11 05:52:25 +01:00
|
|
|
if (!env->IsSameObject(surface, nullptr))
|
2019-12-26 19:10:29 +01:00
|
|
|
Surface = env->NewGlobalRef(surface);
|
|
|
|
else
|
|
|
|
Surface = surface;
|
2020-03-24 21:20:28 +01:00
|
|
|
JniMtx.unlock();
|
2019-12-05 16:35:34 +01:00
|
|
|
}
|
2020-04-18 02:16:09 +02:00
|
|
|
|
2020-04-26 16:32:24 +02:00
|
|
|
extern "C" JNIEXPORT jint Java_emu_skyline_EmulationActivity_getFps(JNIEnv *, jobject) {
|
2020-04-18 02:16:09 +02:00
|
|
|
return fps;
|
|
|
|
}
|
|
|
|
|
2020-04-26 16:32:24 +02:00
|
|
|
extern "C" JNIEXPORT jfloat Java_emu_skyline_EmulationActivity_getFrametime(JNIEnv *, jobject) {
|
2020-04-18 02:16:09 +02:00
|
|
|
return static_cast<float>(frametime) / 100;
|
2020-08-08 21:38:51 +02:00
|
|
|
}
|
2020-04-26 01:34:35 +02:00
|
|
|
|
2020-08-15 15:51:23 +02:00
|
|
|
extern "C" JNIEXPORT void JNICALL Java_emu_skyline_EmulationActivity_setController(JNIEnv *, jobject, jint index, jint type, jint partnerIndex) {
|
2020-08-20 20:31:32 +02:00
|
|
|
auto input = inputWeak.lock();
|
|
|
|
std::lock_guard guard(input->npad.mutex);
|
2020-08-15 15:51:23 +02:00
|
|
|
input->npad.controllers[index] = skyline::input::GuestController{static_cast<skyline::input::NpadControllerType>(type), static_cast<skyline::i8>(partnerIndex)};
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" JNIEXPORT void JNICALL Java_emu_skyline_EmulationActivity_updateControllers(JNIEnv *, jobject) {
|
2020-08-21 13:14:27 +02:00
|
|
|
inputWeak.lock()->npad.Update();
|
2020-08-15 15:51:23 +02:00
|
|
|
}
|
|
|
|
|
2020-08-21 13:14:27 +02:00
|
|
|
extern "C" JNIEXPORT void JNICALL Java_emu_skyline_EmulationActivity_setButtonState(JNIEnv *, jobject, jint index, jlong mask, jboolean pressed) {
|
2020-08-20 20:31:32 +02:00
|
|
|
try {
|
|
|
|
auto input = inputWeak.lock();
|
2020-08-15 15:51:23 +02:00
|
|
|
auto device = input->npad.controllers[index].device;
|
|
|
|
if (device)
|
2020-08-21 13:14:27 +02:00
|
|
|
device->SetButtonState(skyline::input::NpadButton{.raw = static_cast<skyline::u64>(mask)}, pressed);
|
2020-09-05 01:06:07 +02:00
|
|
|
} catch (const std::bad_weak_ptr &) {
|
2020-08-20 20:31:32 +02:00
|
|
|
// We don't mind if we miss button updates while input hasn't been initialized
|
2020-04-26 16:32:24 +02:00
|
|
|
}
|
2020-04-26 01:34:35 +02:00
|
|
|
}
|
|
|
|
|
2020-08-15 15:51:23 +02:00
|
|
|
extern "C" JNIEXPORT void JNICALL Java_emu_skyline_EmulationActivity_setAxisValue(JNIEnv *, jobject, jint index, jint axis, jint value) {
|
2020-08-20 20:31:32 +02:00
|
|
|
try {
|
|
|
|
auto input = inputWeak.lock();
|
2020-08-15 15:51:23 +02:00
|
|
|
auto device = input->npad.controllers[index].device;
|
|
|
|
if (device)
|
|
|
|
device->SetAxisValue(static_cast<skyline::input::NpadAxisId>(axis), value);
|
2020-09-05 01:06:07 +02:00
|
|
|
} catch (const std::bad_weak_ptr &) {
|
2020-08-20 20:31:32 +02:00
|
|
|
// We don't mind if we miss axis updates while input hasn't been initialized
|
2020-08-15 15:51:23 +02:00
|
|
|
}
|
2020-04-26 01:34:35 +02:00
|
|
|
}
|
2020-09-07 18:39:05 +02:00
|
|
|
|
|
|
|
extern "C" JNIEXPORT void JNICALL Java_emu_skyline_EmulationActivity_setTouchState(JNIEnv *env, jobject, jintArray pointsJni) {
|
|
|
|
try {
|
|
|
|
using Point = skyline::input::TouchScreenPoint;
|
|
|
|
|
|
|
|
auto input = inputWeak.lock();
|
|
|
|
jboolean isCopy{false};
|
|
|
|
|
|
|
|
std::span<Point> points(reinterpret_cast<Point *>(env->GetIntArrayElements(pointsJni, &isCopy)), env->GetArrayLength(pointsJni) / (sizeof(Point) / sizeof(jint)));
|
|
|
|
input->touch.SetState(points);
|
|
|
|
|
|
|
|
env->ReleaseIntArrayElements(pointsJni, reinterpret_cast<jint *>(points.data()), JNI_ABORT);
|
|
|
|
} catch (const std::bad_weak_ptr &) {
|
|
|
|
// We don't mind if we miss axis updates while input hasn't been initialized
|
|
|
|
}
|
|
|
|
}
|