-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmacro recorder.ahk
461 lines (360 loc) · 9.76 KB
/
macro recorder.ahk
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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
;***********************************************
;** **
;** Keyboard and Mouse Recorder **
;** created by Max Johnson **
;** **
;***********************************************
; for similar scripts check out garath's MoRe script or AHK Script Writer
global keystrokeList := []
global mouseXList := []
global mouseYList := []
global timingList := []
global characterList := []
global isRecording := false
global isPlayingBack := false
global loopsRemaining := 0
global mostRecentActionTime
;*************************************************
;** **
;** F4 Start or Stop Recording **
;** F8 Start or Stop Playback (loop forever) **
;** F9 Add 1 Loop (stackable) **
;** F10 Add 10 Loops (stackable) **
;** **
;** F6 Export Script Normal Playback Speed **
;** F7 Export Script Fast Playback Speed **
;** **
;*************************************************
#r::Reload ; windows+r to reload script
#q::ExitApp ; windows+q to quit
#p::Pause ; Press windows+P to pause. Press it again to resume.
F4:: ; F4 to start or stop recording
isRecording := !isRecording
isPlayingBack := false
if (isRecording)
{
SoundPlay *-1 ; A beep to confirm program is active
mostRecentActionTime := A_TickCount
; erase the arrays
keystrokeList := []
mouseXList := []
mouseYList := []
timingList := []
characterList := []
}else{
elapsedtime := A_TickCount - mostRecentActionTime
timingList[1] := (elapsedtime) ; set the first timing to the stop record button, to make loops smoother
}
Return
F8:: ; F8 to start or stop playback
if(loopsRemaining = 0){
loopsRemaining = 100000000000000
}
isRecording := false
isPlayingBack := !isPlayingBack
if(isPlayingBack = true){
StartLoop()
}else{
EndLoop()
}
Return
F9:: ; F9 to do one loop
loopsRemaining += 1
StartLoop()
Return
F10:: ; F10 to do 10 loops
loopsRemaining += 10
StartLoop()
Return
F6:: ; F6 to export normal speed
ExportMacro(-1)
Return
F7:: ; F7 to export fast speed
ExportMacro(200)
Return
StartLoop(){
isRecording := false
isPlayingBack := true
SetTimer, MoveToAnotherThread, 1
}
EndLoop(){
isRecording := false
isPlayingBack := false
loopsRemaining = 0
SetTimer, MoveToAnotherThread, Off
}
MoveToAnotherThread:
LoopThroughList()
return
LoopThroughList() {
outer:
while (loopsRemaining > 0)
{
for index, element in keystrokeList ; Enumeration is the recommended approach in most cases.
{
clickType := keystrokeList[a_index]
xposRecording := mouseXList[a_index]
yposRecording := mouseYList[a_index]
timingRecording := timingList[a_index]
characterRecording := characterList[a_index]
characterRecordingModified := StrReplace(characterRecording, "~", "") ; get rid of the ~
sleep, %timingRecording% ; (wait for correct amount of time)
if(isPlayingBack = false){
break outer
}
; MsgBox, % characterRecordingModified ; useful for debugging
MouseMove, %xposRecording%, %yposRecording% ; always move the mouse
sleep, 30 ; some programs need a bit of "hover" to register an interaction
if(clickType = "Mouse"){
if(characterRecordingModified == "LButton Up"){
Click Up Left
}
else if(characterRecordingModified == "LButton"){
Click Down Left
}
else if(characterRecordingModified == "RButton Up"){
Click Up Right
}
else if(characterRecordingModified == "RButton"){
Click Down Right
}
else if(characterRecordingModified == "MButton Up"){
Click Up Middle
}
else if(characterRecordingModified == "MButton"){
Click Down Middle
}
else{
; MsgBox, %characterRecordingModified%
Click %characterRecordingModified%
}
}
if(clickType = "Key"){
if(StrLen(characterRecordingModified) > 1){
Send, {%characterRecordingModified%}
}else{
Send, %characterRecordingModified%
}
}
}
loopsRemaining --
}
EndLoop()
}
; mouse recording
~LButton::
~LButton Up::
~RButton::
~RButton Up::
~MButton::
~MButton Up::
~WheelUp::
~WheelDown::
RecordKeystroke("Mouse", A_ThisHotkey)
Return
; The keyboard. I couldn't find a more elegant way to do this.
~a::
~b::
~c::
~d::
~e::
~f::
~g::
~h::
~i::
~j::
~k::
~l::
~m::
~n::
~o::
~p::
~q::
~r::
~s::
~t::
~u::
~v::
~w::
~x::
~y::
~z::
~0::
~1::
~2::
~3::
~4::
~5::
~6::
~7::
~8::
~9::
~,::
~.::
~/::
~;::
~'::
~[::
~]::
~\::
~-::
~`::
~=::
~enter::
~backspace::
~up::
~down::
~left::
~right::
~Escape::
~Tab::
~Space::
~CapsLock::
~ScrollLock::
~Delete::
~Insert::
~Home::
~End::
~PgUp::
~PgDn::
~Numpad0::
~Numpad1::
~Numpad2::
~Numpad3::
~Numpad4::
~Numpad5::
~Numpad6::
~Numpad7::
~Numpad8::
~Numpad9::
~NumpadDot::
~NumLock::
~NumpadDiv::
~NumpadMult::
~NumpadAdd::
~NumpadSub::
~NumpadEnter::
~XButton1:: ; even though this is a mouse key, you have to use Send to use it so im placing it here
~XButton2::
RecordKeystroke("Key", A_ThisHotkey)
Return
; the function that actually records everything
RecordKeystroke(Keystroke, Character) {
SetMouseDelay, 0
SetKeyDelay, 0
if (isRecording){
SoundPlay *-1
keystrokeList.Push(Keystroke) ; add keystroke to list
characterList.Push(Character) ; add keystroke to list
MouseGetPos, xpos, ypos
mouseXList.Push(xpos) ; add position to list
mouseYList.Push(ypos) ; add position to list
elapsedtime := A_TickCount - mostRecentActionTime
timingList.Push(elapsedtime) ; add timing to list
mostRecentActionTime := A_TickCount
}
}
; turns the recording into a text string line by line
ConvertRecordingToText(speed) {
outputString := "" ; where we store the output
LineDelimiter := "`n" ; Use `r`n for Windows line endings
for index, element in keystrokeList ; Enumeration is the recommended approach in most cases.
{
clickType := keystrokeList[a_index]
xposRecording := mouseXList[a_index]
yposRecording := mouseYList[a_index]
timingRecording := timingList[a_index]
characterRecording := characterList[a_index]
characterRecordingModified := StrReplace(characterRecording, "~", "") ; get rid of the ~
; sleep, %timingRecording% ; (wait for correct amount of time)
sleepString := "sleep, "
if(speed < 0){
sleepString := sleepString . timingRecording
}
else{
sleepString := sleepString . speed
}
outputString := outputString . sleepString . LineDelimiter
; MsgBox %sleepString% ; useful for debugging
; MouseMove, %xposRecording%, %yposRecording% ; always move the mouse
moveMouseString := "MouseMove, "
moveMouseString := moveMouseString . xposRecording . ", " . yposRecording
outputString := outputString . moveMouseString . LineDelimiter
; sleep, 1 ; some programs need a bit of "hover" to register an interaction
sleepString := "sleep, 30"
outputString := outputString . sleepString . LineDelimiter
if(clickType = "Mouse"){
if(characterRecordingModified == "LButton Up"){
; Click Up Left
clickString := "Click Up Left"
outputString := outputString . clickString . LineDelimiter
}
else if(characterRecordingModified == "LButton"){
; Click Down Left
clickString := "Click Down Left"
outputString := outputString . clickString . LineDelimiter
}
else if(characterRecordingModified == "RButton Up"){
; Click Up Right
clickString := "Click Up Right"
outputString := outputString . clickString . LineDelimiter
}
else if(characterRecordingModified == "RButton"){
; Click Down Right
clickString := "Click Down Right"
outputString := outputString . clickString . LineDelimiter
}
else if(characterRecordingModified == "MButton Up"){
; Click Up Middle
clickString := "Click Up Middle"
outputString := outputString . clickString . LineDelimiter
}
else if(characterRecordingModified == "MButton"){
; Click Down Middle
clickString := "Click Down Middle"
outputString := outputString . clickString . LineDelimiter
}
else{
; Click %characterRecordingModified%
clickString := "Click"
clickString := clickString . " " . characterRecordingModified
outputString := outputString . clickString . LineDelimiter
}
}
if(clickType = "Key"){
if(StrLen(characterRecordingModified) > 1){
; Send, {%characterRecordingModified%}
sendString := "Send, {"
sendString := sendString . characterRecordingModified . "}"
outputString := outputString . sendString . LineDelimiter
}else{
; Send, %characterRecordingModified%
sendString := "Send, "
sendString := sendString . characterRecordingModified
outputString := outputString . sendString . LineDelimiter
}
}
}
return outputString
}
; this function creates a copy of this macro in AHK format in the home folder (the same folder where this script is)
ExportMacro(speed) {
EndLoop()
; Get the path to the script's folder
ScriptDir := A_ScriptDir
; Specify the file name
FileName := "exported_script.txt"
; Combine the script's folder path with the file name
FilePath := ScriptDir "\" FileName
; Delete the existing file if it exists
if FileExist(FilePath)
FileDelete, %FilePath%
; Specify the new content
FileContent := ConvertRecordingToText(speed)
; Create and write to the text file
FileAppend, %FileContent%, %FilePath%
}