File: dispenser.cpp

package info (click to toggle)
postal1 2015.git20250526%2Bds-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 14,024 kB
  • sloc: cpp: 130,877; ansic: 38,942; python: 874; makefile: 351; sh: 61
file content (1592 lines) | stat: -rw-r--r-- 45,673 bytes parent folder | download | duplicates (2)
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
////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 RWS Inc, All Rights Reserved
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of version 2 of the GNU General Public License as published by
// the Free Software Foundation
//
// 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
//
// dispenser.cpp
// Project: Nostril (aka Postal)
//
// This module impliments the CDispenser class, which is a simple one animationed
// 3D object.
//
// History:
//		03/19/97	JMI	Started this dispenser item class using CDispenser as a 
//							template.
//							Will not hose you, but not yet functional.  Not recommended
//							for saving with your realm yet.  Might change loading
//							somewhat, but probably not.
//
//		03/20/97	JMI	Now has VERY simple timer logic.
//							Has large problem with statics' sFileCount parameter to
//							Load().
//
//		03/25/97	JMI	Changed EDIT_GUI_FILE to 8.3 name.
//
//		04/04/97	JMI	No longer uses construct with ID in InstantiateDispensee().
//
//		04/08/97	JMI	Although I was checking to make sure I did not mod by 0
//							when determining the next time for dispensage, if it was
//							the case that I would've mod'ed by 0, I was simply not
//							setting a new time causing the dispenser to just pump out
//							one dude per iteration and, indirectly, this run on sen-
//							tence.  Fixed.
//
//		04/10/97 BRH	Updated this to work with the new multi layer attribute
//							maps.
//
//		04/23/97	JMI	Added new logic type Exists and added a max for the number
//							of dispensees and a current number of dispensees dispensed.
//
//		05/29/97	JMI	Removed ASSERT on m_pRealm->m_pAttribMap which no longer
//							exists.
//
//		06/14/97	JMI	Upgraded to use new DoGui() method for sub dialogs 
//							involving GuiPressed().
//
//		06/17/97	JMI	Converted all occurrences of rand() to GetRand() and
//							srand() to SeedRand().
//
//		06/27/97	JMI	Now uses RListBox::EnsureVisible() to make sure the selected
//							dispensee type is visible in EditModify().
//							Also, displays dispensee type via text in EditRender().
//							Also, now updates the dispensee's position in Save() 
//							instead of EditMove() to speed up dragging.
//							Also, now uses Map3Dto2D() in EditRender() and EditRect().
//
//		06/27/97	JMI	Now shows actual dispensee in a deluxe way adding only an
//							icon indicating we're a dispenser.
//
//		06/27/97	JMI	Added temp fix to cause the dispenser m_imRender to be
//							created on load.  But it is very cheesy.
//
//		06/28/97	JMI	Added a function to render the dispensee, 
//							RenderDisipensee() which is now called in the various
//							places that need to update the dispensee's icon.
//
//		06/30/97	JMI	Render() was using m_pim where it should had been using 
//							m_imRender for determining the height for offseting the
//							priority.
//							Now uses the dispensee's actual EditRect() and 
//							EditHotSpot().
//
//		06/30/97	JMI	Now maps the Z to 3D when loading fileversions previous to
//							24.
//
//		07/03/97	JMI	Now uses SetGuiToNotify() to make a button able to end a
//							DoGui() session.
//
//		07/09/97	JMI	Now uses m_pRealm->Make2dResPath() to get the fullpath
//							for 2D image components.
//
//		07/10/97	JMI	Added GetClosestDude().
//							Also, added new logic type DistanceToDude.
//
//		07/14/97	JMI	Was only instantiating the dispensee in edit mode.  This
//							had the potential of causing the dispensee's ms_sFileCount
//							to be different when loading in edit mode than in non edit
//							mode and, therefore, could cause it to load its statics
//							different amounts of times between modes.  Changed it to
//							be consistent and instantiate the dispensee even when
//							it doesn't need to in non-edit mode.  It just only renders
//							the dispensee in edit mode loads.
//
//		07/21/97	JMI	Now, if it has no thing ptr to use to create the editor 
//							icon, it chooses a size of WIDTH_IF_NO_THING x 
//							HEIGHT_IF_NO_THING.
//
//		07/27/97	JMI	Now m_sMaxDispensees as a negative indicates infinite
//							dispensees.  This is user selectable via a checkbox in the
//							dialog.
//
//		07/28/97	JMI	Now sets m_u16IdDispensee to IdNil after instantiating a
//							thing for renderage.  This was causing a problem with 
//							'Exists' logic.
//							Also, added initial delay for all logics.
//							Changed m_alLogicParms[0],2,3 to m_alLogicParms[4] (adding one
//							logic parm while changing the storage technique).
//							Made dialog more deluxe to handle new parm and 
//							descriptions.
//							Checking in to work at home...may not be up to par.
//
//		07/28/97	JMI	Now uses initial delay to set the next update time.
//							Also, now word wraps description in GUI.
//							Also, now displays a message when no dispensee type chosen.
//
//					JMI	Changed DestroyDispensee() to not ASSERT on a NULL ptr.
//
//		07/29/97	JMI	Changed logic descriptions.
//
//		08/05/97	JMI	Changed priority to use Z position rather than 2D 
//							projected Y position.
//
//		08/10/97	JMI	Now lets you jump right to editting the dispensee by 
//							holding down ALT key when you choose EditModify().
//
////////////////////////////////////////////////////////////////////////////////
#define DISPENSER_CPP

#include "RSPiX.h"
#include <math.h>

#include "dispenser.h"
#include "reality.h"

////////////////////////////////////////////////////////////////////////////////
// Macros/types/etc.
////////////////////////////////////////////////////////////////////////////////

#define EDIT_GUI_FILE			"res/editor/Dispense.gui"

#define RES_FILE					"dispenser.bmp"

#define THINGS_LIST_BOX_ID				3
#define LOGICS_LIST_BOX_ID				4
#define LOGIC_PARMS_EDIT_ID_BASE		101
#define LOGIC_PARMS_TEXT_ID_BASE		201
#define BTN_MODIFY_DISPENSEE_ID		8
#define MAX_DISPENSEES_EDIT_ID		9
#define INFINITE_DISPENSEES_MB_ID	20
#define DESCRIPTION_TEXT_ID			300

// Font settings for displaying dispensee's that don't return a sprite.
#define FONT_SIZE						15
#define FONT_COLOR					249

// Width and Height if no thing.  Allow enough to read text.
#define WIDTH_IF_NO_THING			60
#define HEIGHT_IF_NO_THING			30

////////////////////////////////////////////////////////////////////////////////
// Variables/data
////////////////////////////////////////////////////////////////////////////////

// Let this auto-init to 0
int16_t CDispenser::ms_sFileCount;
int16_t CDispenser::ms_sDispenseeFileCount;

// Descriptions of logic types and their parameters.
CDispenser::LogicInfo	CDispenser::ms_aliLogics[NumLogicTypes]	=
	{
		////////////////////////// Timed ////////////////////////////////////////
		{ 
		"Timed",		// Logic Name.
			{			// Parm descriptions.  NULL for each entry that does not exist.
			"Min delay (ms):", 
			"Max delay (ms):", 
			"Initial delay (ms):",
			NULL,
			},
		// Description of logic.
#if 1
		"\"Initial delay\" is the amount of time before dispensing begins.\n"
		"\"Min delay\" is the minimum amount of time before the next item is dispensed.\n"
		"\"Max delay\" is the maximum amount of time before the next item is dispensed.\n",
#else
		"After the initial delay, dispenses a dispensee between \"Min delay\" "
		"and \"Max delay\" milliseconds.",
#endif
		},

		////////////////////////// Exists ///////////////////////////////////////
		{ 
		"Exists",	// Logic Name
			{			// Parm descriptions.  NULL for each entry that does not exist.
			"Min delay (ms):", 
			"Max delay (ms):", 
			"Initial delay (ms):",
			NULL,
			},
		// Description of logic.
#if 1
		"\"Initial delay\" is the amount of time before dispensing begins.\n"
		"\"Min delay\" is the minimum amount of time after the previously dispensed item "
		"is destroyed or killed that the next item will be dispensed.\n"
		"\"Max delay\" is the maximum amount of time after the previously dispensed item "
		"is destroyed or killed that the next item will be dispensed.\n",
#else
		"After the initial delay, dispesenses a dispensee.  Does not dispense the "
		"next dispensee until between \"Min delay\" and \"Max delay\" milliseconds "
		"after the previous one has been destroyed/killed.",
#endif
		},

		///////////////////// Distance To Dude ///////////////////////////////////
		{ 
		"Distance to Dude",	// Logic Name.
			{						// Parm descriptions.  NULL for each entry that does not exist.
			"Min distance (0 = none):", 
			"Max distance (0 = none):", 
			"How often to check (ms):", 
			"Initial delay (ms):",
			},
		// Description of logic.
#if 1
		"\"Initial delay\" is the amount of time before dispensing begins.\n"
		"\"How often to check\" is the amount of time between checking the distance "
		"from the dispenser to the main dude.\n"
		"\"Min distance\" to \"Max distance\" is the range of distances to the closest "
		"main dude that will cause the next item to be dispensed.\n",
#else
		"After the initial delay, checks the closest main dude every \"How often "
		"to check\" milliseconds and dispenses a new dispensee if the main dude "
		"is within \"Min distance\" to \"Max distance\" pixels at that time.  Not "
		"for use with other toys.",
#endif
		},
	};

////////////////////////////////////////////////////////////////////////////////
// Local function prototypes
////////////////////////////////////////////////////////////////////////////////
void LogicItemCall(
	RGuiItem*	pguiLogicItem);	// In:  Logic item that was pressed.


////////////////////////////////////////////////////////////////////////////////
// Load object (should call base class version!)
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::Load(		// Returns 0 if successfull, non-zero otherwise
	RFile* pFile,				// In:  File to load from
	bool bEditMode,			// In:  True for edit mode, false otherwise
	int16_t sFileCount,			// In:  File count (unique per file, never 0)
	uint32_t	ulFileVersion)		// In:  Version of file format to load.
	{
	int16_t sResult = 0;

	// In most cases, the base class Load() should be called.
	sResult	= CThing::Load(pFile, bEditMode, sFileCount, ulFileVersion);
	if (sResult == 0)
		{
		// Load common data just once per file (not with each object)
		if (ms_sFileCount != sFileCount)
			{
			ms_sFileCount = sFileCount;

			// Load static data
			switch (ulFileVersion)
				{
				default:
				case 1:
					break;
				}
			}

		// Load object data
		switch (ulFileVersion)
			{
			default:
			case 35:
				pFile->Read(&m_sMaxDispensees);
				pFile->Read(&m_sX);
				pFile->Read(&m_sY);
				pFile->Read(&m_sZ);
				pFile->Read(&m_idDispenseeType);
				U16	u16LogicType;
				pFile->Read(&u16LogicType);
				m_logictype	= (LogicType)u16LogicType;
				pFile->Read(m_alLogicParms, 4);
				pFile->Read(&m_ulFileVersion);
				int32_t	lSize;
				if (pFile->Read(&lSize) == 1)
					{
					// Open memory file to receive the clone data . . .
					if (m_fileDispensee.Open(lSize, 1L, (RFile::Endian)pFile->GetEndian()) == 0)
						{
						// Put 'er there.
						pFile->Read(m_fileDispensee.GetMemory(), lSize);
						}
					}

				// Had to start the whole format over b/c the number of parms changed and I
				// didn't want to read the parms all over the place.  The unfortunate thing
				// is that I end up with two versions of reading the dispensee which could
				// likely need to be changed at some point (so it'd have to be change in two
				// locations).  Perhaps I could make that part a separate inline.  Not sure
				// now though.
				
				// Break out here intentionally.
				break;

			// Older format support with less parms.  Make sure to init unused new parms
			// to zero.
			case 34:
			case 33:
			case 32:
			case 31:
			case 30:
			case 29:
			case 28:
			case 27:
			case 26:
			case 25:
			case 24:
			case 23:
			case 22:
			case 21:
			case 20:
			case 19:
			case 18:
			case 17:
			case 16:
			case 15:
			case 14:
			case 13:
			case 12:
			case 11:
			case 10:
			case 9:
			case 8:
			case 7:
				pFile->Read(&m_sMaxDispensees);

			case 6:
			case 5:
			case 4:
			case 3:
			case 2:
			case 1:
				{
				pFile->Read(&m_sX);
				pFile->Read(&m_sY);
				pFile->Read(&m_sZ);
				pFile->Read(&m_idDispenseeType);
				U16	u16LogicType;
				pFile->Read(&u16LogicType);
				m_logictype	= (LogicType)u16LogicType;
				pFile->Read(m_alLogicParms + 0);
				pFile->Read(m_alLogicParms + 1);
				pFile->Read(m_alLogicParms + 2);

				int16_t i;
				for (i = 3; i < NumParms; i++)
					{
					m_alLogicParms[i]	= 0;
					}

				pFile->Read(&m_ulFileVersion);
				int32_t	lSize;
				if (pFile->Read(&lSize) == 1)
					{
					// Open memory file to receive the clone data . . .
					if (m_fileDispensee.Open(lSize, 1L, (RFile::Endian)pFile->GetEndian()) == 0)
						{
						// Put 'er there.
						pFile->Read(m_fileDispensee.GetMemory(), lSize);
						}
					}
				break;
				}
			}
		
		// If the file version is earlier than the change to real 3D coords . . .
		if (ulFileVersion < 24)
			{
			// Convert to 3D.
			m_pRealm->MapY2DtoZ3D(
				m_sZ,
				&m_sZ);
			}

		// Make sure there were no file errors or format errors . . .
		if (!pFile->Error() && sResult == 0)
			{
			// Init dispenser
			sResult = Init(bEditMode);
			}
		else
			{
			sResult = -1;
			TRACE("CDispenser::Load(): Error reading from file!\n");
			}
		}
	else
		{
		TRACE("CDispenser::Load(): CThing::Load() failed.\n");
		}

	return sResult;
	}


////////////////////////////////////////////////////////////////////////////////
// Save object (should call base class version!)
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::Save(		// Returns 0 if successfull, non-zero otherwise
	RFile* pFile,				// In:  File to save to
	int16_t sFileCount)			// In:  File count (unique per file, never 0)
	{
	int16_t sResult = 0;

	// In most cases, the base class Save() should be called.
	sResult	= CThing::Save(pFile, sFileCount);
	if (sResult == 0)
		{
		// Save common data just once per file (not with each object)
		if (ms_sFileCount != sFileCount)
			{
			ms_sFileCount = sFileCount;

			// Save static data
			}

		pFile->Write(m_sMaxDispensees);
		pFile->Write(m_sX);
		pFile->Write(m_sY);
		pFile->Write(m_sZ);
		pFile->Write(m_idDispenseeType);
		pFile->Write((U16)m_logictype);
		pFile->Write(m_alLogicParms, 4);

		// We do this here instead of on EditMove() b/c EditMove() can
		// be slow when on every iteration, it allocates a CWhatever,
		// loads it, sets the new position, saves it and deletes it.
		// Update position . . .
		CThing*	pthing;
		if (InstantiateDispensee(&pthing, false) == 0)
			{
			// Update position.
			pthing->EditMove(m_sX, m_sY, m_sZ);
			// Resave.
			SaveDispensee(pthing);
			// Get rid of.
			DestroyDispensee(&pthing);
			}

		pFile->Write(m_ulFileVersion);
		pFile->Write(m_fileDispensee.GetSize());
		pFile->Write(m_fileDispensee.GetMemory(), m_fileDispensee.GetSize());

		sResult	= pFile->Error();
		}
	else
		{
		TRACE("CDispenser::Save(): CThing::Save() failed.\n");
		}

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Startup object
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::Startup(void)						// Returns 0 if successfull, non-zero otherwise
	{
	switch (m_logictype)
		{
		case Timed:
		case Exists:
			m_lNextUpdate = m_pRealm->m_time.GetGameTime() + m_alLogicParms[2];
			break;
		case DistanceToDude:
			m_lNextUpdate = m_pRealm->m_time.GetGameTime() + m_alLogicParms[3];
			break;
		default:
			m_lNextUpdate = m_pRealm->m_time.GetGameTime();
			break;
		}

	return 0;
	}


////////////////////////////////////////////////////////////////////////////////
// Shutdown object
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::Shutdown(void)							// Returns 0 if successfull, non-zero otherwise
	{
	return 0;
	}


////////////////////////////////////////////////////////////////////////////////
// Suspend object
////////////////////////////////////////////////////////////////////////////////
void CDispenser::Suspend(void)
	{
	if (m_sSuspend == 0)
		{
		// Store current delta so we can restore it.
		int32_t	lCurTime				= m_pRealm->m_time.GetGameTime();
		m_lNextUpdate				= lCurTime - m_lNextUpdate;
		}

	m_sSuspend++;
	}

////////////////////////////////////////////////////////////////////////////////
// Resume object
////////////////////////////////////////////////////////////////////////////////
void CDispenser::Resume(void)
	{
	m_sSuspend--;

	// If we're actually going to start updating again, we need to reset
	// the time so as to ignore any time that passed while we were suspended.
	// This method is far from precise, but I'm hoping it's good enough.
	if (m_sSuspend == 0)
		{
		int32_t	lCurTime				= m_pRealm->m_time.GetGameTime();
		m_lNextUpdate				= lCurTime - m_lNextUpdate;
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Update object
////////////////////////////////////////////////////////////////////////////////
void CDispenser::Update(void)
	{
	if (!m_sSuspend)
		{
		int32_t	lCurTime	= m_pRealm->m_time.GetGameTime();

		if (m_sNumDispensees < m_sMaxDispensees || m_sMaxDispensees < 0)
			{
			// Logic on when to dispense next.
			switch (m_logictype)
				{
				case Timed:
					if (lCurTime >= m_lNextUpdate)
						{
						// Create a thing . . .
						CThing*	pthing;
						if (InstantiateDispensee(&pthing, false) == 0)
							{
							// Wahoo.
							m_sNumDispensees++;
							}

						if (m_alLogicParms[1] - m_alLogicParms[0] > 0)
							{
							// Next update will be in a min of m_alLogicParms[0] and a max of m_alLogicParms[1]
							// milliseconds.
							m_lNextUpdate	= lCurTime + m_alLogicParms[0] + (GetRand() % (m_alLogicParms[1] - m_alLogicParms[0]));
							}
						else
							{
							m_lNextUpdate	= lCurTime + m_alLogicParms[0];
							}
						}
					break;
				case Exists:
					{
					// If we don't have one . . .
					if (m_u16IdDispensee == CIdBank::IdNil)
						{
						if (lCurTime >= m_lNextUpdate)
							{
							// Create a thing . . .
							CThing*	pthing;
							if (InstantiateDispensee(&pthing, false) == 0)
								{
								// Wahoo.
								m_sNumDispensees++;
								}
							}
						}
					else
						{
						// If the last one no longer exists . . .
						CThing* pthing;
						if (m_pRealm->m_idbank.GetThingByID(&pthing, m_u16IdDispensee) != 0)
							{
							// Clear our ID.
							m_u16IdDispensee	= CIdBank::IdNil;
							// Set the next update time.
							if (m_alLogicParms[1] - m_alLogicParms[0] > 0)
								{
								// Next update will be in a min of m_alLogicParms[0] and a max of m_alLogicParms[1]
								// milliseconds.
								m_lNextUpdate	= lCurTime + m_alLogicParms[0] + (GetRand() % (m_alLogicParms[1] - m_alLogicParms[0]));
								}
							else
								{
								m_lNextUpdate	= lCurTime + m_alLogicParms[0];
								}
							}
						}
					break;
					}
				case DistanceToDude:
					{
					if (lCurTime >= m_lNextUpdate)
						{
						// If in range . . .
						int32_t	lDudeDist;
						if (GetClosestDudeDistance(&lDudeDist) == 0)
							{
							if ( (lDudeDist >= m_alLogicParms[0] || m_alLogicParms[0] == 0) && (lDudeDist <= m_alLogicParms[1] || m_alLogicParms[1] == 0) )
								{
								// Create a thing . . .
								CThing*	pthing;
								if (InstantiateDispensee(&pthing, false) == 0)
									{
									// Wahoo.
									m_sNumDispensees++;
									}
								}
							}

						m_lNextUpdate	= lCurTime + m_alLogicParms[2];
						}
					break;
					}
				}
			}
		else
			{
			// Should it destroy itself?
			}
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Called by editor to init new object at specified position
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::EditNew(									// Returns 0 if successfull, non-zero otherwise
	int16_t sX,												// In:  New x coord
	int16_t sY,												// In:  New y coord
	int16_t sZ)												// In:  New z coord
	{
	// Initialize for edit mode.
	int16_t sResult	= Init(true);
	if (sResult == 0)
		{
		sResult	= EditModify();
		}

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Set text for and recompose item.
////////////////////////////////////////////////////////////////////////////////
inline void SetLogicText(	// Returns nothing.
	RGuiItem*	pguiRoot,	// In:  Root item.
	int32_t			lId,			// In:  ID of item to update text.
	char*			pszText,		// In:  New text or NULL for none and to disable lIdEdit.
	int32_t			lIdEdit)		// In:  Item to enable or disable.
	{
	RGuiItem*	pguiEdit	= pguiRoot->GetItemFromId(lIdEdit);
	RGuiItem*	pguiText	= pguiRoot->GetItemFromId(lId);
	if (pszText != NULL)
		{
		RSP_SAFE_GUI_REF_VOID(pguiText, SetText("%s", pszText) );
		RSP_SAFE_GUI_REF_VOID(pguiText, Compose() );
		RSP_SAFE_GUI_REF_VOID(pguiEdit, SetVisible(TRUE) );
		}
	else
		{
		RSP_SAFE_GUI_REF_VOID(pguiText, SetText("") );
		RSP_SAFE_GUI_REF_VOID(pguiText, Compose() );
		RSP_SAFE_GUI_REF_VOID(pguiEdit, SetVisible(FALSE) );
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Setup parms for specified logic type.
////////////////////////////////////////////////////////////////////////////////
inline void SetupLogicParms(	// Returns nothing.
	RGuiItem*	pguiRoot,		// In:  Root item.
	int16_t			sType)			// In:  Logic type to setup parms for.
	{
	int16_t	i;
	for (i = 0; i < CDispenser::NumParms; i++)
		{
		SetLogicText(
			pguiRoot, 
			LOGIC_PARMS_TEXT_ID_BASE + i, 
			CDispenser::ms_aliLogics[sType].apszParms[i], 
			LOGIC_PARMS_EDIT_ID_BASE + i);
		}

	// Update description.
	RGuiItem*	pguiDescription	= pguiRoot->GetItemFromId(DESCRIPTION_TEXT_ID);
	if (pguiDescription)
		{
		// Remember if word wrap was on . . .
		int16_t	sWasWordWrap	= FALSE;
		if (pguiDescription->m_pprint->m_eModes & RPrint::WORD_WRAP)
			{
			sWasWordWrap	= TRUE;
			}

		// Guarantee word wrap status.
		pguiDescription->m_pprint->SetWordWrap(TRUE);

		pguiDescription->SetText("%s", CDispenser::ms_aliLogics[sType].pszDescription);
		pguiDescription->Compose();

		// Restore word wrap status.
		pguiDescription->m_pprint->SetWordWrap(sWasWordWrap);
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Set selection and update parms via pressed callback from GUI.
////////////////////////////////////////////////////////////////////////////////
void LogicItemCall(
	RGuiItem*	pguiLogicItem)	// In:  Logic item that was pressed.
	{
	ASSERT(pguiLogicItem->m_ulUserInstance != NULL);
	RListBox*	plb	= (RListBox*)pguiLogicItem->m_ulUserInstance;
	ASSERT(plb->m_type == RGuiItem::ListBox);

	// Make item the selection.
	plb->SetSel(pguiLogicItem);

	int16_t	sType	= pguiLogicItem->m_ulUserData;

	// Update parms.
	SetupLogicParms(plb->GetParent(), sType);
	}

////////////////////////////////////////////////////////////////////////////////
// Updates the GUI items impacted by the current state of the max dispensees
// 'Infinite' checkbox.
////////////////////////////////////////////////////////////////////////////////
static void UpdateMaxDispensees(
	RGuiItem*	pgui_pmb)			// In:  Multibtn that was pressed.
	{
	ASSERT(pgui_pmb->m_type == RGuiItem::MultiBtn);
	RMultiBtn*	pmb	= (RMultiBtn*)pgui_pmb;
	REdit*		pedit	= (REdit*)pmb->m_ulUserInstance;
	ASSERT(pedit->m_type == RGuiItem::Edit);

	// If infinite dispensees . . .
	if (pmb->m_sState == 2)
		{
		// No need for edit field, then.
		pedit->SetVisible(FALSE);
		}
	else
		{
		// We'll be needing edit field, then.
		pedit->SetVisible(TRUE);
		// If negative . . .
		if (pedit->GetVal() < 0)
			{
			// Set to default val.
			pedit->SetText("%d", 10);
			pedit->Compose();
			}
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Called by editor to modify object
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::EditModify(void)					// Returns 0 if successfull, non-zero otherwise
	{
	// Get key status array.
	U8*	pau8KeyStatus	= rspGetKeyStatusArray();

	int16_t	sResult	= 0;
	ClassIDType	idNewThingType;

	// Set up to modify dispensee.
	bool	bModifyDispensee	= false;

	// If not yet setup or key to jump straight to modifying dispensee is not held . . .
	if (m_idDispenseeType == TotalIDs || (pau8KeyStatus[RSP_SK_ALT] & 1) == 0)
		{
		idNewThingType	= TotalIDs;

		RGuiItem*	pguiRoot	= RGuiItem::LoadInstantiate(FullPathVD(EDIT_GUI_FILE));
		if (pguiRoot != NULL)
			{
			// Get items.
			RListBox*	plbThings					= (RListBox*)pguiRoot->GetItemFromId(THINGS_LIST_BOX_ID);
			RListBox*	plbLogics					= (RListBox*)pguiRoot->GetItemFromId(LOGICS_LIST_BOX_ID);
			RBtn*			pbtnModify					= (RBtn*)pguiRoot->GetItemFromId(BTN_MODIFY_DISPENSEE_ID);
			REdit*		peditMaxDispensees		= (REdit*)pguiRoot->GetItemFromId(MAX_DISPENSEES_EDIT_ID);
			RMultiBtn*	pmbInfiniteDispensees	= (RMultiBtn*)pguiRoot->GetItemFromId(INFINITE_DISPENSEES_MB_ID);
			if (	plbThings
				&& plbLogics 
				&& pbtnModify 
				&& peditMaxDispensees 
				&& pmbInfiniteDispensees)
				{
				ASSERT(plbThings->m_type == RGuiItem::ListBox);
				ASSERT(plbLogics->m_type == RGuiItem::ListBox);
				ASSERT(pbtnModify->m_type == RGuiItem::Btn);
				ASSERT(pmbInfiniteDispensees->m_type == RGuiItem::MultiBtn); 

				int16_t	i;
				for (i = 0; i < NumParms; i++)
					{
					RGuiItem*	pgui	= pguiRoot->GetItemFromId(LOGIC_PARMS_EDIT_ID_BASE + i);
					if (pgui)
						{
						pgui->SetText("%ld", m_alLogicParms[i]);
						pgui->Compose();
						}
					}

				peditMaxDispensees->SetText("%ld", m_sMaxDispensees);
				peditMaxDispensees->Compose();

				// Point instance data at the max dispensees edit so it can show and
				// hide it.
				pmbInfiniteDispensees->m_ulUserInstance	= (U64)peditMaxDispensees;
				pmbInfiniteDispensees->m_sState				= (m_sMaxDispensees < 0) ? 2 : 1;
				pmbInfiniteDispensees->m_bcUser				= UpdateMaxDispensees;
				pmbInfiniteDispensees->Compose();

				UpdateMaxDispensees(pmbInfiniteDispensees);

				// Set a callback for the button to end the DoGui().
				SetGuiToNotify(pbtnModify);

				RGuiItem*	pguiItem;
				RGuiItem*	pguiSel	= NULL;
				for (i = 0; i < NumLogicTypes; i++)
					{
					pguiItem	= plbLogics->AddString(ms_aliLogics[i].pszName);
					if (pguiItem != NULL)
						{
						// Set item number.
						pguiItem->m_ulUserData		= i;
						// Set listbox ptr.
						pguiItem->m_ulUserInstance	= (U64)plbLogics;
						// Set callback.
						pguiItem->m_bcUser			= LogicItemCall;
						// If this item is the current logic type . . .
						if (m_logictype == i)
							{
							pguiSel	= pguiItem;
							// Select it.
							plbLogics->SetSel(pguiItem);
							// Set up parms.
							SetupLogicParms(pguiRoot, i);
							}
						}
					}

				plbLogics->AdjustContents();
				// If there's a selected item (there should be) . . .
				if (pguiSel != NULL)
					{
					plbLogics->EnsureVisible(pguiSel);
					}

				pguiSel	= NULL;

				// Add available objects to listbox.
				CThing::ClassIDType	idCur;
				for (idCur	= 0; idCur < CThing::TotalIDs; idCur++)
					{
					// If item is editor creatable . . .
					if (CThing::ms_aClassInfo[idCur].bEditorCreatable == true)
						{
						// Add string for each item to listbox.
						pguiItem	= plbThings->AddString((char*)CThing::ms_aClassInfo[idCur].pszClassName);
						if (pguiItem != NULL)
							{
							pguiItem->m_ulUserData	= (uint32_t)idCur;

							// If this is the current type . . .
							if (m_idDispenseeType == idCur)
								{
								pguiSel	= pguiItem;
								// Select it.
								plbThings->SetSel(pguiItem);
								}
							}
						}
					}

				// Format list items.
				plbThings->AdjustContents();
				// If there's a selected item (there may not be) . . .
				if (pguiSel != NULL)
					{
					plbThings->EnsureVisible(pguiSel);
					}

				while (sResult == 0 && idNewThingType == TotalIDs)
					{
					bModifyDispensee	= false;

					switch (DoGui(pguiRoot) )
						{
						case BTN_MODIFY_DISPENSEE_ID:
							bModifyDispensee	= true;
							// Intentional fall through.
						case 1:
							{
							// Get logic selection.  Required.
							RGuiItem*	pguiSel	= plbLogics->GetSel();
							if (pguiSel != NULL)
								{
								m_logictype	= (LogicType)pguiSel->m_ulUserData;
								}
							else
								{
								sResult	= 1;
								}

							// Get dispensee type selection.  Required.
							pguiSel	= plbThings->GetSel();
							if (pguiSel != NULL)
								{
								idNewThingType	= (ClassIDType)pguiSel->m_ulUserData;
								}
							else
								{
								rspMsgBox(
									RSP_MB_ICN_INFO | RSP_MB_BUT_OK,
									"Dispenser",
									g_pszDispenserNoDispenseeTypeChosen);
								}

							int16_t i;
							for (i = 0; i < NumParms; i++)
								{
								m_alLogicParms[i]	= pguiRoot->GetVal(LOGIC_PARMS_EDIT_ID_BASE + i);
								}

							if (pmbInfiniteDispensees->m_sState == 1)
								{
								m_sMaxDispensees	= peditMaxDispensees->GetVal();
								}
							else
								{
								m_sMaxDispensees	= -1;
								}
							
							break;
							}
						
						case 2:
						default:
							sResult	= 1;
							break;
						}
					}
				}
			else
				{
				TRACE("EditModify(): Missing GUI items in  %s.\n", EDIT_GUI_FILE);
				sResult	= -2;
				}

			// Done with GUI.
			delete pguiRoot;
			pguiRoot	= NULL;
			}
		else
			{
			TRACE("EditModify(): Failed to load %s.\n", EDIT_GUI_FILE);
			sResult	= -1;
			}
		}
	else
		{
		// Go right to modifying dispensee.
		bModifyDispensee	= true;
		// Use same thing type.
		idNewThingType	= m_idDispenseeType;
		}

	// If successful so far . . .
	if (sResult == 0)
		{
		// If we have a dispensee . . .
		CThing*	pthing	= NULL;
		// Instantiate it so we get its current settings . . . 
		if (InstantiateDispensee(&pthing, true) == 0)
			{
			// If the current dispensee has a different type than the desired one . . .
			if (pthing->GetClassID() != idNewThingType)
				{
				// Be done with this one.
				DestroyDispensee(&pthing);
				m_fileDispensee.Close();
				}
			}

		m_idDispenseeType	= idNewThingType;

		// If no current thing . . .
		if (pthing == NULL)
			{
			// Allocate the desired thing . . .
			sResult	= ConstructWithID(m_idDispenseeType, m_pRealm, &pthing);
			if (sResult == 0)
				{
				// New it in the correct location.
				sResult	= pthing->EditNew(m_sX, m_sY, m_sZ);
				if (sResult == 0)
					{
					// Success.
					}
				else
					{
					TRACE("EditModify(): EditNew() failed for new dispensee.\n");
					}

				// If any errors occurred after allocation . . .
				if (sResult != 0)
					{
					DestroyDispensee(&pthing);
					}
				}
			else
				{
				TRACE("EditModify(): Failed to allocate new %s.\n",
					CThing::ms_aClassInfo[m_idDispenseeType].pszClassName);
				}
			}

		if (pthing != NULL)
			{
			// If editing was specified . . .
			if (bModifyDispensee == true)
				{
				// Modify it.
				pthing->EditModify();
				}

			// Render 'im:
			RenderDispensee(pthing);

			// Dump 'im:
			SaveDispensee(pthing);

			// Now that we have one in cold storage, we're done with this one.
			DestroyDispensee(&pthing);
			}
		}

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Called by editor to move object to specified position
// (virtual (Overridden here)).
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::EditMove(							// Returns 0 if successfull, non-zero otherwise
	int16_t sX,												// In:  New x coord
	int16_t sY,												// In:  New y coord
	int16_t sZ)												// In:  New z coord
	{
	int16_t	sResult	= 0;	// Assume success.

	m_sX	= sX;
	m_sY	= sY;
	m_sZ	= sZ;

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Called by editor to render object
// (virtual (Overridden here)).
////////////////////////////////////////////////////////////////////////////////
void CDispenser::EditRender(void)
	{
	// Map from 3d to 2d coords
	Map3Dto2D(
		(int16_t) m_sX, 
		(int16_t) m_sY, 
		(int16_t) m_sZ, 
		&m_sprite.m_sX2, 
		&m_sprite.m_sY2);

	// Priority is based on hotspot of sprite
	m_sprite.m_sPriority = m_sZ;

	// Center on dispensee's hotspot.
	m_sprite.m_sX2	-= m_sDispenseeHotSpotX;
	m_sprite.m_sY2	-= m_sDispenseeHotSpotY;

	// Layer should be based on info we get from attribute map.
	m_sprite.m_sLayer = CRealm::GetLayerViaAttrib(m_pRealm->GetLayer(m_sX, m_sZ));

	// Image would normally animate, but doesn't for now
	m_sprite.m_pImage = &m_imRender;

	// Update sprite in scene
	m_pRealm->m_scene.UpdateSprite(&m_sprite);
	}

////////////////////////////////////////////////////////////////////////////////
// Give Edit a rectangle around this object
// (virtual (Overridden here)).
////////////////////////////////////////////////////////////////////////////////
void CDispenser::EditRect(RRect* prc)
	{
	// Map from 3d to 2d coords
	Map3Dto2D(
		(int16_t) m_sX, 
		(int16_t) m_sY, 
		(int16_t) m_sZ, 
		&(prc->sX), 
		&(prc->sY) );

#if 0
	// Center on image.
	prc->sX	-= m_imRender.m_sWidth / 2;
	prc->sY	-= m_imRender.m_sHeight;

	prc->sW = m_imRender.m_sWidth;
	prc->sH = m_imRender.m_sHeight;
#else
	prc->sX	-= m_sDispenseeHotSpotX;
	prc->sY	-= m_sDispenseeHotSpotY;
	prc->sW	= m_rcDispensee.sW;
	prc->sH	= m_rcDispensee.sH;
#endif
	}

////////////////////////////////////////////////////////////////////////////////
// Called by editor to get the hotspot of an object in 2D.
// (virtual (Overridden here)).
////////////////////////////////////////////////////////////////////////////////
void CDispenser::EditHotSpot(	// Returns nothiing.
	int16_t*	psX,					// Out: X coord of 2D hotspot relative to
										// EditRect() pos.
	int16_t*	psY)					// Out: Y coord of 2D hotspot relative to
										// EditRect() pos.
	{
	// Base of dispenser is hotspot.
	*psX	= m_sDispenseeHotSpotX;
	*psY	= m_sDispenseeHotSpotY;
	}

////////////////////////////////////////////////////////////////////////////////
// Init dispenser
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::Init(	// Returns 0 if successfull, non-zero otherwise
	bool	bEditMode)		// true, if in edit mode; false, otherwise.
	{
	int16_t sResult = 0;

	// Remember.
	m_bEditMode		= bEditMode;

	// Only need resources in edit mode . . .
	if (bEditMode == true)
		{
		// Get resources
		sResult = GetResources();
		}

	if (m_idDispenseeType < TotalIDs && sResult == 0)
		{
		// Instantiate dispensee so we can create its icon.
		// NOTE:  We MUST do this in both edit mode and non-edit mode
		// b/c it affects the dispensee's ms_sFileCount which can affect
		// the load process; therefore, we must be consistent.
		CThing*	pthing	= NULL;
		InstantiateDispensee(&pthing, false);

		// If in edit mode . . .
		if (bEditMode == true)
			{
			// Render 'im:
			RenderDispensee(pthing);
			}

		DestroyDispensee(&pthing);
		}

	// No special flags.
	m_sprite.m_sInFlags = 0;

	return sResult;
	}


////////////////////////////////////////////////////////////////////////////////
// Kill dispenser
////////////////////////////////////////////////////////////////////////////////
void CDispenser::Kill(void)
	{
	// Remove sprite from scene (this is safe even if it was already removed!)
	m_pRealm->m_scene.RemoveSprite(&m_sprite);

	// Free resources.
	FreeResources();

	if (m_fileDispensee.IsOpen() != FALSE)
		{
		m_fileDispensee.Close();
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Get all required resources
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::GetResources(void)						// Returns 0 if successfull, non-zero otherwise
	{
	int16_t sResult = 0;

	if (m_pim == NULL)
		{
		sResult	= rspGetResource(&g_resmgrGame, m_pRealm->Make2dResPath(RES_FILE), &m_pim, RFile::LittleEndian);
		if (sResult == 0)
			{
			if (m_pim->Convert(RImage::FSPR8) == RImage::FSPR8)
				{
				}
			else
				{
				TRACE("GetResources(): Error converting to FSPR8.\n");
				}
			}
		}
		
	return sResult;
	}


////////////////////////////////////////////////////////////////////////////////
// Free all resources
////////////////////////////////////////////////////////////////////////////////
void CDispenser::FreeResources(void)
	{
	if (m_pim != NULL)
		{
		// Release resources for animations.
		rspReleaseResource(&g_resmgrGame, &m_pim);
		}
	}

////////////////////////////////////////////////////////////////////////////////
// Create a dispensee from the memfile, if open.
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::InstantiateDispensee(	// Returns 0 on success.
	CThing**	ppthing,								// Out: New thing loaded from m_fileDispensee.
	bool		bEditMode)							// In:  true if in edit mode.
	{
	int16_t	sResult	= 0;	// Assume success.

	// If we even have a dispensee type . . .
	if (m_idDispenseeType > 0 && m_idDispenseeType < TotalIDs)
		{
		// Allocate the desired thing . . .
		if (CThing::Construct(m_idDispenseeType, m_pRealm, ppthing) == 0)
			{
			if (m_fileDispensee.IsOpen() != FALSE)
				{
				m_fileDispensee.Seek(0, SEEK_SET);
				if ((*ppthing)->Load(
					&m_fileDispensee, 
					bEditMode, 
					--ms_sDispenseeFileCount,	// Always load statics for these.
					m_ulFileVersion) == 0)
					{
					U16	idInstance;
					if (m_pRealm->m_idbank.Get(*ppthing, &idInstance) == 0)
						{
						// Release file's ID (cannot have all the dispensee's
						// using the same ID) and set new one.
						(*ppthing)->SetInstanceID(idInstance);
						
						// Success.  
						m_u16IdDispensee	= idInstance;

						// If in edit mode . . .
						if (bEditMode == true)
							{
							// Update position.
							(*ppthing)->EditMove(m_sX, m_sY, m_sZ);
							}

						// Startup, if requested.  We only give one chance
						// UNlike CRealm::Startup().
	//					if ((*ppthing)->m_sCallStartup != 0)
							{
	//						(*ppthing)->m_sCallStartup	= 0;
							(*ppthing)->Startup();
							}
						}
					else
						{
						TRACE("InstantiateDispensee(): Could not get an instance ID from the idbank.\n");
						sResult	= -3;
						}
					}
				else
					{
					TRACE("InstantiateDispensee(): Load() failed for dispensee.\n");
					sResult	= -2;
					}
				}
			else
				{
				sResult	= 1;
				}

			// If any errors after allocation . . .
			if (sResult != 0)
				{
				DestroyDispensee(ppthing);
				}
			}
		else
			{
			TRACE("InstantiateDispensee(): Failed to allocate new %s.\n",
				CThing::ms_aClassInfo[m_idDispenseeType].pszClassName);
			sResult	= -1;
			}
		}
	else
		{
		sResult	= 1;
		}

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Write dispensee to the memfile.
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::SaveDispensee(		// Returns 0 on success.
	CThing*	pthing)						// In:  Instance of Dispensee to save.
	{
	int16_t	sResult	= 0;	// Assume success.

	// If we already have a mem file . . .
	if (m_fileDispensee.IsOpen() != FALSE)
		{
		m_fileDispensee.Close();
		}

	if (m_fileDispensee.Open(1, 1, RFile::LittleEndian) == 0)
		{
		if (pthing->Save(&m_fileDispensee, --ms_sDispenseeFileCount) == 0)
			{
			m_ulFileVersion	= CRealm::FileVersion;
			}
		else
			{
			TRACE("SaveDispensee(): pthing->Save() failed.\n");
			sResult	= -2;
			}
		}
	else
		{
		TRACE("SaveDispensee(): m_fileDispensee->Open() failed.\n");
		sResult	= -1;
		}

	return sResult;
	}


////////////////////////////////////////////////////////////////////////////////
// Render dispensee to m_imRender.
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::RenderDispensee(	// Returns 0 on success.
	CThing*	pthing)						// In:  Instance of Dispensee to render.
	{
	int16_t	sResult	= 0;	// Assume success.
	
	// If in edit mode . . .
	if (m_bEditMode == true)
		{
		// Redo display image.  This is a waste if we're not in edit mode.

		m_imRender.DestroyData();

		CSprite*	psprite	= NULL;

		// If there is an instance . . .
		if (pthing)
			{
			// Prepare item to be rendered.
			pthing->Render();

			// Get size of dispensee.
			pthing->EditRect(&m_rcDispensee);

			pthing->EditHotSpot(&m_sDispenseeHotSpotX, &m_sDispenseeHotSpotY);

			psprite	= pthing->GetSprite();
			}
		else
			{
			// Map from 3d to 2d coords
			Map3Dto2D(
				(int16_t) m_sX, 
				(int16_t) m_sY, 
				(int16_t) m_sZ, 
				&(m_rcDispensee.sX), 
				&(m_rcDispensee.sY) );

			m_rcDispensee.sW	= WIDTH_IF_NO_THING;
			m_rcDispensee.sH	= HEIGHT_IF_NO_THING;

			m_sDispenseeHotSpotX	= m_rcDispensee.sW / 2;
			m_sDispenseeHotSpotY	= m_rcDispensee.sH;
			}

		// Create image . . .
		if (m_imRender.CreateImage(	// Return 0 on success.
			m_rcDispensee.sW,				// Width of new buffer.
			m_rcDispensee.sH,				// Height of new buffer.
			RImage::BMP8)					// Type of new buffer.
			== 0)
			{
			// Clear.
			rspRect(
				0,								// In:  Not black, but transparent.
				&m_imRender,
				0,
				0,
				m_imRender.m_sWidth,
				m_imRender.m_sHeight,
				NULL);

			// If we could get the thing's sprite . . .
			if (psprite != NULL)
				{
				// Determine offset that would put the dispensee's hotspot in the center
				// of our image.
				int16_t	sOffX	= -m_rcDispensee.sX;
				int16_t	sOffY	= -m_rcDispensee.sY;

				RRect	rcClip(0, 0, m_imRender.m_sWidth, m_imRender.m_sHeight);

				// Render dispensee into image.
				m_pRealm->m_scene.Render(	// Returns nothing.          
					&m_imRender,				// Destination image.        
					sOffX,						// Destination 2D x coord.   
					sOffY,						// Destination 2D y coord.   
					psprite,						// Tree of sprites to render.
					m_pRealm->m_phood,		// Da hood, homey.           
					&rcClip,						// Dst clip rect.            
					NULL);						// XRayee, if not NULL.      
				}
			else
				{
				// Use text alternative.
				RPrint	print;
				print.SetFont(FONT_SIZE, &g_fontBig);
				print.SetColor(FONT_COLOR, 0, 0);
				print.print(
					&m_imRender,
					0,
					0,
					"%s",
					ms_aClassInfo[m_idDispenseeType].pszClassName);
				}
#if 1
			// Draw dispenser icon on top.
			rspBlit(
				m_pim,															// Src image.
				&m_imRender,													// Dst image.
				m_imRender.m_sWidth / 2 - m_pim->m_sWidth / 2,		// Dst x.
				m_imRender.m_sHeight / 2 - m_pim->m_sHeight / 2,	// Dst y.
				NULL);															// Dst clip.
#endif
			}
		else
			{
			TRACE("RenderDispensee(): m_imRender.CreateImage() failed.\n");
			sResult	= -1;
			}
		}

	return sResult;
	}

////////////////////////////////////////////////////////////////////////////////
// Get the distance to the closest dude.
////////////////////////////////////////////////////////////////////////////////
int16_t CDispenser::GetClosestDudeDistance(	// Returns 0 on success.  Fails, if no dudes.
	int32_t* plClosestDistance)					// Out:  Distance to closest dude.
	{
	int16_t	sRes	= 1;	// Assume no dude found.

	uint32_t	ulSqrDistance;
	uint32_t	ulCurSqrDistance	= 0xFFFFFFFF;
	uint32_t	ulDistX;
	uint32_t	ulDistZ;
	CDude*	pdude;

	CListNode<CThing>* pDudeList = m_pRealm->m_aclassHeads[CThing::CDudeID].m_pnNext;
	
	// While we have a node and that node is owned (the head and tail are not owned).
	while (pDudeList && pDudeList->m_powner)
		{
		// Get current owner.
		pdude = (CDude*) pDudeList->m_powner;
		// Must be Dude.
		ASSERT(pdude->GetClassID() == CDudeID);

		// If this dude is not dead . . .
		if (pdude->m_state != CThing3d::State_Dead)
			{
			// Determine square distance on X/Z plane.
			ulDistX	= pdude->m_dX - m_sX;
			ulDistZ	= pdude->m_dZ - m_sZ;
			ulSqrDistance	= ulDistX * ulDistX + ulDistZ * ulDistZ;
			// If closer than the last guy . . .
			if (ulSqrDistance < ulCurSqrDistance)
				{
				// This one is closer.
				ulCurSqrDistance	= ulSqrDistance;

				// Definitely going to have a dude to return.
				sRes	= 0;
				}
			}

		// Next node please.
		pDudeList = pDudeList->m_pnNext;
		}

	if (sRes == 0)
		{
		*plClosestDistance	= rspSqrt(ulSqrDistance);
		}
	else
		{
		*plClosestDistance	= 0;
		}
	
	return sRes;
	}

////////////////////////////////////////////////////////////////////////////////
// Destroy an instantiated dispensee.
////////////////////////////////////////////////////////////////////////////////
void CDispenser::DestroyDispensee(	// Returns nothing.
	CThing**	ppthing)						// In:  Ptr to the instance.
	{
	ASSERT(ppthing);

	if (*ppthing)
		{
		// If this one is the one indicated by the ID . . .
		if ( (*ppthing)->GetInstanceID() == m_u16IdDispensee)
			{
			m_u16IdDispensee	= CIdBank::IdNil;
			}

		// Destroy the dispensee.
		delete *ppthing;

		// Clear user's pointer.
		*ppthing	= NULL;
		}
	}

////////////////////////////////////////////////////////////////////////////////
// EOF
////////////////////////////////////////////////////////////////////////////////