forked from bradharding/doomretro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp_floor.c
851 lines (703 loc) · 26.6 KB
/
p_floor.c
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
/*
==============================================================================
DOOM Retro
The classic, refined DOOM source port. For Windows PC.
==============================================================================
Copyright © 1993-2024 by id Software LLC, a ZeniMax Media company.
Copyright © 2013-2024 by Brad Harding <mailto:[email protected]>.
This file is a part of DOOM Retro.
DOOM Retro 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 3 of the license, or (at your
option) any later version.
DOOM Retro 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 DOOM Retro. If not, see <https://www.gnu.org/licenses/>.
DOOM is a registered trademark of id Software LLC, a ZeniMax Media
company, in the US and/or other countries, and is used without
permission. All other trademarks are the property of their respective
holders. DOOM Retro is in no way affiliated with nor endorsed by
id Software.
==============================================================================
*/
#include "doomstat.h"
#include "m_config.h"
#include "p_fix.h"
#include "p_local.h"
#include "p_setup.h"
#include "p_tick.h"
#include "s_sound.h"
#include "z_zone.h"
//
// FLOORS
//
//
// Move a plane (floor or ceiling) and check for crushing
//
result_e T_MovePlane(sector_t *sector, const fixed_t speed, fixed_t dest,
const bool crush, const int floororceiling, const int direction)
{
sector->oldgametime = gametime;
switch (floororceiling)
{
case 0:
sector->oldfloorheight = sector->floorheight;
switch (direction)
{
case -1:
if (sector->floorheight - speed < dest)
{
sector->floorheight = dest;
if (P_ChangeSector(sector, crush))
{
sector->floorheight = sector->oldfloorheight;
P_ChangeSector(sector, crush);
}
return pastdest;
}
else
{
sector->floorheight -= speed;
P_ChangeSector(sector, crush);
}
break;
case 1:
dest = (compat_floormove || dest < sector->ceilingheight ? dest : sector->ceilingheight);
if (sector->floorheight + speed > dest)
{
sector->floorheight = dest;
if (P_ChangeSector(sector, crush))
{
sector->floorheight = sector->oldfloorheight;
P_ChangeSector(sector, crush);
}
return pastdest;
}
else
{
// COULD GET CRUSHED
sector->floorheight += speed;
if (P_ChangeSector(sector, crush))
{
sector->floorheight = sector->oldfloorheight;
P_ChangeSector(sector, crush);
return crushed;
}
}
break;
}
break;
case 1:
sector->oldceilingheight = sector->ceilingheight;
switch (direction)
{
case -1:
dest = (compat_floormove || dest > sector->floorheight ? dest : sector->floorheight);
if (sector->ceilingheight - speed < dest)
{
sector->ceilingheight = dest;
if (P_ChangeSector(sector, crush))
{
sector->ceilingheight = sector->oldceilingheight;
P_ChangeSector(sector, crush);
}
return pastdest;
}
else
{
// COULD GET CRUSHED
sector->ceilingheight -= speed;
if (P_ChangeSector(sector, crush))
{
if (!crush)
{
sector->ceilingheight = sector->oldceilingheight;
P_ChangeSector(sector, false);
}
return crushed;
}
}
break;
case 1:
if (sector->ceilingheight + speed > dest)
{
sector->ceilingheight = dest;
if (P_ChangeSector(sector, crush))
{
sector->ceilingheight = sector->oldceilingheight;
P_ChangeSector(sector, crush);
}
return pastdest;
}
else
{
sector->ceilingheight += speed;
P_ChangeSector(sector, crush);
}
break;
}
break;
}
return ok;
}
//
// MOVE A FLOOR TO IT'S DESTINATION (UP OR DOWN)
//
// jff 02/08/98 all cases with labels beginning with gen added to support
// generalized line type behaviors.
void T_MoveFloor(floormove_t *floor)
{
sector_t *sec = floor->sector;
result_e res = T_MovePlane(sec, floor->speed, floor->floordestheight, floor->crush, 0, floor->direction);
if (res != pastdest)
{
if (!(maptime & 7))
S_StartSectorSound(&sec->soundorg, sfx_stnmov);
return;
}
if (floor->direction == 1)
{
switch (floor->type)
{
case DonutRaise:
case GenFloorChgT:
case GenFloorChg0:
sec->special = floor->newspecial;
case GenFloorChg:
sec->floorpic = floor->texture;
P_CheckTerrainType(sec);
break;
default:
break;
}
}
else if (floor->direction == -1)
{
switch (floor->type)
{
case LowerAndChange:
case GenFloorChgT:
case GenFloorChg0:
sec->special = floor->newspecial;
case GenFloorChg:
sec->floorpic = floor->texture;
P_CheckTerrainType(sec);
break;
default:
break;
}
}
floor->sector->floordata = NULL;
P_RemoveThinker2(&floor->thinker);
// jff 02/26/98 implement stair retrigger lockout while still building
// note this only applies to the retriggerable generalized stairs
if (sec->stairlock == -2) // if this sector is stairlocked
{
sec->stairlock = -1; // thinker done, promote lock to -1
while (sec->prevsec != -1 && sectors[sec->prevsec].stairlock != -2)
sec = sectors + sec->prevsec; // search for a non-done thinker
if (sec->prevsec == -1) // if all thinkers previous are done
{
sec = floor->sector; // search forward
while (sec->nextsec != -1 && sectors[sec->nextsec].stairlock != -2)
sec = sectors + sec->nextsec;
if (sec->nextsec == -1) // if all thinkers ahead are done too
{
while (sec->prevsec != -1) // clear all locks
{
sec->stairlock = 0;
sec = sectors + sec->prevsec;
}
sec->stairlock = 0;
}
}
}
// [BH] don't make stop sound if floor already at its destination height
if (floor->stopsound)
S_StartSectorSound(&sec->soundorg, sfx_pstop);
}
//
// T_MoveElevator()
//
// Move an elevator to it's destination (up or down)
// Called once per tic for each moving floor.
//
// Passed an elevator_t structure that contains all pertinent info about the
// move. See P_SPEC.H for fields.
// No return value.
//
// jff 02/22/98 added to support parallel floor/ceiling motion
//
void T_MoveElevator(elevator_t *elevator)
{
result_e res;
sector_t *sec = elevator->sector;
if (elevator->direction == -1) // moving down
{
// jff 04/07/98 reverse order of ceiling/floor
res = T_MovePlane(sec, elevator->speed, elevator->ceilingdestheight, false, 1, elevator->direction);
// jff 04/07/98 don't move ceiling if blocked
if (res == ok || res == pastdest)
T_MovePlane(sec, elevator->speed, elevator->floordestheight, false, 0, elevator->direction);
}
else // up
{
// jff 04/07/98 reverse order of ceiling/floor
res = T_MovePlane(sec, elevator->speed, elevator->floordestheight, false, 0, elevator->direction);
// jff 04/07/98 don't move floor if blocked
if (res == ok || res == pastdest)
T_MovePlane(sec, elevator->speed, elevator->ceilingdestheight, false, 1, elevator->direction);
}
// make floor move sound
if (!(maptime & 7))
S_StartSectorSound(&sec->soundorg, sfx_stnmov);
if (res == pastdest) // if destination height achieved
{
sec->floordata = NULL;
sec->ceilingdata = NULL;
P_RemoveThinker2(&elevator->thinker); // remove elevator from actives
// make floor stop sound
// [BH] don't make stop sound if floor already at its destination height
if (elevator->stopsound)
S_StartSectorSound(&sec->soundorg, sfx_pstop);
}
}
//
// HANDLE FLOOR TYPES
//
bool EV_DoFloor(const line_t *line, const floor_e floortype)
{
int secnum = -1;
bool rtn = false;
sector_t *sec;
if (P_ProcessNoTagLines(line, &sec, &secnum))
{
if (zerotag_manual)
goto manual_floor;
else
return false;
}
while ((secnum = P_FindSectorFromLineTag(line, secnum)) >= 0)
{
floormove_t *floor;
sec = sectors + secnum;
manual_floor:
// ALREADY MOVING? IF SO, KEEP GOING...
if (P_SectorActive(floor_special, sec))
{
if (!zerotag_manual)
continue;
else
return rtn;
}
// new floor thinker
rtn = true;
floor = Z_Calloc(1, sizeof(*floor), PU_LEVSPEC, NULL);
floor->thinker.function = &T_MoveFloor;
P_AddThinker(&floor->thinker);
sec->floordata = floor;
floor->type = floortype;
switch (floortype)
{
case LowerFloor:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = P_FindHighestFloorSurrounding(sec);
break;
case LowerFloor24:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = floor->sector->floorheight + 24 * FRACUNIT;
break;
case LowerFloor32Turbo:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED * 4;
floor->floordestheight = floor->sector->floorheight + 32 * FRACUNIT;
break;
case LowerFloorToLowest:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = P_FindLowestFloorSurrounding(sec);
break;
case LowerFloorToNearest:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = P_FindNextLowestFloor(sec, sec->floorheight);
break;
case TurboLower:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED * 4;
floor->floordestheight = P_FindHighestFloorSurrounding(sec);
if (floor->floordestheight != sec->floorheight)
floor->floordestheight += 8 * FRACUNIT;
break;
case RaiseFloorCrush:
floor->crush = true;
case RaiseFloor:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = MIN(P_FindLowestCeilingSurrounding(sec), sec->ceilingheight)
- 8 * FRACUNIT * (floortype == RaiseFloorCrush);
break;
case RaiseFloorTurbo:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED * 4;
floor->floordestheight = P_FindNextHighestFloor(sec, sec->floorheight);
break;
case RaiseFloorToNearest:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = P_FindNextHighestFloor(sec, sec->floorheight);
break;
case RaiseFloor24:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = sec->floorheight + 24 * FRACUNIT;
break;
case RaiseFloor32Turbo:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED * 4;
floor->floordestheight = sec->floorheight + 32 * FRACUNIT;
break;
case RaiseFloor512:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = sec->floorheight + 512 * FRACUNIT;
break;
case RaiseFloor24AndChange:
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = sec->floorheight + 24 * FRACUNIT;
if (E2M2)
{
sec->floorpic = R_FlatNumForName("FLOOR5_4");
sec->terraintype = SOLID;
sec->special = 0;
}
else if (MAP12)
{
sec->floorpic = R_FlatNumForName("FLOOR7_1");
sec->terraintype = SOLID;
sec->special = 0;
}
else
{
sec->floorpic = line->frontsector->floorpic;
sec->special = line->frontsector->special;
P_CheckTerrainType(sec);
}
break;
case RaiseToTexture:
{
int minsize = 32000 << FRACBITS;
floor->direction = 1;
floor->sector = sec;
floor->speed = FLOORSPEED;
for (int i = 0; i < sec->linecount; i++)
if (P_TwoSided(secnum, i))
{
side_t *side = P_GetSide(secnum, i, 0);
if (textureheight[side->bottomtexture] < minsize)
minsize = textureheight[side->bottomtexture];
side = P_GetSide(secnum, i, 1);
if (textureheight[side->bottomtexture] < minsize)
minsize = textureheight[side->bottomtexture];
}
floor->floordestheight = MIN((sec->floorheight >> FRACBITS) + (minsize >> FRACBITS), 32000) << FRACBITS;
break;
}
case LowerAndChange:
floor->direction = -1;
floor->sector = sec;
floor->speed = FLOORSPEED;
floor->floordestheight = P_FindLowestFloorSurrounding(sec);
floor->texture = sec->floorpic;
floor->newspecial = sec->special;
for (int i = 0; i < sec->linecount; i++)
if (P_TwoSided(secnum, i))
{
if (P_GetSide(secnum, i, 0)->sector->id == secnum)
{
if ((sec = P_GetSector(secnum, i, 1))->floorheight == floor->floordestheight)
{
floor->texture = sec->floorpic;
floor->newspecial = sec->special;
break;
}
}
else
{
if ((sec = P_GetSector(secnum, i, 0))->floorheight == floor->floordestheight)
{
floor->texture = sec->floorpic;
floor->newspecial = sec->special;
break;
}
}
}
default:
break;
}
floor->stopsound = (sec->floorheight != floor->floordestheight);
// [BH] floor is no longer secret
for (int i = 0; i < sec->linecount; i++)
sec->lines[i]->flags &= ~ML_SECRET;
if (zerotag_manual)
return rtn; // e6y
}
return rtn;
}
//
// P_CheckTerrainType()
//
void P_CheckTerrainType(sector_t *sector)
{
const terraintype_t oldterraintype = sector->terraintype;
if ((sector->terraintype = terraintypes[sector->floorpic]) != oldterraintype)
{
if (sector->terraintype >= LIQUID)
{
for (bloodsplat_t *splat = sector->splatlist; splat; splat = splat->next)
P_UnsetBloodSplatPosition(splat);
for (msecnode_t *node = sector->touching_thinglist; node; node = node->m_snext)
{
mobj_t *thing = node->m_thing;
if (!(thing->flags & MF_SPAWNCEILING) && (thing->flags2 & MF2_FOOTCLIP))
thing->flags2 |= MF2_FEETARECLIPPED;
else
thing->flags2 &= ~MF2_FEETARECLIPPED;
}
}
else
{
sector->floorxoffset = 0;
sector->flooryoffset = 0;
for (msecnode_t *node = sector->touching_thinglist; node; node = node->m_snext)
node->m_thing->flags2 &= ~MF2_FEETARECLIPPED;
}
}
}
//
// EV_DoChange()
//
// Handle pure change types. These change floor texture and sector type
// by trigger or numeric model without moving the floor.
//
// The linedef causing the change and the type of change is passed
// Returns true if any sector changes
//
// jff 03/15/98 added to better support generalized sector types
//
bool EV_DoChange(const line_t *line, const change_e changetype)
{
int secnum = -1;
bool rtn = false;
// change all sectors with the same tag as the linedef
while ((secnum = P_FindSectorFromLineTag(line, secnum)) >= 0)
{
sector_t *sec = sectors + secnum;
sector_t *secm;
rtn = true;
// handle trigger or numeric change type
switch (changetype)
{
case TrigChangeOnly:
sec->floorpic = line->frontsector->floorpic;
P_CheckTerrainType(sec);
sec->special = line->frontsector->special;
break;
case NumChangeOnly:
if ((secm = P_FindModelFloorSector(sec->floorheight, secnum))) // if no model, no change
{
sec->floorpic = secm->floorpic;
P_CheckTerrainType(sec);
sec->special = secm->special;
}
break;
}
}
return rtn;
}
//
// BUILD A STAIRCASE!
//
// cph 09/21/01: compatibility nightmares again
// There are three different ways this function has, during its history, stepped
// through all the stairs to be triggered by the single switch
// - original DOOM used a linear P_FindSectorFromLineTag, but failed to preserve
// the index of the previous sector found, so instead it would restart its
// linear search from the last sector of the previous staircase
// - MBF/PrBoom with comp_stairs fail to emulate this, because their
// P_FindSectorFromLineTag is a chained hash table implementation. Instead they
// start following the hash chain from the last sector of the previous
// staircase, which will (probably) have the wrong tag, so they miss any further
// stairs
// - BOOM fixed the bug, and MBF/PrBoom without comp_stairs work right
//
static int P_FindSectorFromLineTagWithLowerBound(const line_t *l, int start, const int min)
{
do
{
start = P_FindSectorFromLineTag(l, start);
} while (start >= 0 && start <= min);
return start;
}
bool EV_BuildStairs(const line_t *line, const fixed_t speed, const fixed_t stairsize, const bool crushing)
{
int ssec = -1;
int minssec = -1;
bool rtn = false;
int secnum = -1;
sector_t *sec;
if (P_ProcessNoTagLines(line, &sec, &secnum))
{
if (zerotag_manual)
goto manual_stair;
else
return false;
}
while ((ssec = P_FindSectorFromLineTagWithLowerBound(line, ssec, minssec)) >= 0)
{
floormove_t *floor;
bool okay;
int height;
int texture;
secnum = ssec;
sec = sectors + secnum;
manual_stair:
// already moving? if so, keep going...
if (P_SectorActive(floor_special, sec))
continue;
// new floor thinker
rtn = true;
floor = Z_Calloc(1, sizeof(*floor), PU_LEVSPEC, NULL);
floor->thinker.function = &T_MoveFloor;
P_AddThinker(&floor->thinker);
sec->floordata = floor;
floor->direction = 1;
floor->sector = sec;
floor->speed = speed;
height = sec->floorheight + stairsize;
floor->floordestheight = height;
floor->crush = crushing;
floor->stopsound = (sec->floorheight != height);
texture = sec->floorpic;
// Find next sector to raise
// 1. Find 2-sided line with same sector side[0]
// 2. Other side is the next sector to raise
do
{
okay = false;
for (int i = 0; i < sec->linecount; i++)
{
line_t *li = sec->lines[i];
sector_t *tsec;
if (!(li->flags & ML_TWOSIDED)
|| secnum != li->frontsector->id
|| !(tsec = li->backsector)
|| tsec->floorpic != texture)
continue;
if (compat_stairs)
height += stairsize;
if (P_SectorActive(floor_special, tsec))
continue;
if (!compat_stairs)
height += stairsize;
sec = tsec;
secnum = tsec->id;
floor = Z_Calloc(1, sizeof(*floor), PU_LEVSPEC, NULL);
floor->thinker.function = &T_MoveFloor;
P_AddThinker(&floor->thinker);
sec->floordata = floor;
floor->direction = 1;
floor->sector = sec;
floor->speed = speed;
floor->floordestheight = height;
floor->crush = crushing;
floor->stopsound = (sec->floorheight != height);
okay = true;
break;
}
} while (okay);
if (compat_stairs)
{
ssec = -1;
minssec = secnum;
}
}
return rtn;
}
//
// EV_DoElevator
//
// Handle elevator linedef types
//
// Passed the linedef that triggered the elevator and the elevator action
//
// jff 02/22/98 new type to move floor and ceiling in parallel
//
bool EV_DoElevator(const line_t *line, const elevator_e elevtype)
{
int secnum = -1;
bool rtn = false;
// act on all sectors with the same tag as the triggering linedef
while ((secnum = P_FindSectorFromLineTag(line, secnum)) >= 0)
{
sector_t *sec = sectors + secnum;
elevator_t *elevator;
// if either floor or ceiling is already activated, skip it
if (sec->floordata || sec->ceilingdata)
continue;
// create and initialize new elevator thinker
if (!(elevator = Z_Calloc(1, sizeof(*elevator), PU_LEVSPEC, NULL)))
return false;
rtn = true;
elevator->thinker.function = &T_MoveElevator;
P_AddThinker(&elevator->thinker);
sec->floordata = elevator;
sec->ceilingdata = elevator;
elevator->type = elevtype;
elevator->sector = sec;
elevator->speed = ELEVATORSPEED;
// set up the fields according to the type of elevator action
switch (elevtype)
{
// elevator down to next floor
case ElevateDown:
elevator->direction = -1;
elevator->floordestheight = P_FindNextLowestFloor(sec, sec->floorheight);
elevator->ceilingdestheight = elevator->floordestheight + sec->ceilingheight - sec->floorheight;
break;
// elevator up to next floor
case ElevateUp:
elevator->direction = 1;
elevator->floordestheight = P_FindNextHighestFloor(sec, sec->floorheight);
elevator->ceilingdestheight = elevator->floordestheight + sec->ceilingheight - sec->floorheight;
break;
// elevator to floor height of activating switch's front sector
case ElevateCurrent:
elevator->floordestheight = line->frontsector->floorheight;
elevator->ceilingdestheight = elevator->floordestheight + sec->ceilingheight - sec->floorheight;
elevator->direction = (elevator->floordestheight > sec->floorheight ? 1 : -1);
break;
}
elevator->stopsound = (sec->floorheight != elevator->floordestheight);
}
return rtn;
}