Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
qinyan-alpha authored Jan 8, 2024
0 parents commit 1e8c049
Show file tree
Hide file tree
Showing 8 changed files with 2,715 additions and 0 deletions.
2,655 changes: 2,655 additions & 0 deletions Ui_ui.py

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions config.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
[keysetting]
key control l0 position up = W
key control l0 position down = S
key control r1 position left = A
key control r1 position right = D
key control r2 position front = Space
key control r2 position back = Lshift
key control key speed combinations = Lctrl
key control key position restrictions combinations = Lalt
key control l0 turn = 1
key control r1 turn = 2
key control r2 turn = 3
key control all turn = V
key control app windows turn = B
key control helping with erections = F
key control position restrictions increase = UP
key control position restrictions decrease = DOWN
key control l0 speed increase = W
key control l0 speed decrease = S
key control r1 speed increase = D
key control r1 speed decrease = A
key control r2 speed increase = Space
key control r2 speed decrease = Lshift
key control l0 position max = W
key control l0 position min = S
key control r1 position max = A
key control r1 position min = D
key control r2 position max = Space
key control r2 position min = Lshift

[illustrate]

Binary file added key_monitor.cp310-win_amd64.pyd
Binary file not shown.
Binary file added requirements.txt
Binary file not shown.
Binary file added resources_rc.cp310-win_amd64.pyd
Binary file not shown.
5 changes: 5 additions & 0 deletions run.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo off
cd /d %~dp0
.\python-3.10.6\python.exe start_Ui.py


23 changes: 23 additions & 0 deletions start_Ui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import sys
sys.path.append('.')

from ui import run_osr2,run_app,date_dict_init,short_key_func
import multiprocessing


if __name__ == '__main__':
manager = multiprocessing.Manager()
date_dict = manager.dict()
date_dict_init(date_dict)


p0 = multiprocessing.Process(target=run_app,args=(date_dict,))
p1 = multiprocessing.Process(target=short_key_func,args=(date_dict,))
p2 = multiprocessing.Process(target=run_osr2,args=(date_dict,))
p0.start()
p1.start()
p2.start()
p0.join()
p1.join()
p2.join()

Binary file added ui.cp310-win_amd64.pyd
Binary file not shown.

0 comments on commit 1e8c049

Please sign in to comment.