aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/timeline.cpp
blob: e23e878a7cfa9584c1213c874d623acc9ce14d3f (plain)
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
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/

/*
* Based on the Reverse Engineering work of Christophe Fontanel,
* maintainer of the Dungeon Master Encyclopaedia (http://dmweb.free.fr/)
*/

#include "timeline.h"
#include "dungeonman.h"
#include "champion.h"
#include "inventory.h"
#include "group.h"
#include "projexpl.h"
#include "movesens.h"
#include "text.h"
#include "eventman.h"
#include "objectman.h"
#include "sounds.h"


namespace DM {

signed char g495_actionDefense[44] = { // @ G0495_ac_Graphic560_ActionDefense
	0,   /* N */
	36,  /* BLOCK */
	0,   /* CHOP */
	0,   /* X */
	-4,  /* BLOW HORN */
	-10, /* FLIP */
	-10, /* PUNCH */
	-5,  /* KICK */
	4,   /* WAR CRY */
	-20, /* STAB */
	-15, /* CLIMB DOWN */
	-10, /* FREEZE LIFE */
	16,  /* HIT */
	5,   /* SWING */
	-15, /* STAB */
	-17, /* THRUST */
	-5,  /* JAB */
	29,  /* PARRY */
	10,  /* HACK */
	-10, /* BERZERK */
	-7,  /* FIREBALL */
	-7,  /* DISPELL */
	-7,  /* CONFUSE */
	-7,  /* LIGHTNING */
	-7,  /* DISRUPT */
	-5,  /* MELEE */
	-15, /* X */
	-9,  /* INVOKE */
	4,   /* SLASH */
	0,   /* CLEAVE */
	0,   /* BASH */
	5,   /* STUN */
	-15, /* SHOOT */
	-7,  /* SPELLSHIELD */
	-7,  /* FIRESHIELD */
	8,   /* FLUXCAGE */
	-20, /* HEAL */
	-5,  /* CALM */
	0,   /* LIGHT */
	-15, /* WINDOW */
	-7,  /* SPIT */
	-4,  /* BRANDISH */
	0,   /* THROW */
	8};  /* FUSE */

Timeline::Timeline(DMEngine* vm) : _vm(vm) {
	_g369_eventMaxCount = 0;
	_g370_events = nullptr;
	_g372_eventCount = 0;
	_g371_timeline = nullptr;
	_g373_firstUnusedEventIndex = 0;
}

Timeline::~Timeline() {
	delete[] _g370_events;
	delete[] _g371_timeline;
}

void Timeline::f233_initTimeline() {
	_g370_events = new TimelineEvent[_g369_eventMaxCount];
	_g371_timeline = new uint16[_g369_eventMaxCount];
	if (_vm->_g298_newGame) {
		for (int16 i = 0; i < _g369_eventMaxCount; ++i)
			_g370_events[i]._type = k0_TMEventTypeNone;
		_g372_eventCount = 0;
		_g373_firstUnusedEventIndex = 0;
	}
}

void Timeline::f237_deleteEvent(uint16 eventIndex) {
	uint16 L0586_ui_TimelineIndex;
	uint16 L0587_ui_EventCount;


	_g370_events[eventIndex]._type = k0_TMEventTypeNone;
	if (eventIndex < _g373_firstUnusedEventIndex) {
		_g373_firstUnusedEventIndex = eventIndex;
	}
	_g372_eventCount--;
	if ((L0587_ui_EventCount = _g372_eventCount) == 0) {
		return;
	}
	L0586_ui_TimelineIndex = f235_getIndex(eventIndex);
	if (L0586_ui_TimelineIndex == L0587_ui_EventCount) {
		return;
	}
	_g371_timeline[L0586_ui_TimelineIndex] = _g371_timeline[L0587_ui_EventCount];
	f236_fixChronology(L0586_ui_TimelineIndex);
}

void Timeline::f236_fixChronology(uint16 timelineIndex) {
	uint16 L0581_ui_TimelineIndex;
	uint16 L0582_ui_EventIndex;
	uint16 L0583_ui_EventCount;
	TimelineEvent* L0584_ps_Event;
	bool L0585_B_ChronologyFixed;


	if ((L0583_ui_EventCount = _g372_eventCount) == 1) {
		return;
	}

	L0584_ps_Event = &_g370_events[L0582_ui_EventIndex = _g371_timeline[timelineIndex]];
	L0585_B_ChronologyFixed = false;
	while (timelineIndex > 0) { /* Check if the event should be moved earlier in the timeline */
		L0581_ui_TimelineIndex = (timelineIndex - 1) >> 1;
		if (f234_isEventABeforeB(L0584_ps_Event, &_g370_events[_g371_timeline[L0581_ui_TimelineIndex]])) {
			_g371_timeline[timelineIndex] = _g371_timeline[L0581_ui_TimelineIndex];
			timelineIndex = L0581_ui_TimelineIndex;
			L0585_B_ChronologyFixed = true;
		} else {
			break;
		}
	}
	if (L0585_B_ChronologyFixed)
		goto T0236011;
	L0583_ui_EventCount = ((L0583_ui_EventCount - 1) - 1) >> 1;
	while (timelineIndex <= L0583_ui_EventCount) { /* Check if the event should be moved later in the timeline */
		L0581_ui_TimelineIndex = (timelineIndex << 1) + 1;
		if (((L0581_ui_TimelineIndex + 1) < _g372_eventCount) && (f234_isEventABeforeB(&_g370_events[_g371_timeline[L0581_ui_TimelineIndex + 1]], &_g370_events[_g371_timeline[L0581_ui_TimelineIndex]]))) {
			L0581_ui_TimelineIndex++;
		}
		if (f234_isEventABeforeB(&_g370_events[_g371_timeline[L0581_ui_TimelineIndex]], L0584_ps_Event)) {
			_g371_timeline[timelineIndex] = _g371_timeline[L0581_ui_TimelineIndex];
			timelineIndex = L0581_ui_TimelineIndex;
		} else {
			break;
		}
	}
T0236011:
	_g371_timeline[timelineIndex] = L0582_ui_EventIndex;
}

bool Timeline::f234_isEventABeforeB(TimelineEvent* eventA, TimelineEvent* eventB) {
	bool L0578_B_Simultaneous;

	return (M30_time(eventA->_mapTime) < M30_time(eventB->_mapTime)) ||
		((L0578_B_Simultaneous = (M30_time(eventA->_mapTime) == M30_time(eventB->_mapTime))) && (eventA->getTypePriority() > eventB->getTypePriority())) ||
		(L0578_B_Simultaneous && (eventA->getTypePriority() == eventB->getTypePriority()) && (eventA <= eventB));
}

uint16 Timeline::f235_getIndex(uint16 eventIndex) {
	uint16 L0579_ui_TimelineIndex;
	uint16* L0580_pui_TimelineEntry;


	for (L0579_ui_TimelineIndex = 0, L0580_pui_TimelineEntry = _g371_timeline; L0579_ui_TimelineIndex < _g369_eventMaxCount; L0579_ui_TimelineIndex++) {
		if (*L0580_pui_TimelineEntry++ == eventIndex)
			break;
	}
	if (L0579_ui_TimelineIndex >= _g369_eventMaxCount) { /* BUG0_00 Useless code. The function is always called with event indices that are in the timeline */
		L0579_ui_TimelineIndex = 0; /* BUG0_01 Coding error without consequence. Wrong return value. If the specified event index is not found in the timeline the function returns 0 which is the same value that is returned if the event index is found in the first timeline entry. No consequence because this code is never executed */
	}
	return L0579_ui_TimelineIndex;
}

uint16 Timeline::f238_addEventGetEventIndex(TimelineEvent* event) {
	uint16 L0588_ui_EventIndex;
	uint16 L0590_ui_NewEventIndex;
	TimelineEvent* L0591_ps_Event;


	if (_g372_eventCount == _g369_eventMaxCount) {
		_vm->f19_displayErrorAndStop(45);
	}
	if ((event->_type >= k5_TMEventTypeCorridor) && (event->_type <= k10_TMEventTypeDoor)) {
		for (L0588_ui_EventIndex = 0, L0591_ps_Event = _g370_events; L0588_ui_EventIndex < _g369_eventMaxCount; L0588_ui_EventIndex++, L0591_ps_Event++) {
			if ((L0591_ps_Event->_type >= k5_TMEventTypeCorridor) && (L0591_ps_Event->_type <= k10_TMEventTypeDoor)) {
				if ((event->_mapTime == L0591_ps_Event->_mapTime) && (event->getMapXY() == L0591_ps_Event->getMapXY()) && ((L0591_ps_Event->_type != k6_TMEventTypeWall) || (L0591_ps_Event->_C.A._cell == event->_C.A._cell))) {
					L0591_ps_Event->_C.A._effect = event->_C.A._effect;
					return L0588_ui_EventIndex;
				}
				continue;
			} else {
				if ((L0591_ps_Event->_type == k1_TMEventTypeDoorAnimation) && (event->_mapTime == L0591_ps_Event->_mapTime) && (event->getMapXY() == L0591_ps_Event->getMapXY())) {
					if (event->_C.A._effect == k2_SensorEffToggle) {
						event->_C.A._effect = 1 - L0591_ps_Event->_C.A._effect;
					}
					f237_deleteEvent(L0588_ui_EventIndex);
					break;
				}
			}
		}
	} else {
		if (event->_type == k1_TMEventTypeDoorAnimation) {
			for (L0588_ui_EventIndex = 0, L0591_ps_Event = _g370_events; L0588_ui_EventIndex < _g369_eventMaxCount; L0588_ui_EventIndex++, L0591_ps_Event++) {
				if ((event->_mapTime == L0591_ps_Event->_mapTime) && (event->getMapXY() == L0591_ps_Event->getMapXY())) {
					if (L0591_ps_Event->_type == k10_TMEventTypeDoor) {
						if (L0591_ps_Event->_C.A._effect == k2_SensorEffToggle) {
							L0591_ps_Event->_C.A._effect = 1 - event->_C.A._effect;
						}
						return L0588_ui_EventIndex;
					}
					if (L0591_ps_Event->_type == k1_TMEventTypeDoorAnimation) {
						L0591_ps_Event->_C.A._effect = event->_C.A._effect;
						return L0588_ui_EventIndex;
					}
				}
			}
		} else {
			if (event->_type == k2_TMEventTypeDoorDestruction) {
				for (L0588_ui_EventIndex = 0, L0591_ps_Event = _g370_events; L0588_ui_EventIndex < _g369_eventMaxCount; L0588_ui_EventIndex++, L0591_ps_Event++) {
					if ((event->getMapXY() == L0591_ps_Event->getMapXY()) && (M29_map(event->_mapTime) == M29_map(L0591_ps_Event->_mapTime))) {
						if ((L0591_ps_Event->_type == k1_TMEventTypeDoorAnimation) || (L0591_ps_Event->_type == k10_TMEventTypeDoor)) {
							f237_deleteEvent(L0588_ui_EventIndex);
						}
					}
				}
			}
		}
	}
	_g370_events[L0590_ui_NewEventIndex = _g373_firstUnusedEventIndex] = *event; /* Copy the event data (Megamax C can assign structures) */
	do {
		if (_g373_firstUnusedEventIndex == _g369_eventMaxCount)
			break;
		_g373_firstUnusedEventIndex++;
	} while ((_g370_events[_g373_firstUnusedEventIndex])._type != k0_TMEventTypeNone);
	_g371_timeline[_g372_eventCount] = L0590_ui_NewEventIndex;
	f236_fixChronology(_g372_eventCount++);
	return L0590_ui_NewEventIndex;
}

void Timeline::f261_processTimeline() {
	uint16 L0680_ui_Multiple;
#define AL0680_ui_EventType     L0680_ui_Multiple
#define AL0680_ui_ChampionIndex L0680_ui_Multiple
	TimelineEvent* L0681_ps_Event;
	TimelineEvent L0682_s_Event;


	while (f240_isFirstEventExpiered()) {
		L0681_ps_Event = &L0682_s_Event;
		f239_timelineExtractFirstEvent(L0681_ps_Event);
		_vm->_dungeonMan->f173_setCurrentMap(M29_map(L0682_s_Event._mapTime));
		AL0680_ui_EventType = L0682_s_Event._type;
		if ((AL0680_ui_EventType > (k29_TMEventTypeGroupReactionDangerOnSquare - 1)) && (AL0680_ui_EventType < (k41_TMEventTypeUpdateBehaviour_3 + 1))) {
			_vm->_groupMan->f209_processEvents29to41(L0682_s_Event._B._location._mapX, L0682_s_Event._B._location._mapY, AL0680_ui_EventType, L0682_s_Event._C._ticks);
		} else {
			switch (AL0680_ui_EventType) {
			case k48_TMEventTypeMoveProjectileIgnoreImpacts:
			case k49_TMEventTypeMoveProjectile:
				_vm->_projexpl->f219_processEvents48To49_projectile(L0681_ps_Event);
				break;
			case k1_TMEventTypeDoorAnimation:
				f241_timelineProcessEvent1_doorAnimation(L0681_ps_Event);
				break;
			case k25_TMEventTypeExplosion:
				_vm->_projexpl->f220_explosionProcessEvent25_explosion(L0681_ps_Event);
				break;
			case k7_TMEventTypeFakeWall:
				f242_timelineProcessEvent7_squareFakewall(L0681_ps_Event);
				break;
			case k2_TMEventTypeDoorDestruction:
				f243_timelineProcessEvent2_doorDestruction(L0681_ps_Event);
				break;
			case k10_TMEventTypeDoor:
				f244_timelineProcessEvent10_squareDoor(L0681_ps_Event);
				break;
			case k9_TMEventTypePit:
				f251_timelineProcessEvent9_squarePit(L0681_ps_Event);
				break;
			case k8_TMEventTypeTeleporter:
				f250_timelineProcessEvent8_squareTeleporter(L0681_ps_Event);
				break;
			case k6_TMEventTypeWall:
				f248_timelineProcessEvent6_squareWall(L0681_ps_Event);
				break;
			case k5_TMEventTypeCorridor:
				f245_timlineProcessEvent5_squareCorridor(L0681_ps_Event);
				break;
			case k60_TMEventTypeMoveGroupSilent:
			case k61_TMEventTypeMoveGroupAudible:
				f252_timelineProcessEvents60to61_moveGroup(L0681_ps_Event);
				break;
			case k65_TMEventTypeEnableGroupGenerator:
				f246_timelineProcesEvent65_enableGroupGenerator(L0681_ps_Event);
				break;
			case k20_TMEventTypePlaySound:
				_vm->_sound->f064_SOUND_RequestPlay_CPSD(L0682_s_Event._C._soundIndex, L0682_s_Event._B._location._mapX, L0682_s_Event._B._location._mapY, k1_soundModePlayIfPrioritized);
				break;
			case k24_TMEventTypeRemoveFluxcage:
				if (!_vm->_g302_gameWon) {
					_vm->_dungeonMan->f164_unlinkThingFromList(Thing(L0682_s_Event._C._slot), Thing(0), L0682_s_Event._B._location._mapX, L0682_s_Event._B._location._mapY);
					L0681_ps_Event = (TimelineEvent*)_vm->_dungeonMan->f156_getThingData(Thing(L0682_s_Event._C._slot));
					((Explosion*)L0681_ps_Event)->setNextThing(Thing::_none);
				}
				break;
			case k11_TMEventTypeEnableChampionAction:
				f253_timelineProcessEvent11Part1_enableChampionAction(L0682_s_Event._priority);
				if (L0682_s_Event._B._slotOrdinal) {
					f259_timelineProcessEvent11Part2_moveWeaponFromQuiverToSlot(L0682_s_Event._priority, _vm->M1_ordinalToIndex(L0682_s_Event._B._slotOrdinal));
				}
				goto T0261048;
			case k12_TMEventTypeHideDamageReceived:
				f254_timelineProcessEvent12_hideDamageReceived(L0682_s_Event._priority);
				break;
			case k70_TMEventTypeLight:
				_vm->_dungeonMan->f173_setCurrentMap(_vm->_dungeonMan->_g309_partyMapIndex);
				f257_timelineProcessEvent70_light(L0681_ps_Event);
				_vm->_inventoryMan->f337_setDungeonViewPalette();
				break;
			case k71_TMEventTypeInvisibility:
				_vm->_championMan->_g407_party._event71Count_Invisibility--;
				break;
			case k72_TMEventTypeChampionShield:
				_vm->_championMan->_gK71_champions[L0682_s_Event._priority]._shieldDefense -= L0682_s_Event._B._defense;
				setFlag(_vm->_championMan->_gK71_champions[L0682_s_Event._priority]._attributes, k0x1000_ChampionAttributeStatusBox);
T0261048:
				_vm->_championMan->f292_drawChampionState((ChampionIndex)L0682_s_Event._priority);
				break;
			case k73_TMEventTypeThievesEye:
				_vm->_championMan->_g407_party._event73Count_ThievesEye--;
				break;
			case k74_TMEventTypePartyShield:
				_vm->_championMan->_g407_party._shieldDefense -= L0682_s_Event._B._defense;
T0261053:
				f260_timelineRefreshAllChampionStatusBoxes();
				break;
			case k77_TMEventTypeSpellShield:
				_vm->_championMan->_g407_party._spellShieldDefense -= L0682_s_Event._B._defense;
				goto T0261053;
			case k78_TMEventTypeFireShield:
				_vm->_championMan->_g407_party._fireShieldDefense -= L0682_s_Event._B._defense;
				goto T0261053;
			case k75_TMEventTypePoisonChampion:
				_vm->_championMan->_gK71_champions[AL0680_ui_ChampionIndex = L0682_s_Event._priority]._poisonEventCount--;
				_vm->_championMan->f322_championPoison(AL0680_ui_ChampionIndex, L0682_s_Event._B._attack);
				break;
			case k13_TMEventTypeViAltarRebirth:
				f255_timelineProcessEvent13_ViAltarRebirth(L0681_ps_Event);
				break;
			case k79_TMEventTypeFootprints:
				_vm->_championMan->_g407_party._event79Count_Footprints--;
			}
		}
		_vm->_dungeonMan->f173_setCurrentMap(_vm->_dungeonMan->_g309_partyMapIndex);
	}
}

bool Timeline::f240_isFirstEventExpiered() {
	return (_g372_eventCount && (M30_time(_g370_events[_g371_timeline[0]]._mapTime) <= _vm->_g313_gameTime));
}

void Timeline::f239_timelineExtractFirstEvent(TimelineEvent* event) {
	uint16 L0592_ui_EventIndex;

	*event = _g370_events[L0592_ui_EventIndex = _g371_timeline[0]];
	f237_deleteEvent(L0592_ui_EventIndex);
}

void Timeline::f241_timelineProcessEvent1_doorAnimation(TimelineEvent* event) {
	uint16 L0593_ui_MapX;
	uint16 L0594_ui_MapY;
	int16 L0595_i_Effect;
	int16 L0596_i_DoorState;
	Square* L0597_puc_Square;
	Door* L0598_ps_Door;
	Thing L0599_T_GroupThing;
	uint16 L0600_ui_CreatureAttributes;
	uint16 L0602_ui_Multiple;
#define AL0602_ui_VerticalDoor L0602_ui_Multiple
#define AL0602_ui_Height       L0602_ui_Multiple

	L0597_puc_Square = (Square*)&_vm->_dungeonMan->_g271_currMapData[L0593_ui_MapX = event->_B._location._mapX][L0594_ui_MapY = event->_B._location._mapY];
	if ((L0596_i_DoorState = Square(*L0597_puc_Square).getDoorState()) == k5_doorState_DESTROYED) {
		return;
	}
	event->_mapTime++;
	L0595_i_Effect = event->_C.A._effect;
	if (L0595_i_Effect == k1_SensorEffClear) {
		L0598_ps_Door = (Door*)_vm->_dungeonMan->f157_getSquareFirstThingData(L0593_ui_MapX, L0594_ui_MapY);
		AL0602_ui_VerticalDoor = L0598_ps_Door->opensVertically();
		if ((_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (L0593_ui_MapX == _vm->_dungeonMan->_g306_partyMapX) && (L0594_ui_MapY == _vm->_dungeonMan->_g307_partyMapY) && (L0596_i_DoorState != k0_doorState_OPEN)) {
			if (_vm->_championMan->_g305_partyChampionCount > 0) {
				L0597_puc_Square->setDoorState(k0_doorState_OPEN);

				// Strangerke
				// Original bug fixed - A closing horizontal door wounds champions to the head instead of to the hands. Missing parenthesis in the condition cause all doors to wound the head in addition to the torso
				// See BUG0_78
				if (_vm->_championMan->f324_damageAll_getDamagedChampionCount(5, k0x0008_ChampionWoundTorso | (AL0602_ui_VerticalDoor ? k0x0004_ChampionWoundHead : k0x0001_ChampionWoundReadHand | k0x0002_ChampionWoundActionHand), k2_attackType_SELF)) {
					_vm->_sound->f064_SOUND_RequestPlay_CPSD(k18_soundPARTY_DAMAGED, L0593_ui_MapX, L0594_ui_MapY, k1_soundModePlayIfPrioritized);
				}
			}
			event->_mapTime++;
			f238_addEventGetEventIndex(event);
			return;
		}
		if (((L0599_T_GroupThing = _vm->_groupMan->f175_groupGetThing(L0593_ui_MapX, L0594_ui_MapY)) != Thing::_endOfList) && !getFlag(L0600_ui_CreatureAttributes = _vm->_dungeonMan->f144_getCreatureAttributes(L0599_T_GroupThing), k0x0040_MaskCreatureInfo_nonMaterial)) {
			if (L0596_i_DoorState >= (AL0602_ui_Height ? CreatureInfo::M51_height(L0600_ui_CreatureAttributes) : 1)) { /* Creature height or 1 */
				if (_vm->_groupMan->f191_getDamageAllCreaturesOutcome((Group*)_vm->_dungeonMan->f156_getThingData(L0599_T_GroupThing), L0593_ui_MapX, L0594_ui_MapY, 5, true) != k2_outcomeKilledAllCreaturesInGroup) {
					_vm->_groupMan->f209_processEvents29to41(L0593_ui_MapX, L0594_ui_MapY, kM3_TMEventTypeCreateReactionEvent29DangerOnSquare, 0);
				}
				L0596_i_DoorState = (L0596_i_DoorState == k0_doorState_OPEN) ? k0_doorState_OPEN : (L0596_i_DoorState - 1);
				L0597_puc_Square->setDoorState(L0596_i_DoorState);
				_vm->_sound->f064_SOUND_RequestPlay_CPSD(k04_soundWOODEN_THUD_ATTACK_TROLIN_ANTMAN_STONE_GOLEM, L0593_ui_MapX, L0594_ui_MapY, k1_soundModePlayIfPrioritized);
				event->_mapTime++;
				f238_addEventGetEventIndex(event);
				return;
			}
		}
	}
	if (((L0595_i_Effect == k0_SensorEffSet) && (L0596_i_DoorState == k0_doorState_OPEN)) || ((L0595_i_Effect == k1_SensorEffClear) && (L0596_i_DoorState == k4_doorState_CLOSED))) {
		goto T0241020_Return;
	}
	L0596_i_DoorState += (L0595_i_Effect == k0_SensorEffSet) ? -1 : 1;
	L0597_puc_Square->setDoorState(L0596_i_DoorState);
	_vm->_sound->f064_SOUND_RequestPlay_CPSD(k02_soundDOOR_RATTLE, L0593_ui_MapX, L0594_ui_MapY, k1_soundModePlayIfPrioritized);

	if (L0595_i_Effect == k0_SensorEffSet) {
		if (L0596_i_DoorState == k0_doorState_OPEN) {
			return;
		}
	} else {
		if (L0596_i_DoorState == k4_doorState_CLOSED) {
			return;
		}
	}
	f238_addEventGetEventIndex(event);
T0241020_Return:
	;
}

void Timeline::f242_timelineProcessEvent7_squareFakewall(TimelineEvent* event) {
	uint16 L0603_ui_MapX;
	uint16 L0604_ui_MapY;
	int16 L0605_i_Effect;
	Thing L0606_T_Thing;
	byte* L0607_puc_Square;


	L0607_puc_Square = &_vm->_dungeonMan->_g271_currMapData[L0603_ui_MapX = event->_B._location._mapX][L0604_ui_MapY = event->_B._location._mapY];
	L0605_i_Effect = event->_C.A._effect;
	if (L0605_i_Effect == k2_SensorEffToggle) {
		L0605_i_Effect = getFlag(*L0607_puc_Square, k0x0004_FakeWallOpen) ? k1_SensorEffClear : k0_SensorEffSet;
	}
	if (L0605_i_Effect == k1_SensorEffClear) {
		if ((_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (L0603_ui_MapX == _vm->_dungeonMan->_g306_partyMapX) && (L0604_ui_MapY == _vm->_dungeonMan->_g307_partyMapY)) {
			event->_mapTime++;
			f238_addEventGetEventIndex(event);
		} else {
			if (((L0606_T_Thing = _vm->_groupMan->f175_groupGetThing(L0603_ui_MapX, L0604_ui_MapY)) != Thing::_endOfList) && !getFlag(_vm->_dungeonMan->f144_getCreatureAttributes(L0606_T_Thing), k0x0040_MaskCreatureInfo_nonMaterial)) {
				event->_mapTime++;
				f238_addEventGetEventIndex(event);
			} else {
				clearFlag(*L0607_puc_Square, k0x0004_FakeWallOpen);
			}
		}
	} else {
		setFlag(*L0607_puc_Square, k0x0004_FakeWallOpen);
	}
}

void Timeline::f243_timelineProcessEvent2_doorDestruction(TimelineEvent* event) {
	Square* L0608_puc_Square;

	L0608_puc_Square = (Square*)&_vm->_dungeonMan->_g271_currMapData[event->_B._location._mapX][event->_B._location._mapY];
	L0608_puc_Square->setDoorState(k5_doorState_DESTROYED);
}

void Timeline::f244_timelineProcessEvent10_squareDoor(TimelineEvent* event) {
	int16 L0609_i_DoorState;


	if ((L0609_i_DoorState = Square(_vm->_dungeonMan->_g271_currMapData[event->_B._location._mapX][event->_B._location._mapY]).getDoorState()) == k5_doorState_DESTROYED) {
		return;
	}
	if (event->_C.A._effect == k2_SensorEffToggle) {
		event->_C.A._effect = (L0609_i_DoorState == k0_doorState_OPEN) ? k1_SensorEffClear : k0_SensorEffSet;
	} else {
		if (event->_C.A._effect == k0_SensorEffSet) {
			if (L0609_i_DoorState == k0_doorState_OPEN) {
				return;
			}
		} else {
			if (L0609_i_DoorState == k4_doorState_CLOSED) {
				return;
			}
		}
	}
	event->_type = k1_TMEventTypeDoorAnimation;
	f238_addEventGetEventIndex(event);
}

void Timeline::f251_timelineProcessEvent9_squarePit(TimelineEvent* event) {
	uint16 L0653_ui_MapX;
	uint16 L0654_ui_MapY;
	byte* L0655_puc_Square;


	L0655_puc_Square = &_vm->_dungeonMan->_g271_currMapData[L0653_ui_MapX = event->_B._location._mapX][L0654_ui_MapY = event->_B._location._mapY];
	if (event->_C.A._effect == k2_SensorEffToggle) {
		event->_C.A._effect = getFlag(*L0655_puc_Square, k0x0008_PitOpen) ? k1_SensorEffClear : k0_SensorEffSet;
	}
	if (event->_C.A._effect == k0_SensorEffSet) {
		setFlag(*L0655_puc_Square, k0x0008_PitOpen);
		f249_moveTeleporterOrPitSquareThings(L0653_ui_MapX, L0654_ui_MapY);
	} else {
		clearFlag(*L0655_puc_Square, k0x0008_PitOpen);
	}
}

void Timeline::f249_moveTeleporterOrPitSquareThings(uint16 mapX, uint16 mapY) {
	uint16 L0644_ui_Multiple;
#define AL0644_ui_ThingType  L0644_ui_Multiple
#define AL0644_ui_EventIndex L0644_ui_Multiple
	Thing L0645_T_Thing;
	Projectile* L0646_ps_Projectile;
	TimelineEvent* L0647_ps_Event;
	Thing L0648_T_NextThing;
	int16 L0649_i_ThingsToMoveCount;


	if ((_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (mapX == _vm->_dungeonMan->_g306_partyMapX) && (mapY == _vm->_dungeonMan->_g307_partyMapY)) {
		_vm->_moveSens->f267_getMoveResult(Thing::_party, mapX, mapY, mapX, mapY);
		_vm->_championMan->f296_drawChangedObjectIcons();
	}
	if ((L0645_T_Thing = _vm->_groupMan->f175_groupGetThing(mapX, mapY)) != Thing::_endOfList) {
		_vm->_moveSens->f267_getMoveResult(L0645_T_Thing, mapX, mapY, mapX, mapY);
	}
	L0645_T_Thing = _vm->_dungeonMan->f162_getSquareFirstObject(mapX, mapY);
	L0648_T_NextThing = L0645_T_Thing;
	L0649_i_ThingsToMoveCount = 0;
	while (L0645_T_Thing != Thing::_endOfList) {
		if (L0645_T_Thing.getType() > k4_GroupThingType) {
			L0649_i_ThingsToMoveCount++;
		}
		L0645_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0645_T_Thing);
	}
	L0645_T_Thing = L0648_T_NextThing;
	while ((L0645_T_Thing != Thing::_endOfList) && L0649_i_ThingsToMoveCount) {
		L0649_i_ThingsToMoveCount--;
		L0648_T_NextThing = _vm->_dungeonMan->f159_getNextThing(L0645_T_Thing);
		AL0644_ui_ThingType = L0645_T_Thing.getType();
		if (AL0644_ui_ThingType > k4_GroupThingType) {
			_vm->_moveSens->f267_getMoveResult(L0645_T_Thing, mapX, mapY, mapX, mapY);
		}
		if (AL0644_ui_ThingType == k14_ProjectileThingType) {
			L0646_ps_Projectile = (Projectile*)_vm->_dungeonMan->f156_getThingData(L0645_T_Thing);
			L0647_ps_Event = &_g370_events[L0646_ps_Projectile->_eventIndex];
			L0647_ps_Event->_C._projectile.setMapX(_vm->_moveSens->_g397_moveResultMapX);
			L0647_ps_Event->_C._projectile.setMapY(_vm->_moveSens->_g398_moveResultMapY);
			L0647_ps_Event->_C._projectile.setDir((Direction)_vm->_moveSens->_g400_moveResultDir);
			L0647_ps_Event->_B._slot = M15_thingWithNewCell(L0645_T_Thing, _vm->_moveSens->_g401_moveResultCell).toUint16();
			M31_setMap(L0647_ps_Event->_mapTime, _vm->_moveSens->_g399_moveResultMapIndex);
		} else {
			if (AL0644_ui_ThingType == k15_ExplosionThingType) {
				for (AL0644_ui_EventIndex = 0, L0647_ps_Event = _g370_events; AL0644_ui_EventIndex < _g369_eventMaxCount; L0647_ps_Event++, AL0644_ui_EventIndex++) {
					if ((L0647_ps_Event->_type == k25_TMEventTypeExplosion) && (L0647_ps_Event->_C._slot == L0645_T_Thing.toUint16())) { /* BUG0_23 A Fluxcage explosion remains on a square forever. If you open a pit or teleporter on a square where there is a Fluxcage explosion, the Fluxcage explosion is moved but the associated event is not updated (because Fluxcage explosions do not use k25_TMEventTypeExplosion but rather k24_TMEventTypeRemoveFluxcage) causing the Fluxcage explosion to remain in the dungeon forever on its destination square. When the k24_TMEventTypeRemoveFluxcage expires the explosion thing is not removed, but it is marked as unused. Consequently, any objects placed on the Fluxcage square after it was moved but before it expires become orphans upon expiration. After expiration, any object placed on the fluxcage square is cloned when picked up */
						L0647_ps_Event->_B._location._mapX = _vm->_moveSens->_g397_moveResultMapX;
						L0647_ps_Event->_B._location._mapY = _vm->_moveSens->_g398_moveResultMapY;
						L0647_ps_Event->_C._slot = M15_thingWithNewCell(L0645_T_Thing, _vm->_moveSens->_g401_moveResultCell).toUint16();
						M31_setMap(L0647_ps_Event->_mapTime, _vm->_moveSens->_g399_moveResultMapIndex);
					}
				}
			}
		}
		L0645_T_Thing = L0648_T_NextThing;
	}
}

void Timeline::f250_timelineProcessEvent8_squareTeleporter(TimelineEvent* event) {
	uint16 L0650_ui_MapX;
	uint16 L0651_ui_MapY;
	byte* L0652_puc_Square;


	L0652_puc_Square = &_vm->_dungeonMan->_g271_currMapData[L0650_ui_MapX = event->_B._location._mapX][L0651_ui_MapY = event->_B._location._mapY];
	if (event->_C.A._effect == k2_SensorEffToggle) {
		event->_C.A._effect = getFlag(*L0652_puc_Square, k0x0008_TeleporterOpen) ? k1_SensorEffClear : k0_SensorEffSet;
	}
	if (event->_C.A._effect == k0_SensorEffSet) {
		setFlag(*L0652_puc_Square, k0x0008_TeleporterOpen);
		f249_moveTeleporterOrPitSquareThings(L0650_ui_MapX, L0651_ui_MapY);
	} else {
		clearFlag(*L0652_puc_Square, k0x0008_TeleporterOpen);
	}
}

void Timeline::f248_timelineProcessEvent6_squareWall(TimelineEvent* event) {
	Thing L0634_T_Thing;
	int16 L0635_i_ThingType;
	int16 L0636_i_Multiple;
#define AL0636_B_TriggerSetEffect L0636_i_Multiple
#define AL0636_i_BitMask          L0636_i_Multiple
	uint16 L0637_ui_SensorData;
	Sensor* L0638_ps_Sensor;
	TextString* L0639_ps_TextString;
	uint16 L0640_ui_SensorType;
	int16 L0641_i_MapX;
	int16 L0642_i_MapY;
	uint16 L0643_ui_Cell;


	L0634_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(L0641_i_MapX = event->_B._location._mapX, L0642_i_MapY = event->_B._location._mapY);
	L0643_ui_Cell = event->_C.A._cell;
	while (L0634_T_Thing != Thing::_endOfList) {
		if (((L0635_i_ThingType = L0634_T_Thing.getType()) == k2_TextstringType) && (L0634_T_Thing.getCell() == event->_C.A._cell)) {
			L0639_ps_TextString = (TextString*)_vm->_dungeonMan->f156_getThingData(L0634_T_Thing);
			if (event->_C.A._effect == k2_SensorEffToggle) {
				L0639_ps_TextString->setVisible(!L0639_ps_TextString->isVisible());
			} else {
				L0639_ps_TextString->setVisible(event->_C.A._effect == k0_SensorEffSet);
			}
		} else {
			if (L0635_i_ThingType == k3_SensorThingType) {
				L0638_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0634_T_Thing);
				L0640_ui_SensorType = L0638_ps_Sensor->getType();
				L0637_ui_SensorData = L0638_ps_Sensor->getData();
				if (L0640_ui_SensorType == k6_SensorWallCountdown) {
					if (L0637_ui_SensorData > 0) {
						if (event->_C.A._effect == k0_SensorEffSet) {
							if (L0637_ui_SensorData < 511) {
								L0637_ui_SensorData++;
							}
						} else {
							L0637_ui_SensorData--;
						}
						L0638_ps_Sensor->setData(L0637_ui_SensorData);
						if (L0638_ps_Sensor->getEffectA() == k3_SensorEffHold) {
							AL0636_B_TriggerSetEffect = ((L0637_ui_SensorData == 0) != L0638_ps_Sensor->getRevertEffectA());
							_vm->_moveSens->f272_sensorTriggerEffect(L0638_ps_Sensor, AL0636_B_TriggerSetEffect ? k0_SensorEffSet : k1_SensorEffClear, L0641_i_MapX, L0642_i_MapY, L0643_ui_Cell);
						} else {
							if (L0637_ui_SensorData == 0) {
								_vm->_moveSens->f272_sensorTriggerEffect(L0638_ps_Sensor, L0638_ps_Sensor->getEffectA(), L0641_i_MapX, L0642_i_MapY, L0643_ui_Cell);
							}
						}
					}
				} else {
					if (L0640_ui_SensorType == k5_SensorWallAndOrGate) {
						AL0636_i_BitMask = 1 << (event->_C.A._cell);
						if (event->_C.A._effect == k2_SensorEffToggle) {
							if (getFlag(L0637_ui_SensorData, AL0636_i_BitMask)) {
								clearFlag(L0637_ui_SensorData, AL0636_i_BitMask);
							} else {
								setFlag(L0637_ui_SensorData, AL0636_i_BitMask);
							}
						} else {
							if (event->_C.A._effect) {
								clearFlag(L0637_ui_SensorData, AL0636_i_BitMask);
							} else {
								setFlag(L0637_ui_SensorData, AL0636_i_BitMask);
							}
						}
						L0638_ps_Sensor->setData(L0637_ui_SensorData);
						AL0636_B_TriggerSetEffect = (Sensor::getDataMask1(L0637_ui_SensorData) == Sensor::getDataMask2(L0637_ui_SensorData)) != L0638_ps_Sensor->getRevertEffectA();
						if (L0638_ps_Sensor->getEffectA() == k3_SensorEffHold) {
							_vm->_moveSens->f272_sensorTriggerEffect(L0638_ps_Sensor, AL0636_B_TriggerSetEffect ? k0_SensorEffSet : k1_SensorEffClear, L0641_i_MapX, L0642_i_MapY, L0643_ui_Cell);
						} else {
							if (AL0636_B_TriggerSetEffect) {
								_vm->_moveSens->f272_sensorTriggerEffect(L0638_ps_Sensor, L0638_ps_Sensor->getEffectA(), L0641_i_MapX, L0642_i_MapY, L0643_ui_Cell);
							}
						}
					} else {
						if ((((L0640_ui_SensorType >= k7_SensorWallSingleProjLauncherNewObj) && (L0640_ui_SensorType <= k10_SensorWallDoubleProjLauncherExplosion)) || (L0640_ui_SensorType == k14_SensorWallSingleProjLauncherSquareObj) || (L0640_ui_SensorType == k15_SensorWallDoubleProjLauncherSquareObj)) && (L0634_T_Thing.getCell() == event->_C.A._cell)) {
							f247_triggerProjectileLauncher(L0638_ps_Sensor, event);
							if (L0638_ps_Sensor->getOnlyOnce()) {
								L0638_ps_Sensor->setTypeDisabled();
							}
						} else {
							if (L0640_ui_SensorType == k18_SensorWallEndGame) {
								_vm->f22_delay(60 * L0638_ps_Sensor->getValue());
								_vm->_g524_restartGameAllowed = false;
								_vm->_g302_gameWon = true;
								_vm->f444_endGame(true);
							}
						}
					}
				}
			}
		}
		L0634_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0634_T_Thing);
	}
	_vm->_moveSens->f271_processRotationEffect();
}

void Timeline::f247_triggerProjectileLauncher(Sensor* sensor, TimelineEvent* event) {
	Thing L0622_T_FirstProjectileAssociatedThing;
	Thing L0623_T_SecondProjectileAssociatedThing;
	uint16 L0624_ui_Cell;
	int16 L0625_i_SensorType;
	int16 L0626_i_MapX;
	int16 L0627_i_MapY;
	uint16 L0628_ui_ProjectileCell;
	int16 L0629_i_SensorData;
	int16 L0630_i_KineticEnergy;
	int16 L0631_i_StepEnergy;
	bool L0632_B_LaunchSingleProjectile;
	uint16 L0633_ui_ThingCell;


	L0626_i_MapX = event->_B._location._mapX;
	L0627_i_MapY = event->_B._location._mapY;
	L0624_ui_Cell = event->_C.A._cell;
	L0628_ui_ProjectileCell = returnOppositeDir((Direction)L0624_ui_Cell);
	L0625_i_SensorType = sensor->getType();
	L0629_i_SensorData = sensor->getData();
	L0630_i_KineticEnergy = sensor->M47_kineticEnergy();
	L0631_i_StepEnergy = sensor->M48_stepEnergy();
	L0632_B_LaunchSingleProjectile = (L0625_i_SensorType == k7_SensorWallSingleProjLauncherNewObj) ||
		(L0625_i_SensorType == k8_SensorWallSingleProjLauncherExplosion) ||
		(L0625_i_SensorType == k14_SensorWallSingleProjLauncherSquareObj);
	if ((L0625_i_SensorType == k8_SensorWallSingleProjLauncherExplosion) || (L0625_i_SensorType == k10_SensorWallDoubleProjLauncherExplosion)) {
		L0622_T_FirstProjectileAssociatedThing = L0623_T_SecondProjectileAssociatedThing = Thing(L0629_i_SensorData + Thing::_firstExplosion.toUint16());
	} else {
		if ((L0625_i_SensorType == k14_SensorWallSingleProjLauncherSquareObj) || (L0625_i_SensorType == k15_SensorWallDoubleProjLauncherSquareObj)) {
			L0622_T_FirstProjectileAssociatedThing = _vm->_dungeonMan->f161_getSquareFirstThing(L0626_i_MapX, L0627_i_MapY);
			while (L0622_T_FirstProjectileAssociatedThing != Thing::_none) { /* BUG0_19 The game crashes when an object launcher sensor is triggered. Thing::_none should be Thing::_endOfList. If there are no more objects on the square then this loop may return an undefined value, this can crash the game. In the original DM and CSB dungeons, the number of times that these sensors are triggered is always controlled to be equal to the number of available objects (with a countdown sensor or a number of once only sensors) */
				L0633_ui_ThingCell = L0622_T_FirstProjectileAssociatedThing.getCell();
				if ((L0622_T_FirstProjectileAssociatedThing.getType() > k3_SensorThingType) && ((L0633_ui_ThingCell == L0624_ui_Cell) || (L0633_ui_ThingCell == returnNextVal(L0624_ui_Cell))))
					break;
				L0622_T_FirstProjectileAssociatedThing = _vm->_dungeonMan->f159_getNextThing(L0622_T_FirstProjectileAssociatedThing);
			}
			if (L0622_T_FirstProjectileAssociatedThing == Thing::_none) { /* BUG0_19 The game crashes when an object launcher sensor is triggered. Thing::_none should be Thing::_endOfList */
				return;
			}
			_vm->_dungeonMan->f164_unlinkThingFromList(L0622_T_FirstProjectileAssociatedThing, Thing(0), L0626_i_MapX, L0627_i_MapY); /* The object is removed without triggering any sensor effects */
			if (!L0632_B_LaunchSingleProjectile) {
				L0623_T_SecondProjectileAssociatedThing = _vm->_dungeonMan->f161_getSquareFirstThing(L0626_i_MapX, L0627_i_MapY);
				while (L0623_T_SecondProjectileAssociatedThing != Thing::_none) { /* BUG0_19 The game crashes when an object launcher sensor is triggered. Thing::_none should be Thing::_endOfList. If there are no more objects on the square then this loop may return an undefined value, this can crash the game */
					L0633_ui_ThingCell = L0623_T_SecondProjectileAssociatedThing.getCell();
					if ((L0623_T_SecondProjectileAssociatedThing.getType() > k3_SensorThingType) && ((L0633_ui_ThingCell == L0624_ui_Cell) || (L0633_ui_ThingCell == returnNextVal(L0624_ui_Cell))))
						break;
					L0623_T_SecondProjectileAssociatedThing = _vm->_dungeonMan->f159_getNextThing(L0623_T_SecondProjectileAssociatedThing);
				}
				if (L0623_T_SecondProjectileAssociatedThing == Thing::_none) { /* BUG0_19 The game crashes when an object launcher sensor is triggered. Thing::_none should be Thing::_endOfList */
					L0632_B_LaunchSingleProjectile = true;
				} else {
					_vm->_dungeonMan->f164_unlinkThingFromList(L0623_T_SecondProjectileAssociatedThing, Thing(0), L0626_i_MapX, L0627_i_MapY); /* The object is removed without triggering any sensor effects */
				}
			}
		} else {
			if ((L0622_T_FirstProjectileAssociatedThing = _vm->_dungeonMan->f167_getObjForProjectileLaucherOrObjGen(L0629_i_SensorData)) == Thing::_none) {
				return;
			}
			if (!L0632_B_LaunchSingleProjectile && ((L0623_T_SecondProjectileAssociatedThing = _vm->_dungeonMan->f167_getObjForProjectileLaucherOrObjGen(L0629_i_SensorData)) == Thing::_none)) {
				L0632_B_LaunchSingleProjectile = true;
			}
		}
	}
	if (L0632_B_LaunchSingleProjectile) {
		L0628_ui_ProjectileCell = M21_normalizeModulo4(L0628_ui_ProjectileCell + _vm->getRandomNumber(2));
	}
	L0626_i_MapX += _vm->_dirIntoStepCountEast[L0624_ui_Cell], L0627_i_MapY += _vm->_dirIntoStepCountNorth[L0624_ui_Cell]; /* BUG0_20 The game crashes if the launcher sensor is on a map boundary and shoots in a direction outside the map */
	_vm->_projexpl->_g365_createLanucherProjectile = true;
	_vm->_projexpl->f212_projectileCreate(L0622_T_FirstProjectileAssociatedThing, L0626_i_MapX, L0627_i_MapY, L0628_ui_ProjectileCell, (Direction)L0624_ui_Cell, L0630_i_KineticEnergy, 100, L0631_i_StepEnergy);
	if (!L0632_B_LaunchSingleProjectile) {
		_vm->_projexpl->f212_projectileCreate(L0623_T_SecondProjectileAssociatedThing, L0626_i_MapX, L0627_i_MapY, returnNextVal(L0628_ui_ProjectileCell), (Direction)L0624_ui_Cell, L0630_i_KineticEnergy, 100, L0631_i_StepEnergy);
	}
	_vm->_projexpl->_g365_createLanucherProjectile = false;
}

void Timeline::f245_timlineProcessEvent5_squareCorridor(TimelineEvent* event) {
#define k0x0008_randomizeGeneratedCreatureCount 0x0008 // @ MASK0x0008_RANDOMIZE_GENERATED_CREATURE_COUNT
#define k0x0007_generatedCreatureCount 0x0007	// @ MASK0x0007_GENERATED_CREATURE_COUNT

	int16 L0610_i_ThingType;
	bool L0611_B_TextCurrentlyVisible;
	int16 L0612_i_CreatureCount;
	Thing L0613_T_Thing;
	Sensor* L0614_ps_Sensor;
	TextString* L0615_ps_TextString;
	uint16 L0616_ui_MapX;
	uint16 L0617_ui_MapY;
	uint16 L0618_ui_Multiple;
#define AL0618_ui_HealthMultiplier L0618_ui_Multiple
#define AL0618_ui_Ticks            L0618_ui_Multiple
	TimelineEvent L0619_s_Event;


	L0613_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(L0616_ui_MapX = event->_B._location._mapX, L0617_ui_MapY = event->_B._location._mapY);
	while (L0613_T_Thing != Thing::_endOfList) {
		if ((L0610_i_ThingType = L0613_T_Thing.getType()) == k2_TextstringType) {
			L0615_ps_TextString = (TextString*)_vm->_dungeonMan->f156_getThingData(L0613_T_Thing);
			L0611_B_TextCurrentlyVisible = L0615_ps_TextString->isVisible();
			if (event->_C.A._effect == k2_SensorEffToggle) {
				L0615_ps_TextString->setVisible(!L0611_B_TextCurrentlyVisible);
			} else {
				L0615_ps_TextString->setVisible((event->_C.A._effect == k0_SensorEffSet));
			}
			if (!L0611_B_TextCurrentlyVisible && L0615_ps_TextString->isVisible() && (_vm->_dungeonMan->_g272_currMapIndex == _vm->_dungeonMan->_g309_partyMapIndex) && (L0616_ui_MapX == _vm->_dungeonMan->_g306_partyMapX) && (L0617_ui_MapY == _vm->_dungeonMan->_g307_partyMapY)) {
				_vm->_dungeonMan->f168_decodeText(_vm->_g353_stringBuildBuffer, L0613_T_Thing, k1_TextTypeMessage);
				_vm->_textMan->f47_messageAreaPrintMessage(k15_ColorWhite, _vm->_g353_stringBuildBuffer);
			}
		} else {
			if (L0610_i_ThingType == k3_SensorThingType) {
				L0614_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0613_T_Thing);
				if (L0614_ps_Sensor->getType() == k6_SensorFloorGroupGenerator) {
					L0612_i_CreatureCount = L0614_ps_Sensor->getValue();
					if (getFlag(L0612_i_CreatureCount, k0x0008_randomizeGeneratedCreatureCount)) {
						L0612_i_CreatureCount = _vm->getRandomNumber(getFlag(L0612_i_CreatureCount, k0x0007_generatedCreatureCount));
					} else {
						L0612_i_CreatureCount--;
					}
					if ((AL0618_ui_HealthMultiplier = L0614_ps_Sensor->M45_healthMultiplier()) == 0) {
						AL0618_ui_HealthMultiplier = _vm->_dungeonMan->_g269_currMap->_difficulty;
					}
					_vm->_groupMan->f185_groupGetGenerated(L0614_ps_Sensor->getData(), AL0618_ui_HealthMultiplier, L0612_i_CreatureCount, (Direction)_vm->getRandomNumber(4), L0616_ui_MapX, L0617_ui_MapY);
					if (L0614_ps_Sensor->getAudibleA()) {
						_vm->_sound->f064_SOUND_RequestPlay_CPSD(k17_soundBUZZ, L0616_ui_MapX, L0617_ui_MapY, k1_soundModePlayIfPrioritized);
					}
					if (L0614_ps_Sensor->getOnlyOnce()) {
						L0614_ps_Sensor->setTypeDisabled();
					} else {
						if ((AL0618_ui_Ticks = L0614_ps_Sensor->M46_ticks()) != 0) {
							L0614_ps_Sensor->setTypeDisabled();
							if (AL0618_ui_Ticks > 127) {
								AL0618_ui_Ticks = (AL0618_ui_Ticks - 126) << 6;
							}
							L0619_s_Event._type = k65_TMEventTypeEnableGroupGenerator;
							M33_setMapAndTime(L0619_s_Event._mapTime, _vm->_dungeonMan->_g272_currMapIndex, _vm->_g313_gameTime + AL0618_ui_Ticks);
							L0619_s_Event._priority = 0;
							L0619_s_Event._B._location._mapX = L0616_ui_MapX;
							L0619_s_Event._B._location._mapY = L0617_ui_MapY;
							L0619_s_Event._B._location._mapY = L0617_ui_MapY;
							f238_addEventGetEventIndex(&L0619_s_Event);
						}
					}
				}
			}
		}
		L0613_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0613_T_Thing);
	}
}

void Timeline::f252_timelineProcessEvents60to61_moveGroup(TimelineEvent* event) {
	uint16 L0656_ui_MapX;
	uint16 L0657_ui_MapY;
	Group* L0658_ps_Group;
	bool L0659_B_RandomDirectionMoveRetried;


	L0659_B_RandomDirectionMoveRetried = false;
	L0656_ui_MapX = event->_B._location._mapX;
	L0657_ui_MapY = event->_B._location._mapY;
	L0657_ui_MapY = event->_B._location._mapY;
T0252001:
	if (((_vm->_dungeonMan->_g272_currMapIndex != _vm->_dungeonMan->_g309_partyMapIndex) || (L0656_ui_MapX != _vm->_dungeonMan->_g306_partyMapX) || (L0657_ui_MapY != _vm->_dungeonMan->_g307_partyMapY)) && (_vm->_groupMan->f175_groupGetThing(L0656_ui_MapX, L0657_ui_MapY) == Thing::_endOfList)) { /* BUG0_24 Lord Chaos may teleport into one of the Black Flames and become invisible until the Black Flame is killed. In this case, _vm->_groupMan->f175_groupGetThing returns the Black Flame thing and the Lord Chaos thing is not moved into the dungeon until the Black Flame is killed */
		if (event->_type == k61_TMEventTypeMoveGroupAudible) {
			_vm->_sound->f064_SOUND_RequestPlay_CPSD(k17_soundBUZZ, L0656_ui_MapX, L0657_ui_MapY, k1_soundModePlayIfPrioritized);
		}
		_vm->_moveSens->f267_getMoveResult(Thing(event->_C._slot), kM1_MapXNotOnASquare, 0, L0656_ui_MapX, L0657_ui_MapY);
	} else {
		if (!L0659_B_RandomDirectionMoveRetried) {
			L0659_B_RandomDirectionMoveRetried = true;
			L0658_ps_Group = (Group*)_vm->_dungeonMan->f156_getThingData(Thing(event->_C._slot));
			if ((L0658_ps_Group->_type == k23_CreatureTypeLordChaos) && !_vm->getRandomNumber(4)) {
				switch (_vm->getRandomNumber(4)) {
				case 0:
					L0656_ui_MapX--;
					break;
				case 1:
					L0656_ui_MapX++;
					break;
				case 2:
					L0657_ui_MapY--;
					break;
				case 3:
					L0657_ui_MapY++;
				}
				if (_vm->_groupMan->f223_isSquareACorridorTeleporterPitOrDoor(L0656_ui_MapX, L0657_ui_MapY))
					goto T0252001;
			}
		}
		event->_mapTime += 5;
		f238_addEventGetEventIndex(event);
	}
}

void Timeline::f246_timelineProcesEvent65_enableGroupGenerator(TimelineEvent* event) {
	Thing L0620_T_Thing;
	Sensor* L0621_ps_Sensor;

	L0620_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(event->_B._location._mapX, event->_B._location._mapY);
	L0620_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(event->_B._location._mapX, event->_B._location._mapY);
	while (L0620_T_Thing != Thing::_none) {
		if ((L0620_T_Thing.getType()) == k3_SensorThingType) {
			L0621_ps_Sensor = (Sensor*)_vm->_dungeonMan->f156_getThingData(L0620_T_Thing);
			if (L0621_ps_Sensor->getType() == k0_SensorDisabled) {
				L0621_ps_Sensor->setDatAndTypeWithOr(k6_SensorFloorGroupGenerator);
				return;
			}
		}
		L0620_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0620_T_Thing);
	}
}

void Timeline::f253_timelineProcessEvent11Part1_enableChampionAction(uint16 champIndex) {
	int16 L0660_i_SlotIndex;
	int16 L0661_i_QuiverSlotIndex;
	Champion* L0662_ps_Champion;

	L0662_ps_Champion = &_vm->_championMan->_gK71_champions[champIndex];
	L0662_ps_Champion->_enableActionEventIndex = -1;
	clearFlag(L0662_ps_Champion->_attributes, k0x0008_ChampionAttributeDisableAction);
	if (L0662_ps_Champion->_actionIndex != k255_ChampionActionNone) {
		L0662_ps_Champion->_actionDefense -= g495_actionDefense[L0662_ps_Champion->_actionDefense];
	}
	if (L0662_ps_Champion->_currHealth) {
		if ((L0662_ps_Champion->_actionIndex == k32_ChampionActionShoot) && (L0662_ps_Champion->_slots[k0_ChampionSlotReadyHand] == Thing::_none)) {
			if (_vm->_championMan->f294_isAmmunitionCompatibleWithWeapon(champIndex, k1_ChampionSlotActionHand, L0660_i_SlotIndex = k12_ChampionSlotQuiverLine_1_1)) {
T0253002:
				_vm->_championMan->f301_addObjectInSlot((ChampionIndex)champIndex, _vm->_championMan->f300_getObjectRemovedFromSlot(champIndex, L0660_i_SlotIndex), k0_ChampionSlotReadyHand);
			} else {
				for (L0661_i_QuiverSlotIndex = 0; L0661_i_QuiverSlotIndex < 3; L0661_i_QuiverSlotIndex++) {
					if (_vm->_championMan->f294_isAmmunitionCompatibleWithWeapon(champIndex, k1_ChampionSlotActionHand, L0660_i_SlotIndex = L0661_i_QuiverSlotIndex + k7_ChampionSlotQuiverLine_2_1))
						goto T0253002;
				}
			}
		}
		setFlag(L0662_ps_Champion->_attributes, k0x8000_ChampionAttributeActionHand);
		_vm->_championMan->f292_drawChampionState((ChampionIndex)champIndex);
	}
	L0662_ps_Champion->_actionIndex = k255_ChampionActionNone;
}

void Timeline::f259_timelineProcessEvent11Part2_moveWeaponFromQuiverToSlot(uint16 champIndex, uint16 slotIndex) {
	uint16 L0677_ui_SlotIndex;
	Champion* L0678_ps_Champion;

	L0678_ps_Champion = &_vm->_championMan->_gK71_champions[champIndex];
	if (L0678_ps_Champion->_slots[slotIndex] != Thing::_none) {
		return;
	}
	if (f258_timelineHasWeaponMovedSlot(champIndex, L0678_ps_Champion, k12_ChampionSlotQuiverLine_1_1, slotIndex)) {
		return;
	}
	for (L0677_ui_SlotIndex = k7_ChampionSlotQuiverLine_2_1; L0677_ui_SlotIndex <= k9_ChampionSlotQuiverLine_2_2; L0677_ui_SlotIndex++) {
		if (f258_timelineHasWeaponMovedSlot(champIndex, L0678_ps_Champion, L0677_ui_SlotIndex, slotIndex))
			break;
	}
}

bool Timeline::f258_timelineHasWeaponMovedSlot(int16 champIndex, Champion* champ, uint16 sourceSlotIndex, int16 destSlotIndex) {
	if (Thing(champ->_slots[sourceSlotIndex]).getType() == k5_WeaponThingType) {
		_vm->_championMan->f301_addObjectInSlot((ChampionIndex)champIndex, _vm->_championMan->f300_getObjectRemovedFromSlot(champIndex, sourceSlotIndex),
			(ChampionSlot)destSlotIndex);
		return true;
	}
	return false;
}

void Timeline::f254_timelineProcessEvent12_hideDamageReceived(uint16 champIndex) {
	Champion* L0663_ps_Champion;


	L0663_ps_Champion = &_vm->_championMan->_gK71_champions[champIndex];
	L0663_ps_Champion->_hideDamageReceivedIndex = -1;
	if (!L0663_ps_Champion->_currHealth) {
		return;
	}
	if (_vm->M0_indexToOrdinal(champIndex) == _vm->_inventoryMan->_g432_inventoryChampionOrdinal) {
		_vm->_eventMan->f78_showMouse();
		_vm->_inventoryMan->f354_drawStatusBoxPortrait((ChampionIndex)champIndex);
		_vm->_eventMan->f77_hideMouse();
	} else {
		setFlag(L0663_ps_Champion->_attributes, k0x0080_ChampionAttributeNameTitle);
		_vm->_championMan->f292_drawChampionState((ChampionIndex)champIndex);
	}
}

void Timeline::f257_timelineProcessEvent70_light(TimelineEvent* event) {
	int16 L0673_i_WeakerLightPower;
	int16 L0674_i_Multiple;
#define AL0674_i_LightPower  L0674_i_Multiple
#define AL0674_i_LightAmount L0674_i_Multiple
	bool L0675_B_NegativeLightPower;
	TimelineEvent L0676_s_Event;


	if ((AL0674_i_LightPower = event->_B._lightPower) == 0) {
		return;
	}
	if (L0675_B_NegativeLightPower = (AL0674_i_LightPower < 0)) {
		AL0674_i_LightPower = -AL0674_i_LightPower;
	}
	L0673_i_WeakerLightPower = AL0674_i_LightPower - 1;
	AL0674_i_LightAmount = _vm->_championMan->_lightPowerToLightAmount[AL0674_i_LightPower] - _vm->_championMan->_lightPowerToLightAmount[L0673_i_WeakerLightPower];
	if (L0675_B_NegativeLightPower) {
		AL0674_i_LightAmount = -AL0674_i_LightAmount;
		L0673_i_WeakerLightPower = -L0673_i_WeakerLightPower;
	}
	_vm->_championMan->_g407_party._magicalLightAmount += AL0674_i_LightAmount;
	if (L0673_i_WeakerLightPower) {
		L0676_s_Event._type = k70_TMEventTypeLight;
		L0676_s_Event._B._lightPower = L0673_i_WeakerLightPower;
		M33_setMapAndTime(L0676_s_Event._mapTime, _vm->_dungeonMan->_g309_partyMapIndex, _vm->_g313_gameTime + 4);
		L0676_s_Event._priority = 0;
		f238_addEventGetEventIndex(&L0676_s_Event);
	}
}

void Timeline::f260_timelineRefreshAllChampionStatusBoxes() {
	uint16 L0679_ui_ChampionIndex;

	for (L0679_ui_ChampionIndex = k0_ChampionFirst; L0679_ui_ChampionIndex < _vm->_championMan->_g305_partyChampionCount; L0679_ui_ChampionIndex++) {
		setFlag(_vm->_championMan->_gK71_champions[L0679_ui_ChampionIndex]._attributes, k0x1000_ChampionAttributeStatusBox);
	}
	_vm->_championMan->f293_drawAllChampionStates();
}

void Timeline::f255_timelineProcessEvent13_ViAltarRebirth(TimelineEvent* event) {
	int16 L0664_i_MapX;
	int16 L0665_i_MapY;
	uint16 L0666_ui_Cell;
	Thing L0667_T_Thing;
	Junk* L0668_ps_Junk;
	int16 L0669_i_IconIndex;
	uint16 L0670_ui_Step;
	uint16 L0671_ui_ChampionIndex;


	L0664_i_MapX = event->_B._location._mapX;
	L0665_i_MapY = event->_B._location._mapY;
	L0665_i_MapY = event->_B._location._mapY;
	L0666_ui_Cell = event->_C.A._cell;
	L0671_ui_ChampionIndex = event->_priority;
	switch (L0670_ui_Step = event->_C.A._effect) { /* Rebirth is a 3 steps process (Step 2 -> Step 1 -> Step 0). Step is stored in the Effect value of the event */
	case 2:
		_vm->_projexpl->f213_explosionCreate(Thing::_explRebirthStep1, 0, L0664_i_MapX, L0665_i_MapY, L0666_ui_Cell);
		event->_mapTime += 5;
T0255002:
		L0670_ui_Step--;
		event->_C.A._effect = L0670_ui_Step;
		f238_addEventGetEventIndex(event);
		break;
	case 1:
		L0667_T_Thing = _vm->_dungeonMan->f161_getSquareFirstThing(L0664_i_MapX, L0665_i_MapY);
		while (L0667_T_Thing != Thing::_endOfList) {
			if ((L0667_T_Thing.getCell() == L0666_ui_Cell) && (L0667_T_Thing.getType() == k10_JunkThingType)) {
				L0669_i_IconIndex = _vm->_objectMan->f33_getIconIndex(L0667_T_Thing);
				if (L0669_i_IconIndex == k147_IconIndiceJunkChampionBones) {
					L0668_ps_Junk = (Junk*)_vm->_dungeonMan->f156_getThingData(L0667_T_Thing);
					if (L0668_ps_Junk->getChargeCount() == L0671_ui_ChampionIndex) {
						_vm->_dungeonMan->f164_unlinkThingFromList(L0667_T_Thing, Thing(0), L0664_i_MapX, L0665_i_MapY); /* BUG0_25 When a champion dies, no bones object is created so it is not possible to bring the champion back to life at an altar of Vi. Each time a champion is brought back to life, the bones object is removed from the dungeon but it is not marked as unused and thus becomes an orphan. After a large number of champion deaths, all JUNK things are exhausted and the game cannot create any more. This also affects the creation of JUNK things dropped by some creatures when they die (Screamer, Rockpile, Magenta Worm, Pain Rat, Red Dragon) */
						L0668_ps_Junk->setNextThing(Thing::_none);
						event->_mapTime += 1;
						goto T0255002;
					}
				}
			}
			L0667_T_Thing = _vm->_dungeonMan->f159_getNextThing(L0667_T_Thing);
		}
		break;
	case 0:
		_vm->_championMan->f283_viAltarRebirth(event->_priority);
	}
}

void Timeline::save3_eventsPart(Common::OutSaveFile* file) {
	for (uint16 i = 0; i < _g369_eventMaxCount; ++i) {
		TimelineEvent *event = &_g370_events[i];
		file->writeSint32BE(event->_mapTime);
		file->writeByte(event->_type);
		file->writeByte(event->_priority);
		file->writeByte(event->_B._location._mapX); // writing bytes of the union I think should preserve the union's identity
		file->writeByte(event->_B._location._mapY);
		file->writeUint16BE(event->_C.A._cell); // writing bytes of the union I think should preserve the union's identity
		file->writeUint16BE(event->_C.A._effect);
	}
}

void Timeline::save4_timelinePart(Common::OutSaveFile* file) {
	for (uint16 i = 0; i < _g369_eventMaxCount; ++i)
		file->writeUint16BE(_g371_timeline[i]);
}

void Timeline::load3_eventsPart(Common::InSaveFile* file) {
	for (uint16 i = 0; i < _g369_eventMaxCount; ++i) {
		TimelineEvent *event = &_g370_events[i];
		event->_mapTime = file->readSint32BE();
		event->_type = file->readByte();
		event->_priority = file->readByte();
		event->_B._location._mapX = file->readByte();
		event->_B._location._mapY = file->readByte();
		event->_C.A._cell = file->readUint16BE();
		event->_C.A._effect = file->readUint16BE();
	}
}

void Timeline::load4_timelinePart(Common::InSaveFile* file) {
	for (uint16 i = 0; i < _g369_eventMaxCount; ++i)
		_g371_timeline[i] = file->readUint16BE();
}

}