-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 1e8c049
Showing
8 changed files
with
2,715 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.