-
Notifications
You must be signed in to change notification settings - Fork 0
/
Remote_Control_V2.py
669 lines (571 loc) · 15.4 KB
/
Remote_Control_V2.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
from operator import ge
from turtle import Screen
import win32api
import pywintypes
import pyautogui
import win32con
import subprocess
import time
import ctypes
import subprocess
# region sounds funcs
# Import the SendInput object
SendInput = ctypes.windll.user32.SendInput
# C struct redefinitions
PUL = ctypes.POINTER(ctypes.c_ulong)
class KeyBdInput(ctypes.Structure):
_fields_ = [
("wVk", ctypes.c_ushort),
("wScan", ctypes.c_ushort),
("dwFlags", ctypes.c_ulong),
("time", ctypes.c_ulong),
("dwExtraInfo", PUL)
]
class HardwareInput(ctypes.Structure):
_fields_ = [
("uMsg", ctypes.c_ulong),
("wParamL", ctypes.c_short),
("wParamH", ctypes.c_ushort)
]
class MouseInput(ctypes.Structure):
_fields_ = [
("dx", ctypes.c_long),
("dy", ctypes.c_long),
("mouseData", ctypes.c_ulong),
("dwFlags", ctypes.c_ulong),
("time", ctypes.c_ulong),
("dwExtraInfo", PUL)
]
class Input_I(ctypes.Union):
_fields_ = [
("ki", KeyBdInput),
("mi", MouseInput),
("hi", HardwareInput)
]
class Input(ctypes.Structure):
_fields_ = [
("type", ctypes.c_ulong),
("ii", Input_I)
]
class Keyboard:
"""
Class Keyboard
:author: Paradoxis <[email protected]>
:description:
Keyboard methods to trigger fake key events
"""
# Keyboard key constants
# More information: https://msdn.microsoft.com/en-us/library/windows/desktop/dd375731(v=vs.85).aspx
VK_BACKSPACE = 0x08
VK_ENTER = 0x0D
VK_CTRL = 0x11
VK_ALT = 0x12
VK_0 = 0x30
VK_1 = 0x31
VK_2 = 0x32
VK_3 = 0x33
VK_4 = 0x34
VK_5 = 0x35
VK_6 = 0x36
VK_7 = 0x37
VK_8 = 0x38
VK_9 = 0x39
VK_A = 0x41
VK_B = 0x42
VK_C = 0x43
VK_D = 0x44
VK_E = 0x45
VK_F = 0x46
VK_G = 0x47
VK_H = 0x48
VK_I = 0x49
VK_J = 0x4A
VK_K = 0x4B
VK_L = 0x4C
VK_M = 0x4D
VK_N = 0x4E
VK_O = 0x4F
VK_P = 0x50
VK_Q = 0x51
VK_R = 0x52
VK_S = 0x53
VK_T = 0x54
VK_U = 0x55
VK_V = 0x56
VK_W = 0x57
VK_X = 0x58
VK_Y = 0x59
VK_Z = 0x5A
VK_VOLUME_MUTE = 0xAD
VK_VOLUME_DOWN = 0xAE
VK_VOLUME_UP = 0xAF
VK_MEDIA_NEXT_TRACK = 0xB0
VK_MEDIA_PREV_TRACK = 0xB1
VK_MEDIA_PLAY_PAUSE = 0xB3
VK_MEDIA_STOP = 0xB2
VK_LBUTTON = 0x01
VK_RBUTTON = 0x02
VK_CANCEL = 0x03
VK_MBUTTON = 0x04
VK_XBUTTON1 = 0x05
VK_XBUTTON2 = 0x06
VK_BACK = 0x08
VK_TAB = 0x09
VK_CLEAR = 0x0C
VK_RETURN = 0x0D
VK_SHIFT = 0x10
VK_CONTROL = 0x11
VK_MENU = 0x12
VK_PAUSE = 0x13
VK_CAPITAL = 0x14
VK_KANA = 0x15
VK_HANGUEL = 0x15
VK_HANGUL = 0x15
VK_JUNJA = 0x17
VK_FINAL = 0x18
VK_HANJA = 0x19
VK_KANJI = 0x19
VK_ESCAPE = 0x1B
VK_CONVERT = 0x1C
VK_NONCONVERT = 0x1D
VK_ACCEPT = 0x1E
VK_MODECHANGE = 0x1F
VK_SPACE = 0x20
VK_PRIOR = 0x21
VK_NEXT = 0x22
VK_END = 0x23
VK_HOME = 0x24
VK_LEFT = 0x25
VK_UP = 0x26
VK_RIGHT = 0x27
VK_DOWN = 0x28
VK_SELECT = 0x29
VK_PRINT = 0x2A
VK_EXECUTE = 0x2B
VK_SNAPSHOT = 0x2C
VK_INSERT = 0x2D
VK_DELETE = 0x2E
VK_HELP = 0x2F
VK_LWIN = 0x5B
VK_RWIN = 0x5C
VK_APPS = 0x5D
VK_SLEEP = 0x5F
VK_NUMPAD0 = 0x60
VK_NUMPAD1 = 0x61
VK_NUMPAD2 = 0x62
VK_NUMPAD3 = 0x63
VK_NUMPAD4 = 0x64
VK_NUMPAD5 = 0x65
VK_NUMPAD6 = 0x66
VK_NUMPAD7 = 0x67
VK_NUMPAD8 = 0x68
VK_NUMPAD9 = 0x69
VK_MULTIPLY = 0x6A
VK_ADD = 0x6B
VK_SEPARATOR = 0x6C
VK_SUBTRACT = 0x6D
VK_DECIMAL = 0x6E
VK_DIVIDE = 0x6F
VK_F1 = 0x70
VK_F2 = 0x71
VK_F3 = 0x72
VK_F4 = 0x73
VK_F5 = 0x74
VK_F6 = 0x75
VK_F7 = 0x76
VK_F8 = 0x77
VK_F9 = 0x78
VK_F10 = 0x79
VK_F11 = 0x7A
VK_F12 = 0x7B
VK_F13 = 0x7C
VK_F14 = 0x7D
VK_F15 = 0x7E
VK_F16 = 0x7F
VK_F17 = 0x80
VK_F18 = 0x81
VK_F19 = 0x82
VK_F20 = 0x83
VK_F21 = 0x84
VK_F22 = 0x85
VK_F23 = 0x86
VK_F24 = 0x87
VK_NUMLOCK = 0x90
VK_SCROLL = 0x91
VK_LSHIFT = 0xA0
VK_RSHIFT = 0xA1
VK_LCONTROL = 0xA2
VK_RCONTROL = 0xA3
VK_LMENU = 0xA4
VK_RMENU = 0xA5
VK_BROWSER_BACK = 0xA6
VK_BROWSER_FORWARD = 0xA7
VK_BROWSER_REFRESH = 0xA8
VK_BROWSER_STOP = 0xA9
VK_BROWSER_SEARCH = 0xAA
VK_BROWSER_FAVORITES = 0xAB
VK_BROWSER_HOME = 0xAC
VK_LAUNCH_MAIL = 0xB4
VK_LAUNCH_MEDIA_SELECT = 0xB5
VK_LAUNCH_APP1 = 0xB6
VK_LAUNCH_APP2 = 0xB7
VK_OEM_1 = 0xBA
VK_OEM_PLUS = 0xBB
VK_OEM_COMMA = 0xBC
VK_OEM_MINUS = 0xBD
VK_OEM_PERIOD = 0xBE
VK_OEM_2 = 0xBF
VK_OEM_3 = 0xC0
VK_OEM_4 = 0xDB
VK_OEM_5 = 0xDC
VK_OEM_6 = 0xDD
VK_OEM_7 = 0xDE
VK_OEM_8 = 0xDF
VK_OEM_102 = 0xE2
VK_PROCESSKEY = 0xE5
VK_PACKET = 0xE7
VK_ATTN = 0xF6
VK_CRSEL = 0xF7
VK_EXSEL = 0xF8
VK_EREOF = 0xF9
VK_PLAY = 0xFA
VK_ZOOM = 0xFB
VK_NONAME = 0xFC
VK_PA1 = 0xFD
VK_OEM_CLEAR = 0xFE
def keyDown(keyCode):
"""
Key down wrapper
:param keyCode: int
:return: void
"""
extra = ctypes.c_ulong(0)
ii_ = Input_I()
ii_.ki = KeyBdInput(keyCode, 0x48, 0, 0, ctypes.pointer(extra))
x = Input(ctypes.c_ulong(1), ii_)
SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))
def keyUp(keyCode):
"""
Key up wrapper
:param keyCode: int
:return: void
"""
extra = ctypes.c_ulong(0)
ii_ = Input_I()
ii_.ki = KeyBdInput(keyCode, 0x48, 0x0002, 0, ctypes.pointer(extra))
x = Input(ctypes.c_ulong(1), ii_)
SendInput(1, ctypes.pointer(x), ctypes.sizeof(x))
def key(keyCode, length=0):
"""
Type a key
:param keyCode: int
:param length: int
:return:
"""
Keyboard.keyDown(keyCode)
time.sleep(length)
Keyboard.keyUp(keyCode)
class Sound:
"""
Class Sound
:author: Paradoxis <[email protected]>
:description:
Allows you control the Windows volume
The first time a sound method is called, the system volume is fully reset.
This triggers sound and mute tracking.
"""
# Current volume, we will set this to 100 once initialized
__current_volume = None
@staticmethod
def current_volume():
"""
Current volume getter
:return: int
"""
if Sound.__current_volume is None:
return 0
else:
return Sound.__current_volume
@staticmethod
def __set_current_volume(volume):
"""
Current volumne setter
prevents numbers higher than 100 and numbers lower than 0
:return: void
"""
if volume > 100:
Sound.__current_volume = 100
elif volume < 0:
Sound.__current_volume = 0
else:
Sound.__current_volume = volume
# The sound is not muted by default, better tracking should be made
__is_muted = False
@staticmethod
def is_muted():
"""
Is muted getter
:return: boolean
"""
return Sound.__is_muted
@staticmethod
def __track():
"""
Start tracking the sound and mute settings
:return: void
"""
if Sound.__current_volume == None:
Sound.__current_volume = 0
for i in range(0, 50):
Sound.volume_up()
@staticmethod
def mute():
"""
Mute or un-mute the system sounds
Done by triggering a fake VK_VOLUME_MUTE key event
:return: void
"""
Sound.__track()
Sound.__is_muted = (not Sound.__is_muted)
Keyboard.key(Keyboard.VK_VOLUME_MUTE)
@staticmethod
def volume_up():
"""
Increase system volume
Done by triggering a fake VK_VOLUME_UP key event
:return: void
"""
Sound.__track()
Sound.__set_current_volume(Sound.current_volume() + 2)
Keyboard.key(Keyboard.VK_VOLUME_UP)
@staticmethod
def volume_down():
"""
Decrease system volume
Done by triggering a fake VK_VOLUME_DOWN key event
:return: void
"""
Sound.__track()
Sound.__set_current_volume(Sound.current_volume() - 2)
Keyboard.key(Keyboard.VK_VOLUME_DOWN)
@staticmethod
def volume_set(amount):
"""
Set the volume to a specific volume, limited to even numbers.
This is due to the fact that a VK_VOLUME_UP/VK_VOLUME_DOWN event increases
or decreases the volume by two every single time.
:return: void
"""
Sound.__track()
if Sound.current_volume() > amount:
for i in range(0, int((Sound.current_volume() - amount) / 2)):
Sound.volume_down()
else:
for i in range(0, int((amount - Sound.current_volume()) / 2)):
Sound.volume_up()
@staticmethod
def volume_min():
"""
Set the volume to min (0)
:return: void
"""
Sound.volume_set(0)
@staticmethod
def volume_max():
"""
Set the volume to max (100)
:return: void
"""
Sound.volume_set(100)
# endregion sounds funcs
# region Resolution funcs
def get_screen_resolution():
return (win32api.GetSystemMetrics(0), win32api.GetSystemMetrics(1))
def change_resolution(Width, Height):
devmode = pywintypes.DEVMODEType()
devmode.PelsWidth = Width
devmode.PelsHeight = Height
devmode.Fields = win32con.DM_PELSWIDTH | win32con.DM_PELSHEIGHT
win32api.ChangeDisplaySettings(devmode, 0)
def change_resolution_from_settings(settings_mode):
Width, Height = load_resolution_settings(settings_mode)
change_resolution(Width, Height)
# endregion Resolution funcs
# region Change monitors funcs
def findCoordinates():
x, y = pyautogui.position()
print(f'X: {x}, Y: {y}')
def ChangeTo1Monitors():
pyautogui.keyDown('win')
pyautogui.press('p')
pyautogui.keyUp('win')
time.sleep(1)
pyautogui.click(1719, 415)
def ChangeToExtendMonitors():
pyautogui.keyDown('win')
pyautogui.press('p')
pyautogui.keyUp('win')
time.sleep(1)
pyautogui.click(1318, 471)
# endregion Change monitors funcs
# region Change Scales
def openSettings():
subprocess.Popen([r"C:\Windows\System32\DpiScaling.exe"])
def closeSettings():
windows = pyautogui.getAllWindows()
for window in windows:
if "Settings" in window.title:
# If the "Settings" window is open, close it
window.close()
def settingFullWindow():
# Get the window with the specified title
window = pyautogui.getWindowsWithTitle('Settings')[0]
# Maximize the window
window.maximize()
def openScaleLayout():
openSettings()
time.sleep(1)
settingFullWindow()
time.sleep(0.5)
def changeScale(next_scale):
filePath = [
r"D:\softwere\python 3\AA project\AA my project\Remote control\SetDpi.exe", str(next_scale)]
# Use the subprocess module to run the command
subprocess.run(filePath)
# endregion Change scales
# region toggle windows taskbar
def select_taskbar_mode(mode):
if (mode == True):
enable_auto_hide_taskbar()
elif(mode == False):
disable_auto_hide_taskbar()
else:
return
def enable_auto_hide_taskbar():
powershell_command = (
'powershell -command "&{$p=\'HKCU:SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\StuckRects3\';'
'$v=(Get-ItemProperty -Path $p).Settings;$v[8]=3;&Set-ItemProperty -Path $p -Name Settings -Value $v;'
'&Stop-Process -f -ProcessName explorer}"'
)
subprocess.run(powershell_command, shell=True,
capture_output=True, text=True)
def disable_auto_hide_taskbar():
powershell_command = (
'powershell -command "&{$p=\'HKCU:SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\StuckRects3\';'
'$v=(Get-ItemProperty -Path $p).Settings;$v[8]=2;&Set-ItemProperty -Path $p -Name Settings -Value $v;'
'&Stop-Process -f -ProcessName explorer}"'
)
subprocess.run(powershell_command, shell=True,
capture_output=True, text=True)
# endregion toggle windows taskbar
# region import settings
import json
def load_settings():
with open('settings.json', 'r') as file:
settings = json.load(file)
return settings
def parse_resolution(resolution_str):
try:
width, height = map(int, resolution_str.split('x'))
return width, height
except ValueError:
print("Invalid resolution format. Please use 'Width_X_Height'.")
return None, None
def load_resolution_settings(mode):
settings = load_settings()
mode_settings = settings.get(mode)
resolution = mode_settings.get("resolution")
return parse_resolution(resolution)[0], parse_resolution(resolution)[1]
def taskbar_settings(mode):
settings = load_settings()
mode_settings = settings.get(mode)
hide_taskbar = mode_settings.get("hide_taskbar")
return hide_taskbar
def volume_settings(mode):
settings = load_settings()
mode_settings = settings.get(mode)
volume = mode_settings.get("volume")
return volume
def scale_settings(mode):
settings = load_settings()
mode_settings = settings.get(mode)
scale = mode_settings.get("scale")
return scale
# endregion import settings
def apply_mode_settings(settings_mode):
# get settings from the json file
Width, Height = load_resolution_settings(settings_mode)
taskbar_bool = taskbar_settings(settings_mode)
volume = volume_settings(settings_mode)
scale = scale_settings(settings_mode)
# apply settings
time.sleep(1)
changeScale(scale)
time.sleep(1)
change_resolution(Width, Height)
Sound.volume_set(volume)
time.sleep(1)
select_taskbar_mode(taskbar_bool)
return
# region menu navigation
def showMenu():
printMenu()
userSelect = input()
if (userSelect == "1"):
# pc mode
pcMode()
return
if (userSelect == "2"):
# tablet mode
tabletMode()
return
if (userSelect == "3"):
# laptop mode
laptopMode()
return
if (userSelect == "4"):
# DPI 100%
changeScale(100)
return
if (userSelect == "5"):
# DPI 150%
changeScale(150)
return
if (userSelect == "6"):
# Resolution PC
change_resolution_from_settings("pc_mode")
return
if (userSelect == "7"):
# Resolution tablet
change_resolution_from_settings("tablet_mode")
return
if (userSelect == "8"):
# Resolution laptop
change_resolution_from_settings("laptop_mode")
return
def printMenu():
print("1) PC mode")
print("2) Tablet")
print("3) Laptop")
print("4) DPI 100%")
print("5) DPI 150%")
print("6) Resolution PC")
print("7) Resolution Tablet")
print("8) Resolution Laptop")
def pcMode():
# Change to Desktop Mode
ChangeToExtendMonitors()
apply_mode_settings("pc_mode")
def tabletMode():
# Change to Remote Mode
ChangeTo1Monitors()
apply_mode_settings("tablet_mode")
def laptopMode():
# Change to Laptop Mode
ChangeTo1Monitors()
apply_mode_settings("laptop_mode")
# endregion menu navigation
if __name__ == '__main__':
# get screen resolution
screen_resolution = get_screen_resolution()
showMenu()