2016-03-01 15:47:10 +00:00
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
// $Id:$
//
// Copyright (C) 1993-1996 by id Software, Inc.
//
// This source is available for distribution and/or modification
// only under the terms of the DOOM Source Code License as
// published by id Software. All rights reserved.
//
// The source is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
// for more details.
//
// DESCRIPTION: none
// Implements special effects:
// Texture animation, height or lighting changes
// according to adjacent sectors, respective
// utility functions, etc.
//
//-----------------------------------------------------------------------------
# ifndef __P_SPEC__
# define __P_SPEC__
# include "dsectoreffect.h"
# include "doomdata.h"
# include "r_state.h"
class FScanner ;
struct level_info_t ;
2016-03-28 15:27:55 +00:00
struct FThinkerCollection
2016-03-01 15:47:10 +00:00
{
2016-03-28 15:27:55 +00:00
int RefNum ;
DThinker * Obj ;
} ;
2016-03-01 15:47:10 +00:00
2016-03-28 15:27:55 +00:00
enum class EScroll : int
2016-03-01 15:47:10 +00:00
{
sc_side ,
sc_floor ,
sc_ceiling ,
sc_carry ,
sc_carry_ceiling , // killough 4/11/98: carry objects hanging on ceilings
2016-03-28 15:27:55 +00:00
} ;
2016-03-01 15:47:10 +00:00
2016-03-28 15:27:55 +00:00
enum EScrollPos : int
2016-03-01 15:47:10 +00:00
{
2016-03-28 15:27:55 +00:00
scw_top = 1 ,
scw_mid = 2 ,
scw_bottom = 4 ,
scw_all = 7 ,
} ;
2016-03-01 15:47:10 +00:00
2016-03-28 19:04:46 +00:00
void P_CreateScroller ( EScroll type , double dx , double dy , int control , int affectee , int accel , EScrollPos scrollpos = EScrollPos : : scw_all ) ;
2016-03-01 15:47:10 +00:00
2016-03-28 15:27:55 +00:00
//jff 2/23/98 identify the special classes that can share sectors
2016-03-01 15:47:10 +00:00
2016-03-28 15:27:55 +00:00
typedef enum
{
floor_special ,
ceiling_special ,
lighting_special ,
} special_e ;
2016-03-01 15:47:10 +00:00
// Factor to scale scrolling effect into mobj-carrying properties = 3/32.
// (This is so scrolling floors and objects on them can move at same speed.)
2016-03-19 23:54:18 +00:00
const double CARRYFACTOR = 3 / 32. ;
2016-03-01 15:47:10 +00:00
// Flags for P_SectorDamage
# define DAMAGE_PLAYERS 1
# define DAMAGE_NONPLAYERS 2
# define DAMAGE_IN_AIR 4
# define DAMAGE_SUBCLASSES_PROTECT 8
// [RH] If a deathmatch game, checks to see if noexit is enabled.
// If so, it kills the player and returns false. Otherwise,
// it returns true, and the player is allowed to live.
bool CheckIfExitIsGood ( AActor * self , level_info_t * info ) ;
// at map load
void P_SpawnSpecials ( void ) ;
// every tic
void P_UpdateSpecials ( void ) ;
// when needed
2016-03-27 18:58:01 +00:00
bool P_ActivateLine ( line_t * ld , AActor * mo , int side , int activationType , DVector3 * optpos = NULL ) ;
bool P_TestActivateLine ( line_t * ld , AActor * mo , int side , int activationType , DVector3 * optpos = NULL ) ;
2016-03-01 15:47:10 +00:00
bool P_PredictLine ( line_t * ld , AActor * mo , int side , int activationType ) ;
void P_PlayerInSpecialSector ( player_t * player , sector_t * sector = NULL ) ;
void P_PlayerOnSpecialFlat ( player_t * player , int floorType ) ;
void P_SectorDamage ( int tag , int amount , FName type , PClassActor * protectClass , int flags ) ;
void P_SetSectorFriction ( int tag , int amount , bool alterFlag ) ;
2016-03-24 21:50:03 +00:00
double FrictionToMoveFactor ( double friction ) ;
2016-03-01 15:47:10 +00:00
void P_GiveSecret ( AActor * actor , bool printmessage , bool playsound , int sectornum ) ;
//
// getNextSector()
// Return sector_t * of sector next to current.
// NULL if not two-sided line
//
inline sector_t * getNextSector ( line_t * line , const sector_t * sec )
{
if ( ! ( line - > flags & ML_TWOSIDED ) )
return NULL ;
return line - > frontsector = = sec ?
( line - > backsector ! = sec ? line - > backsector : NULL ) :
line - > frontsector ;
}
# include "p_tags.h"
class DLighting : public DSectorEffect
{
2016-04-10 16:29:23 +00:00
DECLARE_CLASS ( DLighting , DSectorEffect )
2016-03-01 15:47:10 +00:00
public :
2016-04-10 16:29:23 +00:00
DLighting ( sector_t * sector ) ;
2016-03-01 15:47:10 +00:00
protected :
2016-04-10 16:29:23 +00:00
DLighting ( ) ;
2016-03-01 15:47:10 +00:00
} ;
void EV_StartLightFlickering ( int tag , int upper , int lower ) ;
void EV_StartLightStrobing ( int tag , int upper , int lower , int utics , int ltics ) ;
void EV_StartLightStrobing ( int tag , int utics , int ltics ) ;
void EV_TurnTagLightsOff ( int tag ) ;
void EV_LightTurnOn ( int tag , int bright ) ;
2016-03-26 22:19:38 +00:00
void EV_LightTurnOnPartway ( int tag , double frac ) ; // killough 10/98
2016-03-01 15:47:10 +00:00
void EV_LightChange ( int tag , int value ) ;
void EV_StopLightEffect ( int tag ) ;
void P_SpawnGlowingLight ( sector_t * sector ) ;
void EV_StartLightGlowing ( int tag , int upper , int lower , int tics ) ;
void EV_StartLightFading ( int tag , int value , int tics ) ;
//
// P_SWITCH
//
# define BUTTONTIME TICRATE // 1 second, in ticks.
bool P_ChangeSwitchTexture ( side_t * side , int useAgain , BYTE special , bool * quest = NULL ) ;
2016-03-27 18:58:01 +00:00
bool P_CheckSwitchRange ( AActor * user , line_t * line , int sideno , const DVector3 * optpos = NULL ) ;
2016-03-01 15:47:10 +00:00
//
// P_PLATS
//
class DPlat : public DMovingFloor
{
DECLARE_CLASS ( DPlat , DMovingFloor )
public :
enum EPlatState
{
up ,
down ,
waiting ,
in_stasis
} ;
enum EPlatType
{
platPerpetualRaise ,
platDownWaitUpStay ,
platDownWaitUpStayStone ,
platUpWaitDownStay ,
platUpNearestWaitDownStay ,
platDownByValue ,
platUpByValue ,
platUpByValueStay ,
platRaiseAndStay ,
platToggle ,
platDownToNearestFloor ,
platDownToLowestCeiling ,
platRaiseAndStayLockout ,
} ;
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
bool IsLift ( ) const { return m_Type = = platDownWaitUpStay | | m_Type = = platDownWaitUpStayStone ; }
protected :
DPlat ( sector_t * sector ) ;
2016-03-30 07:41:46 +00:00
double m_Speed ;
double m_Low ;
double m_High ;
2016-03-01 15:47:10 +00:00
int m_Wait ;
int m_Count ;
EPlatState m_Status ;
EPlatState m_OldStatus ;
int m_Crush ;
int m_Tag ;
EPlatType m_Type ;
void PlayPlatSound ( const char * sound ) ;
void Reactivate ( ) ;
void Stop ( ) ;
private :
DPlat ( ) ;
friend bool EV_DoPlat ( int tag , line_t * line , EPlatType type ,
2016-03-30 07:41:46 +00:00
double height , double speed , int delay , int lip , int change ) ;
2016-03-01 15:47:10 +00:00
friend void EV_StopPlat ( int tag ) ;
friend void P_ActivateInStasis ( int tag ) ;
} ;
bool EV_DoPlat ( int tag , line_t * line , DPlat : : EPlatType type ,
2016-03-30 07:41:46 +00:00
double height , double speed , int delay , int lip , int change ) ;
2016-03-01 15:47:10 +00:00
void EV_StopPlat ( int tag ) ;
void P_ActivateInStasis ( int tag ) ;
//
// [RH]
// P_PILLAR
//
class DPillar : public DMover
{
DECLARE_CLASS ( DPillar , DMover )
HAS_OBJECT_POINTERS
public :
enum EPillar
{
pillarBuild ,
pillarOpen
} ;
2016-03-30 07:41:46 +00:00
DPillar ( sector_t * sector , EPillar type , double speed , double height ,
double height2 , int crush , bool hexencrush ) ;
2016-03-01 15:47:10 +00:00
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
void Destroy ( ) ;
protected :
EPillar m_Type ;
2016-03-30 07:41:46 +00:00
double m_FloorSpeed ;
double m_CeilingSpeed ;
double m_FloorTarget ;
double m_CeilingTarget ;
2016-03-01 15:47:10 +00:00
int m_Crush ;
bool m_Hexencrush ;
TObjPtr < DInterpolation > m_Interp_Ceiling ;
TObjPtr < DInterpolation > m_Interp_Floor ;
private :
DPillar ( ) ;
} ;
bool EV_DoPillar ( DPillar : : EPillar type , line_t * line , int tag ,
2016-03-30 07:41:46 +00:00
double speed , double height , double height2 , int crush , bool hexencrush ) ;
2016-03-01 15:47:10 +00:00
//
// P_DOORS
//
class DDoor : public DMovingCeiling
{
DECLARE_CLASS ( DDoor , DMovingCeiling )
public :
enum EVlDoor
{
doorClose ,
doorOpen ,
doorRaise ,
doorWaitRaise ,
doorCloseWaitOpen ,
doorWaitClose ,
} ;
DDoor ( sector_t * sector ) ;
2016-03-30 07:41:46 +00:00
DDoor ( sector_t * sec , EVlDoor type , double speed , int delay , int lightTag , int topcountdown ) ;
2016-03-01 15:47:10 +00:00
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
protected :
EVlDoor m_Type ;
2016-03-30 07:41:46 +00:00
double m_TopDist ;
double m_BotDist , m_OldFloorDist ;
2016-03-01 15:47:10 +00:00
vertex_t * m_BotSpot ;
2016-03-30 07:41:46 +00:00
double m_Speed ;
2016-03-01 15:47:10 +00:00
// 1 = up, 0 = waiting at top, -1 = down
int m_Direction ;
// tics to wait at the top
int m_TopWait ;
// (keep in case a door going down is reset)
// when it reaches 0, start going down
int m_TopCountdown ;
int m_LightTag ;
void DoorSound ( bool raise , class DSeqNode * curseq = NULL ) const ;
friend bool EV_DoDoor ( DDoor : : EVlDoor type , line_t * line , AActor * thing ,
2016-03-30 07:41:46 +00:00
int tag , double speed , int delay , int lock ,
2016-03-01 15:47:10 +00:00
int lightTag , bool boomgen , int topcountdown ) ;
private :
DDoor ( ) ;
} ;
bool EV_DoDoor ( DDoor : : EVlDoor type , line_t * line , AActor * thing ,
2016-03-30 07:41:46 +00:00
int tag , double speed , int delay , int lock ,
2016-03-01 15:47:10 +00:00
int lightTag , bool boomgen = false , int topcountdown = 0 ) ;
2016-03-20 09:52:10 +00:00
2016-03-01 15:47:10 +00:00
class DAnimatedDoor : public DMovingCeiling
{
DECLARE_CLASS ( DAnimatedDoor , DMovingCeiling )
public :
DAnimatedDoor ( sector_t * sector ) ;
DAnimatedDoor ( sector_t * sec , line_t * line , int speed , int delay , FDoorAnimation * anim ) ;
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
bool StartClosing ( ) ;
protected :
line_t * m_Line1 , * m_Line2 ;
int m_Frame ;
FDoorAnimation * m_DoorAnim ;
int m_Timer ;
2016-03-30 07:41:46 +00:00
double m_BotDist ;
2016-03-01 15:47:10 +00:00
int m_Status ;
enum
{
Opening ,
Waiting ,
Closing ,
Dead
} ;
int m_Speed ;
int m_Delay ;
bool m_SetBlocking1 , m_SetBlocking2 ;
friend bool EV_SlidingDoor ( line_t * line , AActor * thing , int tag , int speed , int delay ) ;
private :
DAnimatedDoor ( ) ;
} ;
bool EV_SlidingDoor ( line_t * line , AActor * thing , int tag , int speed , int delay ) ;
//
// P_CEILNG
//
// [RH] Changed these
class DCeiling : public DMovingCeiling
{
DECLARE_CLASS ( DCeiling , DMovingCeiling )
public :
enum ECeiling
{
ceilLowerByValue ,
ceilRaiseByValue ,
ceilMoveToValue ,
ceilLowerToHighestFloor ,
ceilLowerInstant ,
ceilRaiseInstant ,
ceilCrushAndRaise ,
ceilLowerAndCrush ,
2016-03-07 16:24:30 +00:00
ceil_placeholder ,
2016-03-01 15:47:10 +00:00
ceilCrushRaiseAndStay ,
ceilRaiseToNearest ,
ceilLowerToLowest ,
ceilLowerToFloor ,
// The following are only used by Generic_Ceiling
ceilRaiseToHighest ,
ceilLowerToHighest ,
ceilRaiseToLowest ,
ceilLowerToNearest ,
ceilRaiseToHighestFloor ,
ceilRaiseToFloor ,
ceilRaiseByTexture ,
ceilLowerByTexture ,
genCeilingChg0 ,
genCeilingChgT ,
genCeilingChg
} ;
2016-03-25 01:08:22 +00:00
enum class ECrushMode
{
crushDoom = 0 ,
crushHexen = 1 ,
crushSlowdown = 2
} ;
2016-03-01 15:47:10 +00:00
DCeiling ( sector_t * sec ) ;
2016-03-30 07:41:46 +00:00
DCeiling ( sector_t * sec , double speed1 , double speed2 , int silent ) ;
2016-03-01 15:47:10 +00:00
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
protected :
ECeiling m_Type ;
2016-03-30 07:41:46 +00:00
double m_BottomHeight ;
double m_TopHeight ;
double m_Speed ;
double m_Speed1 ; // [RH] dnspeed of crushers
double m_Speed2 ; // [RH] upspeed of crushers
2016-03-01 15:47:10 +00:00
int m_Crush ;
2016-03-25 01:08:22 +00:00
ECrushMode m_CrushMode ;
2016-03-01 15:47:10 +00:00
int m_Silent ;
int m_Direction ; // 1 = up, 0 = waiting, -1 = down
// [RH] Need these for BOOM-ish transferring ceilings
FTextureID m_Texture ;
secspecial_t m_NewSpecial ;
// ID
int m_Tag ;
int m_OldDirection ;
void PlayCeilingSound ( ) ;
private :
DCeiling ( ) ;
2016-04-09 10:07:34 +00:00
friend bool P_CreateCeiling ( sector_t * sec , DCeiling : : ECeiling type , line_t * line , int tag , double speed , double speed2 , double height , int crush , int silent , int change , DCeiling : : ECrushMode hexencrush ) ;
2016-03-01 15:47:10 +00:00
friend bool EV_CeilingCrushStop ( int tag ) ;
friend void P_ActivateInStasisCeiling ( int tag ) ;
} ;
2016-04-09 10:07:34 +00:00
bool P_CreateCeiling ( sector_t * sec , DCeiling : : ECeiling type , line_t * line , int tag , double speed , double speed2 , double height , int crush , int silent , int change , DCeiling : : ECrushMode hexencrush ) ;
bool EV_DoCeiling ( DCeiling : : ECeiling type , line_t * line , int tag , double speed , double speed2 , double height , int crush , int silent , int change , DCeiling : : ECrushMode hexencrush = DCeiling : : ECrushMode : : crushDoom ) ;
2016-03-28 15:41:13 +00:00
2016-03-01 15:47:10 +00:00
bool EV_CeilingCrushStop ( int tag ) ;
void P_ActivateInStasisCeiling ( int tag ) ;
//
// P_FLOOR
//
class DFloor : public DMovingFloor
{
DECLARE_CLASS ( DFloor , DMovingFloor )
public :
enum EFloor
{
floorLowerToLowest ,
floorLowerToNearest ,
floorLowerToHighest ,
floorLowerByValue ,
floorRaiseByValue ,
floorRaiseToHighest ,
floorRaiseToNearest ,
floorRaiseAndCrush ,
floorRaiseAndCrushDoom ,
floorCrushStop ,
floorLowerInstant ,
floorRaiseInstant ,
floorMoveToValue ,
floorRaiseToLowestCeiling ,
floorRaiseByTexture ,
floorLowerAndChange ,
floorRaiseAndChange ,
floorRaiseToLowest ,
floorRaiseToCeiling ,
floorLowerToLowestCeiling ,
floorLowerByTexture ,
floorLowerToCeiling ,
donutRaise ,
buildStair ,
waitStair ,
resetStair ,
// Not to be used as parameters to EV_DoFloor()
genFloorChg0 ,
genFloorChgT ,
genFloorChg
} ;
// [RH] Changed to use Hexen-ish specials
enum EStair
{
buildUp ,
buildDown
} ;
enum EStairType
{
stairUseSpecials = 1 ,
stairSync = 2
} ;
DFloor ( sector_t * sec ) ;
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
2016-03-30 07:41:46 +00:00
//protected:
2016-03-01 15:47:10 +00:00
EFloor m_Type ;
int m_Crush ;
bool m_Hexencrush ;
int m_Direction ;
secspecial_t m_NewSpecial ;
FTextureID m_Texture ;
2016-03-30 07:41:46 +00:00
double m_FloorDestDist ;
double m_Speed ;
2016-03-01 15:47:10 +00:00
// [RH] New parameters used to reset and delay stairs
2016-03-30 07:41:46 +00:00
double m_OrgDist ;
2016-03-01 15:47:10 +00:00
int m_ResetCount ;
int m_Delay ;
int m_PauseTime ;
int m_StepTime ;
int m_PerStepTime ;
void StartFloorSound ( ) ;
void SetFloorChangeType ( sector_t * sec , int change ) ;
friend bool EV_BuildStairs ( int tag , DFloor : : EStair type , line_t * line ,
2016-03-30 07:41:46 +00:00
double stairsize , double speed , int delay , int reset , int igntxt ,
2016-03-01 15:47:10 +00:00
int usespecials ) ;
friend bool EV_DoFloor ( DFloor : : EFloor floortype , line_t * line , int tag ,
2016-03-30 07:41:46 +00:00
double speed , double height , int crush , int change , bool hexencrush , bool hereticlower ) ;
2016-03-01 15:47:10 +00:00
friend bool EV_FloorCrushStop ( int tag ) ;
2016-03-30 07:41:46 +00:00
friend bool EV_DoDonut ( int tag , line_t * line , double pillarspeed , double slimespeed ) ;
2016-03-01 15:47:10 +00:00
private :
DFloor ( ) ;
} ;
2016-04-09 10:07:34 +00:00
bool P_CreateFloor ( sector_t * sec , DFloor : : EFloor floortype , line_t * line ,
double speed , double height , int crush , int change , bool hexencrush , bool hereticlower ) ;
2016-03-01 15:47:10 +00:00
bool EV_BuildStairs ( int tag , DFloor : : EStair type , line_t * line ,
2016-03-30 07:41:46 +00:00
double stairsize , double speed , int delay , int reset , int igntxt ,
2016-03-01 15:47:10 +00:00
int usespecials ) ;
2016-03-30 07:41:46 +00:00
bool EV_DoFloor ( DFloor : : EFloor floortype , line_t * line , int tag ,
double speed , double height , int crush , int change , bool hexencrush , bool hereticlower = false ) ;
2016-03-01 15:47:10 +00:00
bool EV_FloorCrushStop ( int tag ) ;
2016-03-30 07:41:46 +00:00
bool EV_DoDonut ( int tag , line_t * line , double pillarspeed , double slimespeed ) ;
2016-03-01 15:47:10 +00:00
class DElevator : public DMover
{
DECLARE_CLASS ( DElevator , DMover )
HAS_OBJECT_POINTERS
public :
enum EElevator
{
elevateUp ,
elevateDown ,
elevateCurrent ,
// [RH] For FloorAndCeiling_Raise/Lower
elevateRaise ,
elevateLower
} ;
DElevator ( sector_t * sec ) ;
void Destroy ( ) ;
void Serialize ( FArchive & arc ) ;
void Tick ( ) ;
protected :
EElevator m_Type ;
int m_Direction ;
2016-03-30 07:41:46 +00:00
double m_FloorDestDist ;
double m_CeilingDestDist ;
double m_Speed ;
2016-03-01 15:47:10 +00:00
TObjPtr < DInterpolation > m_Interp_Ceiling ;
TObjPtr < DInterpolation > m_Interp_Floor ;
void StartFloorSound ( ) ;
2016-03-30 07:41:46 +00:00
friend bool EV_DoElevator ( line_t * line , DElevator : : EElevator type , double speed , double height , int tag ) ;
2016-03-01 15:47:10 +00:00
private :
DElevator ( ) ;
} ;
2016-03-30 07:41:46 +00:00
bool EV_DoElevator ( line_t * line , DElevator : : EElevator type , double speed , double height , int tag ) ;
2016-03-01 15:47:10 +00:00
class DWaggleBase : public DMover
{
DECLARE_CLASS ( DWaggleBase , DMover )
HAS_OBJECT_POINTERS
public :
DWaggleBase ( sector_t * sec ) ;
void Serialize ( FArchive & arc ) ;
protected :
2016-03-30 07:41:46 +00:00
double m_OriginalDist ;
double m_Accumulator ;
double m_AccDelta ;
double m_TargetScale ;
double m_Scale ;
double m_ScaleDelta ;
2016-03-01 15:47:10 +00:00
int m_Ticker ;
int m_State ;
TObjPtr < DInterpolation > m_Interpolation ;
friend bool EV_StartWaggle ( int tag , line_t * line , int height , int speed ,
int offset , int timer , bool ceiling ) ;
void DoWaggle ( bool ceiling ) ;
void Destroy ( ) ;
DWaggleBase ( ) ;
} ;
bool EV_StartWaggle ( int tag , line_t * line , int height , int speed ,
int offset , int timer , bool ceiling ) ;
class DFloorWaggle : public DWaggleBase
{
DECLARE_CLASS ( DFloorWaggle , DWaggleBase )
public :
DFloorWaggle ( sector_t * sec ) ;
void Tick ( ) ;
private :
DFloorWaggle ( ) ;
} ;
class DCeilingWaggle : public DWaggleBase
{
DECLARE_CLASS ( DCeilingWaggle , DWaggleBase )
public :
DCeilingWaggle ( sector_t * sec ) ;
void Tick ( ) ;
private :
DCeilingWaggle ( ) ;
} ;
//jff 3/15/98 pure texture/type change for better generalized support
enum EChange
{
trigChangeOnly ,
numChangeOnly ,
} ;
bool EV_DoChange ( line_t * line , EChange changetype , int tag ) ;
//
// P_TELEPT
//
enum
{
TELF_DESTFOG = 1 ,
TELF_SOURCEFOG = 2 ,
TELF_KEEPORIENTATION = 4 ,
TELF_KEEPVELOCITY = 8 ,
TELF_KEEPHEIGHT = 16 ,
} ;
2016-03-23 09:42:41 +00:00
//Spawns teleport fog. Pass the actor to pluck TeleFogFromType and TeleFogToType. 'from' determines if this is the fog to spawn at the old position (true) or new (false).
void P_SpawnTeleportFog ( AActor * mobj , const DVector3 & pos , bool beforeTele = true , bool setTarget = false ) ;
2016-04-05 20:27:11 +00:00
bool P_Teleport ( AActor * thing , DVector3 pos , DAngle angle , int flags ) ;
2016-03-01 15:47:10 +00:00
bool EV_Teleport ( int tid , int tag , line_t * line , int side , AActor * thing , int flags ) ;
bool EV_SilentLineTeleport ( line_t * line , int side , AActor * thing , int id , INTBOOL reverse ) ;
bool EV_TeleportOther ( int other_tid , int dest_tid , bool fog ) ;
bool EV_TeleportGroup ( int group_tid , AActor * victim , int source_tid , int dest_tid , bool moveSource , bool fog ) ;
bool EV_TeleportSector ( int tag , int source_tid , int dest_tid , bool fog , int group_tid ) ;
//
// [RH] ACS (see also p_acs.h)
//
# define ACS_BACKSIDE 1
# define ACS_ALWAYS 2
# define ACS_WANTRESULT 4
# define ACS_NET 8
int P_StartScript ( AActor * who , line_t * where , int script , const char * map , const int * args , int argcount , int flags ) ;
void P_SuspendScript ( int script , const char * map ) ;
void P_TerminateScript ( int script , const char * map ) ;
void P_DoDeferedScripts ( void ) ;
//
// [RH] p_quake.c
//
2016-03-23 13:03:10 +00:00
bool P_StartQuakeXYZ ( AActor * activator , int tid , int intensityX , int intensityY , int intensityZ , int duration , int damrad , int tremrad , FSoundID quakesfx , int flags , double waveSpeedX , double waveSpeedY , double waveSpeedZ , int falloff , int highpoint ) ;
2016-03-01 15:47:10 +00:00
bool P_StartQuake ( AActor * activator , int tid , int intensity , int duration , int damrad , int tremrad , FSoundID quakesfx ) ;
# endif