2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2013-07-06 17:08:59 +00:00
|
|
|
#include "android/app-android.h"
|
2013-03-06 23:10:53 +00:00
|
|
|
#include "base/logging.h"
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "gfx_es2/glsl_program.h"
|
2012-12-05 03:45:28 +00:00
|
|
|
#include "gfx_es2/gl_state.h"
|
2012-11-19 22:29:14 +00:00
|
|
|
#include "gfx_es2/fbo.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "input/input_state.h"
|
|
|
|
#include "ui/ui.h"
|
2013-05-27 12:25:30 +00:00
|
|
|
#include "i18n/i18n.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-01 04:43:01 +00:00
|
|
|
#include "Common/KeyMap.h"
|
|
|
|
|
2013-03-29 19:51:14 +00:00
|
|
|
#include "Core/Config.h"
|
|
|
|
#include "Core/CoreTiming.h"
|
|
|
|
#include "Core/CoreParameter.h"
|
|
|
|
#include "Core/Core.h"
|
|
|
|
#include "Core/Host.h"
|
|
|
|
#include "Core/System.h"
|
|
|
|
#include "GPU/GPUState.h"
|
|
|
|
#include "GPU/GPUInterface.h"
|
|
|
|
#include "Core/HLE/sceCtrl.h"
|
2013-04-07 20:43:23 +00:00
|
|
|
#include "Core/HLE/sceDisplay.h"
|
2013-03-29 19:51:14 +00:00
|
|
|
#include "Core/Debugger/SymbolMap.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-05-22 16:00:06 +00:00
|
|
|
#include "UI/OnScreenDisplay.h"
|
2013-04-07 20:43:23 +00:00
|
|
|
#include "UI/ui_atlas.h"
|
|
|
|
#include "UI/GamepadEmu.h"
|
|
|
|
#include "UI/UIShader.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-06-10 20:06:51 +00:00
|
|
|
#include "UI/MainScreen.h"
|
2013-04-07 20:43:23 +00:00
|
|
|
#include "UI/MenuScreens.h"
|
|
|
|
#include "UI/EmuScreen.h"
|
2013-04-13 19:24:07 +00:00
|
|
|
#include "UI/GameInfoCache.h"
|
2013-07-15 15:41:24 +00:00
|
|
|
#include "UI/MiscScreens.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-17 05:33:26 +00:00
|
|
|
|
2013-07-21 11:31:46 +00:00
|
|
|
EmuScreen::EmuScreen(const std::string &filename)
|
2013-07-27 11:26:26 +00:00
|
|
|
: booted_(false), gamePath_(filename), invalid_(true), pauseTrigger_(false) {
|
2013-07-17 05:33:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::bootGame(const std::string &filename) {
|
2013-07-27 11:26:26 +00:00
|
|
|
booted_ = true;
|
2012-11-01 15:19:01 +00:00
|
|
|
std::string fileToStart = filename;
|
|
|
|
// This is probably where we should start up the emulated PSP.
|
|
|
|
INFO_LOG(BOOT, "Starting up hardware.");
|
|
|
|
|
|
|
|
CoreParameter coreParam;
|
2013-02-16 08:49:33 +00:00
|
|
|
coreParam.cpuCore = g_Config.bJit ? CPU_JIT : CPU_INTERPRETER;
|
2012-11-01 15:19:01 +00:00
|
|
|
coreParam.gpuCore = GPU_GLES;
|
|
|
|
coreParam.enableSound = g_Config.bEnableSound;
|
|
|
|
coreParam.fileToStart = fileToStart;
|
|
|
|
coreParam.mountIso = "";
|
|
|
|
coreParam.startPaused = false;
|
|
|
|
coreParam.enableDebugging = false;
|
|
|
|
coreParam.printfEmuLog = false;
|
|
|
|
coreParam.headLess = false;
|
2013-03-29 18:32:20 +00:00
|
|
|
#ifndef _WIN32
|
2013-01-03 11:04:00 +00:00
|
|
|
if (g_Config.iWindowZoom < 1 || g_Config.iWindowZoom > 2)
|
|
|
|
g_Config.iWindowZoom = 1;
|
2013-03-29 18:32:20 +00:00
|
|
|
#endif
|
2013-01-03 11:04:00 +00:00
|
|
|
coreParam.renderWidth = 480 * g_Config.iWindowZoom;
|
|
|
|
coreParam.renderHeight = 272 * g_Config.iWindowZoom;
|
2012-11-19 20:23:29 +00:00
|
|
|
coreParam.outputWidth = dp_xres;
|
|
|
|
coreParam.outputHeight = dp_yres;
|
2012-11-20 15:48:24 +00:00
|
|
|
coreParam.pixelWidth = pixel_xres;
|
|
|
|
coreParam.pixelHeight = pixel_yres;
|
2013-07-30 13:18:49 +00:00
|
|
|
if (g_Config.bAntiAliasing) {
|
2013-04-11 19:04:02 +00:00
|
|
|
coreParam.renderWidth *= 2;
|
|
|
|
coreParam.renderHeight *= 2;
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
std::string error_string;
|
|
|
|
if (PSP_Init(coreParam, &error_string)) {
|
|
|
|
invalid_ = false;
|
|
|
|
} else {
|
|
|
|
invalid_ = true;
|
|
|
|
errorMessage_ = error_string;
|
|
|
|
ERROR_LOG(BOOT, "%s", errorMessage_.c_str());
|
|
|
|
return;
|
|
|
|
}
|
2013-05-16 15:18:29 +00:00
|
|
|
|
2013-04-01 02:25:30 +00:00
|
|
|
globalUIState = UISTATE_INGAME;
|
2013-03-29 18:52:32 +00:00
|
|
|
host->BootDone();
|
2013-03-29 19:51:14 +00:00
|
|
|
host->UpdateDisassembly();
|
|
|
|
|
2013-04-13 19:24:07 +00:00
|
|
|
g_gameInfoCache.FlushBGs();
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
NOTICE_LOG(BOOT, "Loading %s...", fileToStart.c_str());
|
2013-06-10 22:51:10 +00:00
|
|
|
I18NCategory *s = GetI18NCategory("Screen");
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (g_Config.bFirstRun) {
|
|
|
|
osm.Show(s->T("PressESC", "Press ESC to open the pause menu"), 3.0f);
|
|
|
|
}
|
|
|
|
#endif
|
2013-07-06 18:44:34 +00:00
|
|
|
memset(virtKeys, 0, sizeof(virtKeys));
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-29 20:21:27 +00:00
|
|
|
EmuScreen::~EmuScreen() {
|
2012-11-01 15:19:01 +00:00
|
|
|
if (!invalid_) {
|
|
|
|
// If we were invalid, it would already be shutdown.
|
|
|
|
PSP_Shutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::dialogFinished(const Screen *dialog, DialogResult result) {
|
2013-07-17 05:33:26 +00:00
|
|
|
|
|
|
|
// TODO: improve the way with which we got commands from PauseMenu.
|
2013-07-17 06:34:43 +00:00
|
|
|
// DR_CANCEL means clicked on "continue", DR_OK means clicked on "back to menu",
|
2013-07-17 05:33:26 +00:00
|
|
|
// DR_YES means a message sent to PauseMenu by NativeMessageReceived.
|
2012-11-01 15:19:01 +00:00
|
|
|
if (result == DR_OK) {
|
2013-06-10 20:06:51 +00:00
|
|
|
if (g_Config.bNewUI)
|
|
|
|
screenManager()->switchScreen(new MainScreen());
|
|
|
|
else
|
|
|
|
screenManager()->switchScreen(new MenuScreen());
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2013-07-17 05:33:26 +00:00
|
|
|
else if (result == DR_YES) {
|
2013-07-17 06:34:43 +00:00
|
|
|
PauseScreen::Message* msg = (PauseScreen::Message*)((Screen*)dialog)->dialogData();
|
2013-07-17 05:33:26 +00:00
|
|
|
if (msg != NULL)
|
|
|
|
{
|
|
|
|
NativeMessageReceived(msg->msg, msg->value);
|
|
|
|
delete msg;
|
|
|
|
}
|
|
|
|
}
|
2013-07-20 10:06:06 +00:00
|
|
|
RecreateViews();
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2013-03-29 20:21:27 +00:00
|
|
|
void EmuScreen::sendMessage(const char *message, const char *value) {
|
2013-03-29 17:50:08 +00:00
|
|
|
// External commands, like from the Windows UI.
|
|
|
|
if (!strcmp(message, "pause")) {
|
|
|
|
screenManager()->push(new PauseScreen());
|
|
|
|
} else if (!strcmp(message, "stop")) {
|
2013-06-10 20:06:51 +00:00
|
|
|
if (g_Config.bNewUI)
|
|
|
|
screenManager()->switchScreen(new MainScreen());
|
|
|
|
else
|
|
|
|
screenManager()->switchScreen(new MenuScreen());
|
2013-03-29 19:51:14 +00:00
|
|
|
} else if (!strcmp(message, "reset")) {
|
|
|
|
PSP_Shutdown();
|
|
|
|
std::string resetError;
|
|
|
|
if (!PSP_Init(PSP_CoreParameter(), &resetError)) {
|
2013-03-29 20:21:27 +00:00
|
|
|
ELOG("Error resetting: %s", resetError.c_str());
|
2013-06-10 20:06:51 +00:00
|
|
|
if (g_Config.bNewUI)
|
|
|
|
screenManager()->switchScreen(new MainScreen());
|
|
|
|
else
|
|
|
|
screenManager()->switchScreen(new MenuScreen());
|
2013-03-29 19:51:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
host->BootDone();
|
|
|
|
host->UpdateDisassembly();
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (g_Config.bAutoRun) {
|
|
|
|
Core_EnableStepping(false);
|
|
|
|
} else {
|
|
|
|
Core_EnableStepping(true);
|
|
|
|
}
|
|
|
|
#endif
|
2013-03-29 17:50:08 +00:00
|
|
|
}
|
2013-07-17 05:33:26 +00:00
|
|
|
else if (!strcmp(message, "boot")) {
|
|
|
|
PSP_Shutdown();
|
|
|
|
bootGame(value);
|
|
|
|
}
|
2013-03-29 17:50:08 +00:00
|
|
|
}
|
|
|
|
|
2013-03-10 12:21:36 +00:00
|
|
|
inline float curve1(float x) {
|
|
|
|
const float deadzone = 0.15f;
|
|
|
|
const float factor = 1.0f / (1.0f - deadzone);
|
|
|
|
if (x > deadzone) {
|
|
|
|
return (x - deadzone) * (x - deadzone) * factor;
|
|
|
|
} else if (x < -0.1f) {
|
|
|
|
return -(x + deadzone) * (x + deadzone) * factor;
|
|
|
|
} else {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline float clamp1(float x) {
|
|
|
|
if (x > 1.0f) return 1.0f;
|
|
|
|
if (x < -1.0f) return -1.0f;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2013-07-06 17:08:59 +00:00
|
|
|
void EmuScreen::touch(const TouchInput &touch) {
|
2013-07-27 15:25:22 +00:00
|
|
|
if (root_)
|
|
|
|
root_->Touch(touch);
|
2013-07-06 17:08:59 +00:00
|
|
|
}
|
|
|
|
|
2013-07-07 08:42:39 +00:00
|
|
|
void EmuScreen::onVKeyDown(int virtualKeyCode) {
|
2013-07-07 12:08:08 +00:00
|
|
|
I18NCategory *s = GetI18NCategory("Screen");
|
|
|
|
|
2013-07-07 08:42:39 +00:00
|
|
|
switch (virtualKeyCode) {
|
2013-07-20 12:05:07 +00:00
|
|
|
case VIRTKEY_UNTHROTTLE:
|
|
|
|
PSP_CoreParameter().unthrottle = true;
|
|
|
|
break;
|
|
|
|
|
2013-07-07 12:08:08 +00:00
|
|
|
case VIRTKEY_SPEED_TOGGLE:
|
|
|
|
if (PSP_CoreParameter().fpsLimit == 0) {
|
|
|
|
PSP_CoreParameter().fpsLimit = 1;
|
|
|
|
osm.Show(s->T("fixed", "Speed: fixed"), 1.0);
|
|
|
|
}
|
|
|
|
else if (PSP_CoreParameter().fpsLimit == 1) {
|
|
|
|
PSP_CoreParameter().fpsLimit = 0;
|
|
|
|
osm.Show(s->T("standard", "Speed: standard"), 1.0);
|
|
|
|
}
|
|
|
|
break;
|
2013-07-08 15:46:20 +00:00
|
|
|
|
|
|
|
// On Android, this is take care of in update() using input.buttons & back
|
|
|
|
// Should get rid of that but not now.
|
|
|
|
#ifndef ANDROID
|
2013-07-07 12:08:08 +00:00
|
|
|
case VIRTKEY_PAUSE:
|
2013-07-21 11:31:46 +00:00
|
|
|
if (g_Config.bNewUI)
|
|
|
|
screenManager()->push(new GamePauseScreen(gamePath_));
|
|
|
|
else
|
|
|
|
screenManager()->push(new PauseScreen());
|
2013-07-07 12:08:08 +00:00
|
|
|
break;
|
2013-07-08 15:46:20 +00:00
|
|
|
#endif
|
2013-07-07 23:25:15 +00:00
|
|
|
|
|
|
|
case VIRTKEY_AXIS_X_MIN:
|
|
|
|
case VIRTKEY_AXIS_X_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogX(CTRL_STICK_LEFT, VIRTKEY_AXIS_X_MIN, VIRTKEY_AXIS_X_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_Y_MIN:
|
|
|
|
case VIRTKEY_AXIS_Y_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogY(CTRL_STICK_LEFT, VIRTKEY_AXIS_Y_MIN, VIRTKEY_AXIS_Y_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MIN:
|
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogX(CTRL_STICK_RIGHT, VIRTKEY_AXIS_RIGHT_X_MIN, VIRTKEY_AXIS_RIGHT_X_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MIN:
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogY(CTRL_STICK_RIGHT, VIRTKEY_AXIS_RIGHT_Y_MIN, VIRTKEY_AXIS_RIGHT_Y_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
2013-07-07 08:42:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::onVKeyUp(int virtualKeyCode) {
|
|
|
|
switch (virtualKeyCode) {
|
2013-07-20 12:05:07 +00:00
|
|
|
case VIRTKEY_UNTHROTTLE:
|
|
|
|
PSP_CoreParameter().unthrottle = false;
|
|
|
|
break;
|
2013-07-20 19:11:35 +00:00
|
|
|
|
2013-07-07 23:25:15 +00:00
|
|
|
case VIRTKEY_AXIS_X_MIN:
|
|
|
|
case VIRTKEY_AXIS_X_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogX(CTRL_STICK_LEFT, VIRTKEY_AXIS_X_MIN, VIRTKEY_AXIS_X_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_Y_MIN:
|
|
|
|
case VIRTKEY_AXIS_Y_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogY(CTRL_STICK_LEFT, VIRTKEY_AXIS_Y_MIN, VIRTKEY_AXIS_Y_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MIN:
|
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogX(CTRL_STICK_RIGHT, VIRTKEY_AXIS_RIGHT_X_MIN, VIRTKEY_AXIS_RIGHT_X_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MIN:
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MAX:
|
2013-07-20 19:11:35 +00:00
|
|
|
setVKeyAnalogY(CTRL_STICK_RIGHT, VIRTKEY_AXIS_RIGHT_Y_MIN, VIRTKEY_AXIS_RIGHT_Y_MAX);
|
2013-07-07 23:25:15 +00:00
|
|
|
break;
|
2013-07-20 19:11:35 +00:00
|
|
|
|
2013-07-07 22:07:45 +00:00
|
|
|
default:
|
2013-07-07 08:42:39 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-20 19:11:35 +00:00
|
|
|
inline void EmuScreen::setVKeyAnalogX(int stick, int virtualKeyMin, int virtualKeyMax) {
|
|
|
|
float axis = 0.0f;
|
|
|
|
// The down events can repeat, so just trust the virtKeys array.
|
|
|
|
if (virtKeys[virtualKeyMin - VIRTKEY_FIRST])
|
|
|
|
axis -= 1.0f;
|
|
|
|
if (virtKeys[virtualKeyMax - VIRTKEY_FIRST])
|
|
|
|
axis += 1.0f;
|
|
|
|
__CtrlSetAnalogX(axis, stick);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void EmuScreen::setVKeyAnalogY(int stick, int virtualKeyMin, int virtualKeyMax) {
|
|
|
|
float axis = 0.0f;
|
|
|
|
if (virtKeys[virtualKeyMin - VIRTKEY_FIRST])
|
|
|
|
axis -= 1.0f;
|
|
|
|
if (virtKeys[virtualKeyMax - VIRTKEY_FIRST])
|
|
|
|
axis += 1.0f;
|
|
|
|
__CtrlSetAnalogY(axis, stick);
|
|
|
|
}
|
|
|
|
|
2013-07-06 17:08:59 +00:00
|
|
|
void EmuScreen::key(const KeyInput &key) {
|
2013-08-04 17:31:40 +00:00
|
|
|
if (key.keyCode == NKCODE_BACK)
|
2013-07-20 18:48:21 +00:00
|
|
|
pauseTrigger_ = true;
|
|
|
|
|
2013-07-06 17:08:59 +00:00
|
|
|
int result = KeyMap::KeyToPspButton(key.deviceId, key.keyCode);
|
|
|
|
if (result == KEYMAP_ERROR_UNKNOWN_KEY)
|
|
|
|
return;
|
|
|
|
|
2013-07-07 22:21:40 +00:00
|
|
|
pspKey(result, key.flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::pspKey(int pspKeyCode, int flags) {
|
|
|
|
if (pspKeyCode >= VIRTKEY_FIRST) {
|
|
|
|
int vk = pspKeyCode - VIRTKEY_FIRST;
|
|
|
|
if (flags & KEY_DOWN) {
|
2013-07-07 08:42:39 +00:00
|
|
|
virtKeys[vk] = true;
|
2013-07-07 22:21:40 +00:00
|
|
|
onVKeyDown(pspKeyCode);
|
2013-07-07 08:42:39 +00:00
|
|
|
}
|
2013-07-07 22:21:40 +00:00
|
|
|
if (flags & KEY_UP) {
|
2013-07-07 08:42:39 +00:00
|
|
|
virtKeys[vk] = false;
|
2013-07-07 22:21:40 +00:00
|
|
|
onVKeyUp(pspKeyCode);
|
2013-07-07 08:42:39 +00:00
|
|
|
}
|
2013-07-06 18:44:34 +00:00
|
|
|
} else {
|
2013-08-06 09:09:09 +00:00
|
|
|
// ILOG("pspKey %i %i", pspKeyCode, flags);
|
2013-07-07 22:21:40 +00:00
|
|
|
if (flags & KEY_DOWN)
|
|
|
|
__CtrlButtonDown(pspKeyCode);
|
|
|
|
if (flags & KEY_UP)
|
|
|
|
__CtrlButtonUp(pspKeyCode);
|
2013-07-06 18:44:34 +00:00
|
|
|
}
|
2013-07-06 17:08:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::axis(const AxisInput &axis) {
|
2013-07-31 16:07:45 +00:00
|
|
|
if (axis.value > 0) {
|
|
|
|
processAxis(axis, 1);
|
|
|
|
} else if (axis.value < 0) {
|
|
|
|
processAxis(axis, -1);
|
|
|
|
} else if (axis.value == 0) {
|
|
|
|
// Both directions! Prevents sticking for digital input devices that are axises (like HAT)
|
|
|
|
processAxis(axis, 1);
|
|
|
|
processAxis(axis, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuScreen::processAxis(const AxisInput &axis, int direction) {
|
|
|
|
int result = KeyMap::AxisToPspButton(axis.deviceId, axis.axisId, direction);
|
2013-07-07 22:21:40 +00:00
|
|
|
if (result == KEYMAP_ERROR_UNKNOWN_KEY)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (result) {
|
|
|
|
case VIRTKEY_AXIS_X_MIN:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogX(-fabs(axis.value), CTRL_STICK_LEFT);
|
2013-07-07 23:14:28 +00:00
|
|
|
break;
|
2013-07-07 22:21:40 +00:00
|
|
|
case VIRTKEY_AXIS_X_MAX:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogX(fabs(axis.value), CTRL_STICK_LEFT);
|
2013-07-07 22:21:40 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_Y_MIN:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogY(-fabs(axis.value), CTRL_STICK_LEFT);
|
2013-07-07 23:14:28 +00:00
|
|
|
break;
|
2013-07-07 22:21:40 +00:00
|
|
|
case VIRTKEY_AXIS_Y_MAX:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogY(fabs(axis.value), CTRL_STICK_LEFT);
|
2013-07-07 22:21:40 +00:00
|
|
|
break;
|
|
|
|
|
2013-07-07 23:16:51 +00:00
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MIN:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogX(-fabs(axis.value), CTRL_STICK_RIGHT);
|
2013-07-07 23:16:51 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_RIGHT_X_MAX:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogX(fabs(axis.value), CTRL_STICK_RIGHT);
|
2013-07-07 23:16:51 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MIN:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogY(-fabs(axis.value), CTRL_STICK_RIGHT);
|
2013-07-07 23:16:51 +00:00
|
|
|
break;
|
|
|
|
case VIRTKEY_AXIS_RIGHT_Y_MAX:
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogY(fabs(axis.value), CTRL_STICK_RIGHT);
|
2013-07-07 23:16:51 +00:00
|
|
|
break;
|
2013-07-07 22:21:40 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
if (axis.value >= AXIS_BIND_THRESHOLD || axis.value <= -AXIS_BIND_THRESHOLD) {
|
|
|
|
pspKey(result, KEY_DOWN);
|
2013-07-07 23:09:20 +00:00
|
|
|
|
|
|
|
// Also unpress the other direction.
|
|
|
|
result = KeyMap::AxisToPspButton(axis.deviceId, axis.axisId, axis.value >= 0 ? -1 : 1);
|
|
|
|
if (result != KEYMAP_ERROR_UNKNOWN_KEY)
|
|
|
|
pspKey(result, KEY_UP);
|
2013-07-07 22:21:40 +00:00
|
|
|
} else {
|
|
|
|
pspKey(result, KEY_UP);
|
|
|
|
}
|
2013-07-06 17:08:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Get rid of this.
|
|
|
|
static const struct { int from, to; } legacy_touch_mapping[12] = {
|
|
|
|
{PAD_BUTTON_A, CTRL_CROSS},
|
|
|
|
{PAD_BUTTON_B, CTRL_CIRCLE},
|
|
|
|
{PAD_BUTTON_X, CTRL_SQUARE},
|
|
|
|
{PAD_BUTTON_Y, CTRL_TRIANGLE},
|
|
|
|
{PAD_BUTTON_START, CTRL_START},
|
2013-07-07 22:07:45 +00:00
|
|
|
{PAD_BUTTON_SELECT, CTRL_SELECT},
|
2013-07-06 17:08:59 +00:00
|
|
|
{PAD_BUTTON_LBUMPER, CTRL_LTRIGGER},
|
|
|
|
{PAD_BUTTON_RBUMPER, CTRL_RTRIGGER},
|
|
|
|
{PAD_BUTTON_UP, CTRL_UP},
|
|
|
|
{PAD_BUTTON_RIGHT, CTRL_RIGHT},
|
|
|
|
{PAD_BUTTON_DOWN, CTRL_DOWN},
|
|
|
|
{PAD_BUTTON_LEFT, CTRL_LEFT},
|
|
|
|
};
|
|
|
|
|
2013-07-20 10:06:06 +00:00
|
|
|
void EmuScreen::CreateViews() {
|
2013-07-20 12:05:07 +00:00
|
|
|
root_ = CreatePadLayout(&pauseTrigger_);
|
2013-07-20 10:06:06 +00:00
|
|
|
}
|
|
|
|
|
2013-03-29 20:21:27 +00:00
|
|
|
void EmuScreen::update(InputState &input) {
|
2013-07-27 11:26:26 +00:00
|
|
|
if (!booted_)
|
|
|
|
bootGame(gamePath_);
|
|
|
|
|
2013-07-20 10:06:06 +00:00
|
|
|
UIScreen::update(input);
|
|
|
|
|
2013-07-16 20:50:53 +00:00
|
|
|
// Simply forcibily update to the current screen size every frame. Doesn't cost much.
|
|
|
|
PSP_CoreParameter().outputWidth = dp_xres;
|
|
|
|
PSP_CoreParameter().outputHeight = dp_yres;
|
|
|
|
PSP_CoreParameter().pixelWidth = pixel_xres;
|
|
|
|
PSP_CoreParameter().pixelHeight = pixel_yres;
|
|
|
|
|
2013-03-29 18:32:20 +00:00
|
|
|
globalUIState = UISTATE_INGAME;
|
2012-11-01 15:19:01 +00:00
|
|
|
if (errorMessage_.size()) {
|
2013-07-15 15:41:24 +00:00
|
|
|
screenManager()->push(new PromptScreen(
|
|
|
|
"Error loading file: " + errorMessage_, "OK", ""));
|
2012-11-01 15:19:01 +00:00
|
|
|
errorMessage_ = "";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (invalid_)
|
|
|
|
return;
|
2012-12-26 07:51:03 +00:00
|
|
|
|
2013-07-07 23:25:15 +00:00
|
|
|
float leftstick_x = 0.0f;
|
|
|
|
float leftstick_y = 0.0f;
|
|
|
|
float rightstick_x = 0.0f;
|
|
|
|
float rightstick_y = 0.0f;
|
2013-07-06 18:44:34 +00:00
|
|
|
|
|
|
|
// Virtual keys.
|
2013-07-07 02:41:28 +00:00
|
|
|
__CtrlSetRapidFire(virtKeys[VIRTKEY_RAPID_FIRE - VIRTKEY_FIRST]);
|
2013-07-06 18:44:34 +00:00
|
|
|
|
2013-04-28 20:07:02 +00:00
|
|
|
// Apply tilt to left stick
|
2013-03-10 12:21:36 +00:00
|
|
|
if (g_Config.bAccelerometerToAnalogHoriz) {
|
|
|
|
// TODO: Deadzone, etc.
|
2013-07-06 17:08:59 +00:00
|
|
|
leftstick_x += clamp1(curve1(input.acc.y) * 2.0f);
|
2013-07-07 23:25:15 +00:00
|
|
|
__CtrlSetAnalogX(clamp1(leftstick_x), CTRL_STICK_LEFT);
|
2013-03-10 12:21:36 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 00:36:23 +00:00
|
|
|
// Make sure fpsLimit starts at 0
|
2013-07-11 19:55:33 +00:00
|
|
|
if (PSP_CoreParameter().fpsLimit != 0 && PSP_CoreParameter().fpsLimit != 1) {
|
2013-05-10 00:36:23 +00:00
|
|
|
PSP_CoreParameter().fpsLimit = 0;
|
|
|
|
}
|
2013-06-17 18:28:22 +00:00
|
|
|
|
2013-07-20 12:05:07 +00:00
|
|
|
// This is here to support the iOS on screen back button.
|
|
|
|
if (pauseTrigger_) {
|
|
|
|
pauseTrigger_ = false;
|
2013-07-21 11:31:46 +00:00
|
|
|
if (g_Config.bNewUI) {
|
|
|
|
screenManager()->push(new GamePauseScreen(gamePath_));
|
|
|
|
} else {
|
|
|
|
screenManager()->push(new PauseScreen());
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-29 20:21:27 +00:00
|
|
|
void EmuScreen::render() {
|
2012-11-01 15:19:01 +00:00
|
|
|
if (invalid_)
|
|
|
|
return;
|
|
|
|
|
2012-11-25 16:21:23 +00:00
|
|
|
// Reapply the graphics state of the PSP
|
|
|
|
ReapplyGfxState();
|
|
|
|
|
2012-12-01 22:20:08 +00:00
|
|
|
// We just run the CPU until we get to vblank. This will quickly sync up pretty nicely.
|
2012-11-20 10:35:48 +00:00
|
|
|
// The actual number of cycles doesn't matter so much here as we will break due to CORE_NEXTFRAME, most of the time hopefully...
|
2013-02-18 22:22:41 +00:00
|
|
|
int blockTicks = usToCycles(1000000 / 10);
|
2012-11-19 13:16:37 +00:00
|
|
|
|
2012-11-19 13:51:47 +00:00
|
|
|
// Run until CORE_NEXTFRAME
|
|
|
|
while (coreState == CORE_RUNNING) {
|
2013-08-04 22:22:30 +00:00
|
|
|
PSP_RunLoopFor(blockTicks);
|
2012-11-19 13:51:47 +00:00
|
|
|
}
|
|
|
|
// Hopefully coreState is now CORE_NEXTFRAME
|
|
|
|
if (coreState == CORE_NEXTFRAME) {
|
|
|
|
// set back to running for the next frame
|
|
|
|
coreState = CORE_RUNNING;
|
2013-03-06 23:10:53 +00:00
|
|
|
} else if (coreState == CORE_POWERDOWN) {
|
|
|
|
ILOG("SELF-POWERDOWN!");
|
2013-06-10 20:06:51 +00:00
|
|
|
if (g_Config.bNewUI)
|
|
|
|
screenManager()->switchScreen(new MainScreen());
|
|
|
|
else
|
|
|
|
screenManager()->switchScreen(new MenuScreen());
|
2012-11-19 13:16:37 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-03-06 23:10:53 +00:00
|
|
|
if (invalid_)
|
|
|
|
return;
|
|
|
|
|
2013-07-21 20:15:18 +00:00
|
|
|
bool useBufferedRendering = g_Config.iRenderingMode != 0 ? 1 : 0;
|
|
|
|
if (useBufferedRendering)
|
2013-01-14 18:38:02 +00:00
|
|
|
fbo_unbind();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-11-20 10:35:48 +00:00
|
|
|
UIShader_Prepare();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-11-20 10:35:48 +00:00
|
|
|
uiTexture->Bind(0);
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-01-06 22:23:36 +00:00
|
|
|
glstate.viewport.set(0, 0, pixel_xres, pixel_yres);
|
|
|
|
glstate.viewport.restore();
|
2012-11-20 10:35:48 +00:00
|
|
|
|
2013-03-30 18:23:20 +00:00
|
|
|
ui_draw2d.Begin(UIShader_Get(), DBMODE_NORMAL);
|
2012-11-20 10:35:48 +00:00
|
|
|
|
2013-06-17 18:28:22 +00:00
|
|
|
float touchOpacity = g_Config.iTouchButtonOpacity / 100.0f;
|
2013-07-20 12:05:07 +00:00
|
|
|
|
2013-07-27 15:25:22 +00:00
|
|
|
if (root_) {
|
|
|
|
UI::LayoutViewHierarchy(*screenManager()->getUIContext(), root_);
|
|
|
|
root_->Draw(*screenManager()->getUIContext());
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-05-22 16:00:06 +00:00
|
|
|
if (!osm.IsEmpty()) {
|
|
|
|
osm.Draw(ui_draw2d);
|
|
|
|
}
|
|
|
|
|
2013-04-07 20:43:23 +00:00
|
|
|
if (g_Config.bShowDebugStats) {
|
2013-04-07 21:02:33 +00:00
|
|
|
char statbuf[4096] = {0};
|
2013-04-07 20:43:23 +00:00
|
|
|
__DisplayGetDebugStats(statbuf);
|
2013-04-07 21:02:33 +00:00
|
|
|
if (statbuf[4095])
|
|
|
|
ERROR_LOG(HLE, "Statbuf too big");
|
2013-04-07 20:43:23 +00:00
|
|
|
ui_draw2d.SetFontScale(.7f, .7f);
|
2013-04-08 18:59:45 +00:00
|
|
|
ui_draw2d.DrawText(UBUNTU24, statbuf, 11, 11, 0xc0000000);
|
2013-04-07 20:43:23 +00:00
|
|
|
ui_draw2d.DrawText(UBUNTU24, statbuf, 10, 10, 0xFFFFFFFF);
|
|
|
|
ui_draw2d.SetFontScale(1.0f, 1.0f);
|
|
|
|
}
|
|
|
|
|
2013-06-19 05:08:29 +00:00
|
|
|
if (g_Config.iShowFPSCounter) {
|
2013-04-07 20:43:23 +00:00
|
|
|
float vps, fps;
|
|
|
|
__DisplayGetFPS(&vps, &fps);
|
|
|
|
char fpsbuf[256];
|
2013-06-19 05:08:29 +00:00
|
|
|
switch (g_Config.iShowFPSCounter) {
|
2013-06-19 07:24:35 +00:00
|
|
|
case 1:
|
2013-07-27 21:21:01 +00:00
|
|
|
sprintf(fpsbuf, "Speed: %0.1f%%", vps / 60.0f * 100.0f); break;
|
2013-06-19 07:24:35 +00:00
|
|
|
case 2:
|
2013-06-19 05:08:29 +00:00
|
|
|
sprintf(fpsbuf, "FPS: %0.1f", fps); break;
|
2013-06-19 07:24:35 +00:00
|
|
|
case 3:
|
2013-07-27 21:21:01 +00:00
|
|
|
sprintf(fpsbuf, "Speed: %0.1f%%\nFPS: %0.1f", vps / 60.0f * 100.0f, fps); break;
|
2013-06-19 05:08:29 +00:00
|
|
|
}
|
2013-04-08 18:59:45 +00:00
|
|
|
ui_draw2d.DrawText(UBUNTU24, fpsbuf, dp_xres - 8, 12, 0xc0000000, ALIGN_TOPRIGHT);
|
2013-04-07 20:43:23 +00:00
|
|
|
ui_draw2d.DrawText(UBUNTU24, fpsbuf, dp_xres - 10, 10, 0xFF3fFF3f, ALIGN_TOPRIGHT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-20 10:35:48 +00:00
|
|
|
glsl_bind(UIShader_Get());
|
|
|
|
ui_draw2d.End();
|
2013-03-30 18:23:20 +00:00
|
|
|
ui_draw2d.Flush();
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// Tiled renderers like PowerVR should benefit greatly from this. However - seems I can't call it?
|
2012-11-26 03:25:14 +00:00
|
|
|
#if defined(USING_GLES2)
|
2013-04-11 19:04:02 +00:00
|
|
|
bool hasDiscard = gl_extensions.EXT_discard_framebuffer; // TODO
|
2012-11-01 15:19:01 +00:00
|
|
|
if (hasDiscard) {
|
2013-04-11 19:04:02 +00:00
|
|
|
//const GLenum targets[3] = { GL_COLOR_EXT, GL_DEPTH_EXT, GL_STENCIL_EXT };
|
|
|
|
//glDiscardFramebufferEXT(GL_FRAMEBUFFER, 3, targets);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2013-03-29 20:21:27 +00:00
|
|
|
void EmuScreen::deviceLost() {
|
2013-03-06 23:10:53 +00:00
|
|
|
ILOG("EmuScreen::deviceLost()");
|
2013-07-27 08:05:00 +00:00
|
|
|
if (gpu)
|
|
|
|
gpu->DeviceLost();
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|