-
Notifications
You must be signed in to change notification settings - Fork 1
/
join_room.py
243 lines (191 loc) · 6.89 KB
/
join_room.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import sys
import os
import json
import time
import pyautogui
import pygetwindow as gw
import tkinter as tk
from tkinter import messagebox
platform = sys.platform.lower()
config_path = "../config.json"
if os.path.exists("config.json"):
config_path = "config.json"
def reload_config():
with open(config_path, encoding="utf-8") as f:
config = json.load(f)
config["emu"] = config["emu"].lower()
return config
config = reload_config()
class GlobalContainer:
global_variable = None
def set_global_variable(value):
GlobalContainer.global_variable = value
def get_global_variable():
return GlobalContainer.global_variable
def callback(result):
print(result)
window = None
def send_error(message):
print(message)
window = get_global_variable()
try:
window.evaluate_js(f"showError('{message}');", callback)
except AttributeError:
print("testing mode detected")
focus_webview()
set_global_variable(window)
def send_info(message):
print(message)
window = get_global_variable()
window.evaluate_js(f"showInfo('{message}');", callback)
focus_webview()
set_global_variable(window)
if platform.startswith("win"):
import ctypes
import psutil
import win32gui
def showError(message):
ctypes.windll.user32.MessageBoxW(None, message, "JigglyConnect Error", 0)
GetWindowThreadProcessId = ctypes.windll.user32.GetWindowThreadProcessId
OpenProcess = ctypes.windll.kernel32.OpenProcess
CloseHandle = ctypes.windll.kernel32.CloseHandle
PROCESS_QUERY_INFORMATION = 0x0400
PROCESS_VM_READ = 0x0010
def get_pid_from_hwnd(hwnd):
pid = ctypes.c_ulong()
GetWindowThreadProcessId(hwnd, ctypes.byref(pid))
return pid.value
def get_exe_path_from_hwnd(hwnd):
pid = get_pid_from_hwnd(hwnd)
if pid == 0:
return None
try:
process = psutil.Process(pid)
exe_path = process.exe()
return exe_path
except (psutil.NoSuchProcess, psutil.AccessDenied):
return None
def yuzu_ready():
config = reload_config()
found = False
windows = gw.getAllWindows()
for window in windows:
title = window.title.lower()
if (
config["emu"] in title
and "installer" not in title
and config["emu"].lower() in get_exe_path_from_hwnd(window._hWnd).lower()
):
if "smash" not in title and "01006A800016E000" not in title:
print("title: ", title)
send_error("SSBU is not launched!")
return False
if "13.0." not in title:
send_error("Please update your game! Only 13.0.1 and 13.0.2 are supported.")
return False
yuzu_window = window
found = True
break
if not found:
emu_name = config['emu'].capitalize()
send_error(f"{emu_name} doesn't seem to be launched.")
return False
return yuzu_window
def focus_yuzu_window():
yuzu_window = yuzu_ready()
if yuzu_window != False:
try:
yuzu_window.activate() # Focus window
except gw.PyGetWindowException:
pass
win32gui.ShowWindow(yuzu_window._hWnd, 9) # Restore window if minimized
return True
return False
def focus_yuzu():
if config["emu"] in gw.getActiveWindow().title.lower():
return True
windows = gw.getAllWindows()
for window in windows:
title = window.title.lower()
if "yuzu" in title and not "yuzu 1" in title:
try:
window.activate() # Focus window
except gw.PyGetWindowException:
pass
win32gui.ShowWindow(window._hWnd, 9) # Restore window if minimized
pyautogui.press("esc")
return focus_yuzu_window()
def focus_webview():
windows = gw.getAllWindows()
for window in windows:
title = window.title.lower()
if "JigglyConnect" in title and not "[" in title:
try:
window.activate() # Focus window
except gw.PyGetWindowException:
pass
win32gui.ShowWindow(window._hWnd, 9) # Restore window if minimized
break
def check_room_status():
return any(
"[jigglyconnect] matchmaking" in window.title.lower()
for window in gw.getAllWindows()
)
def handle_room_failed(ip, port, username, password):
fenetre = tk.Tk()
fenetre.withdraw()
answer = messagebox.askyesno("Failed to join the room.", "Retry?")
if answer:
if focus_yuzu() == True:
time.sleep(0.5)
macro(ip, str(port), username, password)
print("Room joined")
else:
print("Failed to join room")
else:
send_info(
f" Go on Yuzu -> Ctrl+C, and then enter:<BR><BR>Adress: {ip}<BR>Port: {port}<BR>Password: {password}<BR>"
)
def macro(ip, port, username, password):
pyautogui.press("esc")
pyautogui.press("esc")
pyautogui.press("esc")
time.sleep(0.1)
pyautogui.hotkey("ctrl", "c")
window_rect = pyautogui.getActiveWindow()
click_x = window_rect.left + window_rect.width // 2
click_y = window_rect.top + 50
pyautogui.click(click_x, click_y)
pyautogui.hotkey("ctrl", "a")
pyautogui.write(ip)
pyautogui.press("tab")
pyautogui.write(port)
pyautogui.press("tab")
pyautogui.write(username)
pyautogui.press("tab")
pyautogui.write(password)
pyautogui.press("tab")
pyautogui.press("enter")
pyautogui.press("enter")
pyautogui.press("enter")
time.sleep(0.1)
if not check_room_status():
print('room not joined!')
handle_room_failed(ip, port, username, password)
cooldown_timestamp = 0
def join_room(ip, port, username, password):
global cooldown_timestamp
current_timestamp = time.time()
if not current_timestamp >= cooldown_timestamp:
print("cooldown")
else:
cooldown_timestamp = current_timestamp + 10
if focus_yuzu() == True:
time.sleep(0.5)
macro(ip, str(port), username, password)
print("Room joined")
else:
print("Failed to join room")
if __name__ == "__main__":
# test
join_room("74.47.74.47", 35008, "usérname", "password :3")