2015-05-25 11:11:41 +00:00
|
|
|
// Copyright 2003 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2015-05-25 11:11:41 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
#include <EGL/egl.h>
|
|
|
|
#include <android/log.h>
|
|
|
|
#include <android/native_window_jni.h>
|
2015-12-07 09:13:25 +00:00
|
|
|
#include <cinttypes>
|
2014-02-19 01:56:29 +00:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <jni.h>
|
2015-12-07 04:15:51 +00:00
|
|
|
#include <memory>
|
2016-05-12 01:18:30 +00:00
|
|
|
#include <mutex>
|
2016-05-12 09:17:17 +00:00
|
|
|
#include <thread>
|
2015-12-07 09:13:25 +00:00
|
|
|
|
2016-01-06 21:35:15 +00:00
|
|
|
#include "ButtonManager.h"
|
2015-12-07 09:13:25 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Common/CPUDetect.h"
|
2014-02-22 22:36:30 +00:00
|
|
|
#include "Common/CommonPaths.h"
|
2014-09-08 01:06:58 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-04-13 23:15:23 +00:00
|
|
|
#include "Common/Event.h"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "Common/FileUtil.h"
|
2016-01-10 18:31:49 +00:00
|
|
|
#include "Common/GL/GLInterfaceBase.h"
|
2014-06-05 23:29:54 +00:00
|
|
|
#include "Common/Logging/LogManager.h"
|
2015-12-07 09:13:25 +00:00
|
|
|
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "Core/BootManager.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/HW/Wiimote.h"
|
2016-02-05 00:31:36 +00:00
|
|
|
#include "Core/HW/WiimoteReal/WiimoteReal.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Core/Host.h"
|
2015-05-11 01:03:34 +00:00
|
|
|
#include "Core/PowerPC/JitInterface.h"
|
|
|
|
#include "Core/PowerPC/Profiler.h"
|
2016-06-24 08:43:46 +00:00
|
|
|
#include "Core/State.h"
|
2013-04-15 01:39:56 +00:00
|
|
|
|
2015-12-07 09:13:25 +00:00
|
|
|
#include "DiscIO/Volume.h"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "DiscIO/VolumeCreator.h"
|
2013-04-23 19:21:48 +00:00
|
|
|
|
2014-10-04 19:12:15 +00:00
|
|
|
#include "UICommon/UICommon.h"
|
|
|
|
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
2015-06-19 01:28:40 +00:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2014-02-19 01:56:29 +00:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2013-03-20 02:53:09 +00:00
|
|
|
ANativeWindow* surf;
|
2013-07-27 20:09:18 +00:00
|
|
|
std::string g_filename;
|
2015-02-25 09:23:42 +00:00
|
|
|
std::string g_set_userpath = "";
|
2013-07-27 20:09:18 +00:00
|
|
|
|
2015-06-08 00:13:52 +00:00
|
|
|
JavaVM* g_java_vm;
|
|
|
|
jclass g_jni_class;
|
|
|
|
jmethodID g_jni_method_alert;
|
2015-06-19 01:28:40 +00:00
|
|
|
jmethodID g_jni_method_end;
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2015-05-07 00:12:58 +00:00
|
|
|
#define DOLPHIN_TAG "DolphinEmuNative"
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2015-06-08 00:13:52 +00:00
|
|
|
/*
|
|
|
|
* Cache the JavaVM so that we can call into it later.
|
|
|
|
*/
|
|
|
|
jint JNI_OnLoad(JavaVM* vm, void* reserved)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
g_java_vm = vm;
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return JNI_VERSION_1_6;
|
2015-06-08 00:13:52 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_NotifyMapLoaded()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
void Host_RefreshDSPDebuggerWindow()
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2016-05-12 01:18:30 +00:00
|
|
|
// The Core only supports using a single Host thread.
|
|
|
|
// If multiple threads want to call host functions then they need to queue
|
|
|
|
// sequentially for access.
|
|
|
|
static std::mutex s_host_identity_lock;
|
2013-02-26 19:49:00 +00:00
|
|
|
Common::Event updateMainFrameEvent;
|
2016-05-12 09:17:17 +00:00
|
|
|
static bool s_have_wm_user_stop = false;
|
2013-02-26 19:49:00 +00:00
|
|
|
void Host_Message(int Id)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
if (Id == WM_USER_JOB_DISPATCH)
|
|
|
|
{
|
|
|
|
updateMainFrameEvent.Set();
|
|
|
|
}
|
|
|
|
else if (Id == WM_USER_STOP)
|
|
|
|
{
|
|
|
|
s_have_wm_user_stop = true;
|
|
|
|
if (Core::IsRunning())
|
|
|
|
Core::QueueHostJob(&Core::Stop);
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void* Host_GetRenderHandle()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return surf;
|
2013-02-26 19:49:00 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
void Host_UpdateTitle(const std::string& title)
|
2013-07-27 20:09:18 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_write(ANDROID_LOG_INFO, DOLPHIN_TAG, title.c_str());
|
2014-03-17 23:17:12 +00:00
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_UpdateDisasmDialog()
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
|
|
|
void Host_UpdateMainFrame()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_RequestRenderWindowSize(int width, int height)
|
|
|
|
{
|
|
|
|
}
|
2014-07-16 13:53:33 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_RequestFullscreen(bool enable_fullscreen)
|
|
|
|
{
|
|
|
|
}
|
2014-07-16 13:53:33 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
void Host_SetStartupDebuggingParameters()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-07-16 14:24:40 +00:00
|
|
|
bool Host_UIHasFocus()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return true;
|
2014-07-16 14:24:40 +00:00
|
|
|
}
|
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
bool Host_RendererHasFocus()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return true;
|
2013-02-26 19:49:00 +00:00
|
|
|
}
|
|
|
|
|
2015-01-04 16:09:56 +00:00
|
|
|
bool Host_RendererIsFullscreen()
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
2015-01-04 16:09:56 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_ConnectWiimote(int wm_idx, bool connect)
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_SetWiiMoteConnectionState(int _State)
|
|
|
|
{
|
|
|
|
}
|
2013-02-26 19:49:00 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
void Host_ShowVideoConfig(void*, const std::string&, const std::string&)
|
|
|
|
{
|
|
|
|
}
|
2014-08-02 06:21:03 +00:00
|
|
|
|
2015-05-21 23:48:35 +00:00
|
|
|
static bool MsgAlert(const char* caption, const char* text, bool yes_no, int /*Style*/)
|
2015-02-13 00:41:52 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_ERROR, DOLPHIN_TAG, "%s:%s", caption, text);
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Associate the current Thread with the Java VM.
|
|
|
|
JNIEnv* env;
|
|
|
|
g_java_vm->AttachCurrentThread(&env, NULL);
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Execute the Java method.
|
|
|
|
env->CallStaticVoidMethod(g_jni_class, g_jni_method_alert, env->NewStringUTF(text));
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Must be called before the current thread exits; might as well do it here.
|
|
|
|
g_java_vm->DetachCurrentThread();
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return false;
|
2015-02-13 00:41:52 +00:00
|
|
|
}
|
|
|
|
|
2013-04-23 19:21:48 +00:00
|
|
|
#define DVD_BANNER_WIDTH 96
|
|
|
|
#define DVD_BANNER_HEIGHT 32
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static inline u32 Average32(u32 a, u32 b)
|
|
|
|
{
|
|
|
|
return ((a >> 1) & 0x7f7f7f7f) + ((b >> 1) & 0x7f7f7f7f);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u32 GetPixel(u32* buffer, unsigned int x, unsigned int y)
|
|
|
|
{
|
|
|
|
// thanks to unsignedness, these also check for <0 automatically.
|
|
|
|
if (x > 191)
|
|
|
|
return 0;
|
|
|
|
if (y > 63)
|
|
|
|
return 0;
|
|
|
|
return buffer[y * 192 + x];
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool LoadBanner(std::string filename, u32* Banner)
|
|
|
|
{
|
|
|
|
std::unique_ptr<DiscIO::IVolume> pVolume(DiscIO::CreateVolumeFromFilename(filename));
|
|
|
|
|
|
|
|
if (pVolume != nullptr)
|
|
|
|
{
|
|
|
|
int Width, Height;
|
|
|
|
std::vector<u32> BannerVec = pVolume->GetBanner(&Width, &Height);
|
|
|
|
// This code (along with above inlines) is moved from
|
|
|
|
// elsewhere. Someone who knows anything about Android
|
|
|
|
// please get rid of it and use proper high-resolution
|
|
|
|
// images.
|
|
|
|
if (Height == 64 && Width == 192)
|
|
|
|
{
|
|
|
|
u32* Buffer = &BannerVec[0];
|
|
|
|
for (int y = 0; y < 32; y++)
|
|
|
|
{
|
|
|
|
for (int x = 0; x < 96; x++)
|
|
|
|
{
|
|
|
|
// simplified plus-shaped "gaussian"
|
|
|
|
u32 surround = Average32(
|
|
|
|
Average32(GetPixel(Buffer, x * 2 - 1, y * 2), GetPixel(Buffer, x * 2 + 1, y * 2)),
|
|
|
|
Average32(GetPixel(Buffer, x * 2, y * 2 - 1), GetPixel(Buffer, x * 2, y * 2 + 1)));
|
|
|
|
Banner[y * 96 + x] = Average32(GetPixel(Buffer, x * 2, y * 2), surround);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (Height == 32 && Width == 96)
|
|
|
|
{
|
|
|
|
memcpy(Banner, &BannerVec[0], 96 * 32 * 4);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
2014-09-21 23:51:27 +00:00
|
|
|
|
2015-05-17 00:52:55 +00:00
|
|
|
static int GetCountry(std::string filename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> pVolume(DiscIO::CreateVolumeFromFilename(filename));
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (pVolume != nullptr)
|
|
|
|
{
|
|
|
|
DiscIO::IVolume::ECountry country = pVolume->GetCountry();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Country Code: %i", country);
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return country;
|
|
|
|
}
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Return UNKNOWN
|
|
|
|
return 13;
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-17 00:52:55 +00:00
|
|
|
static int GetPlatform(std::string filename)
|
2015-05-16 23:02:46 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> pVolume(DiscIO::CreateVolumeFromFilename(filename));
|
2015-05-16 23:02:46 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (pVolume != nullptr)
|
|
|
|
{
|
|
|
|
switch (pVolume->GetVolumeType())
|
|
|
|
{
|
|
|
|
case DiscIO::IVolume::GAMECUBE_DISC:
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Volume is a GameCube disc.");
|
|
|
|
return 0;
|
|
|
|
case DiscIO::IVolume::WII_DISC:
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Volume is a Wii disc.");
|
|
|
|
return 1;
|
|
|
|
case DiscIO::IVolume::WII_WAD:
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Volume is a Wii WAD.");
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
}
|
2015-05-16 23:02:46 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return -1;
|
2015-05-16 23:02:46 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 00:12:58 +00:00
|
|
|
static std::string GetTitle(std::string filename)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_WARN, DOLPHIN_TAG, "Getting Title for file: %s",
|
|
|
|
filename.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> pVolume(DiscIO::CreateVolumeFromFilename(filename));
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (pVolume != nullptr)
|
|
|
|
{
|
2016-02-29 08:52:15 +00:00
|
|
|
std::map<DiscIO::IVolume::ELanguage, std::string> titles = pVolume->GetLongNames();
|
|
|
|
if (titles.empty())
|
|
|
|
titles = pVolume->GetShortNames();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
/*
|
2016-02-29 08:52:15 +00:00
|
|
|
bool is_wii_title = pVolume->GetVolumeType() !=
|
|
|
|
DiscIO::IVolume::GAMECUBE_DISC;
|
|
|
|
DiscIO::IVolume::ELanguage language =
|
|
|
|
SConfig::GetInstance().GetCurrentLanguage(is_wii_title);
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
auto it = titles.find(language);
|
|
|
|
if (it != end)
|
|
|
|
return it->second;*/
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
auto end = titles.end();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
// English tends to be a good fallback when the requested language isn't
|
|
|
|
// available
|
2016-06-24 08:43:46 +00:00
|
|
|
// if (language != DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH) {
|
|
|
|
auto it = titles.find(DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH);
|
|
|
|
if (it != end)
|
|
|
|
return it->second;
|
|
|
|
//}
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// If English isn't available either, just pick something
|
|
|
|
if (!titles.empty())
|
|
|
|
return titles.cbegin()->second;
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// No usable name, return filename (better than nothing)
|
|
|
|
std::string name;
|
|
|
|
SplitPath(filename, nullptr, &name, nullptr);
|
|
|
|
return name;
|
|
|
|
}
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return std::string("");
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::string GetDescription(std::string filename)
|
2013-04-23 19:21:48 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_WARN, DOLPHIN_TAG, "Getting Description for file: %s",
|
|
|
|
filename.c_str());
|
2015-04-10 20:10:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(filename));
|
2015-04-10 20:10:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (volume != nullptr)
|
|
|
|
{
|
|
|
|
std::map<DiscIO::IVolume::ELanguage, std::string> descriptions = volume->GetDescriptions();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
/*
|
2016-02-29 08:52:15 +00:00
|
|
|
bool is_wii_title = pVolume->GetVolumeType() !=
|
|
|
|
DiscIO::IVolume::GAMECUBE_DISC;
|
|
|
|
DiscIO::IVolume::ELanguage language =
|
|
|
|
SConfig::GetInstance().GetCurrentLanguage(is_wii_title);
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
auto it = descriptions.find(language);
|
|
|
|
if (it != end)
|
|
|
|
return it->second;*/
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
auto end = descriptions.end();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
// English tends to be a good fallback when the requested language isn't
|
|
|
|
// available
|
2016-06-24 08:43:46 +00:00
|
|
|
// if (language != DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH) {
|
|
|
|
auto it = descriptions.find(DiscIO::IVolume::ELanguage::LANGUAGE_ENGLISH);
|
|
|
|
if (it != end)
|
|
|
|
return it->second;
|
|
|
|
//}
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// If English isn't available either, just pick something
|
|
|
|
if (!descriptions.empty())
|
|
|
|
return descriptions.cbegin()->second;
|
|
|
|
}
|
2015-04-10 20:10:49 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return std::string();
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
2013-04-23 19:21:48 +00:00
|
|
|
|
2015-05-07 00:12:58 +00:00
|
|
|
static std::string GetGameId(std::string filename)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_WARN, DOLPHIN_TAG, "Getting ID for file: %s", filename.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(filename));
|
|
|
|
if (volume == nullptr)
|
|
|
|
return std::string();
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string id = volume->GetUniqueID();
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Game ID: %s", id.c_str());
|
|
|
|
return id;
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-17 00:52:55 +00:00
|
|
|
static std::string GetCompany(std::string filename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_WARN, DOLPHIN_TAG, "Getting Company for file: %s",
|
|
|
|
filename.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(filename));
|
|
|
|
if (volume == nullptr)
|
|
|
|
return std::string();
|
2015-12-07 04:15:51 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string company = DiscIO::GetCompanyFromID(volume->GetMakerID());
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Company: %s", company.c_str());
|
|
|
|
return company;
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static u64 GetFileSize(std::string filename)
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
__android_log_print(ANDROID_LOG_WARN, DOLPHIN_TAG, "Getting size of file: %s", filename.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
std::unique_ptr<DiscIO::IVolume> volume(DiscIO::CreateVolumeFromFilename(filename));
|
|
|
|
if (volume == nullptr)
|
|
|
|
return -1;
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
u64 size = volume->GetSize();
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Size: %" PRIu64, size);
|
|
|
|
return size;
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
static std::string GetJString(JNIEnv* env, jstring jstr)
|
2014-03-14 21:20:44 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string result = "";
|
|
|
|
if (!jstr)
|
|
|
|
return result;
|
2014-03-29 10:05:44 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
const char* s = env->GetStringUTFChars(jstr, nullptr);
|
|
|
|
result = s;
|
|
|
|
env->ReleaseStringUTFChars(jstr, s);
|
|
|
|
return result;
|
2014-03-14 21:20:44 +00:00
|
|
|
}
|
2013-04-23 19:21:48 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
#ifdef __cplusplus
|
2016-06-24 08:43:46 +00:00
|
|
|
extern "C" {
|
2013-02-26 19:49:00 +00:00
|
|
|
#endif
|
2014-03-14 21:20:44 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_UnPauseEmulation(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_PauseEmulation(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_StopEmulation(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_onGamePadEvent(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDevice, jint Button, jint Action);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_onGamePadMoveEvent(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDevice, jint Axis, jfloat Value);
|
|
|
|
JNIEXPORT jintArray JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetBanner(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFile);
|
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetTitle(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename);
|
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetDescription(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFilename);
|
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetGameId(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename);
|
|
|
|
JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetCountry(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename);
|
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetCompany(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFilename);
|
|
|
|
JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetFilesize(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename);
|
|
|
|
JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetPlatform(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename);
|
|
|
|
JNIEXPORT jstring JNICALL
|
|
|
|
Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersionString(JNIEnv* env, jobject obj);
|
|
|
|
JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SupportsNEON(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveScreenShot(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_eglBindAPI(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint api);
|
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetConfig(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFile, jstring jSection, jstring jKey, jstring jDefault);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetConfig(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFile, jstring jSection, jstring jKey, jstring jValue);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetFilename(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFile);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveState(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint slot);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_LoadState(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint slot);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_CreateUserFolders(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetUserDirectory(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDirectory);
|
|
|
|
JNIEXPORT jstring JNICALL
|
|
|
|
Java_org_dolphinemu_dolphinemu_NativeLibrary_GetUserDirectory(JNIEnv* env, jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetProfiling(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jboolean enable);
|
|
|
|
JNIEXPORT void JNICALL
|
|
|
|
Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteProfileResults(JNIEnv* env, jobject obj);
|
|
|
|
JNIEXPORT void JNICALL
|
|
|
|
Java_org_dolphinemu_dolphinemu_NativeLibrary_CacheClassesAndMethods(JNIEnv* env, jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_Run(JNIEnv* env, jobject obj);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SurfaceChanged(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jobject _surf);
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SurfaceDestroyed(JNIEnv* env,
|
|
|
|
jobject obj);
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_UnPauseEmulation(JNIEnv* env,
|
|
|
|
jobject obj)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_PauseEmulation(JNIEnv* env,
|
|
|
|
jobject obj)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_StopEmulation(JNIEnv* env,
|
|
|
|
jobject obj)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
Core::SaveScreenShot("thumb");
|
|
|
|
Renderer::s_screenshotCompleted.WaitFor(std::chrono::seconds(2));
|
|
|
|
Core::Stop();
|
|
|
|
updateMainFrameEvent.Set(); // Kick the waiting event
|
|
|
|
}
|
|
|
|
JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_onGamePadEvent(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDevice, jint Button, jint Action)
|
|
|
|
{
|
|
|
|
return ButtonManager::GamepadEvent(GetJString(env, jDevice), Button, Action);
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_onGamePadMoveEvent(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDevice, jint Axis, jfloat Value)
|
|
|
|
{
|
|
|
|
ButtonManager::GamepadAxisEvent(GetJString(env, jDevice), Axis, Value);
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT jintArray JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetBanner(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFile)
|
2013-03-20 02:53:09 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string file = GetJString(env, jFile);
|
|
|
|
u32 uBanner[DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT];
|
|
|
|
jintArray Banner = env->NewIntArray(DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT);
|
2013-03-20 02:53:09 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
if (LoadBanner(file, uBanner))
|
|
|
|
{
|
|
|
|
env->SetIntArrayRegion(Banner, 0, DVD_BANNER_WIDTH * DVD_BANNER_HEIGHT, (jint*)uBanner);
|
|
|
|
}
|
|
|
|
return Banner;
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetTitle(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
std::string name = GetTitle(filename);
|
|
|
|
return env->NewStringUTF(name.c_str());
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
2013-11-15 23:32:50 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetDescription(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
std::string description = GetDescription(filename);
|
|
|
|
return env->NewStringUTF(description.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetGameId(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
std::string id = GetGameId(filename);
|
|
|
|
return env->NewStringUTF(id.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetCompany(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
std::string company = GetCompany(filename);
|
|
|
|
return env->NewStringUTF(company.c_str());
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetCountry(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-16 23:02:46 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
int country = GetCountry(filename);
|
|
|
|
return country;
|
2015-05-16 23:02:46 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetFilesize(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
u64 size = GetFileSize(filename);
|
|
|
|
return size;
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetPlatform(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFilename)
|
2015-05-07 00:12:58 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::string filename = GetJString(env, jFilename);
|
|
|
|
int platform = GetPlatform(filename);
|
|
|
|
return platform;
|
2015-05-07 00:12:58 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetVersionString(JNIEnv* env,
|
|
|
|
jobject obj)
|
2013-06-23 03:54:28 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return env->NewStringUTF(scm_rev_str.c_str());
|
2013-06-23 03:54:28 +00:00
|
|
|
}
|
2013-11-15 20:17:47 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SupportsNEON(JNIEnv* env,
|
|
|
|
jobject obj)
|
2013-11-15 20:17:47 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return cpu_info.bASIMD;
|
2013-11-15 20:17:47 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveScreenShot(JNIEnv* env,
|
|
|
|
jobject obj)
|
2013-11-15 23:32:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
Core::SaveScreenShot();
|
2013-11-15 23:32:50 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_eglBindAPI(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint api)
|
2014-02-11 06:16:21 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
eglBindAPI(api);
|
2014-02-11 06:16:21 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetConfig(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFile, jstring jSection, jstring jKey, jstring jDefault)
|
2013-04-23 19:21:48 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
IniFile ini;
|
|
|
|
std::string file = GetJString(env, jFile);
|
|
|
|
std::string section = GetJString(env, jSection);
|
|
|
|
std::string key = GetJString(env, jKey);
|
|
|
|
std::string defaultValue = GetJString(env, jDefault);
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ini.Load(File::GetUserPath(D_CONFIG_IDX) + std::string(file));
|
|
|
|
std::string value;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ini.GetOrCreateSection(section)->Get(key, &value, defaultValue);
|
2013-04-23 19:21:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
return env->NewStringUTF(value.c_str());
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetConfig(
|
|
|
|
JNIEnv* env, jobject obj, jstring jFile, jstring jSection, jstring jKey, jstring jValue)
|
2013-04-23 19:21:48 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
IniFile ini;
|
|
|
|
std::string file = GetJString(env, jFile);
|
|
|
|
std::string section = GetJString(env, jSection);
|
|
|
|
std::string key = GetJString(env, jKey);
|
|
|
|
std::string value = GetJString(env, jValue);
|
2013-06-18 12:09:20 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ini.Load(File::GetUserPath(D_CONFIG_IDX) + std::string(file));
|
2013-04-23 19:21:48 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
ini.GetOrCreateSection(section)->Set(key, value);
|
|
|
|
ini.Save(File::GetUserPath(D_CONFIG_IDX) + std::string(file));
|
2013-04-23 19:21:48 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetFilename(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jstring jFile)
|
2013-07-27 20:09:18 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
g_filename = GetJString(env, jFile);
|
2013-07-27 20:09:18 +00:00
|
|
|
}
|
2013-04-15 01:39:56 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SaveState(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint slot)
|
2013-08-29 22:47:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
State::Save(slot);
|
2013-08-29 22:47:50 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_LoadState(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jint slot)
|
2013-08-29 22:47:50 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
State::Load(slot);
|
2013-08-29 22:47:50 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_CreateUserFolders(JNIEnv* env,
|
|
|
|
jobject obj)
|
2013-08-29 23:07:32 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
File::CreateFullPath(File::GetUserPath(D_CONFIG_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_WIIROOT_IDX) + DIR_SEP WII_WC24CONF_DIR DIR_SEP
|
|
|
|
"mbox" DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_WIIROOT_IDX) + DIR_SEP "shared2" DIR_SEP
|
|
|
|
"succession" DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_WIIROOT_IDX) + DIR_SEP "shared2" DIR_SEP "ec" DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_WIIROOT_IDX) + DIR_SEP WII_SYSCONF_DIR DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_CACHE_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_DUMPDSP_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_DUMPTEXTURES_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_HIRESTEXTURES_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_SCREENSHOTS_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_STATESAVES_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_MAILLOGS_IDX));
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_SHADERS_IDX) + "Anaglyph" DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + USA_DIR DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + EUR_DIR DIR_SEP);
|
|
|
|
File::CreateFullPath(File::GetUserPath(D_GCUSER_IDX) + JAP_DIR DIR_SEP);
|
2013-08-29 23:07:32 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetUserDirectory(
|
|
|
|
JNIEnv* env, jobject obj, jstring jDirectory)
|
2015-02-25 09:23:42 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
std::string directory = GetJString(env, jDirectory);
|
|
|
|
g_set_userpath = directory;
|
|
|
|
UICommon::SetUserDirectory(directory);
|
2015-02-25 09:23:42 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetUserDirectory(JNIEnv* env,
|
|
|
|
jobject obj)
|
2015-02-28 05:20:33 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
return env->NewStringUTF(File::GetUserPath(D_USER_IDX).c_str());
|
2015-02-28 05:20:33 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetProfiling(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jboolean enable)
|
2015-05-11 01:03:34 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
Core::SetState(Core::CORE_PAUSE);
|
|
|
|
JitInterface::ClearCache();
|
|
|
|
Profiler::g_ProfileBlocks = enable;
|
|
|
|
Core::SetState(Core::CORE_RUN);
|
2015-05-11 01:03:34 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_WriteProfileResults(JNIEnv* env,
|
|
|
|
jobject obj)
|
2015-05-11 01:03:34 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
std::string filename = File::GetUserPath(D_DUMP_IDX) + "Debug/profiler.txt";
|
|
|
|
File::CreateFullPath(filename);
|
|
|
|
JitInterface::WriteProfileResults(filename);
|
2015-05-11 01:03:34 +00:00
|
|
|
}
|
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL
|
|
|
|
Java_org_dolphinemu_dolphinemu_NativeLibrary_CacheClassesAndMethods(JNIEnv* env, jobject obj)
|
2015-06-08 00:13:52 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// This class reference is only valid for the lifetime of this method.
|
|
|
|
jclass localClass = env->FindClass("org/dolphinemu/dolphinemu/NativeLibrary");
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// This reference, however, is valid until we delete it.
|
|
|
|
g_jni_class = reinterpret_cast<jclass>(env->NewGlobalRef(localClass));
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// TODO Find a place for this.
|
|
|
|
// So we don't leak a reference to NativeLibrary.class.
|
|
|
|
// env->DeleteGlobalRef(g_jni_class);
|
2015-06-08 00:13:52 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Method signature taken from javap -s
|
|
|
|
// Source/Android/app/build/intermediates/classes/arm/debug/org/dolphinemu/dolphinemu/NativeLibrary.class
|
|
|
|
g_jni_method_alert =
|
|
|
|
env->GetStaticMethodID(g_jni_class, "displayAlertMsg", "(Ljava/lang/String;)V");
|
|
|
|
g_jni_method_end = env->GetStaticMethodID(g_jni_class, "endEmulationActivity", "()V");
|
2015-06-08 00:13:52 +00:00
|
|
|
}
|
|
|
|
|
2016-01-10 18:31:49 +00:00
|
|
|
// Surface Handling
|
2016-06-24 08:43:46 +00:00
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SurfaceChanged(JNIEnv* env,
|
|
|
|
jobject obj,
|
|
|
|
jobject _surf)
|
|
|
|
{
|
|
|
|
surf = ANativeWindow_fromSurface(env, _surf);
|
|
|
|
if (surf == nullptr)
|
|
|
|
__android_log_print(ANDROID_LOG_ERROR, DOLPHIN_TAG, "Error: Surface is null.");
|
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
// If GLInterface isn't a thing yet then we don't need to let it know that the
|
|
|
|
// surface has changed
|
2016-06-24 08:43:46 +00:00
|
|
|
if (GLInterface)
|
|
|
|
{
|
|
|
|
GLInterface->UpdateHandle(surf);
|
|
|
|
Renderer::s_ChangedSurface.Reset();
|
|
|
|
Renderer::s_SurfaceNeedsChanged.Set();
|
|
|
|
Renderer::s_ChangedSurface.Wait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SurfaceDestroyed(JNIEnv* env,
|
|
|
|
jobject obj)
|
|
|
|
{
|
|
|
|
if (surf)
|
|
|
|
{
|
|
|
|
ANativeWindow_release(surf);
|
|
|
|
surf = nullptr;
|
|
|
|
}
|
|
|
|
|
2016-02-29 08:52:15 +00:00
|
|
|
// If GLInterface isn't a thing yet then we don't need to let it know that the
|
|
|
|
// surface has changed
|
2016-06-24 08:43:46 +00:00
|
|
|
if (GLInterface)
|
|
|
|
{
|
|
|
|
GLInterface->UpdateHandle(nullptr);
|
|
|
|
Renderer::s_ChangedSurface.Reset();
|
|
|
|
Renderer::s_SurfaceNeedsChanged.Set();
|
|
|
|
Renderer::s_ChangedSurface.Wait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_RefreshWiimotes(JNIEnv* env,
|
|
|
|
jobject obj)
|
|
|
|
{
|
|
|
|
std::lock_guard<std::mutex> guard(s_host_identity_lock);
|
|
|
|
WiimoteReal::Refresh();
|
|
|
|
}
|
|
|
|
|
|
|
|
JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_Run(JNIEnv* env, jobject obj)
|
|
|
|
{
|
|
|
|
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Running : %s", g_filename.c_str());
|
|
|
|
|
|
|
|
// Install our callbacks
|
|
|
|
OSD::AddCallback(OSD::CallbackType::Initialization, ButtonManager::Init);
|
|
|
|
OSD::AddCallback(OSD::CallbackType::Shutdown, ButtonManager::Shutdown);
|
|
|
|
|
|
|
|
RegisterMsgAlertHandler(&MsgAlert);
|
|
|
|
|
|
|
|
std::unique_lock<std::mutex> guard(s_host_identity_lock);
|
|
|
|
UICommon::SetUserDirectory(g_set_userpath);
|
|
|
|
UICommon::Init();
|
|
|
|
|
|
|
|
WiimoteReal::InitAdapterClass();
|
|
|
|
|
|
|
|
// No use running the loop when booting fails
|
|
|
|
s_have_wm_user_stop = false;
|
|
|
|
if (BootManager::BootCore(g_filename.c_str()))
|
|
|
|
{
|
|
|
|
static constexpr int TIMEOUT = 10000;
|
|
|
|
static constexpr int WAIT_STEP = 25;
|
|
|
|
int time_waited = 0;
|
|
|
|
// A Core::CORE_ERROR state would be helpful here.
|
|
|
|
while (!Core::IsRunning() && time_waited < TIMEOUT && !s_have_wm_user_stop)
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(WAIT_STEP));
|
|
|
|
time_waited += WAIT_STEP;
|
|
|
|
}
|
|
|
|
while (Core::IsRunning())
|
|
|
|
{
|
|
|
|
guard.unlock();
|
|
|
|
updateMainFrameEvent.Wait();
|
|
|
|
guard.lock();
|
|
|
|
Core::HostDispatchJobs();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Core::Shutdown();
|
|
|
|
UICommon::Shutdown();
|
|
|
|
guard.unlock();
|
|
|
|
|
|
|
|
if (surf)
|
|
|
|
{
|
|
|
|
ANativeWindow_release(surf);
|
|
|
|
surf = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute the Java method.
|
|
|
|
env->CallStaticVoidMethod(g_jni_class, g_jni_method_end);
|
2013-02-26 19:49:00 +00:00
|
|
|
}
|
2013-07-27 20:09:18 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|