-
Notifications
You must be signed in to change notification settings - Fork 19
/
AhkScriptManager.ahk
466 lines (396 loc) · 12.9 KB
/
AhkScriptManager.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
461
462
463
464
465
466
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 蓝蓝小雪 作品
; http://wwww.snow518.cn/
; 修改自:http://ahk.5d6d.com/thread-701-1-3.html
; 增加了快捷键、编辑、重载某个单独的脚本
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; Ctrl + Alt + 左键 唤出"启动脚本"菜单
; Ctrl + Alt + 中键 唤出"重载脚本"菜单
; Ctrl + Alt + 右键 唤出"关闭脚本"菜单
; Ctrl + Alt + A 关闭所有脚本
;
; 注意: 当更新系统环境变量时,需要退出本程序后再重启,才能使得环境变量的更改有效
;
; 删除一些不必要的功能,增加非驻守脚本(文件名以"+"开头)的处理
; gaochao.morgen@gmail.com
; 2014/2/1
;
; 增加菜单排序功能
; gaochao.morgen@gmail.com
; 2014/2/10
;
; 增加进程PID显示
; gaochao.morgen@gmail.com
; 2014/2/13
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
#Include lib/InsertionSort.ahk
#Persistent
#SingleInstance force
SetWorkingDir %A_ScriptDir%\scripts\
DetectHiddenWindows On ; 允许探测脚本中隐藏的主窗口. 很多子程序均是以隐藏方式运行的
SetTitleMatchMode 2 ; 避免需要指定如下所示的文件的完整路径
EnvGet, Paths, PATH
EnvSet, PATH, %A_ScriptDir%\3rd`;%Paths% ; 设置环境变量. 通过AhkScriptManager启动的程序均持有该环境变量
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 初始化 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
scriptCount = 0
OnExit ExitSub
GoSub CreateMenus
OpenListTemp := Array() ; 已运行程序列表中的临时驻守脚本
OpenListDeamon := Array() ; 已运行程序列表中的驻守脚本
UnOpenListTemp := Array() ; 未运行程序列表中的临时驻守脚本
UnOpenListOnce := Array() ; 未运行程序列表中的非驻守脚本
UnOpenListDeamon := Array() ; 未运行程序列表中的驻守脚本
; 遍历scripts目录下的ahk文件
Loop, %A_ScriptDir%\scripts\*.ahk
{
StringTrimRight, menuName, A_LoopFileName, StrLen(".ahk")
scriptCount += 1
; 已经打开则关闭,否则无法被AHK Manager接管
IfWinExist, %A_LoopFileName% - AutoHotkey
{
scriptsExisted%scriptCount% = 1
WinKill
}
scriptsName%scriptCount% := A_LoopFileName
scriptsOpened%scriptCount% = 0
IfInString, menuName, ! ; 文件名中含"!"表示临时驻守脚本
{
UnOpenListTemp.Insert(menuName)
Continue
}
IfInString, menuName, + ; 文件名中含"+"表示非驻守脚本
{
UnOpenListOnce.Insert(menuName)
Continue
}
UnOpenListDeamon.Insert(menuName)
}
; 依次添加脚本到启动脚本菜单,类型间加入分隔线
AddToUnOpenMenu(UnOpenListTemp)
AddToUnOpenMenu(UnOpenListOnce)
AddToUnOpenMenu(UnOpenListDeamon, false)
; 主菜单
Menu, Tray, Icon, %A_ScriptDir%\resources\ahk.ico
Menu, Tray, Click, 1
Menu, Tray, Tip, AHK Script Manager
Menu, Tray, Add, AHK Script Manager, Menu_Show
Menu, Tray, ToggleEnable, AHK Script Manager
Menu, Tray, Default, AHK Script Manager
Menu, Tray, Add
Menu, Tray, Add, 启动脚本(&S)`tCtrl + Alt + 左键, :scripts_unopen ; S: Start
Menu, Tray, Add
Menu, Tray, Add, 重载脚本(&R)`tCtrl + Alt + 中键, :scripts_restart ; R: Restart
Menu, Tray, Add, 关闭脚本(&C)`tCtrl + Alt + 右键, :scripts_unclose ; C: Close
Menu, Tray, Add, 关闭所有脚本(&A)`tCtrl + Alt + A, tsk_closeAll ; A: All
Menu, Tray, Add
Menu, Tray, Add, 进程管理(&P), tsk_showproc ; P: Process
Menu, Tray, Add
Menu, Tray, Add, 打开源码目录(&D), Menu_Tray_OpenDir ; D: Directory
Menu, Tray, Add
Menu, Tray, Add, 重启Manager(&B), Menu_Tray_Reload ; B: reBoot
Menu, Tray, Add
Menu, Tray, Add, 退出(&X)`tCtrl + Alt + X, Menu_Tray_Exit
Menu, Tray, NoStandard
; 程序启动时,加载所有可启动脚本
GoSub tsk_openAll
Return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 快捷键设置 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Ctrl + Alt + LButton, 启动
^!LButton::
Menu, scripts_unopen, Show
Return
; Ctrl + Alt + RButton, 关闭
^!RButton::
Menu, scripts_unclose, Show
Return
; Ctrl + Alt + MButton, 重载
^!MButton::
Menu, scripts_restart, Show
Return
; Ctrl + Alt + A, 关闭所有
^!A::
Goto tsk_closeAll
Return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 菜单事件响应 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 启动选中脚本
tsk_open:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if thisScript = %A_ThisMenuItem%.ahk
{
IfWinNotExist, %thisScript% - AutoHotkey ; 没有打开
Run, %A_ScriptDir%\scripts\%thisScript%
IfInString, thisScript, + ; 文件名中含"+"表示非驻守脚本
Break
scriptsOpened%A_Index% := 1
Break
}
}
GoSub RecreateMenus
Return
; 关闭选中脚本
tsk_close:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if thisScript = %A_ThisMenuItem%.ahk
{
WinClose, %thisScript% - AutoHotkey
scriptsOpened%A_Index% := 0
Break
}
}
GoSub RecreateMenus
Return
; 重新启动选中脚本
tsk_restart:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if thisScript = %A_ThisMenuItem%.ahk
{
WinClose, %thisScript% - AutoHotkey
Run, %A_ScriptDir%\scripts\%thisScript%
Break
}
}
Return
; 启动所有驻守脚本,从读文件开始就已经被排序了,所以无需排序
tsk_openAll:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if scriptsOpened%A_Index% = 0 ; 没打开
{
IfInString, thisScript, ! ; 文件名中含"!"表示临时驻守脚本,则不启动
{
if scriptsExisted%A_Index% != 1 ; AHK Manager启动前该脚本未启动
Continue
}
IfInString, thisScript, + ; 文件名中含"+"表示非驻守脚本,不启动
{
if scriptsExisted%A_Index% != 1
Continue
}
IfWinNotExist, %thisScript% - AutoHotkey ; 没有打开
{
Run, %A_ScriptDir%\scripts\%thisScript%
scriptsOpened%A_Index% = 1
StringRePlace, menuName, thisScript, .ahk
Menu, scripts_unclose, Add, %menuName%, tsk_close
Menu, scripts_restart, Add, %menuName%, tsk_restart
Menu, scripts_unopen, Delete, %menuName%
}
}
}
Return
; 在ListView控件中显示脚本进程PID
tsk_showproc:
WmiInfo := GetWMI("AutoHotkey.exe")
ShowIndex := 0
Gui, Font, s9, Arial
Gui, Add, ListView, x2 y0 w250 h200, Index|PID|Script Name|Memory
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if scriptsOpened%A_Index% = 1 ; 已打开
{
ShowIndex += 1
WinGet, procId, PID, %thisScript% - AutoHotkey
memory := GetMemory(WmiInfo, procId)
LV_Add("", ShowIndex, procId, thisScript, memory)
}
}
LV_ModifyCol() ; 根据内容自动调整每列的大小
Gui, Show,, Process List
Return
; 关闭ListView控件
GuiClose:
Gui, Destroy
Return
; 关闭所有脚本
tsk_closeAll:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if scriptsOpened%A_Index% = 1 ; 已打开
{
WinClose, %thisScript% - AutoHotkey
scriptsOpened%A_Index% = 0
StringRePlace, menuName, thisScript, .ahk
Menu, scripts_unopen, Add, %menuName%, tsk_open
Menu, scripts_unclose, Delete, %menuName%
Menu, scripts_restart, Delete, %menuName%
}
}
Return
; 打开源码目录
Menu_Tray_OpenDir:
Run, %A_ScriptDir%\scripts,, Max
Return
; 重启Manager
Menu_Tray_Reload:
Reload
Return
; 退出
Menu_Tray_Exit:
ExitApp
Return
Menu_Show:
Menu, Tray, Show
Return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 创建菜单 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 创建子菜单
CreateMenus:
; "启动脚本"子菜单
Menu, scripts_unopen, Add, 启动脚本, Menu_Tray_Exit
Menu, scripts_unopen, ToggleEnable, 启动脚本
Menu, scripts_unopen, Default, 启动脚本
Menu, scripts_unopen, Add
; "关闭脚本"子菜单
Menu, scripts_unclose, Add, 关闭脚本, Menu_Tray_Exit
Menu, scripts_unclose, ToggleEnable, 关闭脚本
Menu, scripts_unclose, Default, 关闭脚本
Menu, scripts_unclose, Add
; "重载脚本"子菜单
Menu, scripts_restart, Add, 重载脚本, Menu_Tray_Exit
Menu, scripts_restart, ToggleEnable, 重载脚本
Menu, scripts_restart, Default, 重载脚本
Menu, scripts_restart, Add
Return
; 重建子菜单
RecreateMenus:
Menu, scripts_unopen, DeleteAll ; 剩下空菜单
Menu, scripts_unclose, DeleteAll ; 剩下空菜单
Menu, scripts_restart, DeleteAll ; 剩下空菜单
GoSub CreateMenus
OpenListTemp := Array()
OpenListDeamon := Array()
UnOpenListTemp := Array()
UnOpenListOnce := Array()
UnOpenListDeamon := Array()
Loop, %scriptCount%
{
StringTrimRight, menuName, scriptsName%A_Index%, StrLen(".ahk")
if scriptsOpened%A_Index% = 1
{
IfInString, menuName, ! ; 文件名中含"!"表示临时驻守脚本
{
OpenListTemp.Insert(menuName)
Continue
}
OpenListDeamon.Insert(menuName)
}
else if scriptsOpened%A_Index% = 0
{
IfInString, menuName, ! ; 文件名中含"!"表示临时驻守脚本
{
UnOpenListTemp.Insert(menuName)
Continue
}
IfInString, menuName, + ; 文件名中含"+"表示非驻守脚本
{
UnOpenListOnce.Insert(menuName)
Continue
}
UnOpenListDeamon.Insert(menuName)
}
}
; 依次添加脚本到重载脚本/关闭脚本菜单,类型间加入分隔线
AddToOpenMenu(OpenListTemp)
AddToOpenMenu(OpenListDeamon, false)
; 依次添加脚本到启动脚本菜单,类型间加入分隔线
AddToUnOpenMenu(UnOpenListTemp)
AddToUnOpenMenu(UnOpenListOnce)
AddToUnOpenMenu(UnOpenListDeamon, false)
Return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 程序清理 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ExitSub:
Loop, %scriptCount%
{
thisScript := scriptsName%A_Index%
if scriptsOpened%A_Index% = 1 ; 已打开
{
WinClose, %thisScript% - AutoHotkey
scriptsOpened%A_Index% = 0
StringRePlace, menuName, thisScript, .ahk
}
}
Menu, Tray, NoIcon
ExitApp
Return
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 函数 ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; 给定进程名称,返回该进程的所有信息
GetWMI(ProcessName)
{
objWMI := ComObjGet("winmgmts:\\.\root\cimv2") ; 连接到WMI服务
StrSql := "SELECT * FROM Win32_Process WHERE Name="""
StrSql .= ProcessName
StrSql .= """"
Info := objWMI.ExecQuery(StrSql)
Return Info
}
; 给定进程PID,获取其内存消耗
GetMemory(WmiInfo, PID)
{
for ObjProc in WmiInfo
{
if (ObjProc.ProcessID = PID)
{
usage := Round(ObjProc.WorkingSetSize / 1024)
Return % usage . "K"
}
}
Return "0K"
}
; 为启动脚本菜单添加一种类型的脚本
AddToUnOpenMenu(UnOpenList, AllowSplit=true)
{
InsertionSort(UnOpenList)
for Index, menuName in UnOpenList
Menu, scripts_unopen, add, %menuName%, tsk_open
; 必要时加分隔线
if (AllowSplit = true)
{
for Files in UnOpenList
{
Menu, scripts_unopen, Add
Break
}
}
}
; 为重载脚本/关闭脚本菜单添加一种类型的脚本
AddToOpenMenu(OpenList, AllowSplit=true)
{
InsertionSort(OpenList)
for Index, menuName in OpenList
{
Menu, scripts_unclose, Add, %menuName%, tsk_close
Menu, scripts_restart, Add, %menuName%, tsk_restart
}
; 必要时加分隔线
if (AllowSplit = true)
{
for Files in OpenList
{
Menu, scripts_unclose, Add
Menu, scripts_restart, Add
Break
}
}
}