generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
196 lines (170 loc) · 6.82 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import os
# The decky plugin module is located at decky-loader/plugin
# For easy intellisense checkout the decky-loader code one directory up
# or add the `decky-loader/plugin` path to `python.analysis.extraPaths` in `.vscode/settings.json`
import decky
import update
import gpd_setting
from config import (
logging,
IS_RGB_SUPPORTED,
IS_RUMBLE_SUPPORTED,
IS_STICK_SUPPORTED,
CONFIG_KEY,
)
import utils
from settings import SettingsManager
class Plugin:
async def _main(self):
self.settings = SettingsManager(
name="config", settings_directory=decky.DECKY_PLUGIN_SETTINGS_DIR
)
async def get_settings(self):
return self.settings.getSetting(CONFIG_KEY)
async def set_settings(self, settings):
self.settings.setSetting(CONFIG_KEY, settings)
logging.info(f"save Settings: {settings}")
return True
async def get_rumble(self):
try:
return int(gpd_setting.get_setting("rumble"))
except Exception as e:
logging.error(f"Error getting rumble: {e}", exc_info=True)
return 1
async def set_rumble(self, mode: int):
try:
return gpd_setting.set_setting("rumble", mode)
except Exception as e:
logging.error(f"Error setting rumble: {e}")
return False
async def get_config_num(self, option):
try:
result = gpd_setting.get_setting(option)
val = int(result) if result is not None else 0
logging.debug(f"Getting {option}: {val}")
return val
except Exception as e:
logging.error(f"Error getting {option}: {e}", exc_info=True)
return 0
async def get_config_str(self, option):
try:
result = gpd_setting.get_setting(option)
val = str(result) if result else ""
logging.info(f"Getting {option}: {val}")
return val
except Exception as e:
logging.error(f"Error getting {option}: {e}", exc_info=True)
return ""
async def set_config(self, option, value):
logging.info(f"Setting {option} to {value}")
try:
return gpd_setting.set_setting(option, value)
except Exception as e:
logging.error(f"Error setting {option}: {e}", exc_info=True)
return False
async def reset_mappings(self):
logging.info("Resetting mappings")
return gpd_setting.reset_mappings()
async def update_latest(self):
logging.info("Updating latest")
return update.update_latest()
async def get_version(self):
return f"{decky.DECKY_PLUGIN_VERSION}"
async def get_latest_version(self):
try:
return update.get_latest_version()
except Exception as e:
logging.error(f"Error getting latest version: {e}", exc_info=True)
return ""
async def get_support_rumble_option(self):
return IS_RUMBLE_SUPPORTED
async def get_support_rgb_option(self):
return IS_RGB_SUPPORTED
async def get_support_stick_option(self):
return IS_STICK_SUPPORTED
async def get_Xfirmware_version(self):
try:
xfirmware, _ = gpd_setting.get_firmware_version()
return xfirmware
except Exception as e:
logging.error(f"Error getting Xfirmware version: {e}", exc_info=True)
return "UNKNOWN"
async def get_Kfirmware_version(self):
try:
_, kfirmware = gpd_setting.get_firmware_version()
return kfirmware
except Exception as e:
logging.error(f"Error getting Kfirmware version: {e}", exc_info=True)
return "UNKNOWN"
async def get_rgb(self):
try:
rebHex = gpd_setting.get_setting("colour")
logging.info(f"Getting RGB: {rebHex}")
# Convert RR GG BB to decimal
r = int(rebHex[0:2], 16)
g = int(rebHex[2:4], 16)
b = int(rebHex[4:6], 16)
logging.info(f"RGB: {r}, {g}, {b}")
return [r, g, b]
except Exception as e:
logging.error(f"Error getting RGB: {e}")
return [0, 0, 0]
async def set_rgb(self, r: int, g: int, b: int):
try:
logging.info(f"Setting RGB to {r}, {g}, {b}")
if r is None or g is None or b is None:
return False
# Convert to hex
hexColour = "{:02x}{:02x}{:02x}".format(r, g, b)
logging.info(f"Setting RGB to {hexColour}")
return gpd_setting.set_setting("colour", hexColour)
except Exception as e:
logging.error(f"Error setting RGB: {e}")
return False
async def get_language(self):
logging.info("Getting language")
# return "schinese"
try:
language = utils.get_language()
logging.info(f"Getting language: {language}")
return language
except Exception as e:
logging.error(e)
return "english"
async def log_debug(self, message: str):
logging.debug(message)
async def log_info(self, message: str):
logging.info(message)
# Function called first during the unload process, utilize this to handle your plugin being removed
async def _unload(self):
decky.logger.info("Goodbye World!")
pass
# Migrations that should be performed before entering `_main()`.
async def _migration(self):
decky.logger.info("Migrating")
# Here's a migration example for logs:
# - `~/.config/decky-template/template.log` will be migrated to `decky.DECKY_PLUGIN_LOG_DIR/template.log`
decky.migrate_logs(
os.path.join(
decky.DECKY_USER_HOME,
".config",
"decky-template",
"template.log",
)
)
# Here's a migration example for settings:
# - `~/homebrew/settings/template.json` is migrated to `decky.DECKY_PLUGIN_SETTINGS_DIR/template.json`
# - `~/.config/decky-template/` all files and directories under this root are migrated to `decky.DECKY_PLUGIN_SETTINGS_DIR/`
decky.migrate_settings(
os.path.join(decky.DECKY_HOME, "settings", "template.json"),
os.path.join(decky.DECKY_USER_HOME, ".config", "decky-template"),
)
# Here's a migration example for runtime data:
# - `~/homebrew/template/` all files and directories under this root are migrated to `decky.DECKY_PLUGIN_RUNTIME_DIR/`
# - `~/.local/share/decky-template/` all files and directories under this root are migrated to `decky.DECKY_PLUGIN_RUNTIME_DIR/`
decky.migrate_runtime(
os.path.join(decky.DECKY_HOME, "template"),
os.path.join(
decky.DECKY_USER_HOME, ".local", "share", "decky-template"
),
)