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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
|
/*
* PARSEC - Data Loading Commands
*
* $Author: uberlinuxguy $ - $Date: 2004/09/26 03:43:34 $
*
* Orginally written by:
* Copyright (c) Markus Hadwiger <msh@parsec.org> 1998-2001
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// C library
#include <ctype.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// compilation flags/debug support
#include "config.h"
#include "debug.h"
// general definitions
#include "general.h"
#include "gd_heads.h"
#include "objstruc.h"
// global externals
#include "globals.h"
// subsystem headers
#include "aud_defs.h"
// rendering subsystem
#include "r_patch.h"
// local module header
#include "con_load.h"
// proprietary module headers
#include "con_arg.h"
#include "con_aux.h"
#include "con_ext.h"
#include "con_main.h"
#include "con_shad.h"
#include "con_std.h"
#include "e_color.h"
#include "img_api.h"
#include "obj_clas.h"
#include "obj_ctrl.h"
#include "obj_cust.h"
#include "obj_odt.h"
#include "obj_type.h"
#include "sys_file.h"
#include "sys_swap.h"
// generic string paste area
#define PASTE_STR_LEN 255
static char paste_str[ PASTE_STR_LEN + 1 ];
// string constants
static char datatype_object[] = "object";
static char datatype_texture[] = "texture";
static char datatype_texfont[] = "texfont";
static char datatype_bitmap[] = "bitmap";
static char datatype_sample[] = "sample";
static char datatype_invalid[] = "unknown data type.";
static char datatype_missing[] = "data type must be specified.";
static char name_missing[] = "name must be specified.";
static char name_invalid[] = "name invalid.";
static char name_already_used[] = "name must be unique.";
static char filename_missing[] = "filename missing.";
static char filename_invalid[] = "filename invalid.";
static char too_many_textures[] = "too many textures.";
static char too_many_texfonts[] = "too many texfonts.";
static char too_many_objects[] = "too many objects.";
static char type_missing[] = "type missing.";
static char type_invalid[] = "type invalid.";
static char type_reused[] = "type invalid. using old type.";
static char no_myship_subst[] = "cannot substitute player ship object.";
static char too_many_bitmaps[] = "too many bitmaps.";
static char too_many_samples[] = "too many samples.";
static char object_not_found[] = "object data file not found.";
static char texture_invalid_file[] = "texture file invalid or not found.";
static char bitmap_invalid_file[] = "bitmap file invalid or not found.";
static char bitmap_geom_inval[] = "bitmap geometry invalid.";
static char bitmap_geom_miss[] = "bitmap geometry missing.";
static char bitmap_geom_over[] = "geometry in file overrides specified geometry.";
static char bitmap_range_error[] = "bitmap geometry out of range.";
static char bitmap_out_of_mem[] = "not enough memory for bitmap.";
static char sample_invalid_file[] = "sample file invalid or not found.";
static char volume_invalid[] = "volume invalid.";
static char volume_range_error[] = "volume out of range.";
static char stdfreq_invalid[] = "standard frequency invalid.";
static char stereolevel_invalid[] = "stereo priority level invalid.";
static char odt_invalid_file[] = "odt file invalid.";
static char odt_invalid_overwrite[] = "invalid file used to overwrite existing object.";
static char too_many_lod_fnames[] = "stripping excessive lods.";
static char ignore_lodmags[] = "ignoring lodmag spec.";
static char ignore_lodmins[] = "ignoring lodmin spec.";
static char invalid_lodmags[] = "lodmag spec missing or invalid.";
static char invalid_lodmins[] = "lodmin spec missing or invalid.";
// set object's name ----------------------------------------------------------
//
INLINE
void SetObjectName( int idx, char *name )
{
ASSERT( (dword)idx < MAX_DISTINCT_OBJCLASSES );
ASSERT( name != NULL );
if ( ObjectInfo[ idx ].name != NULL )
FREEMEM( ObjectInfo[ idx ].name );
ObjectInfo[ idx ].name = (char *) ALLOCMEM( strlen( name ) + 1 );
if ( ObjectInfo[ idx ].name == NULL )
OUTOFMEM( 0 );
strcpy( ObjectInfo[ idx ].name, name );
}
// set object's file name -----------------------------------------------------
//
INLINE
void SetObjectFilename( int idx, char *fname )
{
ASSERT( (dword)idx < MAX_DISTINCT_OBJCLASSES );
ASSERT( fname != NULL );
if ( ObjectInfo[ idx ].file != NULL )
FREEMEM( ObjectInfo[ idx ].file );
ObjectInfo[ idx ].file = (char *) ALLOCMEM( strlen( fname ) + 1 );
if ( ObjectInfo[ idx ].file == NULL )
OUTOFMEM( 0 );
strcpy( ObjectInfo[ idx ].file, fname );
}
// make error message including the file name that failed ---------------------
//
PRIVATE
char *MakeFileNameMsg( char *msg, char *fname )
{
ASSERT( msg != NULL );
ASSERT( fname != NULL );
strcpy( paste_str, msg );
strcat( paste_str, " (" );
strcat( paste_str, fname );
strcat( paste_str, ")" );
ProcessExternalLine( paste_str );
return paste_str;
}
// temporary tables to store info about object lods ---------------------------
//
static int object_lod_numlods;
static char* object_lod_fnames[ MAX_OBJECT_LODS ];
static char* object_lod_fname_storage = NULL;
static float object_lod_mags[ MAX_OBJECT_LODS ];
static float object_lod_mins[ MAX_OBJECT_LODS ];
// read object from odt file --------------------------------------------------
//
PRIVATE
int LoadObjectFromODT( dword objtypeid, int insertindex, dword flags, shader_s *shader )
{
ASSERT( (dword)object_lod_numlods <= MAX_OBJECT_LODS );
ASSERT( (dword)insertindex < MAX_DISTINCT_OBJCLASSES );
ASSERT( object_lod_numlods > 0 );
// set object type
ObjectInfo[ insertindex ].type = objtypeid;
// enter (base) filename into table
SetObjectFilename( insertindex, object_lod_fnames[ 0 ] );
// free old lod table
if ( ObjectInfo[ insertindex ].lodinfo != NULL ) {
FREEMEM( ObjectInfo[ insertindex ].lodinfo );
ObjectInfo[ insertindex ].lodinfo = NULL;
}
if ( object_lod_numlods > 1 ) {
// alloc and init lodinfo table
size_t nsize = 0;
int lod = 0;
for ( lod = 0; lod < object_lod_numlods; lod++ )
nsize += strlen( object_lod_fnames[ lod ] ) + 1;
lodinfo_s *lodinfo = (lodinfo_s *) ALLOCMEM( sizeof( lodinfo_s ) + nsize +
object_lod_numlods * ( sizeof( char* ) + sizeof( geomv_t ) * 2 ) );
if ( lodinfo == NULL ) {
OUTOFMEM( 0 );
}
lodinfo->numlods = object_lod_numlods;
lodinfo->filetab = (char **) ( (char*)lodinfo + sizeof( lodinfo_s ) );
lodinfo->lodmags = (geomv_t *) ( (char*)lodinfo->filetab + object_lod_numlods * sizeof( char* ) + nsize );
lodinfo->lodmins = (geomv_t *) ( (char*)lodinfo->lodmags + object_lod_numlods * sizeof( geomv_t ) );
char *fnamestore = (char *) ( (char*)lodinfo->filetab + object_lod_numlods * sizeof( char* ) );
for ( lod = 0; lod < object_lod_numlods; lod++ ) {
lodinfo->filetab[ lod ] = fnamestore;
strcpy( fnamestore, object_lod_fnames[ lod ] );
fnamestore += strlen( object_lod_fnames[ lod ] ) + 1;
if ( lod < object_lod_numlods - 1 ) {
lodinfo->lodmags[ lod ] = FLOAT_TO_GEOMV( object_lod_mags[ lod ] );
lodinfo->lodmins[ lod ] = FLOAT_TO_GEOMV( object_lod_mins[ lod ] );
} else {
lodinfo->lodmags[ lod ] = GEOMV_0;
lodinfo->lodmins[ lod ] = GEOMV_0;
}
}
// attach lodinfo table
ObjectInfo[ insertindex ].lodinfo = lodinfo;
}
// actually load data and create object
return OBJ_LoadODT( insertindex, flags, shader );
}
// determine lod spec for object, fill tables accordingly ---------------------
//
PRIVATE
int DetermineODTLodSpec( char *fname, key_value_s *lodmags, key_value_s *lodmins )
{
ASSERT( fname != NULL );
ASSERT( lodmags != NULL );
ASSERT( lodmins != NULL );
// parse filename, determine lods
int numlods = 0;
char *fdest = object_lod_fname_storage;
ASSERT( fdest != NULL );
for ( char *fscan = fname; ; ) {
// strip whitespace
while ( *fscan == ' ' )
fscan++;
fname = fscan;
if ( *fscan == 0 )
break;
while ( ( *fscan != ' ' ) && ( *fscan != 0 ) )
fscan++;
// avoid overflowing tables
if ( numlods >= MAX_OBJECT_LODS ) {
CON_AddLine( too_many_lod_fnames );
break;
}
int last = ( *fscan == 0 );
*fscan++ = 0;
// process file name and use current workdir
fname = SubstCurWorkDir( fname );
int len = strlen( fname );
if ( ( len < 5 ) || ( fname[ len - 4 ] != '.' ) ) {
CON_AddLine( MakeFileNameMsg( filename_invalid, fname ) );
return FALSE;
}
// try to find odt file
FILE *fp = SYS_fopen( fname, "rb" );
if ( fp == NULL ) {
CON_AddLine( MakeFileNameMsg( object_not_found, fname ) );
return FALSE;
}
SYS_fclose( fp );
//NOTE:
// this check is necessary to prevent OBJ_LoadODT() from
// exiting with an error message to the shell later on if
// the object file is simply missing.
// store lod file name
strcpy( fdest, fname );
object_lod_fnames[ numlods++ ] = fdest;
fdest += strlen( fname ) + 1;
if ( last ) {
break;
}
}
if ( numlods < 1 ) {
CON_AddLine( filename_missing );
return FALSE;
}
// set temporary global
object_lod_numlods = numlods;
if ( numlods == 1 ) {
if ( lodmags->value != NULL )
CON_AddLine( ignore_lodmags );
if ( lodmins->value != NULL )
CON_AddLine( ignore_lodmins );
return TRUE;
}
// thresholds are between lods
int numthresh = numlods - 1;
// parse lod mags and mins
if ( ScanKeyValueFloatList( lodmags, object_lod_mags, numthresh, numthresh ) != numthresh ) {
CON_AddLine( invalid_lodmags );
return FALSE;
}
if ( ScanKeyValueFloatList( lodmins, object_lod_mins, numthresh, numthresh ) != numthresh ) {
CON_AddLine( invalid_lodmins );
return FALSE;
}
return TRUE;
}
// flag map for objload_xx flags ----------------------------------------------
//
flag_map_s objload_flag_map[] = {
{ "nodefaults", OBJLOAD_NONE, 0 },
{ "w_normals", OBJLOAD_WEDGENORMALS, 0 },
{ "w_colors", OBJLOAD_WEDGECOLORS, 0 },
{ "w_texcoords", OBJLOAD_WEDGETEXCOORDS, 0 },
{ "w_lighted", OBJLOAD_WEDGELIGHTED, 0 },
{ "w_specular", OBJLOAD_WEDGESPECULAR, 0 },
{ "w_fogged", OBJLOAD_WEDGEFOGGED, 0 },
{ "f_anims", OBJLOAD_FACEANIMS, 0 },
{ "v_anims", OBJLOAD_VTXANIMS, 0 },
{ "p_colors", OBJLOAD_POLYCORNERCOLORS, 0 },
{ "p_wedges", OBJLOAD_POLYWEDGEINDEXES, 0 },
{ NULL, 0, 0 },
};
// parse objload_xx flags for object ------------------------------------------
//
PRIVATE
dword DetermineODTFlags( key_value_s *flagspec )
{
ASSERT( flagspec != NULL );
dword objloadflags = OBJLOAD_DEFAULT;
if ( flagspec->value != NULL ) {
// parse flag list, set corresponding bits
objloadflags = OBJLOAD_NONE;
if ( ScanKeyValueFlagList( flagspec, &objloadflags, objload_flag_map ) == 0 ) {
objloadflags = OBJLOAD_DEFAULT;
}
}
return objloadflags;
}
// key table for object loading -----------------------------------------------
//
key_value_s object_key_value[] = {
{ "file", NULL, KEYVALFLAG_PARENTHESIZE },
{ "type", NULL, KEYVALFLAG_NONE },
{ "flags", NULL, KEYVALFLAG_PARENTHESIZE },
{ "lodmag", NULL, KEYVALFLAG_PARENTHESIZE },
{ "lodmin", NULL, KEYVALFLAG_PARENTHESIZE },
{ "shader", NULL, KEYVALFLAG_PARENTHESIZE },
{ "normth", NULL, KEYVALFLAG_NONE },
{ "maxfanims", NULL, KEYVALFLAG_NONE },
{ "maxvanims", NULL, KEYVALFLAG_NONE },
{ NULL, NULL, KEYVALFLAG_NONE },
};
enum {
KEY_OBJ_FILE,
KEY_OBJ_TYPE,
KEY_OBJ_FLAGS,
KEY_OBJ_LODMAG,
KEY_OBJ_LODMIN,
KEY_OBJ_SHADER,
KEY_OBJ_NORMTH,
KEY_OBJ_MAXFANIMS,
KEY_OBJ_MAXVANIMS
};
// load object data file from console -----------------------------------------
//
PRIVATE
int ConLoadObject( char *name )
{
ASSERT( name != NULL );
// check if object slot available
if ( NumLoadedObjects >= MAX_DISTINCT_OBJCLASSES - 1 ) {
CON_AddLine( too_many_objects );
return FALSE;
}
// check if object of same name already exists
unsigned int insertindex = NumLoadedObjects;
for ( int oid = 0; oid < NumLoadedObjects; oid++ ) {
if ( stricmp( ObjectInfo[ oid ].name, name ) == 0 ) {
if ( AUX_ENABLE_OBJECT_OVERLOADING ) {
insertindex = oid;
break;
} else {
CON_AddLine( name_already_used );
return FALSE;
}
}
}
// set flag if new object should be appended
int newobject = ( insertindex == (unsigned int)NumLoadedObjects );
// scan out all values to texture keys
if ( !ScanKeyValuePairs( object_key_value, NULL ) )
return FALSE;
// fetch file name/lod file name list
char *fname = object_key_value[ KEY_OBJ_FILE ].value;
if ( fname == NULL ) {
CON_AddLine( filename_missing );
return FALSE;
}
// alloc tempmem for lod object file names
object_lod_fname_storage = (char *) ALLOCMEM( MAX_OBJECT_LODS * PATH_MAX );
if ( object_lod_fname_storage == NULL )
OUTOFMEM( 0 );
// parse lod spec (filenames, mags, mins)
if ( !DetermineODTLodSpec( fname,
&object_key_value[ KEY_OBJ_LODMAG ],
&object_key_value[ KEY_OBJ_LODMIN ] ) ) {
return FALSE;
}
// parse flags
dword objloadflags = DetermineODTFlags( &object_key_value[ KEY_OBJ_FLAGS ] );
// parse shader
shader_s *shader =DetermineODTShader( &object_key_value[ KEY_OBJ_SHADER ] );
// determine object's type id and prepare object loading
dword objtypeid;
if ( newobject ) {
// fetch type specifier
char *typestr = object_key_value[ KEY_OBJ_TYPE ].value;
if ( typestr == NULL ) {
CON_AddLine( type_missing );
return FALSE;
}
// translate type specifier into id
objtypeid = OBJ_FetchTypeIdFromName( typestr );
// check for invalid type
if ( objtypeid == TYPE_ID_INVALID ) {
CON_AddLine( type_invalid );
return FALSE;
}
// enter new object name into table
SetObjectName( insertindex, name );
} else {
// prevent elimination of local player's ship by disallowing
// object substitution of player's ship class
if ( MyShip->ObjectClass == insertindex ) {
// allow it on startup, though
if ( !TextModeActive ) {
CON_AddLine( no_myship_subst );
return FALSE;
}
}
// check for optional type specifier
char *typestr = object_key_value[ KEY_OBJ_TYPE ].value;
if ( typestr != NULL ) {
// translate type specifier into id
objtypeid = OBJ_FetchTypeIdFromName( typestr );
// check for invalid type
if ( objtypeid == TYPE_ID_INVALID ) {
CON_AddLine( type_reused );
objtypeid = ObjectInfo[ insertindex ].type;
}
// LoadObjectFromODT() also sets this
ObjectInfo[ insertindex ].type = objtypeid;
} else {
// use type of object that is being overwritten
objtypeid = ObjectInfo[ insertindex ].type;
}
// kill all instances of previous object
int killcount = KillClassInstances( insertindex );
if ( killcount > 0 ) {
sprintf( paste_str, "number of removed class instances: %d.", killcount );
CON_AddLine( paste_str );
}
// free previous object's data
FREEMEM( ObjClasses[ insertindex ] );
ObjClasses[ insertindex ] = NULL;
}
// save current loading params
odt_loading_params_s oldloadingparams = odt_loading_params;
// change normal merging threshold if specified
if ( object_key_value[ KEY_OBJ_NORMTH ].value != NULL ) {
float fthresh;
if ( ScanKeyValueFloat( &object_key_value[ KEY_OBJ_NORMTH ], &fthresh ) == 1 ) {
odt_loading_params.merge_normals_threshold = FLOAT_TO_GEOMV( fthresh );
}
}
// change maximum number of face anim states if specified
if ( object_key_value[ KEY_OBJ_MAXFANIMS ].value != NULL ) {
int maxfanims;
if ( ScanKeyValueInt( &object_key_value[ KEY_OBJ_MAXFANIMS ], &maxfanims ) == 1 ) {
odt_loading_params.max_face_anim_states = maxfanims;
}
}
// change maximum number of vertex anim states if specified
if ( object_key_value[ KEY_OBJ_MAXVANIMS ].value != NULL ) {
int maxvanims;
if ( ScanKeyValueInt( &object_key_value[ KEY_OBJ_MAXVANIMS ], &maxvanims ) == 1 ) {
odt_loading_params.max_vtx_anim_states = maxvanims;
}
}
// load data
int rc = LoadObjectFromODT( objtypeid, insertindex, objloadflags, shader );
// restore loading params
odt_loading_params = oldloadingparams;
if ( rc <= 0 ) {
//NOTE:
// reaction to load error depends on whether a new
// object should have been created or an already
// existing substituted. if the latter is the case
// the old object has already been killed and there
// is no valid one to use. so, a not-so-graceful
// program exit is performed.
if ( newobject ) {
CON_AddLine(
MakeFileNameMsg( odt_invalid_file, object_lod_fnames[ -rc ] ) );
return FALSE;
} else {
PANIC(
MakeFileNameMsg( odt_invalid_overwrite, object_lod_fnames[ -rc ] ) );
}
}
// free tempmem for lod file names
FREEMEM( object_lod_fname_storage );
object_lod_fname_storage = NULL;
if ( newobject ) {
// increment number of loaded objects
NumLoadedObjects++;
// display assigned id
sprintf( paste_str, "assigned object class id: %d.", insertindex );
CON_AddLine( paste_str );
} else {
// display id of overwritten class
sprintf( paste_str, "overwrote object class id: %d.", insertindex );
CON_AddLine( paste_str );
}
// set global number of object classes
NumObjClasses = NumLoadedObjects;
return TRUE;
}
// set texture's name ---------------------------------------------------------
//
INLINE
void SetTextureName( int idx, char *name )
{
ASSERT( name != NULL );
if ( TextureInfo[ idx ].name != NULL )
FREEMEM( TextureInfo[ idx ].name );
TextureInfo[ idx ].name = (char *) ALLOCMEM( strlen( name ) + 1 );
if ( TextureInfo[ idx ].name == NULL )
OUTOFMEM( 0 );
strcpy( TextureInfo[ idx ].name, name );
}
// set texture's file name ----------------------------------------------------
//
INLINE
void SetTextureFilename( int idx, char *fname )
{
ASSERT( fname != NULL );
if ( TextureInfo[ idx ].file != NULL )
FREEMEM( TextureInfo[ idx ].file );
TextureInfo[ idx ].file = (char *) ALLOCMEM( strlen( fname ) + 1 );
if ( TextureInfo[ idx ].file == NULL )
OUTOFMEM( 0 );
strcpy( TextureInfo[ idx ].file, fname );
}
// set texture's loading parameters (optional) --------------------------------
//
INLINE
void SetTextureLoaderParams( int idx, char *params )
{
if ( TextureInfo[ idx ].loaderparams != NULL ) {
FREEMEM( TextureInfo[ idx ].loaderparams );
TextureInfo[ idx ].loaderparams = NULL;
}
if ( params != NULL ) {
TextureInfo[ idx ].loaderparams = (char *) ALLOCMEM( strlen( params ) + 1 );
if ( TextureInfo[ idx ].loaderparams == NULL )
OUTOFMEM( 0 );
strcpy( TextureInfo[ idx ].loaderparams, params );
}
}
// register a new texture (remember loading params for automatic reloading) ---
//
void RegisterTexture( int insertindex, char *name, char *fname, char *loaderparams )
{
ASSERT( name != NULL );
ASSERT( fname != NULL );
// enter file name into table
SetTextureFilename( insertindex, fname );
// set texture name for new textures
if ( insertindex == NumLoadedTextures ) {
// enter new texture name into table
SetTextureName( insertindex, name );
NumLoadedTextures++;
// texture map structure needs access to the texture name
TextureMap *texmap = TextureInfo[ insertindex ].texpointer;
ASSERT( texmap != NULL );
ASSERT( texmap->TexMapName == NULL );
texmap->TexMapName = TextureInfo[ insertindex ].name;
}
// name must be set (either still the old or the new name)
ASSERT( TextureInfo[ insertindex ].texpointer->TexMapName != NULL );
// set loading parameters (may be NULL)
SetTextureLoaderParams( insertindex, loaderparams );
// remember whether we potentially read from the package
TextureInfo[ insertindex ].flags &= ~TEXINFOFLAG_PACKWASDISABLED;
if ( AUX_DISABLE_PACKAGE_DATA_FILES ) {
TextureInfo[ insertindex ].flags |= TEXINFOFLAG_PACKWASDISABLED;
}
}
// key table for texture loading ----------------------------------------------
//
key_value_s texture_key_value[] = {
{ "file", NULL, KEYVALFLAG_NONE },
{ "format", NULL, KEYVALFLAG_PARENTHESIZE },
// { "width", NULL, KEYVALFLAG_NONE },
// { "height", NULL, KEYVALFLAG_NONE },
// { "lodmin", NULL, KEYVALFLAG_NONE },
// { "lodmax", NULL, KEYVALFLAG_NONE },
// { "aspect", NULL, KEYVALFLAG_NONE },
// { "flags", NULL, KEYVALFLAG_NONE },
{ NULL, NULL, KEYVALFLAG_NONE },
};
enum {
KEY_TEX_FILE, // file name
KEY_TEX_FORMAT // depends on file format (passed through to loader)
// KEY_TEX_WIDTH,
// KEY_TEX_HEIGHT,
// KEY_TEX_LODMIN,
// KEY_TEX_LODMAX,
// KEY_TEX_ASPECT,
// KEY_TEX_FLAGS,
};
// load texture file from console ---------------------------------------------
//
PRIVATE
int ConLoadTexture( char *name )
{
ASSERT( name != NULL );
// check if texture slot available
if ( NumLoadedTextures >= MAX_TEXTURES - 1 ) {
CON_AddLine( too_many_textures );
return FALSE;
}
// check if texture of same name already exists
int insertindex = NumLoadedTextures;
for ( int tid = 0; tid < NumLoadedTextures; tid++ ) {
if ( stricmp( TextureInfo[ tid ].name, name ) == 0 ) {
if ( AUX_ENABLE_TEXTURE_OVERLOADING ) {
insertindex = tid;
break;
} else {
CON_AddLine( name_already_used );
return FALSE;
}
}
}
// scan out all values to texture keys
if ( !ScanKeyValuePairs( texture_key_value, NULL ) )
return FALSE;
// fetch file name
char *fname = texture_key_value[ KEY_TEX_FILE ].value;
if ( fname == NULL ) {
CON_AddLine( filename_missing );
return FALSE;
}
// process file name and use current workdir
fname = SubstCurWorkDir( fname );
int len = strlen( fname );
if ( ( len < 5 ) || ( fname[ len - 4 ] != '.' ) ) {
CON_AddLine( filename_invalid );
return FALSE;
}
// fetch explicitly supplied format (may be NULL)
char *formatspec = texture_key_value[ KEY_TEX_FORMAT ].value;
// load texture from file
if ( !IMG_LoadTexture( fname, insertindex, formatspec, NULL ) ) {
CON_AddLine( MakeFileNameMsg( texture_invalid_file, fname ) );
return FALSE;
}
// set texture info
RegisterTexture( insertindex, name, fname, formatspec );
return TRUE;
}
// order in which chars must be listed in a charset for a texfont -------------
//
static int num_charseq = 0;
static byte* char_sequence = NULL;
// order of special chars that are not directly listed in ascii order ---------
//
static byte special_chars[] = {
// �, �, �, �, �, �
0x81, 0x84, 0x8e, 0x94, 0x99, 0x9a
};
/* char sequence for alex fonts (obsolete) ------------------------------------
//
//static byte alex_char_sequence[] = {
// "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" \
// "1234567890 !\"�$%&/()=? <;:- *> .-#+���\'[]\\|~{}@"
//};*/
// set texfont's name ---------------------------------------------------------
//
INLINE
void SetTexfontName( int idx, char *name )
{
ASSERT( name != NULL );
if ( TexfontInfo[ idx ].name != NULL )
FREEMEM( TexfontInfo[ idx ].name );
TexfontInfo[ idx ].name = (char *) ALLOCMEM( strlen( name ) + 1 );
if ( TexfontInfo[ idx ].name == NULL )
OUTOFMEM( 0 );
strcpy( TexfontInfo[ idx ].name, name );
}
// set texfont's file name ----------------------------------------------------
//
INLINE
void SetTexfontFilename( int idx, char *fname )
{
ASSERT( fname != NULL );
if ( TexfontInfo[ idx ].file != NULL )
FREEMEM( TexfontInfo[ idx ].file );
TexfontInfo[ idx ].file = (char *) ALLOCMEM( strlen( fname ) + 1 );
if ( TexfontInfo[ idx ].file == NULL )
OUTOFMEM( 0 );
strcpy( TexfontInfo[ idx ].file, fname );
}
// register a new texfont -----------------------------------------------------
//
void RegisterTexfont( int insertindex, char *name, char *fname, texfont_s *texfont, int charwidth, int charheight, int spacing )
{
ASSERT( name != NULL );
ASSERT( fname != NULL );
ASSERT( texfont != NULL );
// enter texfont file name into table
SetTexfontFilename( insertindex, fname );
// new texfont
if ( insertindex == NumLoadedTexfonts ) {
// enter new texfont name into table
SetTexfontName( insertindex, name );
NumLoadedTexfonts++;
// take basic info from texture
TexfontInfo[ insertindex ].texfont = texfont;
TexfontInfo[ insertindex ].width = charwidth;
TexfontInfo[ insertindex ].height = charheight;
TexfontInfo[ insertindex ].srcimage = NULL;
// convert geometry table
texchar_s *texchars = (texchar_s *) ALLOCMEM( 256 * sizeof( texchar_s ) );
if ( texchars == NULL )
OUTOFMEM( 0 );
memset( texchars, 0, 256 * sizeof( texchar_s ) );
for ( int cid = 0; cid < texfont->numtexchars; cid++ ) {
if ( cid >= num_charseq )
break;
int chcode = char_sequence[ cid ];
if ( chcode == 0 )
break;
if ( chcode == 32 )
continue;
memcpy( &texchars[ chcode ], &texfont->texchars[ cid ], sizeof( texchar_s ) );
}
// set space
texchars[ 32 ].tex_id = -1;
texchars[ 32 ].tex_ustep = spacing * 6;
FREEMEM( texfont->texchars );
texfont->texchars = texchars;
texfont->numtexchars = 256;
}
}
// key table for texfont loading ----------------------------------------------
//
key_value_s texfont_key_value[] = {
{ "file", NULL, KEYVALFLAG_NONE },
{ "format", NULL, KEYVALFLAG_PARENTHESIZE },
{ "width", NULL, KEYVALFLAG_NONE },
{ "height", NULL, KEYVALFLAG_NONE },
{ "spacing", NULL, KEYVALFLAG_NONE },
{ "flags", NULL, KEYVALFLAG_PARENTHESIZE },
{ NULL, NULL, KEYVALFLAG_NONE },
};
enum {
KEY_FONT_FILE, // file name
KEY_FONT_FORMAT, // depends on file format (passed through to loader)
KEY_FONT_WIDTH, // tile width
KEY_FONT_HEIGHT, // tile height
KEY_FONT_SPACING, // spacing to the left and right of each char
KEY_FONT_FLAGS
};
// load font from console and create texfont ----------------------------------
//
PRIVATE
int ConLoadTexfont( char *name )
{
ASSERT( name != NULL );
// check if texfont slot available
if ( NumLoadedTexfonts >= MAX_TEXFONTS - 1 ) {
CON_AddLine( too_many_texfonts );
return FALSE;
}
// need also texture slot
if ( NumLoadedTextures >= MAX_TEXTURES - 1 ) {
CON_AddLine( too_many_textures );
return FALSE;
}
// check if texfont of same name already exists
int texfontindex = NumLoadedTexfonts;
int tid = 0;
for ( tid = 0; tid < NumLoadedTexfonts; tid++ ) {
if ( stricmp( TexfontInfo[ tid ].name, name ) == 0 ) {
texfontindex = tid;
break;
}
}
// check if texture of same name already exists
int texindex = NumLoadedTextures;
for ( tid = 0; tid < NumLoadedTextures; tid++ ) {
if ( stricmp( TextureInfo[ tid ].name, name ) == 0 ) {
if ( AUX_ENABLE_TEXTURE_OVERLOADING ) {
texindex = tid;
break;
} else {
CON_AddLine( name_already_used );
return FALSE;
}
}
}
// scan out all values to texfont keys
if ( !ScanKeyValuePairs( texfont_key_value, NULL ) )
return FALSE;
// fetch file name
char *fname = texfont_key_value[ KEY_FONT_FILE ].value;
if ( fname == NULL ) {
CON_AddLine( filename_missing );
return FALSE;
}
// process file name and use current workdir
fname = SubstCurWorkDir( fname );
size_t len = strlen( fname );
if ( ( len < 5 ) || ( fname[ len - 4 ] != '.' ) ) {
CON_AddLine( filename_invalid );
return FALSE;
}
// let user override automatically determined geometry
int charwidth = 0;
int charheight = 0;
int spacing = 2;
if ( ScanKeyValueInt( &texfont_key_value[ KEY_FONT_WIDTH ], &charwidth ) < 0 ) {
return FALSE;
}
if ( ScanKeyValueInt( &texfont_key_value[ KEY_FONT_HEIGHT ], &charheight ) < 0 ) {
return FALSE;
}
if ( ScanKeyValueInt( &texfont_key_value[ KEY_FONT_SPACING ], &spacing ) < 0 ) {
return FALSE;
}
// destination texture geometry
int texwidth = 512;
int texheight = 256;
// fetch explicitly supplied format (may be NULL)
char *formatspec = texfont_key_value[ KEY_FONT_FORMAT ].value;
// append destination texture and retiling geometry
sprintf( paste_str, "map_width %d map_height %d retile_width %d retile_height %d spacing %d ",
texwidth, texheight, charwidth, charheight, spacing );
if ( formatspec != NULL ) {
strcat( paste_str, formatspec );
}
// append optional flags
if ( texfont_key_value[ KEY_FONT_FLAGS ].value != NULL ) {
strcat( paste_str, " flags " );
strcat( paste_str, texfont_key_value[ KEY_FONT_FLAGS ].value );
}
// allocate new texfont if not already existing
texfont_s *texfont = NULL;
if ( texfontindex == NumLoadedTexfonts ) {
texfont = (texfont_s *) ALLOCMEM( sizeof( texfont_s ) );
if ( texfont == NULL )
OUTOFMEM( 0 );
memset( texfont, 0, sizeof( texfont_s ) );
}
// load font from file and convert into texture
if ( !IMG_LoadTexture( fname, texindex, paste_str, texfont ) ) {
CON_AddLine( MakeFileNameMsg( texture_invalid_file, fname ) );
return FALSE;
}
// deduce from texture geometry if not overridden
if ( charwidth == 0 ) {
charwidth = TextureInfo[ texindex ].width;
}
if ( charheight == 0 ) {
// intentionally not height of texture
charheight = TextureInfo[ texindex ].width;
}
// set texture info
RegisterTexture( texindex, name, fname, paste_str );
// set texfont info
RegisterTexfont( texfontindex, name, fname, texfont, charwidth, charheight, spacing );
return TRUE;
}
// set bitmap's name ----------------------------------------------------------
//
INLINE
void SetBitmapName( int idx, char *name )
{
ASSERT( name != NULL );
if ( BitmapInfo[ idx ].name != NULL )
FREEMEM( BitmapInfo[ idx ].name );
BitmapInfo[ idx ].name = (char *) ALLOCMEM( strlen( name ) + 1 );
if ( BitmapInfo[ idx ].name == NULL )
OUTOFMEM( 0 );
strcpy( BitmapInfo[ idx ].name, name );
}
// set bitmap's file name -----------------------------------------------------
//
INLINE
void SetBitmapFilename( int idx, char *fname )
{
ASSERT( fname != NULL );
if ( BitmapInfo[ idx ].file != NULL )
FREEMEM( BitmapInfo[ idx ].file );
BitmapInfo[ idx ].file = (char *) ALLOCMEM( strlen( fname ) + 1 );
if ( BitmapInfo[ idx ].file == NULL )
OUTOFMEM( 0 );
strcpy( BitmapInfo[ idx ].file, fname );
}
// key table for bitmap loading -----------------------------------------------
//
key_value_s bitmap_key_value[] = {
{ "file", NULL, KEYVALFLAG_NONE },
{ "width", NULL, KEYVALFLAG_NONE },
{ "height", NULL, KEYVALFLAG_NONE },
{ NULL, NULL, KEYVALFLAG_NONE },
};
enum {
KEY_BITMAP_FILE,
KEY_BITMAP_WIDTH,
KEY_BITMAP_HEIGHT
};
// load bitmap file from console ----------------------------------------------
//
PRIVATE
int ConLoadBitmap( char *name )
{
ASSERT( name != NULL );
// check if bitmap slot available
if ( NumLoadedBitmaps >= MAX_BITMAPS - 1 ) {
CON_AddLine( too_many_bitmaps );
return FALSE;
}
// check if bitmap of same name already exists
int insertindex = NumLoadedBitmaps;
for ( int bid = 0; bid < NumLoadedBitmaps; bid++ ) {
if ( stricmp( BitmapInfo[ bid ].name, name ) == 0 ) {
if ( AUX_ENABLE_BITMAP_OVERLOADING ) {
insertindex = bid;
break;
} else {
CON_AddLine( name_already_used );
return FALSE;
}
}
}
// scan out all values to bitmap keys
if ( !ScanKeyValuePairs( bitmap_key_value, NULL ) )
return FALSE;
// fetch file name
char *fname = bitmap_key_value[ KEY_BITMAP_FILE ].value;
if ( fname == NULL ) {
CON_AddLine( filename_missing );
return FALSE;
}
// process file name and use current workdir
fname = SubstCurWorkDir( fname );
size_t len = strlen( fname );
if ( ( len < 5 ) || ( fname[ len - 4 ] != '.' ) ) {
CON_AddLine( filename_invalid );
return FALSE;
}
// fetch width parameter
int width = -1;
if ( ScanKeyValueInt( &bitmap_key_value[ KEY_BITMAP_WIDTH ], &width ) < 0 ) {
CON_AddLine( bitmap_geom_inval );
return FALSE;
}
if ( ( width != -1 ) && ( ( width < 1 ) || ( width > 640 ) ) ) {
CON_AddLine( bitmap_range_error );
return FALSE;
}
int newwidth = width;
// fetch height parameter
int height = -1;
if ( ScanKeyValueInt( &bitmap_key_value[ KEY_BITMAP_HEIGHT ], &height ) < 0 ) {
CON_AddLine( bitmap_geom_inval );
return FALSE;
}
if ( ( height != -1 ) && ( ( height < 1 ) || ( height > 480 ) ) ) {
CON_AddLine( bitmap_range_error );
return FALSE;
}
int newheight = height;
// get file size
ssize_t fsiz = SYS_GetFileLength( fname );
if ( fsiz == -1 ) {
CON_AddLine( MakeFileNameMsg( bitmap_invalid_file, fname ) );
return FALSE;
}
// alloc mem for single bitmap
char *bitmapbuffer = (char *) ALLOCMEM( fsiz );
if ( bitmapbuffer == NULL ) {
CON_AddLine( bitmap_out_of_mem );
return FALSE;
}
// open bitmap file
FILE *fp = SYS_fopen( fname, "rb" );
if ( fp == NULL ) {
CON_AddLine( MakeFileNameMsg( bitmap_invalid_file, fname ) );
return FALSE;
}
// read header
BdtHeader *header = (BdtHeader *) bitmapbuffer;
ssize_t headerbytes = SYS_fread( header, 1, sizeof( BdtHeader ), fp );
int headervalid = ( headerbytes == sizeof( BdtHeader ) );
ASSERT( fsiz > headerbytes );
fsiz -= headerbytes;
if ( headervalid ) {
if ( stricmp( header->signature, BDT_SIGNATURE ) != 0 )
headervalid = FALSE;
if ( header->version < REQUIRED_BDT_VERSION )
headervalid = FALSE;
if ( headervalid ) {
SYS_SwapBdtHeader( header );
// use width and height in header
if ( ( newwidth != -1 ) || ( newheight != -1 ) ) {
CON_AddLine( bitmap_geom_over );
}
newwidth = header->width;
newheight = header->height;
// display geometry as contained in header
sprintf( paste_str, "bitmap geometry: width=%d height=%d.",
newwidth, newheight );
CON_AddLine( paste_str );
} else {
if ( ( newwidth == -1 ) || ( newheight == -1 ) ) {
SYS_fclose( fp );
CON_AddLine( bitmap_geom_miss );
return FALSE;
}
}
}
// check bitmap geometry
ssize_t geosiz = newwidth * newheight;
if ( headervalid ) {
if ( fsiz != geosiz ) {
SYS_fclose( fp );
CON_AddLine( bitmap_geom_inval );
return FALSE;
}
} else {
if ( ( fsiz + headerbytes ) != geosiz ) {
CON_AddLine( bitmap_geom_inval );
SYS_fclose( fp );
return FALSE;
}
}
// load bitmap data (overwrite header if any)
char *datadest = bitmapbuffer;
if ( !headervalid )
datadest += sizeof( BdtHeader );
ssize_t bytesread = SYS_fread( datadest, 1, fsiz, fp );
if ( bytesread != fsiz ) {
SYS_fclose( fp );
CON_AddLine( MakeFileNameMsg( bitmap_invalid_file, fname ) );
return FALSE;
}
// close bitmap data
SYS_fclose( fp );
if ( insertindex < NumLoadedBitmaps ) {
//NOTE:
// if the bitmap has been converted to a texture
// it may be resident in the texture cache.
// therefore we need to invalidate this bitmap in
// the texture cache.
if ( !TextModeActive ) {
TextureMap tmap;
memset( &tmap, 0, sizeof( tmap ) );
tmap.BitMap = BitmapInfo[ insertindex ].bitmappointer;
ASSERT( tmap.BitMap != NULL );
R_InvalidateCachedTexture( &tmap );
}
// free previous conversion data
if ( BitmapInfo[ insertindex ].bitmappointer !=
BitmapInfo[ insertindex ].loadeddata ) {
ASSERT( BitmapInfo[ insertindex ].bitmappointer != NULL );
FREEMEM( BitmapInfo[ insertindex ].bitmappointer );
BitmapInfo[ insertindex ].bitmappointer = NULL;
}
// free old source bitmap if not part of initial block
if ( BitmapInfo[ insertindex ].loadeddata != BitmapMem ) {
ASSERT( BitmapInfo[ insertindex ].loadeddata != NULL );
FREEMEM( BitmapInfo[ insertindex ].loadeddata );
BitmapInfo[ insertindex ].loadeddata = NULL;
}
}
// set new data pointers
BitmapInfo[ insertindex ].loadeddata = bitmapbuffer;
BitmapInfo[ insertindex ].bitmappointer = bitmapbuffer;
// set new geometry
BitmapInfo[ insertindex ].width = newwidth;
BitmapInfo[ insertindex ].height = newheight;
// enter filename into table
SetBitmapFilename( insertindex, fname );
if ( insertindex == NumLoadedBitmaps ) {
// enter name into table
SetBitmapName( insertindex, name );
NumLoadedBitmaps++;
}
// convert to current color format
SetupSingleBitmapColors( insertindex );
return TRUE;
}
// key table for sample loading ----------------------------------------------
//
key_value_s sample_key_value[] = {
{ "file", NULL, KEYVALFLAG_NONE },
{ "volume", NULL, KEYVALFLAG_NONE },
{ "stdfreq", NULL, KEYVALFLAG_NONE },
{ "stereo", NULL, KEYVALFLAG_NONE },
{ NULL, NULL, KEYVALFLAG_NONE },
};
enum {
KEY_SAMPLE_FILE,
KEY_SAMPLE_VOLUME,
KEY_SAMPLE_STDFREQ,
KEY_SAMPLE_STEREO
};
// set sample's name ----------------------------------------------------------
//
INLINE
void SetSampleName( int idx, char *name )
{
ASSERT( name != NULL );
if ( SampleInfo[ idx ].name != NULL )
FREEMEM( SampleInfo[ idx ].name );
SampleInfo[ idx ].name = (char *) ALLOCMEM( strlen( name ) + 1 );
if ( SampleInfo[ idx ].name == NULL )
OUTOFMEM( 0 );
strcpy( SampleInfo[ idx ].name, name );
}
// set sample's file name -----------------------------------------------------
//
INLINE
void SetSampleFilename( int idx, char *fname )
{
ASSERT( fname != NULL );
if ( SampleInfo[ idx ].file != NULL )
FREEMEM( SampleInfo[ idx ].file );
SampleInfo[ idx ].file = (char *) ALLOCMEM( strlen( fname ) + 1 );
if ( SampleInfo[ idx ].file == NULL )
OUTOFMEM( 0 );
strcpy( SampleInfo[ idx ].file, fname );
}
// load sample file from console ----------------------------------------------
//
PRIVATE
int ConLoadSample( char *name )
{
ASSERT( name != NULL );
// check if sample slot available
if ( NumLoadedSamples >= MAX_SAMPLES - 1 ) {
CON_AddLine( too_many_samples );
return FALSE;
}
// check if sample of same name already exists
int insertindex = NumLoadedSamples;
for ( int sid = 0; sid < NumLoadedSamples; sid++ ) {
if ( stricmp( SampleInfo[ sid ].name, name ) == 0 ) {
if ( AUX_ENABLE_SAMPLE_OVERLOADING ) {
insertindex = sid;
break;
} else {
CON_AddLine( name_already_used );
return FALSE;
}
}
}
// scan out all values to sample keys
if ( !ScanKeyValuePairs( sample_key_value, NULL ) )
return FALSE;
// fetch file name
char *fname = sample_key_value[ KEY_SAMPLE_FILE ].value;
if ( fname == NULL ) {
CON_AddLine( filename_missing );
return FALSE;
}
// process file name and use current workdir
fname = SubstCurWorkDir( fname );
int len = strlen( fname );
if ( ( len < 5 ) || ( fname[ len - 4 ] != '.' ) ) {
CON_AddLine( filename_invalid );
return FALSE;
}
// fetch (optional) volume parameter
int nVolume = AUD_MAX_VOLUME;
if ( ScanKeyValueInt( &sample_key_value[ KEY_SAMPLE_VOLUME ], &nVolume ) < 0 ) {
CON_AddLine( volume_invalid );
return FALSE;
}
if ( ( nVolume < 0 ) || ( nVolume > AUD_MAX_VOLUME ) ) {
CON_AddLine( volume_range_error );
return FALSE;
}
// fetch (optional) standard frequency parameter
float stdfreq = 44100.0f;
if ( ScanKeyValueFloat( &sample_key_value[ KEY_SAMPLE_STDFREQ ], &stdfreq ) < 0 ) {
CON_AddLine( stdfreq_invalid );
return FALSE;
}
if ( ( stdfreq < 5.0f ) || ( stdfreq > 44100.0f ) ) {
CON_AddLine( stdfreq_invalid );
return FALSE;
}
// fetch (optional) stereo priority level parameter
int stereolevel = 0;
if ( ScanKeyValueInt( &sample_key_value[ KEY_SAMPLE_STEREO ], &stereolevel ) < 0 ) {
CON_AddLine( stereolevel_invalid );
return FALSE;
}
if ( ( stereolevel < 0 ) || ( stereolevel > 5 ) ) {
CON_AddLine( stereolevel_invalid );
return FALSE;
}
// make sure file is at least readable (failure later on
// might perform an immediate program exit).
FILE *fp = SYS_fopen( fname, "rb" );
if ( fp == NULL ) {
CON_AddLine( MakeFileNameMsg( sample_invalid_file, fname ) );
return FALSE;
}
SYS_fclose( fp );
// free previous wave if we overload an already existing entry
if ( insertindex < NumLoadedSamples ) {
//NOTE:
// if no audio subsystem is linked nothing will actually
// be freed here, although AUDs_FreeWaveFile() will return
// AUD_RETURN_SUCCESS. in this case the sample will either
// not have been loaded anyway or simply stay in memory.
// this prevents an error message.
if ( AUDs_FreeWaveFile( insertindex ) != AUD_RETURN_SUCCESS ) {
CON_AddLine( sample_invalid_file );
return FALSE;
}
}
// enter name into table
SetSampleName( insertindex, name );
// enter filename into table
SetSampleFilename( insertindex, fname );
//NOTE:
// if no audio subsystem is linked the sample will not
// actually be loaded, although AUDs_LoadWaveFile() will
// return AUD_RETURN_SUCCESS. this prevents an error message.
// load sample from file
if ( AUDs_LoadWaveFile( insertindex ) != AUD_RETURN_SUCCESS ) {
CON_AddLine( MakeFileNameMsg( sample_invalid_file, fname ) );
return FALSE;
}
// store additional info in table
SampleInfo[ insertindex ].volume = nVolume;
SampleInfo[ insertindex ].stdfreq = stdfreq;
SampleInfo[ insertindex ].stereolevel = stereolevel;
// this will not happen if an error occurs earlier on!
if ( insertindex == NumLoadedSamples ) {
NumLoadedSamples++;
}
return TRUE;
}
// main entry point for "load" command (load data via console) ----------------
//
int Cmd_ExecLoadCommand( char *command )
{
//NOTE:
//CONCOM:
// load_command ::= 'load' <data_type> <name> [<key> <value>]*
// data_type ::= 'object' | 'texture' | 'texfont' | 'bitmap' | 'sample'
// name ::= "may be parenthesized () to include whitespace"
// key ::= "valid keys depend on data type"
ASSERT( command != NULL );
HANDLE_COMMAND_DOMAIN_SEP( command );
// split off first token (data type specifier)
char *datatype = strtok( command, " " );
if ( datatype == NULL ) {
CON_AddLine( datatype_missing );
return TRUE;
}
// this flag is used for internal data reloading
if ( AUX_ALLOW_ONLY_TEXTURE_LOADING ) {
// disallow everything but textures
if ( strcmp( datatype, datatype_texture ) != 0 ) {
return TRUE;
}
}
// create pointer to list of parameters (first is always the name)
char *name = strtok( NULL, " " );
if ( name == NULL ) {
CON_AddLine( name_missing );
return TRUE;
}
// allow name to be parenthesized to include whitespace
name = GetParenthesizedName( name );
if ( name == NULL ) {
CON_AddLine( name_invalid );
return TRUE;
}
// dispatch to functions for handling different data types
if ( strcmp( datatype, datatype_object ) == 0 )
ConLoadObject( name );
else if ( strcmp( datatype, datatype_texture ) == 0 )
ConLoadTexture( name );
else if ( strcmp( datatype, datatype_texfont ) == 0 )
ConLoadTexfont( name );
else if ( strcmp( datatype, datatype_bitmap ) == 0 )
ConLoadBitmap( name );
else if ( strcmp( datatype, datatype_sample ) == 0 )
ConLoadSample( name );
else
CON_AddLine( datatype_invalid );
// print dot for every loaded item in text-mode
// (well, also if one of the above routines fails...)
if ( TextModeActive && AUX_CMD_WRITE_ACTIVE_IN_TEXTMODE ) {
// static int dot_count = 0x00;
// if ( ( dot_count++ & 0x01 ) == 0x00 )
MSGPUT( "." );
}
return TRUE;
}
// module registration function -----------------------------------------------
//
REGISTER_MODULE( CON_LOAD )
{
// file char sequence table
int numbasechars = ( 0x7f - 0x21 );
int numspecialchars = sizeof( special_chars );
char_sequence = (byte *) ALLOCMEM( numbasechars + numspecialchars );
if ( char_sequence == NULL ) {
OUTOFMEM( 0 );
}
int storepos = 0;
for ( int ccode = 0x21; ccode < 0x7f; ccode++ ) {
char_sequence[ storepos++ ] = (byte)ccode;
}
for ( int sindx = 0; sindx < numspecialchars; sindx++ ) {
char_sequence[ storepos++ ] = special_chars[ sindx ];
}
ASSERT( storepos == ( numbasechars + numspecialchars ) );
num_charseq = storepos;
}
|