-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit b8d63ec Author: Alexey Nurgaliev <[email protected]> Date: Sun Dec 29 21:59:11 2024 +0300 use threads for all cores commit 795697e Author: Alexey Nurgaliev <[email protected]> Date: Sun Dec 29 20:42:25 2024 +0300 video rotation option commit 024f2a9 Author: Alexey Nurgaliev <[email protected]> Date: Sun Dec 29 20:10:36 2024 +0300 psp controls commit 0a85bd2 Author: Alexey Nurgaliev <[email protected]> Date: Sun Dec 29 19:44:25 2024 +0300 EJS 4.2.0, ppsspp, fuse
- Loading branch information
Showing
19 changed files
with
127 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
/.idea/ | ||
/.vscode/ | ||
/*.iml | ||
/.scannerwork/ | ||
/app | ||
|
@@ -7,3 +8,4 @@ | |
/assets/node_modules/ | ||
/data/ | ||
/uploads/ | ||
/__debug* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{% extends "../controls_tab.twig" %} | ||
|
||
{% block controls_definitions %} | ||
{% set platform_id = platform_id %} | ||
{% set player = player %} | ||
{% set controller_img = "psp.png" %} | ||
{% set controller_img_alt = "PlayStation Portable" %} | ||
{% endblock %} | ||
|
||
{% block controls_keyboard %} | ||
{% include "control.twig" with input="keyboard" btn_id="a" btn_title="Circle" btn_value=controls.Keyboard.A %} | ||
{% include "control.twig" with input="keyboard" btn_id="b" btn_title="Cross" btn_value=controls.Keyboard.B %} | ||
{% include "control.twig" with input="keyboard" btn_id="x" btn_title="Triangle" btn_value=controls.Keyboard.X %} | ||
{% include "control.twig" with input="keyboard" btn_id="y" btn_title="Square" btn_value=controls.Keyboard.Y %} | ||
{% include "control.twig" with input="keyboard" btn_id="select" btn_title="Select" btn_value=controls.Keyboard.Select %} | ||
{% include "control.twig" with input="keyboard" btn_id="start" btn_title="Start" btn_value=controls.Keyboard.Start %} | ||
{% include "control.twig" with input="keyboard" btn_id="up" btn_title="Up" btn_value=controls.Keyboard.Up %} | ||
{% include "control.twig" with input="keyboard" btn_id="down" btn_title="Down" btn_value=controls.Keyboard.Down %} | ||
{% include "control.twig" with input="keyboard" btn_id="left" btn_title="Left" btn_value=controls.Keyboard.Left %} | ||
{% include "control.twig" with input="keyboard" btn_id="right" btn_title="Right" btn_value=controls.Keyboard.Right %} | ||
{% include "control.twig" with input="keyboard" btn_id="l" btn_title="L" btn_value=controls.Keyboard.L %} | ||
{% include "control.twig" with input="keyboard" btn_id="r" btn_title="R" btn_value=controls.Keyboard.R %} | ||
{% include "control.twig" with input="keyboard" btn_id="l-stick-up" btn_title="Stick Up" btn_value=controls.Keyboard.LStickUp %} | ||
{% include "control.twig" with input="keyboard" btn_id="l-stick-down" btn_title="Stick Down" btn_value=controls.Keyboard.LStickDown %} | ||
{% include "control.twig" with input="keyboard" btn_id="l-stick-left" btn_title="Stick Left" btn_value=controls.Keyboard.LStickLeft %} | ||
{% include "control.twig" with input="keyboard" btn_id="l-stick-right" btn_title="Stick Right" btn_value=controls.Keyboard.LStickRight %} | ||
{% include "common_keyboard_controls.twig" %} | ||
{% endblock %} | ||
|
||
{% block controls_gamepad %} | ||
{% include "control.twig" with input="gamepad" btn_id="a" btn_title="Circle" btn_value=controls.Gamepad.A %} | ||
{% include "control.twig" with input="gamepad" btn_id="b" btn_title="Cross" btn_value=controls.Gamepad.B %} | ||
{% include "control.twig" with input="gamepad" btn_id="x" btn_title="Triangle" btn_value=controls.Gamepad.X %} | ||
{% include "control.twig" with input="gamepad" btn_id="y" btn_title="Square" btn_value=controls.Gamepad.Y %} | ||
{% include "control.twig" with input="gamepad" btn_id="select" btn_title="Select" btn_value=controls.Gamepad.Select %} | ||
{% include "control.twig" with input="gamepad" btn_id="start" btn_title="Start" btn_value=controls.Gamepad.Start %} | ||
{% include "control.twig" with input="gamepad" btn_id="up" btn_title="Up" btn_value=controls.Gamepad.Up %} | ||
{% include "control.twig" with input="gamepad" btn_id="down" btn_title="Down" btn_value=controls.Gamepad.Down %} | ||
{% include "control.twig" with input="gamepad" btn_id="left" btn_title="Left" btn_value=controls.Gamepad.Left %} | ||
{% include "control.twig" with input="gamepad" btn_id="right" btn_title="Right" btn_value=controls.Gamepad.Right %} | ||
{% include "control.twig" with input="gamepad" btn_id="l" btn_title="L" btn_value=controls.Gamepad.L %} | ||
{% include "control.twig" with input="gamepad" btn_id="r" btn_title="R" btn_value=controls.Gamepad.R %} | ||
{% include "control.twig" with input="gamepad" btn_id="l-stick-up" btn_title="Stick Up" btn_value=controls.Gamepad.LStickUp %} | ||
{% include "control.twig" with input="gamepad" btn_id="l-stick-down" btn_title="Stick Down" btn_value=controls.Gamepad.LStickDown %} | ||
{% include "control.twig" with input="gamepad" btn_id="l-stick-left" btn_title="Stick Left" btn_value=controls.Gamepad.LStickLeft %} | ||
{% include "control.twig" with input="gamepad" btn_id="l-stick-right" btn_title="Stick Right" btn_value=controls.Gamepad.LStickRight %} | ||
{% include "common_gamepad_controls.twig" %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters