mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
- added Floor_MoveToValue and Ceiling_MoveToValue action specials.
SVN r572 (trunk)
This commit is contained in:
parent
b3cc849dce
commit
0c5731223c
3 changed files with 21 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
November 24, 2007 (Changes by Graf Zahl)
|
||||
- added Floor_MoveToValue and Ceiling_MoveToValue action specials.
|
||||
|
||||
November 19, 2007 (Changes by Graf Zahl)
|
||||
- Changed first name from 'none' to ''. The internal constant is still NAME_None,
|
||||
though.
|
||||
|
|
|
@ -302,6 +302,13 @@ FUNC(LS_Floor_MoveToValueTimes8)
|
|||
arg2*FRACUNIT*8*(arg3?-1:1), 0, 0);
|
||||
}
|
||||
|
||||
FUNC(LS_Floor_MoveToValue)
|
||||
// Floor_MoveToValue (tag, speed, height, negative)
|
||||
{
|
||||
return EV_DoFloor (DFloor::floorMoveToValue, ln, arg0, SPEED(arg1),
|
||||
arg2*FRACUNIT*(arg3?-1:1), 0, 0);
|
||||
}
|
||||
|
||||
FUNC(LS_Floor_RaiseToLowestCeiling)
|
||||
// Floor_RaiseToLowestCeiling (tag, speed)
|
||||
{
|
||||
|
@ -515,6 +522,13 @@ FUNC(LS_Ceiling_MoveToValueTimes8)
|
|||
arg2*FRACUNIT*8*((arg3) ? -1 : 1), -1, 0, 0);
|
||||
}
|
||||
|
||||
FUNC(LS_Ceiling_MoveToValue)
|
||||
// Ceiling_MoveToValue (tag, speed, height, negative)
|
||||
{
|
||||
return EV_DoCeiling (DCeiling::ceilMoveToValue, ln, arg0, SPEED(arg1), 0,
|
||||
arg2*FRACUNIT*((arg3) ? -1 : 1), -1, 0, 0);
|
||||
}
|
||||
|
||||
FUNC(LS_Ceiling_LowerToHighestFloor)
|
||||
// Ceiling_LowerToHighestFloor (tag, speed)
|
||||
{
|
||||
|
@ -2784,7 +2798,7 @@ lnSpecFunc LineSpecials[256] =
|
|||
LS_ClearForceField,
|
||||
LS_Floor_RaiseByValueTimes8,
|
||||
LS_Floor_LowerByValueTimes8,
|
||||
LS_NOP, // 37
|
||||
LS_Floor_MoveToValue
|
||||
LS_Ceiling_Waggle,
|
||||
LS_Teleport_ZombieChanger,
|
||||
LS_Ceiling_LowerByValue,
|
||||
|
@ -2794,7 +2808,7 @@ lnSpecFunc LineSpecials[256] =
|
|||
LS_Ceiling_CrushStop,
|
||||
LS_Ceiling_CrushRaiseAndStay,
|
||||
LS_Floor_CrushStop,
|
||||
LS_NOP, // 47
|
||||
LS_Ceiling_MoveToValue,
|
||||
LS_NOP, // 48
|
||||
LS_GlassBreak,
|
||||
LS_NOP, // 50: ExtraFloor_LightOnly
|
||||
|
|
|
@ -84,6 +84,7 @@ typedef enum {
|
|||
|
||||
Floor_RaiseByValueTimes8 = 35,
|
||||
Floor_LowerByValueTimes8 = 36,
|
||||
Floor_MoveToValue = 37,
|
||||
|
||||
Ceiling_Waggle = 38, // [RH] Complement of Floor_Waggle
|
||||
Teleport_ZombieChanger = 39, // [RH] Needed for Strife
|
||||
|
@ -96,6 +97,7 @@ typedef enum {
|
|||
Ceiling_CrushRaiseAndStay = 45,
|
||||
|
||||
Floor_CrushStop = 46,
|
||||
Ceiling_MoveToValue = 47,
|
||||
|
||||
GlassBreak = 49,
|
||||
ExtraFloor_LightOnly = 50,
|
||||
|
|
Loading…
Reference in a new issue