QTS3native-native-build 1.3.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qts3native_native_build-1.3.1/LICENCE +21 -0
- qts3native_native_build-1.3.1/PKG-INFO +93 -0
- qts3native_native_build-1.3.1/README.md +67 -0
- qts3native_native_build-1.3.1/pyproject.toml +42 -0
- qts3native_native_build-1.3.1/setup.cfg +4 -0
- qts3native_native_build-1.3.1/src/QTS3native/__init__.py +4 -0
- qts3native_native_build-1.3.1/src/QTS3native/keylistener.py +569 -0
- qts3native_native_build-1.3.1/src/QTS3native/log_gui.py +186 -0
- qts3native_native_build-1.3.1/src/QTS3native/qtElements.py +676 -0
- qts3native_native_build-1.3.1/src/QTS3native/rpcs3Hooks.py +383 -0
- qts3native_native_build-1.3.1/src/QTS3native_native_build.egg-info/PKG-INFO +93 -0
- qts3native_native_build-1.3.1/src/QTS3native_native_build.egg-info/SOURCES.txt +13 -0
- qts3native_native_build-1.3.1/src/QTS3native_native_build.egg-info/dependency_links.txt +1 -0
- qts3native_native_build-1.3.1/src/QTS3native_native_build.egg-info/requires.txt +6 -0
- qts3native_native_build-1.3.1/src/QTS3native_native_build.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 l-S4M-l
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: QTS3native-native-build
|
|
3
|
+
Version: 1.3.1
|
|
4
|
+
Summary: PyQt menu, key listener, and RPCS3 hook helpers for Skate 3 native tooling
|
|
5
|
+
Author: S4M
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/l-S4M-l/QTS3native
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/l-S4M-l/QTS3native/issues
|
|
9
|
+
Project-URL: Ko-fi, https://ko-fi.com/chillsam2
|
|
10
|
+
Project-URL: demo-project, https://github.com/l-S4M-l/QTS3native-demo-project
|
|
11
|
+
Keywords: rpcs3,skate3,pyqt,modding
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
License-File: LICENCE
|
|
19
|
+
Requires-Dist: PyQt5
|
|
20
|
+
Requires-Dist: keyboard
|
|
21
|
+
Requires-Dist: pymem
|
|
22
|
+
Requires-Dist: clipboard
|
|
23
|
+
Requires-Dist: PyGetWindow
|
|
24
|
+
Requires-Dist: pywin32
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# QTS3native
|
|
28
|
+
|
|
29
|
+
QTS3native is a Python library for building Skate 3 native-style menus and input-driven tooling on top of RPCS3.
|
|
30
|
+
|
|
31
|
+
It bundles three main parts:
|
|
32
|
+
|
|
33
|
+
- a PyQt-based menu and UI system
|
|
34
|
+
- an RPCS3 controller and memory hook layer
|
|
35
|
+
- a global keyboard listener for menu input and text entry
|
|
36
|
+
|
|
37
|
+
The library is aimed at Windows-based Skate 3 tooling where you want a native-feeling in-game style menu driven by controller input, keyboard input, or both.
|
|
38
|
+
|
|
39
|
+
## Features
|
|
40
|
+
|
|
41
|
+
- PyQt menu item system with buttons, toggles, sliders, option items, labels, and typing items
|
|
42
|
+
- controller polling thread for reading Skate 3 / RPCS3 input values
|
|
43
|
+
- bind handler for opening or triggering menu actions from controller input
|
|
44
|
+
- global keyboard listener for typing and keyboard-driven interactions
|
|
45
|
+
- internal Skate 3 menu text writer for rendering menu text into RPCS3 memory
|
|
46
|
+
- AOB scan helper for searching memory regions
|
|
47
|
+
|
|
48
|
+
## Modules
|
|
49
|
+
|
|
50
|
+
### `qtElements.py`
|
|
51
|
+
|
|
52
|
+
Contains the main menu and UI logic, including:
|
|
53
|
+
|
|
54
|
+
- `menu_controller`
|
|
55
|
+
- `sub_menu`
|
|
56
|
+
- menu item classes
|
|
57
|
+
- `bind_handler`
|
|
58
|
+
- controller-to-menu input routing
|
|
59
|
+
|
|
60
|
+
### `rpcs3Hooks.py`
|
|
61
|
+
|
|
62
|
+
Contains the RPCS3-side helpers, including:
|
|
63
|
+
|
|
64
|
+
- `Controller`
|
|
65
|
+
- `ControllerThread`
|
|
66
|
+
- `skate_3_internal_menu_controller`
|
|
67
|
+
|
|
68
|
+
This module reads controller state from RPCS3 memory, applies deadzones, and exposes the values to the menu system. It also writes menu text into the Skate 3 internal menu text area and includes an AOB scanning helper.
|
|
69
|
+
|
|
70
|
+
### `keylistener.py`
|
|
71
|
+
|
|
72
|
+
Contains the global keyboard listener used for keyboard input, text entry, and menu interaction.
|
|
73
|
+
|
|
74
|
+
## Requirements
|
|
75
|
+
|
|
76
|
+
- Python 3.10+
|
|
77
|
+
- Windows
|
|
78
|
+
- RPCS3 running
|
|
79
|
+
- Skate 3 running in RPCS3
|
|
80
|
+
- permission to read and write process memory
|
|
81
|
+
|
|
82
|
+
## Dependencies
|
|
83
|
+
|
|
84
|
+
- `PyQt5`
|
|
85
|
+
- `pymem`
|
|
86
|
+
- `clipboard`
|
|
87
|
+
- `keyboard`
|
|
88
|
+
|
|
89
|
+
## Install
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
pip install QTS3native
|
|
93
|
+
```
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# QTS3native
|
|
2
|
+
|
|
3
|
+
QTS3native is a Python library for building Skate 3 native-style menus and input-driven tooling on top of RPCS3.
|
|
4
|
+
|
|
5
|
+
It bundles three main parts:
|
|
6
|
+
|
|
7
|
+
- a PyQt-based menu and UI system
|
|
8
|
+
- an RPCS3 controller and memory hook layer
|
|
9
|
+
- a global keyboard listener for menu input and text entry
|
|
10
|
+
|
|
11
|
+
The library is aimed at Windows-based Skate 3 tooling where you want a native-feeling in-game style menu driven by controller input, keyboard input, or both.
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- PyQt menu item system with buttons, toggles, sliders, option items, labels, and typing items
|
|
16
|
+
- controller polling thread for reading Skate 3 / RPCS3 input values
|
|
17
|
+
- bind handler for opening or triggering menu actions from controller input
|
|
18
|
+
- global keyboard listener for typing and keyboard-driven interactions
|
|
19
|
+
- internal Skate 3 menu text writer for rendering menu text into RPCS3 memory
|
|
20
|
+
- AOB scan helper for searching memory regions
|
|
21
|
+
|
|
22
|
+
## Modules
|
|
23
|
+
|
|
24
|
+
### `qtElements.py`
|
|
25
|
+
|
|
26
|
+
Contains the main menu and UI logic, including:
|
|
27
|
+
|
|
28
|
+
- `menu_controller`
|
|
29
|
+
- `sub_menu`
|
|
30
|
+
- menu item classes
|
|
31
|
+
- `bind_handler`
|
|
32
|
+
- controller-to-menu input routing
|
|
33
|
+
|
|
34
|
+
### `rpcs3Hooks.py`
|
|
35
|
+
|
|
36
|
+
Contains the RPCS3-side helpers, including:
|
|
37
|
+
|
|
38
|
+
- `Controller`
|
|
39
|
+
- `ControllerThread`
|
|
40
|
+
- `skate_3_internal_menu_controller`
|
|
41
|
+
|
|
42
|
+
This module reads controller state from RPCS3 memory, applies deadzones, and exposes the values to the menu system. It also writes menu text into the Skate 3 internal menu text area and includes an AOB scanning helper.
|
|
43
|
+
|
|
44
|
+
### `keylistener.py`
|
|
45
|
+
|
|
46
|
+
Contains the global keyboard listener used for keyboard input, text entry, and menu interaction.
|
|
47
|
+
|
|
48
|
+
## Requirements
|
|
49
|
+
|
|
50
|
+
- Python 3.10+
|
|
51
|
+
- Windows
|
|
52
|
+
- RPCS3 running
|
|
53
|
+
- Skate 3 running in RPCS3
|
|
54
|
+
- permission to read and write process memory
|
|
55
|
+
|
|
56
|
+
## Dependencies
|
|
57
|
+
|
|
58
|
+
- `PyQt5`
|
|
59
|
+
- `pymem`
|
|
60
|
+
- `clipboard`
|
|
61
|
+
- `keyboard`
|
|
62
|
+
|
|
63
|
+
## Install
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
pip install QTS3native
|
|
67
|
+
```
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "QTS3native-native-build"
|
|
7
|
+
version = "1.3.1"
|
|
8
|
+
description = "PyQt menu, key listener, and RPCS3 hook helpers for Skate 3 native tooling"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "S4M" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["rpcs3", "skate3", "pyqt", "modding"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3 :: Only",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Operating System :: Microsoft :: Windows",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
dependencies = [
|
|
24
|
+
"PyQt5",
|
|
25
|
+
"keyboard",
|
|
26
|
+
"pymem",
|
|
27
|
+
"clipboard",
|
|
28
|
+
"PyGetWindow",
|
|
29
|
+
"pywin32"
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[tool.setuptools]
|
|
33
|
+
package-dir = {"" = "src"}
|
|
34
|
+
|
|
35
|
+
[tool.setuptools.packages.find]
|
|
36
|
+
where = ["src"]
|
|
37
|
+
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://github.com/l-S4M-l/QTS3native"
|
|
40
|
+
"Bug Tracker" = "https://github.com/l-S4M-l/QTS3native/issues"
|
|
41
|
+
Ko-fi = "https://ko-fi.com/chillsam2"
|
|
42
|
+
demo-project = "https://github.com/l-S4M-l/QTS3native-demo-project"
|