forked from scummvm/scummvm
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathstaticres.cpp
7152 lines (6958 loc) · 196 KB
/
staticres.cpp
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
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "sword1/sworddefs.h"
#include "sword1/swordres.h"
#include "sword1/screen.h"
#include "sword1/resman.h"
#include "sword1/objectman.h"
#include "sword1/menu.h"
#include "sword1/music.h"
#include "sword1/sound.h"
#include "sword1/sword1.h"
#include "sword1/logic.h"
namespace Sword1 {
const uint8 SwordEngine::_cdList[TOTAL_SECTIONS] = {
0, // 0 inventory
1, // 1 PARIS 1
1, // 2
1, // 3
1, // 4
1, // 5
1, // 6
1, // 7
1, // 8
1, // 9 PARIS 2
1, // 10
1, // 11
1, // 12
1, // 13
1, // 14
1, // 15
1, // 16
1, // 17
1, // 18
2, // 19 IRELAND
2, // 20
2, // 21
2, // 22
2, // 23
2, // 24
2, // 25
2, // 26
1, // 27 PARIS 3
1, // 28
1, // 29
1, // 30 - Heart Monitor
1, // 31
1, // 32
1, // 33
1, // 34
1, // 35
1, // 36 PARIS 4
1, // 37
1, // 38
1, // 39
1, // 40
1, // 41
1, // 42
1, // 43
0, // 44 <NOT USED>
2, // 45 SYRIA
1, // 46 PARIS 4
2, // 47
1, // 48 PARIS 4
2, // 49
2, // 50
0, // 51 <NOT USED>
0, // 52 <NOT USED>
2, // 53
2, // 54
2, // 55
2, // 56 SPAIN
2, // 57
2, // 58
2, // 59
2, // 60
2, // 61
2, // 62
2, // 63 NIGHT TRAIN
0, // 64 <NOT USED>
2, // 65
2, // 66
2, // 67
0, // 68 <NOT USED>
2, // 69
0, // 70 <NOT USED>
2, // 71 SCOTLAND
2, // 72
2, // 73
2, // 74 END SEQUENCE IN SECRET_CRYPT
2, // 75
2, // 76
2, // 77
2, // 78
2, // 79
1, // 80 PARIS MAP
1, // 81 Full-screen for "Asstair" in Paris2
2, // 82 Full-screen BRITMAP in sc55 (Syrian Cave)
0, // 83 <NOT USED>
0, // 84 <NOT USED>
0, // 85 <NOT USED>
1, // 86 EUROPE MAP
1, // 87 fudged in for normal window (sc48)
1, // 88 fudged in for filtered window (sc48)
0, // 89 <NOT USED>
0, // 90 PHONE SCREEN
0, // 91 ENVELOPE SCREEN
1, // 92 fudged in for George close-up surprised in sc17 wardrobe
1, // 93 fudged in for George close-up inquisitive in sc17 wardrobe
1, // 94 fudged in for George close-up in sc29 sarcophagus
1, // 95 fudged in for George close-up in sc29 sarcophagus
1, // 96 fudged in for chalice close-up from sc42
0, // 97 <NOT USED>
0, // 98 <NOT USED>
0, // 99 MESSAGE SCREEN (BLANK)
0, // 100
0, // 101
0, // 102
0, // 103
0, // 104
0, // 105
0, // 106
0, // 107
0, // 108
0, // 109
0, // 110
0, // 111
0, // 112
0, // 113
0, // 114
0, // 115
0, // 116
0, // 117
0, // 118
0, // 119
0, // 120
0, // 121
0, // 122
0, // 123
0, // 124
0, // 125
0, // 126
0, // 127
0, // 128 GEORGE'S GAME SECTION
0, // 129 NICO'S TEXT - on both CD's
0, // 130
1, // 131 BENOIR'S TEXT - on CD1
0, // 132
1, // 133 ROSSO'S TEXT - on CD1
0, // 134
0, // 135
0, // 136
0, // 137
0, // 138
0, // 139
0, // 140
0, // 141
0, // 142
0, // 143
0, // 144
1, // 145 MOUE'S TEXT - on CD1
1, // 146 ALBERT'S TEXT - on CD1
};
const MenuObject Menu::_objectDefs[TOTAL_pockets + 1] = {
{ // 0 can't use
0, 0, 0, 0, 0
},
{ // 1 NEWSPAPER
menu_newspaper, // text_desc
ICON_NEWSPAPER, // big_icon_res
0, // big_icon_frame
LUGG_NEWSPAPER, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 2 HAZEL_WAND
menu_hazel_wand, // text_desc
ICON_HAZEL_WAND, // big_icon_res
0, // big_icon_frame
LUGG_HAZEL_WAND, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 3 BEER_TOWEL
0, // text_desc - SEE MENU.SCR
ICON_BEER_TOWEL, // big_icon_res
0, // big_icon_frame
LUGG_BEER_TOWEL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 4 HOTEL_KEY
menu_hotel_key, // text_desc
ICON_HOTEL_KEY, // big_icon_res
0, // big_icon_frame
LUGG_HOTEL_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 5 BALL
menu_ball, // text_desc
ICON_BALL, // big_icon_res
0, // big_icon_frame
LUGG_BALL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 6 STATUETTE
menu_statuette, // text_desc
ICON_STATUETTE, // big_icon_res
0, // big_icon_frame
LUGG_STATUETTE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 7 RED_NOSE
0, // text_desc - SEE MENU.SCR
ICON_RED_NOSE, // big_icon_res
0, // big_icon_frame
LUGG_RED_NOSE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 8 POLISHED_CHALICE
menu_polished_chalice, // text_desc
ICON_POLISHED_CHALICE, // big_icon_res
0, // big_icon_frame
LUGG_POLISHED_CHALICE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 9 DOLLAR_BILL
menu_dollar_bill, // text_desc
ICON_DOLLAR_BILL, // big_icon_res
0, // big_icon_frame
LUGG_DOLLAR_BILL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 10 PHOTO
menu_photograph, // text_desc
ICON_PHOTOGRAPH, // big_icon_res
0, // big_icon_frame
LUGG_PHOTOGRAPH, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 11 FLASHLIGHT
menu_flashlight, // text_desc
ICON_FLASHLIGHT, // big_icon_res
0, // big_icon_frame
LUGG_FLASHLIGHT, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 12 FUSE_WIRE
menu_fuse_wire, // text_desc
ICON_FUSE_WIRE, // big_icon_res
0, // big_icon_frame
LUGG_FUSE_WIRE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 13 GEM
menu_gem, // text_desc
ICON_GEM, // big_icon_res
0, // big_icon_frame
LUGG_GEM, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 14 STATUETTE_PAINT
menu_statuette_paint, // text_desc
ICON_STATUETTE_PAINT, // big_icon_res
0, // big_icon_frame
LUGG_STATUETTE_PAINT, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 15 STICK
menu_stick, // text_desc
ICON_STICK, // big_icon_res
0, // big_icon_frame
LUGG_STICK, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 16 EXCAV_KEY
menu_excav_key, // text_desc
ICON_EXCAV_KEY, // big_icon_res
0, // big_icon_frame
LUGG_EXCAV_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 17 LAB_PASS
menu_lab_pass, // text_desc
ICON_LAB_PASS, // big_icon_res
0, // big_icon_frame
LUGG_LAB_PASS, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 18 LIFTING_KEYS
menu_lifting_keys, // text_desc
ICON_LIFTING_KEYS, // big_icon_res
0, // big_icon_frame
LUGG_LIFTING_KEYS, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 19 MANUSCRIPT
menu_manuscript, // text_desc
ICON_MANUSCRIPT, // big_icon_res
0, // big_icon_frame
LUGG_MANUSCRIPT, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 20 MATCH_BOOK
menu_match_book, // text_desc
ICON_MATCHBOOK, // big_icon_res
0, // big_icon_frame
LUGG_MATCHBOOK, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 21 SUIT_MATERIAL
menu_suit_material, // text_desc
ICON_SUIT_MATERIAL, // big_icon_res
0, // big_icon_frame
LUGG_SUIT_MATERIAL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 22 STICK_TOWEL
menu_stick_towel, // text_desc
ICON_STICK_TOWEL, // big_icon_res
0, // big_icon_frame
LUGG_STICK_TOWEL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 23 PLASTER
menu_plaster, // text_desc
ICON_PLASTER, // big_icon_res
0, // big_icon_frame
LUGG_PLASTER, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 24 PRESSURE_GAUGE
menu_pressure_gauge, // text_desc
ICON_PRESSURE_GAUGE, // big_icon_res
0, // big_icon_frame
LUGG_PRESSURE_GAUGE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 25 RAILWAY_TICKET
menu_railway_ticket, // text_desc
ICON_RAILWAY_TICKET, // big_icon_res
0, // big_icon_frame
LUGG_RAILWAY_TICKET, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 26 BUZZER
menu_buzzer, // text_desc
ICON_BUZZER, // big_icon_res
0, // big_icon_frame
LUGG_BUZZER, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 27 ROSSO_CARD
menu_rosso_card, // text_desc
ICON_ROSSO_CARD, // big_icon_res
0, // big_icon_frame
LUGG_ROSSO_CARD, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 28 TOILET_KEY
menu_toilet_key, // text_desc
ICON_TOILET_KEY, // big_icon_res
0, // big_icon_frame
LUGG_TOILET_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 29 SOAP
menu_soap, // text_desc
ICON_SOAP, // big_icon_res
0, // big_icon_frame
LUGG_SOAP, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 30 STONE_KEY
menu_stone_key, // text_desc
ICON_STONE_KEY, // big_icon_res
0, // big_icon_frame
LUGG_STONE_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 31 CHALICE
menu_chalice, // text_desc
ICON_CHALICE, // big_icon_res
0, // big_icon_frame
LUGG_CHALICE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 32 TISSUE
menu_tissue, // text_desc
ICON_TISSUE, // big_icon_res
0, // big_icon_frame
LUGG_TISSUE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 33 TOILET_BRUSH
menu_toilet_brush, // text_desc
ICON_TOILET_BRUSH, // big_icon_res
0, // big_icon_frame
LUGG_TOILET_BRUSH, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 34 TOILET_CHAIN
menu_toilet_chain, // text_desc
ICON_TOILET_CHAIN, // big_icon_res
0, // big_icon_frame
LUGG_TOILET_CHAIN, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 35 TOWEL
menu_towel, // text_desc
ICON_TOWEL, // big_icon_res
0, // big_icon_frame
LUGG_TOWEL, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 36 TRIPOD
menu_tripod, // text_desc
ICON_TRIPOD, // big_icon_res
0, // big_icon_frame
LUGG_TRIPOD, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 37 LENS
menu_lens, // text_desc
ICON_LENS, // big_icon_res
0, // big_icon_frame
LUGG_LENS, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 38 MIRROR
menu_mirror, // text_desc
ICON_MIRROR, // big_icon_res
0, // big_icon_frame
LUGG_MIRROR, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 39 TOWEL_CUT
menu_towel_cut, // text_desc
ICON_TOWEL_CUT, // big_icon_res
0, // big_icon_frame
LUGG_TOWEL_CUT, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 40 BIBLE
menu_bible, // text_desc
ICON_BIBLE, // big_icon_res
0, // big_icon_frame
LUGG_BIBLE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 41 TISSUE_CHARRED
menu_tissue_charred, // text_desc
ICON_TISSUE_CHARRED, // big_icon_res
0, // big_icon_frame
LUGG_TISSUE_CHARRED, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 42 FALSE_KEY
menu_false_key, // text_desc
ICON_FALSE_KEY, // big_icon_res
0, // big_icon_frame
LUGG_FALSE_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 43 PAINTED_KEY - looks identical to excav key, so uses that icon & luggage
menu_painted_key, // text_desc
ICON_EXCAV_KEY, // big_icon_res
0, // big_icon_frame
LUGG_EXCAV_KEY, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 44 KEYRING
0, // text_desc - SEE MENU.SCR
ICON_KEYRING, // big_icon_res
0, // big_icon_frame
LUGG_KEYRING, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 45 SOAP_IMP
menu_soap_imp, // text_desc
ICON_SOAP_IMP, // big_icon_res
0, // big_icon_frame
LUGG_SOAP_IMP, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 46 SOAP_PLAS
menu_soap_plas, // text_desc
ICON_SOAP_PLAS, // big_icon_res
0, // big_icon_frame
LUGG_SOAP_PLAS, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 47 COG_1 - the larger cog with spindle attached
menu_cog_1, // text_desc
ICON_COG_1, // big_icon_res
0, // big_icon_frame
LUGG_COG_1, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 48 COG_2 - the smaller cog, found in the rubble
menu_cog_2, // text_desc
ICON_COG_2, // big_icon_res
0, // big_icon_frame
LUGG_COG_2, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 49 HANDLE
menu_handle, // text_desc
ICON_HANDLE, // big_icon_res
0, // big_icon_frame
LUGG_HANDLE, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 50 COIN
menu_coin, // text_desc
ICON_COIN, // big_icon_res
0, // big_icon_frame
LUGG_COIN, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 51 BIRO
menu_biro, // text_desc
ICON_BIRO, // big_icon_res
0, // big_icon_frame
LUGG_BIRO, // luggage_icon_res
SCR_icon_combine_script, // use_script
},
{ // 52 PIPE
menu_pipe, // text_desc
ICON_PIPE, // big_icon_res
0, // big_icon_frame
LUGG_PIPE, // luggage_icon_res
SCR_icon_combine_script, // use_script
}
};
const Subject Menu::_subjectList[TOTAL_subjects] = {
{ // 256
0, // subject_res
0 // subject_frame
},
{ // 257
ICON_BEER, // subject_res
0 // subject_frame
},
{ // 258
ICON_CASTLE, // subject_res
0 // subject_frame
},
{ // 259
ICON_YES, // subject_res
0 // subject_frame
},
{ // 260
ICON_NO, // subject_res
0 // subject_frame
},
{ // 261
ICON_PEAGRAM, // subject_res
0 // subject_frame
},
{ // 262
ICON_DIG, // subject_res
0 // subject_frame
},
{ // 263
ICON_SEAN, // subject_res
0 // subject_frame
},
{ // 264
ICON_GEM, // subject_res
0 // subject_frame
},
{ // 265
ICON_TEMPLARS, // subject_res
0 // subject_frame
},
{ // 266
ICON_LEPRECHAUN, // subject_res
0 // subject_frame
},
{ // 267
ICON_GOODBYE, // subject_res
0 // subject_frame
},
{ // 268
ICON_GEORGE, // subject_res
0 // subject_frame
},
{ // 269
ICON_ROSSO, // subject_res
0 // subject_frame
},
{ // 270
ICON_GHOST, // subject_res
0 // subject_frame
},
{ // 271
ICON_CLOWN, // subject_res
0 // subject_frame
},
{ // 272
ICON_CAR, // subject_res
0 // subject_frame
},
{ // 273
ICON_MOUE, // subject_res
0 // subject_frame
},
{ // 274
ICON_NICO, // subject_res
0 // subject_frame
},
{ // 275
ICON_MOB, // subject_res
0 // subject_frame
},
{ // 276
ICON_CHANTELLE, // subject_res
0 // subject_frame
},
{ // 277
ICON_PLANTARD, // subject_res
0 // subject_frame
},
{ // 278
ICON_JACKET, // subject_res
0 // subject_frame
},
{ // 279
ICON_BRIEFCASE, // subject_res
0 // subject_frame
},
{
0, //ICON_GLASS, // subject_res
0 // subject_frame
},
{ // 281
ICON_GLASS_EYE, // subject_res
0 // subject_frame
},
{ // 282
ICON_BULL, // subject_res
0 // subject_frame
},
{ // 283
ICON_KLAUSNER, // subject_res
0 // subject_frame
},
{ // 284
0, //ICON_LOOM, // subject_res
0 // subject_frame
},
{ // 285
ICON_ULTAR, // subject_res
0 // subject_frame
},
{ // 286
ICON_PHONE, // subject_res
0 // subject_frame
},
{ // 287
ICON_PHOTOGRAPH, // subject_res
0 // subject_frame
},
{ // 288
ICON_CREST, // subject_res
0 // subject_frame
},
{ // 289
ICON_LOBINEAU, // subject_res
0 // subject_frame
},
{ // 290
ICON_BOOK, // subject_res
0 // subject_frame
},
{ // 291 (SNARE)
ICON_FUSE_WIRE, // subject_res
0 // subject_frame
},
{ // 292
ICON_LEARY, // subject_res
0 // subject_frame
},
{ // 293
ICON_LADDER, // subject_res
0 // subject_frame
},
{ // 294
ICON_GOAT, // subject_res
0 // subject_frame
},
{ // 295
ICON_TOOLBOX, // subject_res
0 // subject_frame
},
{ // 296
ICON_PACKAGE, // subject_res
0 // subject_frame
},
{ // 297
ICON_FISH, // subject_res
0 // subject_frame
},
{ // 298
ICON_NEJO, // subject_res
0 // subject_frame
},
{ // 299
ICON_CAT, // subject_res
0 // subject_frame
},
{ // 300
ICON_AYUB, // subject_res
0 // subject_frame
},
{ // 301
ICON_STATUETTE, // subject_res
0 // subject_frame
},
{ // 302
ICON_NEJO_STALL, // subject_res
0 // subject_frame
},
{ // 303
ICON_TEMPLARS, // subject_res
0 // subject_frame
},
{ // 304
ICON_ARTO, // subject_res
0 // subject_frame
},
{ // 305
ICON_HENDERSONS, // subject_res
0 // subject_frame
},
{ // 306
ICON_CLUB, // subject_res
0 // subject_frame
},
{ // 307
ICON_SIGN, // subject_res
0 // subject_frame
},
{ // 308
ICON_TAXI, // subject_res
0 // subject_frame
},
{ // 309
ICON_BULLS_HEAD, // subject_res
0 // subject_frame
},
{ // 310
ICON_DUANE, // subject_res
0 // subject_frame
},
{ // 311
ICON_PEARL, // subject_res
0 // subject_frame
},
{ // 312
ICON_TRUTH, // subject_res
0 // subject_frame
},
{ // 313
ICON_LIE, // subject_res
0 // subject_frame
},
{ // 314
0, //ICON_SUBJECT,// subject_res
0 // subject_frame
},
{ // 315 KEY
ICON_HOTEL_KEY, // subject_res
0 // subject_frame
},
{ // 316
ICON_FLOWERS, // subject_res
0 // subject_frame
},
{ // 317
ICON_BUST, // subject_res
0 // subject_frame
},
{ // 318
ICON_MANUSCRIPT, // subject_res
0 // subject_frame
},
{ // 319
ICON_WEASEL, // subject_res
0 // subject_frame
},
{ // 320
ICON_BANANA, // subject_res
0 // subject_frame
},
{ // 321
ICON_WEAVER, // subject_res
0 // subject_frame
},
{ // 322
ICON_KNIGHT, // subject_res
0 // subject_frame
},
{ // 323
ICON_QUEEN, // subject_res
0 // subject_frame
},
{ // 324
ICON_PIERMONT, // subject_res
0 // subject_frame
},
{ // 325
ICON_BALL, // subject_res
0 // subject_frame
},
{ // 326
ICON_COUNTESS, // subject_res
0 // subject_frame
},
{ // 327
ICON_MARQUET, // subject_res
0 // subject_frame
},
{ // 328
ICON_SAFE, // subject_res
0 // subject_frame
},
{ // 329
ICON_COINS, // subject_res
0 // subject_frame
},
{ // 330
ICON_CHESS_SET, // subject_res
0 // subject_frame
},
{ // 331
ICON_TOMB, // subject_res
0 // subject_frame
},
{ // 332
ICON_CANDLE, // subject_res
0 // subject_frame
},
{ // 333
ICON_MARY, // subject_res
0 // subject_frame
},
{ // 334
ICON_CHESSBOARD, // subject_res
0 // subject_frame
},
{ // 335
ICON_TRIPOD, // subject_res
0 // subject_frame
},
{ // 336
ICON_POTS, // subject_res
0 // subject_frame
},
{ // 337
ICON_ALARM, // subject_res
0 // subject_frame
},
{ // 338
ICON_BAPHOMET, // subject_res
0 // subject_frame
},
{ // 339
ICON_PHRASE, // subject_res
0 // subject_frame
},
{ // 340
ICON_POLISHED_CHALICE, // subject_res
0 // subject_frame
},
{ // 341
ICON_NURSE, // subject_res
0 // subject_frame
},
{ // 342
ICON_WELL, // subject_res
0 // subject_frame
},
{ // 343
ICON_WELL2, // subject_res
0 // subject_frame
},
{ // 344
ICON_HAZEL_WAND, // subject_res
0 // subject_frame
},
{ // 345
ICON_CHALICE, // subject_res
0 // subject_frame
},
{ // 346
ICON_MR_SHINY, // subject_res
0 // subject_frame
},
{ // 347
ICON_PHOTOGRAPH, // subject_res
0 // subject_frame
},
{ // 348
ICON_PHILIPPE, // subject_res
0 // subject_frame
},
{ // 349
ICON_ERIC, // subject_res
0 // subject_frame
},
{ // 350
ICON_ROZZER, // subject_res
0 // subject_frame
},
{ // 351
ICON_JUGGLER, // subject_res
0 // subject_frame
},
{ // 352
ICON_PRIEST, // subject_res
0 // subject_frame
},
{ // 353
ICON_WINDOW, // subject_res
0 // subject_frame
},
{ // 354
ICON_SCROLL, // subject_res
0 // subject_frame
},
{ // 355
ICON_PRESSURE_GAUGE, // subject_res
0 // subject_frame
},
{ // 356
ICON_RENEE, // subject_res
0 // subject_frame
},
{ // 357
ICON_CHURCH, // subject_res
0 // subject_frame
},
{ // 358
ICON_EKLUND, // subject_res
0 // subject_frame
},
{ // 359
ICON_FORTUNE, // subject_res
0 // subject_frame
},
{ // 360
ICON_PAINTER, // subject_res
0 // subject_frame
},
{ // 361
0, //ICON_SWORD, // subject_res
0 // subject_frame
},