ppsspp/UI/GamepadEmu.cpp

132 lines
4.5 KiB
C++
Raw Normal View History

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
// 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/.
#include "GamepadEmu.h"
#include "ui/virtual_input.h"
#include "../../Core/Config.h"
#include "ui_atlas.h"
TouchButton buttonX(&ui_atlas, I_ROUND, I_CROSS, PAD_BUTTON_A);
2012-12-28 12:49:36 +00:00
TouchButton buttonO(&ui_atlas, I_ROUND, I_CIRCLE, PAD_BUTTON_B);
TouchButton buttonSq(&ui_atlas, I_ROUND, I_SQUARE, PAD_BUTTON_X);
2012-11-01 15:19:01 +00:00
TouchButton buttonTri(&ui_atlas, I_ROUND, I_TRIANGLE, PAD_BUTTON_Y);
TouchButton buttonSelect(&ui_atlas, I_RECT, I_SELECT, PAD_BUTTON_SELECT);
TouchButton buttonStart(&ui_atlas, I_RECT, I_START, PAD_BUTTON_START);
TouchButton buttonLShoulder(&ui_atlas, I_SHOULDER, I_L, PAD_BUTTON_LBUMPER);
TouchButton buttonRShoulder(&ui_atlas, I_SHOULDER, I_R, PAD_BUTTON_RBUMPER, 0, true);
2013-04-11 11:28:12 +00:00
TouchButton buttonTurbo(&ui_atlas, I_RECT, I_ARROW, PAD_BUTTON_LEFT_THUMB, 180);
TouchCrossPad crossPad(&ui_atlas, I_DIR, I_ARROW);
#if defined(__SYMBIAN32__) || defined(IOS) || defined(MEEGO_EDITION_HARMATTAN)
TouchButton buttonPause(&ui_atlas, I_RECT, I_ARROW, PAD_BUTTON_BACK, 90);
#endif
2012-11-01 15:19:01 +00:00
TouchStick leftStick(&ui_atlas, I_STICKBG, I_STICK, 0);
void LayoutGamepad(int w, int h)
{
2013-03-30 15:58:55 +00:00
float controlScale = g_Config.bLargeControls ? 1.6 : 1.15;
2012-11-01 15:19:01 +00:00
2013-01-26 16:26:07 +00:00
const int button_spacing = 50 * controlScale;
const int arrow_spacing = 40 * controlScale;
2012-11-01 15:19:01 +00:00
2013-01-26 16:26:07 +00:00
const int circleX = w - 40 * controlScale;
const int circleY = h - 120 * controlScale;
const int leftX = 40 * controlScale;
int leftY = h - 120 * controlScale;
2012-11-01 15:19:01 +00:00
if (g_Config.bShowAnalogStick) {
2013-01-26 16:26:07 +00:00
leftY = h - 250 * controlScale;
2012-11-01 15:19:01 +00:00
}
const int stickX = leftX + arrow_spacing;
2013-01-26 16:26:07 +00:00
const int stickY = h - 80 * controlScale;
2012-11-01 15:19:01 +00:00
const int halfW = w / 2;
2013-01-26 16:26:07 +00:00
buttonO.setPos(circleX, circleY, controlScale);
buttonX.setPos(circleX - button_spacing, circleY + button_spacing, controlScale);
buttonTri.setPos(circleX - button_spacing, circleY - button_spacing, controlScale);
buttonSq.setPos(circleX - button_spacing * 2, circleY, controlScale);
2012-11-01 15:19:01 +00:00
crossPad.setPos(leftX + arrow_spacing, leftY, 40, controlScale);
2012-11-01 15:19:01 +00:00
buttonTurbo.setPos(halfW - button_spacing * 2, h - 20 * controlScale, controlScale);
buttonSelect.setPos(halfW , h - 20 * controlScale, controlScale);
buttonStart.setPos(halfW + button_spacing * 2 , h - 20 * controlScale, controlScale);
2013-04-11 11:28:12 +00:00
buttonLShoulder.setPos(button_spacing + 10 * controlScale, 30 * controlScale, controlScale);
buttonRShoulder.setPos(w - button_spacing - 10 * controlScale, 30 * controlScale, controlScale);
2012-11-01 15:19:01 +00:00
#if defined(__SYMBIAN32__) || defined(IOS) || defined(MEEGO_EDITION_HARMATTAN)
buttonPause.setPos(halfW, 15 * controlScale, controlScale);
#endif
2013-01-26 16:26:07 +00:00
leftStick.setPos(stickX, stickY, controlScale);
2012-11-01 15:19:01 +00:00
}
void UpdateGamepad(InputState &input_state)
{
2013-01-26 16:26:07 +00:00
LayoutGamepad(dp_xres, dp_yres);
2012-11-01 15:19:01 +00:00
buttonO.update(input_state);
buttonX.update(input_state);
buttonTri.update(input_state);
buttonSq.update(input_state);
crossPad.update(input_state);
2012-11-01 15:19:01 +00:00
buttonSelect.update(input_state);
buttonStart.update(input_state);
buttonLShoulder.update(input_state);
buttonRShoulder.update(input_state);
2013-04-10 13:14:25 +00:00
buttonTurbo.update(input_state);
2012-11-01 15:19:01 +00:00
#if defined(__SYMBIAN32__) || defined(IOS) || defined(MEEGO_EDITION_HARMATTAN)
buttonPause.update(input_state);
#endif
2012-11-01 15:19:01 +00:00
if (g_Config.bShowAnalogStick)
leftStick.update(input_state);
}
void DrawGamepad(DrawBuffer &db)
{
uint32_t color = 0xa0c0b080;
uint32_t colorOverlay = 0xa0FFFFFF;
buttonO.draw(db, color, colorOverlay);
buttonX.draw(db, color, colorOverlay);
buttonTri.draw(db, color, colorOverlay);
buttonSq.draw(db, color, colorOverlay);
crossPad.draw(db, color, colorOverlay);
2012-11-01 15:19:01 +00:00
buttonSelect.draw(db, color, colorOverlay);
buttonStart.draw(db, color, colorOverlay);
buttonLShoulder.draw(db, color, colorOverlay);
buttonRShoulder.draw(db, color, colorOverlay);
2013-04-10 13:14:25 +00:00
buttonTurbo.draw(db, color, colorOverlay);
2012-11-01 15:19:01 +00:00
#if defined(__SYMBIAN32__) || defined(IOS) || defined(MEEGO_EDITION_HARMATTAN)
buttonPause.draw(db, color, colorOverlay);
#endif
2012-11-01 15:19:01 +00:00
if (g_Config.bShowAnalogStick)
leftStick.draw(db, color);
}