-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheverything.mac
1058 lines (911 loc) · 25.3 KB
/
everything.mac
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* 秀丸エディタからEverythingを使用するマクロ。
*連絡先
https://github.com/ohtorii/everything
http://d.hatena.ne.jp/ohtorii/
https://twitter.com/ohtorii
*ライセンス
MIT License
Copyright (c) 2019 ohtorii
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*****************************************************************************
定義
*****************************************************************************/
//バージョン番号
$g_version = "version 2.1.1";
#g_hmjre_dll = 0;
#g_open_newfile = false;
#g_new_hidemaru = 0;
#g_old_hidemaru = 0;
//検索するファイルパス
$g_path_current=directory2;
execmacro currentmacrodirectory+"\\everything_internal\\search_repository_folder.mac", filename2;
$g_path_project=getresultex(-1);
//空白文字の定義
$g_space="\r\n\t ";
/*************************
各種モード
*************************/
/*検索モード*/
#g_SEARCH_DEFAULT =0;
#g_SEARCH_REGEX =1;
#g_search_mode =#g_SEARCH_DEFAULT;
/*フルパス名マッチするかどうか*/
#g_match_full_path = true;
/*検索するファイルパスのモード*/
#g_PATH_MODE_NONE = 0;
#g_PATH_MODE_CURRENT = 1;
#g_PATH_MODE_PROJECT = 2;
#g_PATH_MODE_NUM = 3;
#g_path_mode = #g_PATH_MODE_NONE;
/*************************
iniファイルの設定
*************************/
$g_ini_config_filename = currentmacrofilename + ".config.ini";
$g_ini_histry_filename = currentmacrofilename + ".history.ini";
/*************************
実行ファイルの設定
**************************/
/* es.exe へのパス */
$g_exe = "";
$g_argument_default = "";
$g_argument_regex = "";
$g_option_match_full_path = "";
/*************************
ダイアログ関係
*************************/
//ダイアログに入力された検索パターン
$g_search_pattern="";
$g_NOTIFY_HELP="99";
/*************************
検索ヒストリ
/*************************/
#g_MAX_HISTORY_NUM =9; //ヒストリの最大数
#g_history_num =0; //最後のインデックス
#g_history_current_index=0; //現在のインデックス
$g_histroy[0] =""; //ヒストリのリングバッファ
/*************************
キーの押下判定
*************************/
#g_IsKeyDown[0]=false;
/*****************************************************************************
メイン処理
*****************************************************************************/
$g_old_searchbuffer = searchbuffer;
#g_old_searchoption = searchoption;
#g_old_hidemaru = hidemaruhandle(0);
/*if(true){
call Debug;
endmacro;
}*/
disablebreak;
call Main;
setsearch $g_old_searchbuffer, #g_old_searchoption;
enablebreak;
endmacro;
Main:
call LoadIni;
if(! ##return){
return false;
}
call SanitizeIni;
call CheckEnvironment;
if(! ##return){
return false;
}
call NewfileIfExist;
if(##return==false){
return false;
}
call LoadDengakuDll;
if (!##return) {
return false;
}
call LoadHmJReDll;
if (!##return) {
return false;
}
call Start;
##result=##return;
freedll;
freedll #g_hmjre_dll;
#g_hmjre_dll = 0;
clearupdated;
if(! ##result){
call CloseFileIfOpen;
}
call WriteIni;
return ##result;
Start:
/*
return true ユーザーは検索結果を受け入れた
false ユーザーは検索結果を拒否した、又は、処理失敗
*/
call HistoryLoad;
call HistoryGetCurrent;
$g_search_pattern=$return;
call CreateDialog;
if(! ##return){
return false;
}
call HistoryGetCurrent;
##n=dllfunc("SETCTRLSTRING", "Everything@Param", $$return);
debuginfo 0;
call MainLoop;
$$item=$$return;
##n = dllfunc("ENDDIALOG");
if($$item=="0"){
//ユーザーはファイル検索をキャンセルしたので検索ウインドウを開いていれば閉じる。
return false;
}else if ($$item == "1"){
//ユーザーはファイル検索の結果を受け入れたので検索ウインドウをそのままにする。
if($g_search_pattern!=""){
call HistoryInsertTop $g_search_pattern;
call HistorySave;
}
return true;
}
//念のためウインドウを開いたままにする
return true;
//#region メインループ
MainLoop:
//文字入力中に適度な間隔でファイル内容を更新する。
##interval = 300;
##prev_tick = 0;
$$prev_search_pattern="";
while (1) {
##current_tick = tickcount;
if(##interval < (##current_tick - ##prev_tick)){
$$input = dllfuncstr("GETCTRLSTRING", "Everything@Param");
if(#g_search_mode==#g_SEARCH_DEFAULT){
call TrimString $$input;
$g_search_pattern=$$return;
}else{
//正規表現は空白も検索対象なので空白文字をtrimしない。
$g_search_pattern=$$input;
}
if($g_search_pattern != $$prev_search_pattern){
call UpdateSearchWindow;
$$prev_search_pattern=$g_search_pattern;
}
##prev_tick = ##current_tick;
}
$$item = dllfuncstr("WAITCTRLNOTIFY",10);
if($$item=="0"){
//キャンセル
break;
}else if($$item=="1"){
//ok
break;
}else if($$item==$g_NOTIFY_HELP){
call ShowHelp;
continue;
}
//##shift=iskeydown(0x10);
##ctrl =iskeydown(0x11);
if(##ctrl){ //ctrl
//<c-c>
call IskeyDown 0x43;
if(##return){
return "0";
}
//<c-m> //Enter
call IskeyDown 0x4d;
if(##return){
return "1";
}
//<c-r>
call IskeyDown 0x52;
if(##return){
call ToggleSearchMode;
call UpdateDialogStatus;
call UpdateSearchWindow;
continue;
}
//<c-s>
call IskeyDown 0x53;
if(##return){
##n = dllfunc("SETFOCUSEDCTRL","Everything@Param");
continue;
}
//<c-1> ~ <c-9>
call MainLoop_Histroy;
if(##return){
continue;
}
//<c-d>
call IskeyDown 0x44;
if(##return){
call ToggleMatchFullPathMode;
call UpdateDialogStatus;
call UpdateSearchWindow;
continue;
}
//<c-f>
call IskeyDown 0x46;
if(##return){
call SwitchPathMode true;
call UpdateDialogStatus;
call UpdateSearchWindow;
continue;
}
//<c-b>
call IskeyDown 0x42;
if(##return){
call SwitchPathMode false;
call UpdateDialogStatus;
call UpdateSearchWindow;
continue;
}
//<c-p>
call IskeyDown 0x50;
if(##return){
debuginfo "prev: "+str(#g_history_current_index);
call HistoryBack;
debuginfo "next: "+str(#g_history_current_index);
##n=dllfunc("SETCTRLSTRING", "Everything@Param", $$return);
call UpdateHistoryGui;
continue;
}
//<c-n>
call IskeyDown 0x4e;
if(##return){
call HistoryForward;
##n=dllfunc("SETCTRLSTRING", "Everything@Param", $$return);
call UpdateHistoryGui;
continue;
}
}
//<f1>
call IskeyDown 0x70 ;
if(##return){
call ShowHelp;
continue;
}
}
return $$item;
MainLoop_Histroy:
call CalcHistroyShortcutNum;
##n=##return;
##key_1=0x31;
##histrory_index=0;
while(##histrory_index<##n){
call IskeyDown ##key_1+##histrory_index;
if(##return){
call HistorySetCurrentIndex ##histrory_index;
call UpdateHistoryGui;
call HistoryGetCurrent;
##n=dllfunc("SETCTRLSTRING", "Everything@Param", $$return);
return true;
}
##histrory_index = ##histrory_index + 1;
}
return false;
CalcHistroyShortcutNum:
##n=9;//1-9
if(#g_MAX_HISTORY_NUM < ##n){
return #g_MAX_HISTORY_NUM;
}
return ##n;
ToggleMatchFullPathMode:
if(#g_match_full_path){
#g_match_full_path=false;
}else{
#g_match_full_path=true;
}
return;
ToggleSearchMode:
if(#g_search_mode==#g_SEARCH_DEFAULT){
#g_search_mode = #g_SEARCH_REGEX;
}else{
#g_search_mode = #g_SEARCH_DEFAULT;
}
return ;
SwitchPathMode:
if(##1){
//正順
if(#g_path_mode == #g_PATH_MODE_NONE){
#g_path_mode=#g_PATH_MODE_CURRENT;
}else if(#g_path_mode == #g_PATH_MODE_CURRENT){
#g_path_mode=#g_PATH_MODE_PROJECT;
}else if(#g_path_mode == #g_PATH_MODE_PROJECT){
#g_path_mode=#g_PATH_MODE_NONE;
}
}else{
//逆順
if(#g_path_mode == #g_PATH_MODE_NONE){
#g_path_mode=#g_PATH_MODE_PROJECT;
}else if(#g_path_mode == #g_PATH_MODE_CURRENT){
#g_path_mode=#g_PATH_MODE_NONE;
}else if(#g_path_mode == #g_PATH_MODE_PROJECT){
#g_path_mode=#g_PATH_MODE_CURRENT;
}
}
return;
GetSearchPath:
if(#g_path_mode==#g_PATH_MODE_NONE){
$$path_mode = "";
}else if(#g_path_mode==#g_PATH_MODE_CURRENT){
$$path_mode = $g_path_current;
}else if(#g_path_mode==#g_PATH_MODE_PROJECT){
$$path_mode = $g_path_project;
}else{
$$path_mode = "";
}
return $$path_mode;
GetSearchPathModeString:
if(#g_path_mode==#g_PATH_MODE_NONE){
return "default";
}else if(#g_path_mode==#g_PATH_MODE_CURRENT){
return "current";
}else if(#g_path_mode==#g_PATH_MODE_PROJECT){
return "project";
}else{
return "";
}
return "";
//#region ダイアログ操作
CreateDialog:
call CreateDialogMain;
if(##return){
return true;
}
message "ダイアログの作成に失敗しました\n";
return false;
CreateDialogMain:
//memo: 固定幅のフォント('MS ゴシック')に変更しています。
if (dllfunc("NEWDIALOG", "Everythingでファイルを検索するマクロ " + $g_version, 120, "0 0 center 'MS ゴシック'") == 0){
return false;
}
if( dllfunc("NEWCONTROL", "text", "", "(&S)\t検索") == 0 ||
dllfunc("SETCTRLWIDTH", "", 8) == 0 ||
dllfunc("NEWCONTROL", "edit", "Everything@Param", "") == 0 ||
/*空行*/
dllfunc("NEWCONTROL", "text", "", "") == 0 ||
dllfunc("NEWCONTROL", "text", "Everything@folder", "") == 0 ||
dllfunc("NEWCONTROL", "text", "Everything@regex", "") == 0 ||
dllfunc("NEWCONTROL", "text", "Everything@filter", "") == 0 ||
/*空行*/
dllfunc("NEWCONTROL", "text", "", "") == 0
){
return false;
}
call CreateDialogHistrory;
if(! ##return){
return false;
}
if( /*空行*/
dllfunc("NEWCONTROL", "text", "", "") == 0 ||
dllfunc("NEWCONTROL", "button", "Everything@Help", "?") == 0 ||
dllfunc("SETCTRLWIDTH", "", 8) == 0 ||
dllfunc("SETCTRLNOTIFY","",$g_NOTIFY_HELP) == 0
){
return false;
}
call UpdateDialogStatus;
// ダイアログの表示
##n = dllfunc("SHOWDIALOG", hidemaruhandle(0), 0);
return true;
CreateDialogHistrory:
/*検索履歴のコントロールを作成する
*/
call CalcHistroyShortcutNum;
##n=##return;
##i=0;
while(##i<##n){
if(dllfunc("NEWCONTROL", "text", "Everything@history"+str(1+##i),"") == 0){
return false;
}
##i = ##i + 1;
}
return true;
UpdateDialogStatus:
if(#g_search_mode==#g_SEARCH_DEFAULT){
$$regex ="検索(R) | [通常]/ 正規表現 ";
}else{
$$regex ="検索(R) | 通常 /[正規表現]";
}
if(#g_match_full_path){
$$filter ="絞り込み(D) | [フルパス名]/ ファイル名 ";
}else{
$$filter ="絞り込み(D) | フルパス名 /[ファイル名]";
}
##n=dllfunc("SETCTRLSTRING","Everything@regex", $$regex);
##n=dllfunc("SETCTRLSTRING","Everything@filter", $$filter);
if(#g_path_mode==#g_PATH_MODE_NONE){
$$folder ="フォルダ(B/F) | [通常]/ カレント / プロジェクト ";
}else if(#g_path_mode==#g_PATH_MODE_CURRENT){
$$folder ="フォルダ(B/F) | 通常 /[カレント]/ プロジェクト ";
}else if(#g_path_mode==#g_PATH_MODE_PROJECT){
$$folder ="フォルダ(B/F) | 通常 / カレント /[プロジェクト] ";
}else{
$$folder ="フォルダ(B/F) | [通常]/ カレント / プロジェクト ";
}
call GetSearchPath;
$$search_path = $$return;
if($$search_path==""){
$$search_path="*";
}
##n=dllfunc("SETCTRLSTRING","Everything@folder", $$folder + $$search_path);
call UpdateHistoryGui;
return ;
UpdateHistoryGui:
/*検索履歴を更新する
*/
call HistoryGetCurrentIndex;
##current_index = ##return;
##i = 0;
while(##i<#g_MAX_HISTORY_NUM){
if(##i==0){
$$header="履歴(P/N) | ";
}else{
$$header=" | ";
}
call HistoryGet ##i;
if(##current_index==##i){
$$pre ="[";
$$post="]";
}else{
$$pre =" ";
$$post=" ";
}
##n=dllfunc("SETCTRLSTRING", "Everything@history"+str(1+##i),sprintf("%s(&%d)%s%s%s",$$header,1+##i,$$pre,$$return,$$post));
##i = ##i + 1;
}
return ;
ShowHelp:
message
"<F1> ヘルプの表示\n"+
"\n"+
"<Ctrl-b>,<Ctrl-f> 検索フォルダの切り替え\n"+
"<Ctrl-r> 正規表現の切り替え(トグル)\n"+
"<Ctrl-d> 絞り込み検索の切り替え(トグル)\n"+
"<Ctrl-p>,<Ctrl-n> 検索履歴を進める/戻す\n"+
"<Ctrl-1>~<Ctrl-9> 検索履歴を指定する\n"+
"<Ctrl-s>,<Alt-s> 検索ボックスに入力フォーカスを移動する\n"+
"\n"+
"<Enter> 確定する\n"+
"<ESC>,<Ctrl-c> 終了する\n"
, "ヘルプ"
, 0x20;
return;
//#region Everything
MakeEverythingArgument:
$$search_words = $$1;
if(#g_match_full_path){
$$match_full_path = " "+$g_option_match_full_path;
}else{
$$match_full_path = "";
}
if(#g_search_mode==#g_SEARCH_DEFAULT){
$$search_mode = " "+$g_argument_default;
}else{
$$search_mode = " "+$g_argument_regex;
}
call GetSearchPath;
$$path_mode = $$return;
if($$path_mode != ""){
if(#g_search_mode==#g_SEARCH_REGEX){
$$path_mode = quote($$path_mode);
}else{
//(memo)通常検索の場合。
//パス名を検索語句とするために空白文字を追加する。
$$path_mode = $$path_mode+" ";
}
}
$$argument = $$match_full_path + $$search_mode;
$$argument = sprintf($$argument, $$path_mode+$$search_words);
return $$argument;
RunEverything:
$$search_words = $$1;
call MakeEverythingArgument $$search_words;
$$argument = $$return;
$$arg_exe = "\"" + $g_exe + "\"";
$$run_str = $$arg_exe + " " + $$argument;
debuginfo $$run_str;
if(true){
call ClearText;
runex $$run_str,
0, //sync 0:async 1:sync
0, "", //stdin 0:none 1:auto 2:file 3:(reserve) 4:all 5:select
5, "", //stdout 0:none 1:auto 2:file 3:add file 4:new 5:insert 6:replace
5, "", //stderr 0:none 1:=out 2:file 3:add file 4:new 5:insert 6:replace
1, "", //folder 0:none 1:current 2:specify 3:(reserve) 4:exe's folder
2, //show 0:auto 1:show 2:hide
0, //nodraw 0:draw 1:no draw
0 //unicode 0:ansi 2:unicode
;
call HilightWorld $$search_words;
}else{
runex $$run_str,
1, //sync 0:async 1:sync
0, "", //stdin 0:none 1:auto 2:file 3:(reserve) 4:all 5:select
7, "", //stdout 0:none 1:auto 2:file 3:add file 4:new 5:insert 6:replace
7, "", //stderr 0:none 1:=out 2:file 3:add file 4:new 5:insert 6:replace
1, "", //folder 0:none 1:current 2:specify 3:(reserve) 4:exe's folder
2, //show 0:auto 1:show 2:hide
0, //nodraw 0:draw 1:no draw
0 //unicode 0:ansi 2:unicode
;
}
return result;
//#region 初期化
CheckEnvironment:
if(! existfile($g_exe)){
message "iniファイルで指定された実行ファイルが見つかりません。\n\n" +
"【見つからない実行ファイル名】\n" +
$g_exe + "\n\n" +
"【iniファイル名】\n" +
$g_ini_config_filename + "\n\n" +
"【対応方法】\n" +
"iniファイルに正しい実行ファイル名を設定して下さい。\n"
;
return false;
}
return true;
LoadDengakuDll:
loaddll macrodir + "\\DengakuDLL.dll";
if (result) {
return true;
}
loaddll hidemarudir + "\\DengakuDLL.dll";
if (result) {
return true;
}
message "田楽DLLのロードに失敗しました\n" + "DengakuDLL.dllが秀丸マクロディレクトリに存在するか確認してください";
return false;
LoadHmJReDll:
#g_hmjre_dll=loaddll(macrodir + "\\HmJre.dll");
if(#g_hmjre_dll){
return true;
}
#g_hmjre_dll=loaddll(hidemarudir + "\\HmJre.dll");
if(#g_hmjre_dll){
return true;
}
message "HmJre.dll のロードに失敗しました\n" +
+ "HmJre.dllが秀丸エディタのディレクトリに存在するか確認してください";
return false;
return false;
//#region ファイル候補ウインドウ
NewfileIfExist:
#g_open_newfile = false;
if(readonly){
call NewHidemaru;
return ##return;
}
if(filetype!="new"){
call NewHidemaru;
return ##return;
}
//以下、新規ファイルの場合
if(charcount(0)==0){
return true;
}
call NewHidemaru;
return ##return;
NewHidemaru:
//編集中のテキストを上書きしないための対応。
//新規ファイルを作成しそこへEverythingの結果を出力する。
newfile;
if(result==0){
return false;
}
#g_open_newfile=true;
#g_new_hidemaru=hidemaruhandle(0);
return true;
CloseFileIfOpen:
if(#g_open_newfile){
setactivehidemaru #g_old_hidemaru;
closehidemaruforced #g_new_hidemaru;
#g_old_hidemaru=0;
#g_new_hidemaru=0;
}
return true;
HilightWorld:
$$search_words=$$1;
if(#g_search_mode==#g_SEARCH_DEFAULT){
call SearchWordsToRegex $$search_words;
$$regex=$$return;
}else{
$$regex=$$search_words;
}
setsearch $$regex,0x00000800|0x00000010;
hilightfound 1;
return;
SearchWordsToRegex:
/*空白区切りの文字列を正規表現に変換する。
[in] "hoge 123 .txt"
[out] "hoge|123|\.txt"
*/
$$word_list=$$1;
$$escaped=quote($$word_list);
$$regex = dllfuncstr(#g_hmjre_dll,"ReplaceRegular", "[" + $g_space + "]+", $$escaped, 0, "|", 2);
return $$regex;
UpdateSearchWindow:
if($g_search_pattern == ""){
call ClearText;
}else{
call RunEverything $g_search_pattern;
}
return;
ClearText:
disabledraw;
selectall;
backspace;
enabledraw;
return;
//#region iniファイル
LoadIni:
$g_exe = getinistr($g_ini_config_filename,"program","command" );
execmacro currentmacrodirectory+@"\everything_internal\expand_environment_strings.mac", $g_exe;
$g_exe = getresultex(-1);
$g_argument_default = getinistr($g_ini_config_filename,"program","argument_default" );
$g_argument_regex = getinistr($g_ini_config_filename,"program","argument_regex" );
$g_option_match_full_path = getinistr($g_ini_config_filename,"program","option_match_full_path" );
#g_match_full_path =getininum( $g_ini_histry_filename, "setting", "match_full_path");
#g_search_mode =getininum( $g_ini_histry_filename, "setting", "regex");
#g_path_mode =getininum( $g_ini_histry_filename, "setting", "search_path");
return true;
SanitizeIni:
//bool
if(#g_match_full_path!=0){
#g_match_full_path=1;
}
//bool
if(#g_search_mode!=0){
#g_search_mode=1;
}
if(#g_path_mode<0){
#g_path_mode=0;
}else if(#g_PATH_MODE_NUM <= #g_path_mode){
#g_path_mode=0;
}
return;
WriteIni:
writeininum $g_ini_histry_filename, "setting", "match_full_path", #g_match_full_path;
writeininum $g_ini_histry_filename, "setting", "regex", #g_search_mode;
writeininum $g_ini_histry_filename, "setting", "search_path", #g_path_mode;
return ;
//#region その他
TrimString:
while(1){
##word=strlen($$1);
//文字列の先頭に空白文字がある場合、空白文字を削除
if(strstr($g_space,leftstr($$1,2))!=-1)$$1=rightstr($$1,##word-2);
else if(strstr($g_space,rightstr($$1,2))!=-1)$$1=leftstr($$1,##word-2);
//ここまで全角文字の対処
else if(strstr($g_space,leftstr($$1,1))!=-1)$$1=rightstr($$1,##word-1);
else if(strstr($g_space,rightstr($$1,1))!=-1)$$1=leftstr($$1,##word-1);
else break;
}
return $$1;
/*****************************************************************************
キーの押下判定
*****************************************************************************/
IskeyDown:
if(iskeydown(##1)){
if(!#g_IsKeyDown[##1]){
//キーが押された瞬間
#g_IsKeyDown[##1]=true;
return true;
}
//キーを押している
}else{
//キーを離している
#g_IsKeyDown[##1]=false;
}
return false;
//#region 検索ヒストリ
/*****************************************************************************
検索ヒストリ
*****************************************************************************/
/*メモ
手抜き実装なので計算量はO(N^2)です。
なので、ヒストリの最大数(#g_MAX_HISTORY_NUM)を大きくすると処理負荷が高くなります。
*/
/****************************
デバッグ用のルーチン
*****************************/
Debug:
//call HistroyInsertTestData;
//#g_history_current_index=3;
//call HistoryInsertTop ".py";
//call HistoryInsertTop "hoge";
//#g_history_current_index=3;
call HistoryLoad;
debuginfo "==== Loaded ====";
call HistoryDump;
call HistoryInsertTop ".txt1";
call HistoryInsertTop ".txt2";
call HistoryInsertTop ".txt3";
debuginfo "==== Inserted ====";
call HistoryDump;
call HistorySave;
endmacro;
return;
/*
ヒストリのテストデータを作成する
*/
HistroyInsertTestData:
$g_histroy[0]=".py";
$g_histroy[1]=".txt";
$g_histroy[2]="aeon .py";
$g_histroy[3]="develop .txt";
#g_history_num=4;
#g_history_current_index=0;
return;
HistoryDump:
debuginfo "==== Histrory ====";
##i=0;
while(##i<#g_history_num){
debuginfo sprintf("[%d]%s", ##i, $g_histroy[##i]);
##i = ##i + 1;
}
debuginfo("#g_history_num = " + str(#g_history_num));
debuginfo("#g_history_current_index = " + str(#g_history_current_index));
return;
HistorySave:
##i=0;
while(##i<#g_history_num){
$$key="_"+str(##i);
writeinistr $g_ini_histry_filename,"history",$$key,$g_histroy[##i];
##i = ##i + 1;
}
return;
HistoryLoad:
#g_history_current_index=0;
##i=0;
##max_loop=100;
while(##i < ##max_loop){
$$key="_"+str(##i);
$$item=getinistr($g_ini_histry_filename,"history",$$key);
if($$item==""){
//iniファイルにこれ以上アイテムが無い
#g_history_num=##i;
return;
}
if(#g_MAX_HISTORY_NUM<=##i){
#g_history_num=#g_MAX_HISTORY_NUM;
return;
}
$g_histroy[##i]=$$item;
##i = ##i + 1;
}
return;
/*ヒストリに文字列をセットする。
ヒストリを初期化する目的で利用する。
##1 index
$$2 設定する文字列
*/
HistorySet:
$g_histroy[##1]=$$2;
return;
/*現在のヒストリを取得する
*/
HistoryGetCurrent:
return $g_histroy[#g_history_current_index];
/*ヒストリを取得する
##1 index
*/
HistoryGet:
return $g_histroy[##1];
/*現在のヒストリインデックスを取得する
*/
HistoryGetCurrentIndex:
return #g_history_current_index;
/*現在のヒストリインデックスを設定する
*/
HistorySetCurrentIndex:
if(#g_history_num==0){
//ヒストリが存在しない場合、とりあえず0を設定しておく。
#g_history_current_index=0;
return;
}
if(##1 < 0){
#g_history_current_index=0;
return ;
}
if(#g_history_num<=##1){
#g_history_current_index=#g_history_num-1;
return ;
}
#g_history_current_index=##1;
return ;
/*ヒストリを一つ進める
返値 一つ進めた先のヒストリ文字列*/
HistoryForward:
call _HistoryClipIndex #g_history_current_index + 1;
#g_history_current_index=##return;
call HistoryGetCurrent;
return $$return;
/*ヒストリを一つ戻す
返値 一つ戻した先のヒストリ文字列*/
HistoryBack:
call _HistoryClipIndex #g_history_current_index - 1;
#g_history_current_index=##return;
call HistoryGetCurrent;
return $$return;
/*新規ヒストリを先頭に追加する
$$1 新規ヒストリの文字列
*/
HistoryInsertTop:
##have_equal_item=true;
while(##have_equal_item){
call _HistoryRemoveEqual $$1;
##have_equal_item=##return;
}
//配列先頭を空けるために後ろに1つずらす。
##i=#g_history_num;
while(0 < ##i){
$g_histroy[##i]=$g_histroy[##i-1];
##i = ##i - 1;
}
#g_history_num = #g_history_num + 1;
if(#g_MAX_HISTORY_NUM < #g_history_num){
#g_history_num=#g_MAX_HISTORY_NUM;