-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSettings.dfm
631 lines (631 loc) · 16.2 KB
/
Settings.dfm
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
object frm_settings: Tfrm_settings
Left = 305
Top = 287
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Settings'
ClientHeight = 256
ClientWidth = 512
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 513
Height = 257
ActivePage = TabSheet1
MultiLine = True
TabIndex = 0
TabOrder = 0
object TabSheet1: TTabSheet
Caption = 'General'
object GroupBox2: TGroupBox
Left = 8
Top = 8
Width = 249
Height = 153
Caption = 'Main Settings: '
TabOrder = 0
object cb_lastscene: TCheckBox
Left = 8
Top = 16
Width = 161
Height = 17
Caption = 'Open last scene at startup.'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = cb_lastsceneClick
end
object cb_roomdesign: TCheckBox
Left = 8
Top = 40
Width = 225
Height = 17
Caption = 'Display room design when scene is loaded.'
Checked = True
State = cbChecked
TabOrder = 1
OnClick = cb_roomdesignClick
end
object cb_brickcoord: TCheckBox
Left = 8
Top = 80
Width = 233
Height = 17
Caption = 'Use brick coordinates (X+512,Y+256,Z+256)'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = cb_brickcoordClick
end
object cb_brickcoordActors: TCheckBox
Left = 24
Top = 96
Width = 97
Height = 17
Caption = 'In Actors'
Checked = True
State = cbChecked
TabOrder = 3
OnClick = cb_brickcoordActorsClick
end
object cb_brickcoordTracks: TCheckBox
Left = 24
Top = 112
Width = 97
Height = 17
Caption = 'In Tracks'
Checked = True
State = cbChecked
TabOrder = 4
OnClick = cb_brickcoordTracksClick
end
object cb_brickcoordZones: TCheckBox
Left = 24
Top = 128
Width = 97
Height = 17
Caption = 'In Zones'
Checked = True
State = cbChecked
TabOrder = 5
OnClick = cb_brickcoordZonesClick
end
object cb_stayontop: TCheckBox
Left = 40
Top = 56
Width = 193
Height = 17
Caption = 'Stay On Top when displaying rooms.'
Checked = True
State = cbChecked
TabOrder = 6
OnClick = cb_stayontopClick
end
end
object GroupBox3: TGroupBox
Left = 264
Top = 8
Width = 233
Height = 121
Caption = 'File Association: '
TabOrder = 1
object cb_ls1: TCheckBox
Left = 40
Top = 48
Width = 169
Height = 17
Caption = '*.ls1 (LBA1 Binary Scene File)'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = cb_ls1Click
end
object cb_sce: TCheckBox
Left = 40
Top = 96
Width = 185
Height = 17
Caption = '*.sce (Text Scene for TwinEngine)'
Checked = True
State = cbChecked
TabOrder = 1
OnClick = cb_sceClick
end
object cb_scp: TCheckBox
Left = 40
Top = 24
Width = 177
Height = 17
Caption = '*.scp (LBA Story Coder Project)'
Checked = True
State = cbChecked
TabOrder = 2
OnClick = cb_scpClick
end
object cb_ls2: TCheckBox
Left = 40
Top = 72
Width = 177
Height = 17
Caption = '*.ls2 (LBA2 Binary Scene File)'
Checked = True
State = cbChecked
TabOrder = 3
OnClick = cb_ls2Click
end
end
end
object TabSheet2: TTabSheet
Caption = 'Programs Paths'
ImageIndex = 1
object Label8: TLabel
Left = 8
Top = 4
Width = 176
Height = 13
Caption = 'You always need to set up this paths.'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label6: TLabel
Left = 8
Top = 32
Width = 210
Height = 13
Caption = 'Set the path for LBArchitect Builder program:'
end
object Label3: TLabel
Left = 8
Top = 88
Width = 223
Height = 13
Caption = 'Set the path for Story Coder 3D Models Viewer:'
Enabled = False
end
object Label7: TLabel
Left = 8
Top = 128
Width = 204
Height = 13
Caption = 'Set the path for Story Coder Sprites Viewer:'
Enabled = False
end
object edt_builderPath: TEdit
Left = 8
Top = 48
Width = 473
Height = 21
TabOrder = 0
OnChange = edt_builderPathChange
end
object edt_spritesViewerPath: TEdit
Left = 8
Top = 144
Width = 473
Height = 21
Enabled = False
TabOrder = 1
OnChange = edt_spritesViewerPathChange
end
object edt_modelViewerPath: TEdit
Left = 8
Top = 104
Width = 473
Height = 21
Enabled = False
TabOrder = 2
OnChange = edt_modelViewerPathChange
end
object bt_spritesDialog: TButton
Left = 461
Top = 146
Width = 18
Height = 18
Caption = '...'
Enabled = False
TabOrder = 3
OnClick = bt_spritesDialogClick
end
object bt_3DModelDialog: TButton
Left = 461
Top = 106
Width = 18
Height = 18
Caption = '...'
Enabled = False
TabOrder = 4
OnClick = bt_3DModelDialogClick
end
object bt_builderDialog: TButton
Left = 461
Top = 50
Width = 18
Height = 18
Caption = '...'
TabOrder = 5
OnClick = bt_builderDialogClick
end
end
object TabSheet4: TTabSheet
Caption = 'HQR Paths'
ImageIndex = 3
object Label4: TLabel
Left = 8
Top = 4
Width = 176
Height = 13
Caption = 'You always need to set up this paths.'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
ParentColor = False
ParentFont = False
end
object Label9: TLabel
Left = 8
Top = 32
Width = 89
Height = 13
Caption = 'LBA1 File3D.HQR:'
end
object Label10: TLabel
Left = 8
Top = 72
Width = 83
Height = 13
Caption = 'LBA1 Body.HQR:'
Enabled = False
end
object Label11: TLabel
Left = 8
Top = 152
Width = 91
Height = 13
Caption = 'LBA1 Sprites.HQR:'
Enabled = False
end
object Label1: TLabel
Left = 8
Top = 112
Width = 82
Height = 13
Caption = 'LBA1 Anim.HQR:'
Enabled = False
end
object edt_entitiesPath: TEdit
Left = 8
Top = 48
Width = 473
Height = 21
TabOrder = 0
OnChange = edt_entitiesPathChange
end
object edt_bodyPath: TEdit
Left = 8
Top = 88
Width = 473
Height = 21
Enabled = False
TabOrder = 1
OnChange = edt_bodyPathChange
end
object edt_spritesPath: TEdit
Left = 8
Top = 168
Width = 473
Height = 21
Enabled = False
TabOrder = 2
OnChange = edt_spritesPathChange
end
object bt_spritesHQRDialog: TButton
Left = 461
Top = 170
Width = 18
Height = 18
Caption = '...'
Enabled = False
TabOrder = 3
OnClick = bt_spritesHQRDialogClick
end
object bt_bodyPath: TButton
Left = 461
Top = 90
Width = 18
Height = 18
Caption = '...'
Enabled = False
TabOrder = 4
OnClick = bt_bodyPathClick
end
object bt_entetiesDialog: TButton
Left = 461
Top = 50
Width = 18
Height = 18
Caption = '...'
TabOrder = 5
OnClick = bt_entetiesDialogClick
end
object edt_animPath: TEdit
Left = 8
Top = 128
Width = 473
Height = 21
Enabled = False
TabOrder = 6
OnChange = edt_spritesPathChange
end
object Button1: TButton
Left = 461
Top = 130
Width = 18
Height = 18
Caption = '...'
Enabled = False
TabOrder = 7
OnClick = Button1Click
end
end
object TabSheet3: TTabSheet
Caption = 'Syntax Highlight'
ImageIndex = 2
object cb_syntax: TCheckBox
Left = 8
Top = 8
Width = 321
Height = 17
Caption =
'Display scripts with syntax highlight. (Can slow a bit script lo' +
'ad)'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = cb_syntaxClick
end
object bt_defaultSyntaxColors: TButton
Left = 408
Top = 0
Width = 97
Height = 25
Caption = 'Default Colors'
Enabled = False
TabOrder = 1
OnClick = bt_defaultSyntaxColorsClick
end
object GroupBox1: TGroupBox
Left = 264
Top = 32
Width = 233
Height = 113
Caption = 'Track Script Colors: '
Enabled = False
TabOrder = 2
object Label17: TLabel
Left = 8
Top = 20
Width = 50
Height = 13
Caption = 'Label/End'
Enabled = False
end
object Label18: TLabel
Left = 8
Top = 68
Width = 22
Height = 13
Caption = 'Stop'
Enabled = False
end
object Label19: TLabel
Left = 120
Top = 20
Width = 35
Height = 13
Caption = 'Macros'
Enabled = False
end
object color_tracklabel: TColorBox
Left = 8
Top = 36
Width = 97
Height = 22
Selected = clGreen
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 0
OnChange = color_tracklabelChange
end
object color_trackstop: TColorBox
Left = 8
Top = 84
Width = 97
Height = 22
Selected = clRed
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 1
OnChange = color_trackstopChange
end
object color_trackmacros: TColorBox
Left = 120
Top = 36
Width = 97
Height = 22
Selected = clBlue
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 2
OnChange = color_trackmacrosChange
end
end
object GroupBox4: TGroupBox
Left = 8
Top = 32
Width = 249
Height = 113
Caption = 'Life Script Colors: '
Enabled = False
TabOrder = 3
object Label5: TLabel
Left = 8
Top = 20
Width = 73
Height = 13
Caption = 'Comportaments'
Enabled = False
end
object Label12: TLabel
Left = 8
Top = 68
Width = 49
Height = 13
Caption = 'Conditions'
Enabled = False
end
object Label13: TLabel
Left = 128
Top = 68
Width = 95
Height = 13
Caption = 'Conditions Variables'
Enabled = False
end
object Label14: TLabel
Left = 128
Top = 20
Width = 35
Height = 13
Caption = 'Macros'
Enabled = False
end
object color_comp: TColorBox
Left = 8
Top = 36
Width = 97
Height = 22
Selected = clGreen
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 0
OnChange = color_compChange
end
object color_cond: TColorBox
Left = 8
Top = 84
Width = 97
Height = 22
Selected = clRed
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 1
OnChange = color_condChange
end
object color_condvars: TColorBox
Left = 128
Top = 84
Width = 97
Height = 22
Selected = clFuchsia
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 2
OnChange = color_condvarsChange
end
object color_macros: TColorBox
Left = 128
Top = 36
Width = 97
Height = 22
Selected = clBlue
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 3
OnChange = color_macrosChange
end
end
object GroupBox5: TGroupBox
Left = 8
Top = 152
Width = 489
Height = 65
Caption = 'Common Colors: '
Enabled = False
TabOrder = 4
object Label15: TLabel
Left = 8
Top = 16
Width = 42
Height = 13
Caption = 'Numbers'
Enabled = False
end
object Label16: TLabel
Left = 128
Top = 16
Width = 212
Height = 13
Caption = 'Comments ( ex: REM This is a comment line )'
Enabled = False
end
object color_numbers: TColorBox
Left = 8
Top = 35
Width = 97
Height = 22
Selected = clMaroon
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 0
OnChange = color_numbersChange
end
object color_comments: TColorBox
Left = 128
Top = 35
Width = 97
Height = 22
Selected = clTeal
Style = [cbStandardColors, cbIncludeDefault, cbCustomColor, cbPrettyNames]
Enabled = False
ItemHeight = 16
TabOrder = 1
OnChange = color_commentsChange
end
end
end
end
object settings_opendialog: TOpenDialog
Filter = 'Scene.hqr|Scene.hqr'
Title = 'Load High Quality Resource file'
Left = 360
Top = 24
end
end