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/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-10-01 07:36:43 +00:00
|
|
|
#include "Common/Input/InputState.h"
|
2020-10-04 21:24:14 +00:00
|
|
|
#include "Common/Render/DrawBuffer.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2020-10-04 18:48:47 +00:00
|
|
|
#include "Common/UI/View.h"
|
|
|
|
#include "Common/UI/ViewGroup.h"
|
2018-06-17 06:00:21 +00:00
|
|
|
#include "Core/CoreParameter.h"
|
2021-03-04 09:37:35 +00:00
|
|
|
#include "UI/EmuScreen.h"
|
2013-07-20 10:06:06 +00:00
|
|
|
|
2015-12-20 20:40:47 +00:00
|
|
|
class GamepadView : public UI::View {
|
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
GamepadView(const char *key, UI::LayoutParams *layoutParams);
|
2015-12-20 20:40:47 +00:00
|
|
|
|
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
bool Key(const KeyInput &input) override {
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-15 05:01:18 +00:00
|
|
|
void Update() override;
|
2021-02-22 00:38:02 +00:00
|
|
|
std::string DescribeText() const override;
|
2015-12-20 20:40:47 +00:00
|
|
|
|
|
|
|
protected:
|
2017-06-03 15:41:56 +00:00
|
|
|
virtual float GetButtonOpacity();
|
2015-12-20 20:40:47 +00:00
|
|
|
|
2021-02-22 00:38:02 +00:00
|
|
|
const char *key_;
|
2020-08-15 22:13:19 +00:00
|
|
|
double lastFrameTime_;
|
|
|
|
float secondsWithoutTouch_ = 0.0;
|
2015-12-20 20:40:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class MultiTouchButton : public GamepadView {
|
2013-07-20 10:06:06 +00:00
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
MultiTouchButton(const char *key, ImageID bgImg, ImageID bgDownImg, ImageID img, float scale, UI::LayoutParams *layoutParams)
|
|
|
|
: GamepadView(key, layoutParams), scale_(scale), bgImg_(bgImg), bgDownImg_(bgDownImg), img_(img) {
|
2013-07-20 10:06:06 +00:00
|
|
|
}
|
|
|
|
|
2015-12-20 20:40:47 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
void Draw(UIContext &dc) override;
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override;
|
2013-07-20 18:48:21 +00:00
|
|
|
virtual bool IsDown() { return pointerDownMask_ != 0; }
|
2013-07-20 12:05:07 +00:00
|
|
|
// chainable
|
|
|
|
MultiTouchButton *FlipImageH(bool flip) { flipImageH_ = flip; return this; }
|
2018-06-17 06:00:21 +00:00
|
|
|
MultiTouchButton *SetAngle(float angle) { angle_ = angle; bgAngle_ = angle; return this; }
|
|
|
|
MultiTouchButton *SetAngle(float angle, float bgAngle) { angle_ = angle; bgAngle_ = bgAngle; return this; }
|
2013-07-20 10:06:06 +00:00
|
|
|
|
|
|
|
protected:
|
2018-06-17 06:00:21 +00:00
|
|
|
uint32_t pointerDownMask_ = 0;
|
2013-10-09 20:15:56 +00:00
|
|
|
float scale_;
|
2013-07-20 10:06:06 +00:00
|
|
|
|
|
|
|
private:
|
2020-02-29 20:51:14 +00:00
|
|
|
ImageID bgImg_;
|
|
|
|
ImageID bgDownImg_;
|
|
|
|
ImageID img_;
|
2018-06-17 06:00:21 +00:00
|
|
|
float bgAngle_ = 0.0f;
|
|
|
|
float angle_ = 0.0f;
|
|
|
|
bool flipImageH_ = false;
|
2013-07-20 10:06:06 +00:00
|
|
|
};
|
|
|
|
|
2013-07-20 12:05:07 +00:00
|
|
|
class BoolButton : public MultiTouchButton {
|
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
BoolButton(bool *value, const char *key, ImageID bgImg, ImageID bgDownImg, ImageID img, float scale, UI::LayoutParams *layoutParams)
|
|
|
|
: MultiTouchButton(key, bgImg, bgDownImg, img, scale, layoutParams), value_(value) {
|
2013-07-20 12:05:07 +00:00
|
|
|
|
|
|
|
}
|
2015-12-20 20:40:47 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
bool IsDown() override { return *value_; }
|
2013-07-20 12:05:07 +00:00
|
|
|
|
2018-06-23 18:06:56 +00:00
|
|
|
UI::Event OnChange;
|
|
|
|
|
2013-07-20 12:05:07 +00:00
|
|
|
private:
|
|
|
|
bool *value_;
|
|
|
|
};
|
|
|
|
|
2013-07-20 10:06:06 +00:00
|
|
|
class PSPButton : public MultiTouchButton {
|
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
PSPButton(int pspButtonBit, const char *key, ImageID bgImg, ImageID bgDownImg, ImageID img, float scale, UI::LayoutParams *layoutParams)
|
|
|
|
: MultiTouchButton(key, bgImg, bgDownImg, img, scale, layoutParams), pspButtonBit_(pspButtonBit) {
|
2013-07-20 10:06:06 +00:00
|
|
|
}
|
2015-02-02 23:11:51 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
2015-12-20 20:40:47 +00:00
|
|
|
bool IsDown() override;
|
2013-07-20 10:06:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int pspButtonBit_;
|
|
|
|
};
|
|
|
|
|
2015-12-20 20:40:47 +00:00
|
|
|
class PSPDpad : public GamepadView {
|
2013-07-20 10:06:06 +00:00
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
PSPDpad(ImageID arrowIndex, const char *key, ImageID arrowDownIndex, ImageID overlayIndex, float scale, float spacing, UI::LayoutParams *layoutParams);
|
2013-07-20 10:06:06 +00:00
|
|
|
|
2015-02-02 23:11:51 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
void Draw(UIContext &dc) override;
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override;
|
2013-07-20 10:06:06 +00:00
|
|
|
|
|
|
|
private:
|
2013-07-20 10:54:33 +00:00
|
|
|
void ProcessTouch(float x, float y, bool down);
|
2020-02-29 20:51:14 +00:00
|
|
|
ImageID arrowIndex_;
|
|
|
|
ImageID arrowDownIndex_;
|
|
|
|
ImageID overlayIndex_;
|
2013-07-20 10:54:33 +00:00
|
|
|
|
2013-07-20 18:48:21 +00:00
|
|
|
float scale_;
|
2013-12-02 14:15:19 +00:00
|
|
|
float spacing_;
|
2013-07-20 18:48:21 +00:00
|
|
|
|
2013-07-20 10:54:33 +00:00
|
|
|
int dragPointerId_;
|
2013-07-20 10:06:06 +00:00
|
|
|
int down_;
|
|
|
|
};
|
|
|
|
|
2015-12-20 20:40:47 +00:00
|
|
|
class PSPStick : public GamepadView {
|
2013-07-20 10:06:06 +00:00
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
PSPStick(ImageID bgImg, const char *key, ImageID stickImg, ImageID stickDownImg, int stick, float scale, UI::LayoutParams *layoutParams);
|
2013-07-20 12:05:07 +00:00
|
|
|
|
2015-02-02 23:11:51 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
void Draw(UIContext &dc) override;
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override;
|
2013-07-20 10:06:06 +00:00
|
|
|
|
2019-11-13 17:55:18 +00:00
|
|
|
protected:
|
2013-07-20 12:05:07 +00:00
|
|
|
int dragPointerId_;
|
2020-02-29 20:51:14 +00:00
|
|
|
ImageID bgImg_;
|
|
|
|
ImageID stickImageIndex_;
|
|
|
|
ImageID stickDownImg_;
|
|
|
|
|
2013-07-20 10:06:06 +00:00
|
|
|
int stick_;
|
2013-07-20 12:05:07 +00:00
|
|
|
float stick_size_;
|
2013-07-20 10:06:06 +00:00
|
|
|
float scale_;
|
2015-03-05 09:58:25 +00:00
|
|
|
|
|
|
|
float centerX_;
|
|
|
|
float centerY_;
|
2019-11-13 17:55:18 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void ProcessTouch(float x, float y, bool down);
|
|
|
|
};
|
|
|
|
|
|
|
|
class PSPCustomStick : public PSPStick {
|
|
|
|
public:
|
2021-02-22 00:38:02 +00:00
|
|
|
PSPCustomStick(ImageID bgImg, const char *key, ImageID stickImg, ImageID stickDownImg, float scale, UI::LayoutParams *layoutParams);
|
2019-11-13 17:55:18 +00:00
|
|
|
|
|
|
|
void Touch(const TouchInput &input) override;
|
|
|
|
void Draw(UIContext &dc) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ProcessTouch(float x, float y, bool down);
|
|
|
|
|
2020-03-05 17:29:35 +00:00
|
|
|
float posX_ = 0.0f;
|
|
|
|
float posY_ = 0.0f;
|
2013-07-20 10:06:06 +00:00
|
|
|
};
|
|
|
|
|
2013-10-09 20:15:56 +00:00
|
|
|
//initializes the layout from Config. if a default layout does not exist,
|
|
|
|
//it sets up default values
|
2014-02-10 14:55:21 +00:00
|
|
|
void InitPadLayout(float xres, float yres, float globalScale = 1.15f);
|
2021-03-04 09:37:35 +00:00
|
|
|
UI::ViewGroup *CreatePadLayout(float xres, float yres, bool *pause, ControlMapper* controllMapper);
|
2013-12-02 14:15:19 +00:00
|
|
|
|
|
|
|
const int D_pad_Radius = 50;
|
|
|
|
const int baseActionButtonSpacing = 60;
|
|
|
|
|
2015-06-28 05:34:05 +00:00
|
|
|
class ComboKey : public MultiTouchButton {
|
|
|
|
public:
|
2021-08-04 07:18:23 +00:00
|
|
|
ComboKey(uint64_t pspButtonBit, const char *key, bool toggle, ControlMapper* controllMapper, ImageID bgImg, ImageID bgDownImg, ImageID img, float scale, bool invertedContextDimension, UI::LayoutParams *layoutParams)
|
|
|
|
: MultiTouchButton(key, bgImg, bgDownImg, img, scale, layoutParams), pspButtonBit_(pspButtonBit), toggle_(toggle), controllMapper_(controllMapper), on_(false), invertedContextDimension_(invertedContextDimension) {
|
2015-06-28 05:34:05 +00:00
|
|
|
}
|
2015-12-20 20:40:47 +00:00
|
|
|
void Touch(const TouchInput &input) override;
|
2021-03-04 09:37:35 +00:00
|
|
|
bool IsDown() override;
|
2021-08-04 07:18:23 +00:00
|
|
|
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override;
|
2015-06-28 05:34:05 +00:00
|
|
|
private:
|
2021-03-04 09:37:35 +00:00
|
|
|
uint64_t pspButtonBit_;
|
2020-02-12 14:48:49 +00:00
|
|
|
bool toggle_;
|
2021-03-04 09:37:35 +00:00
|
|
|
ControlMapper* controllMapper_;
|
|
|
|
bool on_;
|
2021-08-04 07:18:23 +00:00
|
|
|
bool invertedContextDimension_; // Swap width and height
|
2021-03-04 09:37:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Just edit this to add new image, shape or button function
|
|
|
|
namespace CustomKey {
|
|
|
|
// Image list
|
|
|
|
struct keyImage {
|
|
|
|
const char* n; // UI name
|
|
|
|
ImageID i; // ImageID
|
|
|
|
float r; // Rotation angle in degree
|
|
|
|
};
|
|
|
|
static const keyImage comboKeyImages[] = {
|
|
|
|
{ "1", ImageID("I_1"), 0.0f },
|
|
|
|
{ "2", ImageID("I_2"), 0.0f },
|
|
|
|
{ "3", ImageID("I_3"), 0.0f },
|
|
|
|
{ "4", ImageID("I_4"), 0.0f },
|
|
|
|
{ "5", ImageID("I_5"), 0.0f },
|
|
|
|
{ "6", ImageID("I_6"), 0.0f },
|
|
|
|
{ "A", ImageID("I_A"), 0.0f },
|
|
|
|
{ "B", ImageID("I_B"), 0.0f },
|
|
|
|
{ "C", ImageID("I_C"), 0.0f },
|
|
|
|
{ "D", ImageID("I_D"), 0.0f },
|
|
|
|
{ "E", ImageID("I_E"), 0.0f },
|
|
|
|
{ "F", ImageID("I_F"), 0.0f },
|
|
|
|
{ "Circle", ImageID("I_CIRCLE"), 0.0f },
|
|
|
|
{ "Cross", ImageID("I_CROSS"), 0.0f },
|
|
|
|
{ "Square", ImageID("I_SQUARE"), 0.0f },
|
|
|
|
{ "Triangle", ImageID("I_TRIANGLE"), 0.0f },
|
|
|
|
{ "L", ImageID("I_L"), 0.0f },
|
|
|
|
{ "R", ImageID("I_R"), 0.0f },
|
|
|
|
{ "Start", ImageID("I_START"), 0.0f },
|
|
|
|
{ "Select", ImageID("I_SELECT"), 0.0f },
|
|
|
|
{ "Plus", ImageID("I_CROSS"), 45.0f },
|
|
|
|
{ "Rhombus", ImageID("I_SQUARE"), 45.0f },
|
|
|
|
{ "Down Triangle", ImageID("I_TRIANGLE"), 180.0f },
|
|
|
|
{ "Arrow up", ImageID("I_ARROW"), 90.0f},
|
|
|
|
{ "Arrow down", ImageID("I_ARROW"), 270.0f},
|
|
|
|
{ "Arrow left", ImageID("I_ARROW"), 0.0f},
|
|
|
|
{ "Arrow right", ImageID("I_ARROW"), 180.0f},
|
|
|
|
{ "Gear", ImageID("I_GEAR"), 0.0f},
|
|
|
|
};
|
|
|
|
|
|
|
|
// Shape list
|
|
|
|
struct keyShape {
|
|
|
|
const char* n; // UI name
|
|
|
|
ImageID i; // ImageID
|
|
|
|
ImageID l; // ImageID line version
|
|
|
|
float r; // Rotation angle in dregree
|
|
|
|
bool f; // Flip Horizontally
|
2021-08-04 07:18:23 +00:00
|
|
|
bool d; // Invert height and width for context dimension (for example for 90 degree rot)
|
2021-03-04 09:37:35 +00:00
|
|
|
};
|
|
|
|
static const keyShape comboKeyShapes[] = {
|
2021-08-04 07:18:23 +00:00
|
|
|
{ "Circle", ImageID("I_ROUND"), ImageID("I_ROUND_LINE"), 0.0f, false, false },
|
|
|
|
{ "Rectangle", ImageID("I_RECT"), ImageID("I_RECT_LINE"), 0.0f, false, false },
|
|
|
|
{ "Vertical Rectangle", ImageID("I_RECT"), ImageID("I_RECT_LINE"), 90.0f, false, true },
|
|
|
|
{ "L button", ImageID("I_SHOULDER"), ImageID("I_SHOULDER_LINE"), 0.0f, false, false },
|
|
|
|
{ "R button", ImageID("I_SHOULDER"), ImageID("I_SHOULDER_LINE"), 0.0f, true, false },
|
|
|
|
{ "Arrow up", ImageID("I_DIR"), ImageID("I_DIR_LINE"), 270.0f, false, true },
|
|
|
|
{ "Arrow down", ImageID("I_DIR"), ImageID("I_DIR_LINE"), 90.0f, false, true },
|
|
|
|
{ "Arrow left", ImageID("I_DIR"), ImageID("I_DIR_LINE"), 180.0f, false, false },
|
|
|
|
{ "Arrow right", ImageID("I_DIR"), ImageID("I_DIR_LINE"), 0.0f, false, false },
|
2021-03-04 09:37:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Button list
|
|
|
|
struct keyList {
|
|
|
|
const char* n; // UI name
|
|
|
|
ImageID i; // UI ImageID
|
|
|
|
uint32_t c; // Key code
|
|
|
|
};
|
|
|
|
static const keyList comboKeyList[] = {
|
|
|
|
{ "Square", ImageID("I_SQUARE"), CTRL_SQUARE },
|
|
|
|
{ "Triangle", ImageID("I_TRIANGLE"), CTRL_TRIANGLE },
|
|
|
|
{ "Circle", ImageID("I_CIRCLE"), CTRL_CIRCLE },
|
|
|
|
{ "Cross", ImageID("I_CROSS"), CTRL_CROSS },
|
|
|
|
{ "Up", ImageID::invalid(), CTRL_UP },
|
|
|
|
{ "Down", ImageID::invalid(), CTRL_DOWN },
|
|
|
|
{ "Left", ImageID::invalid(), CTRL_LEFT },
|
|
|
|
{ "Right", ImageID::invalid(), CTRL_RIGHT },
|
|
|
|
{ "Start", ImageID("I_START"), CTRL_START },
|
|
|
|
{ "Select", ImageID("I_SELECT"), CTRL_SELECT },
|
|
|
|
{ "L", ImageID("I_L"), CTRL_LTRIGGER },
|
|
|
|
{ "R", ImageID("I_R"), CTRL_RTRIGGER },
|
|
|
|
{ "RapidFire", ImageID::invalid(), VIRTKEY_RAPID_FIRE },
|
2021-08-17 14:48:47 +00:00
|
|
|
{ "FastForward", ImageID::invalid(), VIRTKEY_FASTFORWARD },
|
2021-03-04 09:37:35 +00:00
|
|
|
{ "SpeedToggle", ImageID::invalid(), VIRTKEY_SPEED_TOGGLE },
|
|
|
|
{ "Rewind", ImageID::invalid(), VIRTKEY_REWIND },
|
|
|
|
{ "Save State", ImageID::invalid(), VIRTKEY_SAVE_STATE },
|
|
|
|
{ "Load State", ImageID::invalid(), VIRTKEY_LOAD_STATE },
|
|
|
|
{ "Next Slot", ImageID::invalid(), VIRTKEY_NEXT_SLOT },
|
|
|
|
{ "Toggle Fullscreen", ImageID::invalid(), VIRTKEY_TOGGLE_FULLSCREEN },
|
|
|
|
{ "Alt speed 1", ImageID::invalid(), VIRTKEY_SPEED_CUSTOM1 },
|
|
|
|
{ "Alt speed 2", ImageID::invalid(), VIRTKEY_SPEED_CUSTOM2 },
|
|
|
|
{ "Texture Dumping", ImageID::invalid(), VIRTKEY_TEXTURE_DUMP },
|
|
|
|
{ "Texture Replacement", ImageID::invalid(), VIRTKEY_TEXTURE_REPLACE },
|
|
|
|
{ "Screenshot", ImageID::invalid(), VIRTKEY_SCREENSHOT },
|
|
|
|
{ "Mute toggle", ImageID::invalid(), VIRTKEY_MUTE_TOGGLE },
|
|
|
|
{ "OpenChat", ImageID::invalid(), VIRTKEY_OPENCHAT },
|
|
|
|
{ "Auto Analog Rotation (CW)", ImageID::invalid(), VIRTKEY_ANALOG_ROTATE_CW },
|
|
|
|
{ "Auto Analog Rotation (CCW)", ImageID::invalid(), VIRTKEY_ANALOG_ROTATE_CCW },
|
|
|
|
{ "Pause", ImageID::invalid(), VIRTKEY_PAUSE },
|
|
|
|
{ "DevMenu", ImageID::invalid(), VIRTKEY_DEVMENU },
|
|
|
|
#ifndef MOBILE_DEVICE
|
|
|
|
{ "Record", ImageID::invalid(), VIRTKEY_RECORD },
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
static_assert(ARRAY_SIZE(comboKeyList) <= 64, "Too many key for a uint64_t bit mask");
|
2015-06-28 05:34:05 +00:00
|
|
|
};
|