-
Notifications
You must be signed in to change notification settings - Fork 2
/
pacmanxg.prj
executable file
·1284 lines (1225 loc) · 17.2 KB
/
pacmanxg.prj
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
[componentpalette]
order0=0
order1=0
order2=0
order3=0
order4=0
order5=0
order6=0
order7=0
order8=0
order9=0
order10=0
order11=0
order12=0
order13=0
order14=0
order15=0
order16=0
[projectoptions]
projectdir=/mnt/data/projects/pacmanxg/pacmanxg4
projectfilename=/mnt/data/projects/pacmanxg/pacmanxg4/pacmanxg.prj
finddialog=8
[finddialogfo.selectedonly]
value=0
[finddialogfo]
stackedunder=
x=290
y=486
cx=331
cy=116
options=99
[projectoptionsfo.twidgetgrid3]
propcolwidthref=788
sortdescend0=0
sortdescend1=0
sortdescend2=0
sortdescend3=0
width4=287
sortdescend4=0
width5=128
sortdescend5=0
width6=322
sortdescend6=0
[projectoptionsfo.twidgetgrid4]
propcolwidthref=612
width0=96
sortdescend0=0
sortdescend1=0
width2=73
sortdescend2=0
width3=293
sortdescend3=0
width4=309
sortdescend4=0
sorted=0
col=-1073741823
row=-1073741823
rowheight=16
[projectoptionsfo.newfile]
firsttab=0
index=2
[projectoptionsfo.fontaliasgrid]
propcolwidthref=471
width0=98
sortdescend0=0
width1=460
sortdescend1=0
width2=30
sortdescend2=0
width3=50
sortdescend3=0
width4=50
sortdescend4=0
width5=50
sortdescend5=0
width6=70
sortdescend6=0
[projectoptionsfo.macrosplitter]
x=0
y=176
xprop=1
yprop=0.34351145038167
[projectoptionsfo.macrogrid]
propcolwidthref=595
sortdescend0=0
sortdescend1=0
sortdescend2=0
sortdescend3=0
sortdescend4=0
sortdescend5=0
width6=146
sortdescend6=0
width7=583
sortdescend7=0
[projectoptionsfo.makegroupbox]
firsttab=0
index=2
[projectoptionsfo.exceptionsgrid]
propcolwidthref=772
width0=47
sortdescend0=0
width1=766
sortdescend1=0
[projectoptionsfo.ttabwidget1]
firsttab=0
index=0
[projectoptionsfo.grid]
propcolwidthref=573
width0=219
sortdescend0=0
width1=566
sortdescend1=0
[projectoptionsfo.filefiltergrid]
propcolwidthref=680
width0=112
sortdescend0=0
width1=673
sortdescend1=0
[projectoptionsfo.ttabwidget2]
firsttab=0
index=0
[projectoptionsfo.tabwidget]
firsttab=0
index=2
[projectoptionsfo]
stackedunder=
x=104
y=327
cx=821
cy=572
programparameters=18
[programparametersfo.grid]
propcolwidthref=304
width0=20
sortdescend0=0
width1=103
sortdescend1=0
width2=194
sortdescend2=0
sorted=0
col=-1073741823
row=-1073741823
rowheight=16
[programparametersfo]
stackedunder=
x=272
y=243
cx=328
cy=348
settings=13
[settingsfo.tsplitter2]
x=192
y=456
xprop=0.564245810055866
yprop=0.829268292682927
[settingsfo]
x=100
y=106
cx=358
cy=574
wsize=0
active=1
visible=1
imageselector=9
[imageselectorfo]
stackedunder=
x=800
y=405
cx=320
cy=244
wsize=0
active=1
visible=1
stringlisteditor=5
[stringlisteditor]
x=177
y=203
cx=275
cy=237
colordialog=5
[colordialogfo]
x=140
y=234
cx=342
cy=303
compnamedialog=5
[compnametreefo]
x=810
y=426
cx=300
cy=203
bmpfiledialog=22
[filedialog]
filenames=1
/mnt/data/projects/mse/pacman/images/images2211112.png
lastdir=/mnt/data/projects/mse/pacman/images/
filehistory=10
/mnt/data/projects/mse/pacman/images/images2211112.png
/mnt/data/projects/mse/pacman/images/images222.png
/mnt/data/projects/mse/pacman/4.14x/icon.png
/mnt/data/projects/mse/pacman/images/images222.jpeg
/mnt/data/projects/mse/pacman/images/Без имени.png
/mnt/data/projects/mse/pacman/images/новая папка/photoshop_13.png
/mnt/data/projects/mse/pacman/images/images.png
/home/alex/Projects/panel.png
/home/alex/Projects/panel2.png
/home/alex/Projects/panel3.png
filefilterindex=-1
filefilter=
filecolwidth=174
x=625
y=320
cx=603
cy=362
mainfile=${PROJECTNAME}.pas
targetfile=${PROJECTNAME}${EXEEXT}
messageoutputfile=
makecommand=${COMPILER}
makedir=
unitdirs=4
${MSEDIR}lib/addon/*/
${MSELIBDIR}kernel/$TARGETOSDIR/
${MSELIBDIR}kernel/
${MSELIBDIR}*/
unitpref=-Fu
incpref=-Fi
libpref=-Fl
objpref=-Fo
targpref=-o
befcommand=0
aftcommand=0
makeoptions=4
-l -Mobjfpc -Sh -Fcutf8
-gl -O-
-B
-O2 -XX -Xs -CX
codetemplatedirs=1
${TEMPLATEDIR}
toolmenus=0
toolfiles=0
toolparams=0
fontnames=0
scriptbeforecopy=
scriptaftercopy=
newprojectfiles=4
${TEMPLATEDIR}default/project.pas
${TEMPLATEDIR}default/main.pas
${TEMPLATEDIR}default/main.mfm
${TEMPLATEDIR}default/main_mfm.pas
newprojectfilesdest=4
${%PROJECTNAME%}.pas
newfinames=3
Program
Unit
Textfile
newfifilters=3
"*.pas" "*.pp"
"*.pas" "*.pp"
newfiexts=3
pas
pas
newfisources=3
${TEMPLATEDIR}default/program.pas
${TEMPLATEDIR}default/unit.pas
newfonames=11
Mainform
Simple Form
Docking Form
Datamodule
Subform
Scrollboxform
Tabform
Dockpanel
Report
Scriptform
Inherited Form
newfonamebases=11
form
form
form
module
form
form
form
form
report
script
form
newfosources=11
${TEMPLATEDIR}default/mainform.pas
${TEMPLATEDIR}default/simpleform.pas
${TEMPLATEDIR}default/dockingform.pas
${TEMPLATEDIR}default/datamodule.pas
${TEMPLATEDIR}default/subform.pas
${TEMPLATEDIR}default/scrollboxform.pas
${TEMPLATEDIR}default/tabform.pas
${TEMPLATEDIR}default/dockpanelform.pas
${TEMPLATEDIR}default/report.pas
${TEMPLATEDIR}default/pascform.pas
${TEMPLATEDIR}default/inheritedform.pas
newfoforms=11
${TEMPLATEDIR}default/mainform.mfm
${TEMPLATEDIR}default/simpleform.mfm
${TEMPLATEDIR}default/dockingform.mfm
${TEMPLATEDIR}default/datamodule.mfm
${TEMPLATEDIR}default/subform.mfm
${TEMPLATEDIR}default/scrollboxform.mfm
${TEMPLATEDIR}default/tabform.mfm
${TEMPLATEDIR}default/dockpanelform.mfm
${TEMPLATEDIR}default/report.mfm
${TEMPLATEDIR}default/pascform.mfm
${TEMPLATEDIR}default/inheritedform.mfm
copymessages=0
closemessages=1
checkmethods=1
colorerror=-1610612712
colorwarning=-1610612717
colornote=-1610612716
usercolors=30
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
usercolorcomment=30
formatmacronames=0
formatmacrovalues=0
settingsfile=
settingseditor=0
settingsdebugger=0
settingsstorage=0
settingsprojecttree=0
settingsautoload=0
settingsautosave=0
modulenames=1
MAINFO
moduletypes=1
TMAINFO
modulefiles=1
/mnt/data/projects/pacmanxg/pacmanxg4/main.mfm
befcommandon=0
makeoptionson=4
63
31
34
32
aftcommandon=0
unitdirson=4
196671
65599
196671
65599
macroon=0
macronames=0
macrovalues=0
macrogroup=0
groupcomments=6
toolsave=0
toolhide=0
toolparse=0
toolmessages=0
fontalias=0
fontancestors=0
fontheights=0
fontwidths=0
fontoptions=0
fontxscales=0
expandprojectfilemacros=4
1
1
1
0
loadprojectfile=4
1
1
1
0
newinheritedforms=11
0
0
0
0
0
0
0
0
0
0
-1
sourcefilemasks=3
"*.pas" "*.dpr" "*.lpr" "*.pp" "*.inc"
"*.c" "*.cc" "*.h"
"*.mfm"
syntaxdeffiles=3
${SYNTAXDEFDIR}pascal.sdef
${SYNTAXDEFDIR}cpp.sdef
${SYNTAXDEFDIR}objecttext.sdef
filemasknames=3
Source
Forms
All Files
filemasks=3
"*.pp" "*.pas" "*.inc" "*.dpr" "*.lpr"
*.mfm
*
showgrid=1
snaptogrid=1
moveonfirstclick=1
gridsizex=8
gridsizey=8
autoindent=1
blockindent=1
rightmarginon=1
rightmarginchars=80
scrollheight=0
tabstops=4
spacetabs=0
showtabs=0
tabindent=0
editfontname=mseide_source
editfontheight=0
editfontwidth=0
editfontextraspace=0
editfontcolor=-1879048183
editbkcolor=-1879048186
statementcolor=14745599
editfontantialiased=1
editmarkbrackets=1
backupfilecount=2
encoding=1
codetemplatedirs=1
${TEMPLATEDIR}
debugcommand=${DEBUGGER}
debugoptions=
debugtarget=
runcommand=
xtermoptions=
remoteconnection=
uploadcommand=
gdbprocessor=Auto
gdbservercommand=
gdbservercommandattach=
beforeconnect=
afterconnect=
beforeload=
afterload=
beforerun=
sourcedirs=4
${MSEDIR}lib/addon/*/
${MSELIBDIR}kernel/$TARGET/
${MSELIBDIR}*/
./
defines=0
progparameters=
progworkingdirectory=
envvarnames=0
envvarvalues=0
defineson=0
stoponexception=0
valuehints=1
activateonbreak=1
showconsole=0
externalconsole=0
settty=1
gdbdownload=0
downloadalways=0
startupbkpt=0
startupbkpton=0
gdbsimulator=0
gdbserverstartonce=0
gdbserverwait=0
nogdbserverexit=0
gdbservertty=0
exceptclassnames=1
EconvertError
exceptignore=1
0
nodebugbeginend=0
sigsettings=27
1,1,T,F
3,3,T,F
4,4,T,F
6,6,T,F
7,7,T,F
8,8,T,F
9,9,T,F
10,10,T,F
11,11,T,F
12,12,T,F
13,13,T,F
15,15,T,F
16,16,T,F
17,17,F,F
18,18,T,F
19,19,T,F
20,20,T,F
21,21,T,F
22,22,T,F
23,23,T,F
24,24,T,F
25,25,T,F
26,26,T,F
27,27,T,F
28,28,T,F
29,29,F,F
30,30,T,F
defaultmake=1
[breakpoints]
on=1
0
path=1
line=1
0
address=1
0
addbkpt=1
0
ignore=1
0
condition=1
panels=1
panel1
units=
(
a=0,4132,6,Pascal Units
)
cmodules=
(
a=0,4132,6,C Modules
)
files=
(
a=0,4132,6,Text Files
)
[componentstore]
storedir=/mnt/data/bin/mseide/msegui_2_8_6_release/apps/ide/compstore/
filename=
[components]
[selecteditpage]
colwidth=100
x=0
y=0
cx=0
cy=0
[progparams]
progparamhistory=0
envvarons=0
[layout]
windowlayout=566
[mainfo.openform]
filenames=1
/run/media/user/projects/mse/pacman/4.14x/msefiledialogres.mfm
filehistory=2
/run/media/user/projects/mse/pacman/4.14x/msefiledialogres.mfm
/run/media/user/projects/mse/pacman/4.14x/msefiledialog.mfm
filefilterindex=0
filefilter=*.mfm
filecolwidth=174
x=390
y=364
cx=588
cy=307
[mainfo.projectfiledia]
filenames=1
/mnt/data/projects/ssx/ssx.prj
lastdir=/mnt/data/projects/ssx/
filehistory=3
/mnt/data/projects/ssx/ssx.prj
/mnt/data/projects/pacmanxg/pacmanxg4/pacmanxg.prj
/mnt/data/projects/game_noname/current/noname.prj
filefilterindex=0
filefilter=*.prj
filecolwidth=174
x=886
y=354
cx=588
cy=307
[mainfo.openfile]
filenames=0
filehistory=10
/run/media/user/projects/mse/msedialog_ext/msefiledialog.pas
/mnt/data/projects/mse/pacman/4.14x/main.pas
/home/alex/Projects/pacmanxg4_src/engine.pas
/home/alex/Projects/4.14xcopy/pacmanxg.pas
/home/alex/Projects/4.14xcopy/rssunit.pas
/home/alex/Projects/4.14xcopy/paramsform.pas
/home/alex/Projects/4.14xcopy/messages.pas
/home/alex/Projects/4.14xcopy/screenshotform.pas
/home/alex/Projects/4.14xcopy/main.pas
/mnt/data/projects/mse/pacman/4.14x/screenshotform.pas
filefilterindex=0
filefilter="*.pp" "*.pas" "*.inc" "*.dpr"
filecolwidth=174
x=319
y=62
cx=588
cy=307
[mainfo.basedock]
splitdir=2
useroptions=15488
[mainfo]
splitdir=0
useroptions=127
stackedunder=
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=1
y=22
cx=552
cy=69
rcx=0
rcy=0
children=2
container,0,16,542,53
,0,0,542,16
focusedchild=0
wsize=0
active=1
visible=1
[targetconsolefo]
splitdir=0
useroptions=16489
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=1
y=704
cx=817
cy=227
rcx=0
rcy=0
wsize=0
active=0
visible=1
[threadsfo]
splitdir=0
useroptions=16489
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=37
y=270
cx=349
cy=276
rcx=0
rcy=0
wsize=0
active=0
visible=0
[memoryfo]
splitdir=0
useroptions=16507
stackedunder=cpui386fo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=100
y=100
cx=453
cy=354
rcx=0
rcy=0
wsize=0
active=0
visible=0
[memoryfo.add]
value=0
[memoryfo.memon]
value=0
[memoryfo.bitwidth]
value=0
[memoryfo.cnt]
value=0
[disassfo]
splitdir=0
useroptions=16491
stackedunder=memoryfo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=162
y=502
cx=564
cy=210
rcx=0
rcy=0
wsize=0
active=0
visible=0
[findinfilefo]
splitdir=0
useroptions=16491
stackedunder=targetconsolefo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=548
y=115
cx=369
cy=198
rcx=0
rcy=0
[projecttreefo]
splitdir=0
useroptions=16491
stackedunder=disassfo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=321
y=101
cx=698
cy=413
rcx=0
rcy=0
wsize=0
active=0
visible=0
[projecttreefo.grid]
propcolwidthref=547
width0=141
sortdescend0=0
width1=541
sortdescend1=0
sorted=0
col=-1073741823
row=-1073741823
rowheight=16
[stackfo]
splitdir=0
useroptions=24681
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=407
y=349
cx=254
cy=180
rcx=0
rcy=0
wsize=0
active=0
visible=0
[watchpointsfo]
splitdir=0
useroptions=16489
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=537
y=26
cx=483
cy=210
rcx=0
rcy=0
wsize=0
active=0
visible=0
[watchpointsfo.grid]
propcolwidthref=352
width0=16
sortdescend0=0
values1=1
0
values1_ci=-1
width1=33
sortdescend1=0
values2=1
pinteger(0x126c6b4)^
width2=239
sortdescend2=0
width4=34
sortdescend4=0
values5=1
0
values5_ci=-1
width5=38
sortdescend5=0
values6=1
width6=103
sortdescend6=0
[breakpointsfo]
splitdir=0
useroptions=16491
stackedunder=findinfilefo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=889
y=37
cx=477
cy=128
rcx=0
rcy=0
wsize=0
active=0
visible=0
[breakpointsfo.bkptson]
value=1
[objectinspectorfo]
splitdir=0
useroptions=16491
stackedunder=formdesignerfo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=1250
y=132
cx=610
cy=741
rcx=0
rcy=0
wsize=0
active=0
visible=1
[objectinspectorfo.grid]
propcolwidthref=600
width0=305
sortdescend0=0
width1=289
sortdescend1=0
[symbolfo]
splitdir=0
useroptions=16511
stackedunder=projecttreefo
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=142
y=257
cx=361
cy=137
rcx=0
rcy=0
children=1
container,0,0,351,137
focusedchild=-1
wsize=0
active=0
visible=0
[symbolfo.grid]
propcolwidthref=222
values0=14
width0=111
sortdescend0=0
width1=135
sortdescend1=0
[symbolfo.symbol]
[watchfo]
splitdir=0
useroptions=24681
parent=
mdistate=0
nx=0
ny=0
ncx=0
ncy=0
x=510
y=325
cx=310
cy=245
rcx=0
rcy=0
wsize=0
active=0
visible=0
[watchfo.grid]
propcolwidthref=105
values0=0
values0_ci=-1
width0=13
sortdescend0=0
values1=0
width1=152
sortdescend1=0
values3=0
values3_ci=-1
width3=12
sortdescend3=0