-
Notifications
You must be signed in to change notification settings - Fork 1
/
.tms_config_master
907 lines (907 loc) · 19.1 KB
/
.tms_config_master
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
{
'ALLOW_WC3X3':{
'default':0,
'descr':'',
'dtype':'int',
'showme':0,
'tooltip':'Allow equations with 6 terms, including 1 wildcard. This is generally too CPU intensive and should be left off.',
'value':0,
'wtype':'wx.CheckBox',
},
'APPDIR':'TuxMathScrabble',
'APPNAME':'TuxMathScrabble',
'BONUS_FOR_USING_ALL_TILES':{
'default':50,
'descr':'',
'dtype':'int',
'max':100,
'min':0,
'showme':0,
'tooltip':'Additional bonus points if player uses all tiles in single play.',
'value':50,
'wtype':'wx.SpinCtrl',
},
'CFGNAME':'.tms_config',
'COLOR_BG':{
'default':(0, 106, 70),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'Background color used throughout',
'value':(0, 106, 70),
'wtype':'wx.ColourDialog',
},
'COLOR_BG_BUTTON':{
'default':(255, 255, 255),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The background color of Player[1] tiles.',
'value':(255, 255, 255),
'wtype':'wx.ColourDialog',
},
'COLOR_BG_HUD':{
'default':(0, 0, 0),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'Color used for Heads-Up Display (HUD) background',
'value':(0, 0, 0),
'wtype':'wx.ColourDialog',
},
'COLOR_BG_OVERLAY':{
'default':(255, 255, 255),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The background color for the definition overlay popup',
'value':(255, 255, 255),
'wtype':'wx.ColourDialog',
},
'COLOR_BG_OVERLAY_ALPHA':{
'default':200,
'descr':'',
'divisor':1,
'dtype':'int',
'max':255,
'min':1,
'showme':0,
'style':4,
'tooltip':'Transparency of word:definition overlay popup. 0=invisible, 255=opaque.',
'value':200.0,
'wtype':'wx.Slider',
},
'COLOR_BG_PLAYER0_TILE':{
'default':(58,104,196),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The foreground color of Player[0] tiles.',
'value':(58,104,196),
'wtype':'wx.ColourDialog',
},
'COLOR_BG_PLAYER1_TILE':{
'default':(0,99,99),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The background color of Player[1] tiles.',
'value':(0,99,99),
'wtype':'wx.ColourDialog',
},
'COLOR_FG':{
'default':(250, 200, 0),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'Default color used for non hilighted text',
'value':(250, 200, 0),
'wtype':'wx.ColourDialog',
},
'COLOR_FG_BUTTON':{
'default':(0, 0, 200),
'descr':'',
'dtype':'vec3',
'showme':-1,
'tooltip':'The foreground color of buttons.',
'value':(0, 0, 200),
'wtype':'wx.ColourDialog',
},
'COLOR_FG_HUD':{
'default':(0, 255, 0),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'Color used for Heads-Up Display (HUD) text',
'value':(0, 255, 0),
'wtype':'wx.ColourDialog',
},
'COLOR_FG_OVERLAY':{
'default':(0, 0, 255),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The foreground color for the definition overlay popup',
'value':(0, 0, 255),
'wtype':'wx.ColourDialog',
},
'COLOR_FG_PLAYER0_TILE':{
'default':(0,255,255),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The background color of Player[0] tiles.',
'value':(0,255,255),
'wtype':'wx.ColourDialog',
},
'COLOR_FG_PLAYER1_TILE':{
'default':(85,255,0),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The foreground color of Player[1] tiles.',
'value':(85,255,0),
'wtype':'wx.ColourDialog',
},
'COLOR_HIGH_SCORES':{
'default':(255, 200, 0),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'Color used for High Score strings. ',
'value':(255, 200, 0),
'wtype':'wx.ColourDialog',
},
'COLOR_HILIGHT':{
'default':(255, 255, 0),
'descr':'',
'dtype':'vec3',
'showme':-1,
'tooltip':'Color used for hilighted text',
'value':(255, 255, 0),
'wtype':'wx.ColourDialog',
},
'COLOR_SPOT':{
'default':(166,192,246),
'descr':'',
'dtype':'vec3',
'showme':0,
'tooltip':'The color of tray and board spots.',
'value':(100,150,255),
'wtype':'wx.ColourDialog',
},
'COLOR_SPOT_ALPHA':{
'default':255,
'descr':'',
'divisor':1,
'dtype':'int',
'max':255,
'min':1,
'showme':0,
'style':4,
'tooltip':'The alpha value for tray and board spots: [0-255]',
'value':255,
'wtype':'wx.Slider',
},
'COLOR_TILE_ALPHA':{
'default':255,
'descr':'',
'divisor':1,
'dtype':'int',
'max':255,
'min':1,
'showme':0,
'style':4,
'tooltip':'The alpha value for tiles: [0-255]',
'value':255.0,
'wtype':'wx.Slider',
},
'CONFIG_WIDGET_H':{
'default':30,
'descr':'',
'dtype':'int',
'max':50,
'min':10,
'showme':0,
'tooltip':'The height of the widgets (buttons, sliders, etc) in the administrator panel.',
'value':30,
'wtype':'wx.SpinCtrl',
},
'CONFIG_WIDGET_W':{
'default':120,
'descr':'',
'dtype':'int',
'max':400,
'min':10,
'showme':0,
'tooltip':'The width of the widgets (buttons, sliders, etc) in the administrator panel.',
'value':120,
'wtype':'wx.SpinCtrl',
},
'DEFAULT_LEVEL':{
'default':4,
'descr':'',
'dtype':'int',
'max':4,
'min':1,
'showme':0,
'tooltip':'The default skill level.',
'value':4,
'wtype':'wx.SpinCtrl',
},
'DISPLAY_HIGH_SCORES':{
'default':1,
'descr':'',
'dtype':'int',
'showme':0,
'style':None,
'tooltip':'Whether to display High-Score list',
'value':1,
'wtype':'wx.CheckBox',
},
'END_GAME_THRESHOLD':{
'default':3,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Number of consecutive failures to make a move that results in game being declared over.',
'value':3,
'wtype':'wx.SpinCtrl',
},
'FIREWORKS_DT':{
'default':0.07,
'descr':'',
'divisor':100.0,
'dtype':'int',
'max':10,
'min':1,
'showme':0,
'style':4,
'tooltip':'The time interval between frames. Used in computing dx=v*dt+0.5*a*dt2 etc. Reduce this for smoother animation if your graphics card and CPU can handle it.',
'value':0.07,
'wtype':'wx.Slider',
},
'FIREWORKS_DT_LAUNCH':{
'default':1.0,
'descr':'',
'divisor':100.0,
'dtype':'int',
'max':100,
'min':0,
'showme':0,
'style':4,
'tooltip':'Number of seconds between launches of projectiles in arsenal. Turning this to a low value around .2 will surely max-out your graphics card. Put more time between launches if you experience any frame-dragging. Reducing this makes more fireworks on screen at once, and thus a more dramatic show.',
'value':1.0,
'wtype':'wx.Slider',
},
'FIREWORKS_SCALEFACTOR':{
'default':0.98,
'descr':'',
'divisor':100.0,
'dtype':'int',
'max':99,
'min':50,
'showme':0,
'style':4,
'tooltip':'The brightness of each projectile is scaled by this number at the end of each clock-tic. If left at 1.0 then there would be no fading effect, and elements of successive stages would be removed abruptly at their pre-packaged max-time-on-screen variable.',
'value':0.98,
'wtype':'wx.Slider',
},
'FIREWORKS_SETSIZE':{
'default':25,
'descr':'',
'divisor':1.0,
'dtype':'int',
'max':200,
'min':1,
'showme':0,
'style':4,
'tooltip':'The number of firework projectiles to accumulate for each show.',
'value':25.0,
'wtype':'wx.Slider',
},
'FONTSIZE_APPNAME':{
'default':36,
'descr':'',
'dtype':'int',
'max':100,
'min':10,
'showme':0,
'tooltip':'Fontsize for tiles.',
'value':36,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_BUTTON':{
'default':18,
'descr':'',
'dtype':'int',
'max':100,
'min':10,
'showme':0,
'tooltip':'Fontsize for buttons.',
'value':18,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_HUD':{
'default':16,
'descr':'',
'dtype':'int',
'max':100,
'min':6,
'showme':0,
'tooltip':'Fontsize corresponding to FONT_HUD_SMALL.',
'value':16,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_OVERLAY':{
'default':16,
'descr':'',
'dtype':'int',
'max':100,
'min':6,
'showme':0,
'tooltip':'Fontsize corresponding to FONT_HUD_SMALL.',
'value':16,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_OVERLAY_SMALL':{
'default':12,
'descr':'',
'dtype':'int',
'max':100,
'min':6,
'showme':0,
'tooltip':'Fontsize corresponding to FONT_HUD used for small overlays.',
'value':12,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_TILE':{
'default':21,
'descr':'',
'dtype':'int',
'max':100,
'min':10,
'showme':0,
'tooltip':'Fontsize for tiles.',
'value':21,
'wtype':'wx.SpinCtrl',
},
'FONTSIZE_TILE_PTVAL':{
'default':8,
'descr':'',
'dtype':'int',
'max':100,
'min':1,
'showme':0,
'tooltip':'Fontsize for point value number in lower left corner of tile.',
'value':8,
'wtype':'wx.SpinCtrl',
},
'FONT_APPNAME':{
'default_path':'./Font',
'default_value':'mickey.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':-1,
'tooltip':'Font to be used for application name overlay.',
'value':'mickey.ttf',
'wtype':'wx.FileDialog',
},
'FONT_BFONT':{
'default_path':'./Font',
'default_value':'Bluehigh.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':0,
'tooltip':'Button Font',
'value':'Bluehigh.ttf',
'wtype':'wx.FileDialog',
},
'FONT_CFONT':{
'default_path':'./Font',
'default_value':'arialbd.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':0,
'tooltip':'Character font used for tile characters',
'value':'arialbd.ttf',
'wtype':'wx.FileDialog',
},
'FONT_HUD':{
'default_path':'./Font',
'default_value':'aqua_pfont.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':0,
'tooltip':'The default font to be used for other overlay information (credits, etc).',
'value':'aqua_pfont.ttf',
'wtype':'wx.FileDialog',
},
'FONT_OVERLAY':{
'default_path':'./Font',
'default_value':'arial.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':0,
'tooltip':'The default font to be used for other overlay information (credits, etc).',
'value':'arial.ttf',
'wtype':'wx.FileDialog',
},
'FONT_PFONT':{
'default_path':'./Font',
'default_value':'Bluehigh.ttf',
'descr':'',
'dtype':'wx.String',
'path':'./Font',
'showme':0,
'tooltip':'Point value font (ie lower right corner of tiles)',
'value':'Bluehigh.ttf',
'wtype':'wx.FileDialog',
},
'GAME_BUTTON_H':{
'default':30,
'descr':'',
'dtype':'int',
'max':100,
'min':10,
'showme':0,
'tooltip':'The height of the on-screen buttons, such as Play,Okay,Admin etc.',
'value':30,
'wtype':'wx.SpinCtrl',
},
'GAME_BUTTON_W':{
'default':81,
'descr':'',
'dtype':'int',
'max':200,
'min':10,
'showme':0,
'tooltip':'The width of the on-screen buttons, such as Play,Okay,Admin etc.',
'value':81,
'wtype':'wx.SpinCtrl',
},
'HIGH_SCORES':[
],
'HUMAN_PLAYER_ZERO':{
'default':0,
'descr':'',
'dtype':'int',
'showme':1,
'style':None,
'tooltip':'Top player is human controlled during play, when checked.',
'value':0,
'wtype':'wx.CheckBox',
},
'IMAGE_ADMIN_SIDEBAR':{
'defalut_path':'./TuxMathScrabble/Images',
'default_value':'asb.gif',
'descr':'',
'dtype':'wx.String',
'path':'./TuxMathScrabble/Images',
'showme':0,
'tooltip':'The image to be applied in the left sidebar of the administrator control panel.',
'value':'asb.gif',
'wtype':'wx.FileDialog',
},
'IMAGE_BG':{
'default':'',
'descr':'',
'dtype':'wx.String',
'path':'./TuxMathScrabble/Images',
'showme':1,
'tooltip':'Background image that will be roto-zoomed to fit your window W and H',
'value':'Wave.jpg',
'wtype':'wx.FileDialog',
},
'IMAGE_BG_ALPHA':{
'default':255,
'descr':'',
'divisor':1,
'dtype':'int',
'max':255,
'min':1,
'showme':0,
'style':4,
'tooltip':'The alpha (opacity, transparancy) value for background image: [0-255]',
'value':255.0,
'wtype':'wx.Slider',
},
'M':{
'default':13,
'descr':'',
'dtype':'int',
'max':40,
'min':5,
'showme':0,
'tooltip':'The number of rows on the gameboard.',
'value':13,
'wtype':'wx.SpinCtrl',
},
'MAXNUM_LEVEL_1':{
'default':6,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Upper numeric limit of tiles for level 1',
'value':6,
'wtype':'wx.SpinCtrl',
},
'MAXNUM_LEVEL_2':{
'default':10,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Upper numeric limit of tiles for level 2',
'value':10,
'wtype':'wx.SpinCtrl',
},
'MAXNUM_LEVEL_3':{
'default':12,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Upper numeric limit of tiles for level 3',
'value':12,
'wtype':'wx.SpinCtrl',
},
'MAXNUM_LEVEL_4':{
'default':21,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Upper numeric limit of tiles for level 4',
'value':21,
'wtype':'wx.SpinCtrl',
},
'MAX_REPLACEMENTS_L1':{
'default':2,
'descr':'',
'dtype':'int',
'max':4,
'min':0,
'showme':0,
'tooltip':'Computer player max number of tiles from existing submissions to attempt to reuse (level 1)',
'value':2,
'wtype':'wx.SpinCtrl',
},
'MAX_REPLACEMENTS_L2':{
'default':3,
'descr':'',
'dtype':'int',
'max':4,
'min':0,
'showme':0,
'tooltip':'Computer player max number of tiles from existing submissions to attempt to reuse (level 2)',
'value':3,
'wtype':'wx.SpinCtrl',
},
'MAX_REPLACEMENTS_L3':{
'default':3,
'descr':'',
'dtype':'int',
'max':4,
'min':0,
'showme':0,
'tooltip':'Computer player max number of tiles from existing submissions to attempt to reuse (level 3)',
'value':3,
'wtype':'wx.SpinCtrl',
},
'MAX_REPLACEMENTS_L4':{
'default':3,
'descr':'',
'dtype':'int',
'max':4,
'min':0,
'showme':0,
'tooltip':'Computer player max number of tiles from existing submissions to attempt to reuse (level 4)',
'value':3,
'wtype':'wx.SpinCtrl',
},
'N':{
'default':17,
'descr':'',
'dtype':'int',
'max':40,
'min':5,
'showme':0,
'tooltip':'The number of columns on the gameboard.',
'value':17,
'wtype':'wx.SpinCtrl',
},
'NUM_HIGH_SCORES_TO_KEEP':{
'default':5,
'descr':'',
'dtype':'int',
'max':15,
'min':0,
'showme':0,
'tooltip':'Length of the High-Score list to record.',
'value':5,
'wtype':'wx.SpinCtrl',
},
'PLAYER_0_CHARACTER':{
'default':[
'Tux2D',
'LittleTux2D',
'None',
],
'descr':'',
'dtype':'wx.String',
'icon':1,
'showme':1,
'style':None,
'tooltip':'The character representing player 0 (Player at top of screen)',
'value':'Tux2D',
'wtype':'wx.ComboBox',
},
'PLAYER_1_CHARACTER':{
'default':[
'Tux2D',
'LittleTux2D',
'None',
],
'descr':'',
'dtype':'wx.String',
'icon':1,
'showme':1,
'style':None,
'tooltip':'The character representing player 1 (Player at bottom of screen)',
'value':'LittleTux2D',
'wtype':'wx.ComboBox',
},
'PLAYER_WAIT_COUNTER':{
'default':4000,
'descr':'',
'dtype':'int',
'max':10000,
'min':1,
'showme':0,
'tooltip':'The number of frames to elapse before queing a wait maneuver (i.e. some funny look or trick by Tux while waiting for user to make a move, or vice versa).',
'value':4000,
'wtype':'wx.SpinCtrl',
},
'SCREENSAVER_ON_AT_START':{
'default':1,
'descr':'',
'dtype':'int',
'showme':1,
'style':None,
'tooltip':'Whether to run in screensaver mode at startup',
'value':1,
'wtype':'wx.CheckBox',
},
'SOUNDON':{
'default':0,
'descr':'',
'dtype':'int',
'showme':0,
'style':None,
'tooltip':'Whether to play sounds during game play. This is off by default in case someone does not have sound, in which case attempts to play sounds would crash the program for them.',
'value':0,
'wtype':'wx.CheckBox',
},
'SPLITTER_OFFSET':{
'default':140,
'descr':'',
'dtype':'int',
'max':300,
'min':0,
'showme':0,
'tooltip':'The width of the left pane of the administrator control panel.',
'value':140,
'wtype':'wx.SpinCtrl',
},
'TILESIZE':{
'default':32,
'descr':'',
'dtype':'int',
'max':60,
'min':10,
'showme':0,
'tooltip':'Sidelength, in pixels, of game tiles.',
'value':32,
'wtype':'wx.SpinCtrl',
},
'TILES_TWO_COLORS':{
'default':1,
'descr':'',
'dtype':'int',
'showme':0,
'tooltip':'Whether to use two separate colors, as configured under COLOR PLAYER0 or 1 TILE in this panel.',
'value':1,
'wtype':'wx.CheckBox',
},
'TILE_ANIMATIONS':{
'default':0,
'descr':'',
'dtype':'int',
'showme':1,
'tooltip':'Whether to show animated tiles.',
'value':0,
'wtype':'wx.CheckBox',
},
'TILE_ANIM_STEPSIZE':{
'default':10,
'descr':'',
'dtype':'int',
'max':20,
'min':1,
'showme':0,
'tooltip':'Number of pixels per screen update (i.e speed) that tiles move from computer player tray to board.',
'value':10,
'wtype':'wx.SpinCtrl',
},
'TILE_SHOW_VALUE':{
'default':0,
'descr':'',
'dtype':'int',
'showme':0,
'style':None,
'tooltip':'Whether to render the tile value in the lower right corner of each tile.',
'value':1,
'wtype':'wx.CheckBox',
},
'TMS_SOLVER':{
'default':[
'TuxMathScrabble-TURBO',
'TuxMathScrabble-ORIG',
],
'descr':'',
'dtype':'wx.String',
'icon':0,
'showme':1,
'style':None,
'tooltip':'Use new (almost too fast) solver, or original TMS solver (sometimes too slow)',
'value':'TuxMathScrabble-ORIG',
'wtype':'wx.ComboBox',
},
'TSLEEP_ANIMATION':{
'default':0.1,
'descr':'',
'divisor':100.0,
'dtype':'float',
'max':50,
'min':0,
'showme':0,
'style':4,
'tooltip':'Time to sleep between animation frames.',
'value':0.1,
'wtype':'wx.Slider',
},
'VALUE_DIVISION_SIGN':{
'default':6,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for division sign',
'value':6,
'wtype':'wx.SpinCtrl',
},
'VALUE_EQUAL_SIGN':{
'default':1,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for equal sign',
'value':1,
'wtype':'wx.SpinCtrl',
},
'VALUE_MINUS_SIGN':{
'default':3,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for minus sign',
'value':3,
'wtype':'wx.SpinCtrl',
},
'VALUE_MULTIPLICATION_SIGN':{
'default':4,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for multiplication sign',
'value':4,
'wtype':'wx.SpinCtrl',
},
'VALUE_NUMBERS_0_THROUGH_5':{
'default':1,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for numbers 0-5',
'value':1,
'wtype':'wx.SpinCtrl',
},
'VALUE_NUMBERS_11_THROUGH_15':{
'default':6,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for numbers 11-15',
'value':6,
'wtype':'wx.SpinCtrl',
},
'VALUE_NUMBERS_16_THROUGH_99':{
'default':10,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for numbers 16-99',
'value':10,
'wtype':'wx.SpinCtrl',
},
'VALUE_NUMBERS_6_THROUGH_10':{
'default':3,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for numbers 6-10',
'value':3,
'wtype':'wx.SpinCtrl',
},
'VALUE_PLUS_SIGN':{
'default':2,
'descr':'',
'dtype':'int',
'max':99,
'min':1,
'showme':0,
'tooltip':'Point value for addition sign',
'value':2,
'wtype':'wx.SpinCtrl',
},
'WIN_H':{
'default':600,
'descr':'',
'dtype':'int',
'max':1200,
'min':600,
'showme':0,
'tooltip':'The window height',
'value':600,
'wtype':'wx.SpinCtrl',
},
'WIN_W':{
'default':800,
'descr':'',
'dtype':'int',
'max':1600,
'min':800,
'showme':0,
'tooltip':'The window width',
'value':800,
'wtype':'wx.SpinCtrl',
},
}