2014-03-15 16:59:03 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
// Copyright (C) 1998-2000 by DooM Legacy Team.
|
2023-03-31 12:53:31 +00:00
|
|
|
// Copyright (C) 1999-2023 by Sonic Team Junior.
|
2014-03-15 16:59:03 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file p_spec.h
|
|
|
|
/// \brief Implements special effects:
|
|
|
|
/// Texture animation, height or lighting changes
|
|
|
|
/// according to adjacent sectors, respective
|
|
|
|
/// utility functions, etc.
|
|
|
|
|
|
|
|
#ifndef __P_SPEC__
|
|
|
|
#define __P_SPEC__
|
|
|
|
|
2017-04-26 17:16:01 +00:00
|
|
|
extern mobj_t *skyboxmo[2]; // current skybox mobjs: 0 = viewpoint, 1 = centerpoint
|
|
|
|
extern mobj_t *skyboxviewpnts[16]; // array of MT_SKYBOX viewpoint mobjs
|
|
|
|
extern mobj_t *skyboxcenterpnts[16]; // array of MT_SKYBOX centerpoint mobjs
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2023-08-23 20:49:29 +00:00
|
|
|
extern size_t secportalcount;
|
|
|
|
extern size_t secportalcapacity;
|
|
|
|
extern sectorportal_t *secportals;
|
|
|
|
|
2021-06-30 21:50:54 +00:00
|
|
|
// Amount (dx, dy) vector linedef is shifted right to get scroll amount
|
|
|
|
#define SCROLL_SHIFT 5
|
|
|
|
|
2021-12-14 17:50:47 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMM_DOUBLESIZE = 1,
|
|
|
|
TMM_SILENT = 1<<1,
|
|
|
|
TMM_ALLOWYAWCONTROL = 1<<2,
|
|
|
|
TMM_SWING = 1<<3,
|
|
|
|
TMM_MACELINKS = 1<<4,
|
|
|
|
TMM_CENTERLINK = 1<<5,
|
|
|
|
TMM_CLIP = 1<<6,
|
|
|
|
TMM_ALWAYSTHINK = 1<<7,
|
|
|
|
} textmapmaceflags_t;
|
|
|
|
|
2021-12-21 20:08:40 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMDA_BOTTOMOFFSET = 1,
|
|
|
|
TMDA_BOTTOM = 1<<1,
|
|
|
|
TMDA_MIDDLE = 1<<2,
|
|
|
|
TMDA_TOP = 1<<3,
|
|
|
|
} textmapdronealignment_t;
|
|
|
|
|
2021-12-27 06:32:57 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMSF_RETRACTED = 1,
|
|
|
|
TMSF_INTANGIBLE = 1<<1,
|
|
|
|
} textmapspikeflags_t;
|
|
|
|
|
2021-12-27 16:36:16 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFF_AIMLESS = 1,
|
|
|
|
TMFF_STATIONARY = 1<<1,
|
|
|
|
TMFF_HOP = 1<<2,
|
|
|
|
} textmapflickyflags_t;
|
|
|
|
|
2021-12-27 17:52:46 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFH_NOFLAME = 1,
|
|
|
|
TMFH_CORONA = 1<<1,
|
|
|
|
} textmapflameholderflags_t;
|
|
|
|
|
2021-12-27 20:28:42 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMDS_NOGRAVITY = 1,
|
|
|
|
TMDS_ROTATEEXTRA = 1<<1,
|
|
|
|
} textmapdiagonalspringflags_t;
|
|
|
|
|
2021-12-28 12:14:48 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMF_INVISIBLE = 1,
|
|
|
|
TMF_NODISTANCECHECK = 1<<1,
|
|
|
|
} textmapfanflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMGD_BACK = 0,
|
|
|
|
TMGD_RIGHT = 1,
|
|
|
|
TMGD_LEFT = 2,
|
|
|
|
} textmapguarddirection_t;
|
|
|
|
|
2021-12-28 13:01:45 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMNI_BONUSONLY = 1,
|
|
|
|
TMNI_REVEAL = 1<<1,
|
|
|
|
} textmapnightsitem_t;
|
|
|
|
|
2021-12-28 13:28:36 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMP_NORMAL = 0,
|
|
|
|
TMP_SLIDE = 1,
|
|
|
|
TMP_IMMOVABLE = 2,
|
|
|
|
TMP_CLASSIC = 3,
|
|
|
|
} textmappushabletype_t;
|
|
|
|
|
2021-12-28 15:38:52 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMED_NONE = 0,
|
|
|
|
TMED_RIGHT = 1,
|
|
|
|
TMED_LEFT = 2,
|
|
|
|
} textmapeggrobodirection_t;
|
|
|
|
|
2021-12-28 16:54:26 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMMR_SAME = 0,
|
|
|
|
TMMR_WEAK = 1,
|
|
|
|
TMMR_STRONG = 2,
|
|
|
|
} textmapmonitorrespawn_t;
|
|
|
|
|
2021-12-28 21:52:24 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMF_GRAYSCALE = 1,
|
|
|
|
TMF_SKIPINTRO = 1<<1,
|
|
|
|
} textmapfangflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMB_NODEATHFLING = 1,
|
|
|
|
TMB_BARRIER = 1<<1,
|
|
|
|
} textmapbrakflags_t;
|
|
|
|
|
2021-12-29 22:03:37 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMEF_SKIPTALLY = 1,
|
|
|
|
TMEF_EMERALDCHECK = 1<<1,
|
|
|
|
} textmapexitflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMSP_NOTELEPORT = 1,
|
|
|
|
TMSP_FORCESPIN = 1<<1,
|
|
|
|
} textmapspeedpadflags_t;
|
|
|
|
|
2020-04-18 16:02:43 +00:00
|
|
|
//FOF flags
|
|
|
|
typedef enum
|
|
|
|
{
|
2020-06-12 14:45:18 +00:00
|
|
|
TMFA_NOPLANES = 1,
|
|
|
|
TMFA_NOSIDES = 1<<1,
|
|
|
|
TMFA_INSIDES = 1<<2,
|
|
|
|
TMFA_ONLYINSIDES = 1<<3,
|
|
|
|
TMFA_NOSHADE = 1<<4,
|
|
|
|
TMFA_SPLAT = 1<<5,
|
|
|
|
} textmapfofappearance_t;
|
2020-04-18 16:02:43 +00:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFT_INTANGIBLETOP = 1,
|
|
|
|
TMFT_INTANGIBLEBOTTOM = 1<<1,
|
|
|
|
TMFT_DONTBLOCKPLAYER = 1<<2,
|
|
|
|
TMFT_VISIBLEFROMINSIDE = (TMFT_INTANGIBLETOP|TMFT_INTANGIBLEBOTTOM|TMFT_DONTBLOCKPLAYER),
|
|
|
|
TMFT_DONTBLOCKOTHERS = 1<<3,
|
2020-06-12 14:45:18 +00:00
|
|
|
TMFT_INTANGIBLE = (TMFT_DONTBLOCKPLAYER|TMFT_DONTBLOCKOTHERS),
|
2020-04-18 16:02:43 +00:00
|
|
|
} textmapfoftangibility_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2020-06-12 07:00:06 +00:00
|
|
|
TMFW_NOSIDES = 1,
|
|
|
|
TMFW_DOUBLESHADOW = 1<<1,
|
|
|
|
TMFW_COLORMAPONLY = 1<<2,
|
|
|
|
TMFW_NORIPPLE = 1<<3,
|
|
|
|
TMFW_GOOWATER = 1<<4,
|
|
|
|
TMFW_SPLAT = 1<<5,
|
2020-04-18 16:02:43 +00:00
|
|
|
} textmapfofwater_t;
|
|
|
|
|
2020-04-27 08:29:29 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFB_REVERSE = 1,
|
|
|
|
TMFB_SPINDASH = 1<<1,
|
|
|
|
TMFB_DYNAMIC = 1<<2,
|
|
|
|
} textmapfofbobbing_t;
|
|
|
|
|
2020-04-18 16:02:43 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2020-06-12 07:28:41 +00:00
|
|
|
TMFC_NOSHADE = 1,
|
|
|
|
TMFC_NORETURN = 1<<1,
|
|
|
|
TMFC_AIRBOB = 1<<2,
|
|
|
|
TMFC_FLOATBOB = 1<<3,
|
|
|
|
TMFC_SPLAT = 1<<4,
|
2020-04-18 16:02:43 +00:00
|
|
|
} textmapfofcrumbling_t;
|
|
|
|
|
2020-04-27 09:52:31 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFR_REVERSE = 1,
|
|
|
|
TMFR_SPINDASH = 1<<1,
|
|
|
|
} textmapfofrising_t;
|
|
|
|
|
2020-04-18 16:02:43 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFM_BRICK = 1,
|
|
|
|
TMFM_INVISIBLE = 1<<1,
|
|
|
|
} textmapfofmario_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFB_TOUCH,
|
|
|
|
TMFB_SPIN,
|
|
|
|
TMFB_REGULAR,
|
|
|
|
TMFB_STRONG,
|
|
|
|
} textmapfofbusttype_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFB_PUSHABLES = 1,
|
|
|
|
TMFB_EXECUTOR = 1<<1,
|
|
|
|
TMFB_ONLYBOTTOM = 1<<2,
|
2020-06-12 08:31:26 +00:00
|
|
|
TMFB_SPLAT = 1<<3,
|
2020-04-18 16:02:43 +00:00
|
|
|
} textmapfofbustflags_t;
|
|
|
|
|
2020-06-12 08:17:52 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFL_NOBOSSES = 1,
|
|
|
|
TMFL_SPLAT = 1<<1,
|
|
|
|
} textmapfoflaserflags_t;
|
|
|
|
|
2021-12-09 06:30:55 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMT_CONTINUOUS = 0,
|
|
|
|
TMT_ONCE = 1,
|
|
|
|
TMT_EACHTIMEMASK = TMT_ONCE,
|
|
|
|
TMT_EACHTIMEENTER = 2,
|
|
|
|
TMT_EACHTIMEENTERANDEXIT = 3,
|
|
|
|
} textmaptriggertype_t;
|
|
|
|
|
2021-12-09 17:15:27 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMXT_CONTINUOUS = 0,
|
|
|
|
TMXT_EACHTIMEMASK = TMXT_CONTINUOUS,
|
|
|
|
TMXT_EACHTIMEENTER = 1,
|
|
|
|
TMXT_EACHTIMEENTERANDEXIT = 2,
|
|
|
|
} textmapxtriggertype_t;
|
|
|
|
|
2021-12-09 17:56:50 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2021-12-09 19:37:39 +00:00
|
|
|
TMF_HASALL = 0,
|
|
|
|
TMF_HASANY = 1,
|
|
|
|
TMF_HASEXACTLY = 2,
|
|
|
|
TMF_DOESNTHAVEALL = 3,
|
|
|
|
TMF_DOESNTHAVEANY = 4,
|
|
|
|
} textmapflagcheck_t;
|
2021-12-09 17:56:50 +00:00
|
|
|
|
2021-12-09 07:49:50 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMT_RED = 0,
|
|
|
|
TMT_BLUE = 1,
|
|
|
|
} textmapteam_t;
|
|
|
|
|
2021-09-23 08:21:53 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMC_EQUAL = 0,
|
|
|
|
TMC_LTE = 1,
|
|
|
|
TMC_GTE = 2,
|
|
|
|
} textmapcomparison_t;
|
|
|
|
|
2022-09-17 00:14:25 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMG_NORMAL = 0,
|
|
|
|
TMG_REVERSE = 1,
|
|
|
|
TMG_TEMPREVERSE = 2,
|
|
|
|
} textmapgravity_t;
|
|
|
|
|
2021-09-23 08:21:53 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMNP_FASTEST = 0,
|
|
|
|
TMNP_SLOWEST = 1,
|
|
|
|
TMNP_TRIGGERER = 2,
|
|
|
|
} textmapnightsplayer_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMN_ALWAYS = 0,
|
|
|
|
TMN_FROMNONIGHTS = 1,
|
|
|
|
TMN_FROMNIGHTS = 2,
|
|
|
|
} textmapnighterizeoptions_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMN_BONUSLAPS = 1,
|
|
|
|
TMN_LEVELCOMPLETION = 1<<2,
|
|
|
|
} textmapnightserizeflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMD_ALWAYS = 0,
|
|
|
|
TMD_NOBODYNIGHTS = 1,
|
|
|
|
TMD_SOMEBODYNIGHTS = 2,
|
|
|
|
} textmapdenighterizeoptions_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMS_IFENOUGH = 0,
|
|
|
|
TMS_IFNOTENOUGH = 1,
|
|
|
|
TMS_ALWAYS = 2,
|
|
|
|
} textmapspherescheck_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMI_BONUSLAPS = 1,
|
|
|
|
TMI_ENTER = 1<<2,
|
|
|
|
} textmapideyacaptureflags_t;
|
|
|
|
|
2021-06-27 10:36:46 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMP_FLOOR = 0,
|
|
|
|
TMP_CEILING = 1,
|
|
|
|
TMP_BOTH = 2,
|
|
|
|
} textmapplanes_t;
|
|
|
|
|
2021-09-21 09:30:34 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMT_ADD = 0,
|
|
|
|
TMT_REMOVE = 1,
|
|
|
|
TMT_REPLACEFIRST = 2,
|
2022-05-29 10:24:14 +00:00
|
|
|
TMT_TRIGGERTAG = 3,
|
2021-09-21 09:30:34 +00:00
|
|
|
} textmaptagoptions_t;
|
|
|
|
|
2021-09-21 13:31:53 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMT_SILENT = 1,
|
|
|
|
TMT_KEEPANGLE = 1<<1,
|
|
|
|
TMT_KEEPMOMENTUM = 1<<2,
|
|
|
|
TMT_RELATIVE = 1<<3,
|
|
|
|
} textmapteleportflags_t;
|
|
|
|
|
2021-09-22 06:57:48 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMM_ALLPLAYERS = 1,
|
|
|
|
TMM_OFFSET = 1<<1,
|
|
|
|
TMM_FADE = 1<<2,
|
|
|
|
TMM_NORELOAD = 1<<3,
|
|
|
|
TMM_FORCERESET = 1<<4,
|
|
|
|
TMM_NOLOOP = 1<<5,
|
|
|
|
} textmapmusicflags_t;
|
|
|
|
|
2021-09-21 08:14:55 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMSS_TRIGGERMOBJ = 0,
|
|
|
|
TMSS_TRIGGERSECTOR = 1,
|
|
|
|
TMSS_NOWHERE = 2,
|
|
|
|
TMSS_TAGGEDSECTOR = 3,
|
|
|
|
} textmapsoundsource_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMSL_EVERYONE = 0,
|
|
|
|
TMSL_TRIGGERER = 1,
|
|
|
|
TMSL_TAGGEDSECTOR = 2,
|
|
|
|
} textmapsoundlistener_t;
|
|
|
|
|
2021-09-20 05:54:10 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TML_SECTOR = 0,
|
|
|
|
TML_FLOOR = 1,
|
|
|
|
TML_CEILING = 2,
|
|
|
|
} textmaplightareas_t;
|
|
|
|
|
2021-09-19 12:23:04 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMLC_NOSECTOR = 1,
|
|
|
|
TMLC_NOFLOOR = 1<<1,
|
|
|
|
TMLC_NOCEILING = 1<<2,
|
|
|
|
} textmaplightcopyflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2021-09-19 21:12:30 +00:00
|
|
|
TMF_RELATIVE = 1,
|
|
|
|
TMF_OVERRIDE = 1<<1,
|
|
|
|
TMF_TICBASED = 1<<2,
|
2021-09-19 12:23:04 +00:00
|
|
|
} textmapfadeflags_t;
|
|
|
|
|
2021-09-19 15:07:08 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMB_USETARGET = 1,
|
|
|
|
TMB_SYNC = 1<<1,
|
|
|
|
} textmapblinkinglightflags_t;
|
|
|
|
|
2021-09-22 05:32:39 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFR_NORETURN = 1,
|
|
|
|
TMFR_CHECKFLAG = 1<<1,
|
|
|
|
} textmapfofrespawnflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMST_RELATIVE = 1,
|
|
|
|
TMST_DONTDOTRANSLUCENT = 1<<1,
|
|
|
|
} textmapsettranslucencyflags_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMFT_RELATIVE = 1,
|
|
|
|
TMFT_OVERRIDE = 1<<1,
|
|
|
|
TMFT_TICBASED = 1<<2,
|
|
|
|
TMFT_IGNORECOLLISION = 1<<3,
|
|
|
|
TMFT_GHOSTFADE = 1<<4,
|
|
|
|
TMFT_DONTDOTRANSLUCENT = 1<<5,
|
|
|
|
TMFT_DONTDOEXISTS = 1<<6,
|
|
|
|
TMFT_DONTDOLIGHTING = 1<<7,
|
|
|
|
TMFT_DONTDOCOLORMAP = 1<<8,
|
|
|
|
TMFT_USEEXACTALPHA = 1<<9,
|
|
|
|
} textmapfadetranslucencyflags_t;
|
|
|
|
|
2021-09-20 12:25:07 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMS_VIEWPOINT = 0,
|
|
|
|
TMS_CENTERPOINT = 1,
|
|
|
|
TMS_BOTH = 2,
|
|
|
|
} textmapskybox_t;
|
|
|
|
|
2021-09-21 07:05:40 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMP_CLOSE = 1,
|
|
|
|
TMP_RUNPOSTEXEC = 1<<1,
|
|
|
|
TMP_CALLBYNAME = 1<<2,
|
|
|
|
TMP_KEEPCONTROLS = 1<<3,
|
|
|
|
TMP_KEEPREALTIME = 1<<4,
|
|
|
|
//TMP_ALLPLAYERS = 1<<5,
|
|
|
|
//TMP_FREEZETHINKERS = 1<<6,
|
|
|
|
} textmappromptflags_t;
|
|
|
|
|
2021-12-30 18:28:01 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMF_NOCHANGE = 0,
|
|
|
|
TMF_ADD = 1,
|
|
|
|
TMF_REMOVE = 2,
|
|
|
|
} textmapsetflagflags_t;
|
|
|
|
|
2021-06-30 21:50:54 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMSD_FRONT = 0,
|
|
|
|
TMSD_BACK = 1,
|
|
|
|
TMSD_FRONTBACK = 2,
|
|
|
|
} textmapsides_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMS_SCROLLCARRY = 0,
|
|
|
|
TMS_SCROLLONLY = 1,
|
|
|
|
TMS_CARRYONLY = 2,
|
|
|
|
} textmapscroll_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMST_REGULAR = 0,
|
|
|
|
TMST_ACCELERATIVE = 1,
|
|
|
|
TMST_DISPLACEMENT = 2,
|
|
|
|
TMST_TYPEMASK = 3,
|
2021-06-30 22:47:56 +00:00
|
|
|
TMST_NONEXCLUSIVE = 4,
|
2021-06-30 21:50:54 +00:00
|
|
|
} textmapscrolltype_t;
|
|
|
|
|
2021-07-01 18:35:13 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMPF_SLIDE = 1,
|
|
|
|
TMPF_NONEXCLUSIVE = 1<<1,
|
|
|
|
} textmappusherflags_t;
|
|
|
|
|
2021-12-16 06:00:30 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMPP_NOZFADE = 1,
|
|
|
|
TMPP_PUSHZ = 1<<1,
|
|
|
|
TMPP_NONEXCLUSIVE = 1<<2,
|
|
|
|
} textmappointpushflags_t;
|
|
|
|
|
2022-01-04 18:33:17 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TMB_TRANSLUCENT = 0,
|
|
|
|
TMB_ADD = 1,
|
|
|
|
TMB_SUBTRACT = 2,
|
|
|
|
TMB_REVERSESUBTRACT = 3,
|
|
|
|
TMB_MODULATE = 4,
|
|
|
|
} textmapblendmodes_t;
|
|
|
|
|
2023-08-24 03:51:52 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2023-08-24 04:09:46 +00:00
|
|
|
TMSECPORTAL_NORMAL = 0,
|
|
|
|
TMSECPORTAL_COPIED = 1,
|
|
|
|
TMSECPORTAL_SKYBOX = 2,
|
|
|
|
TMSECPORTAL_PLANE = 3,
|
|
|
|
TMSECPORTAL_HORIZON = 4,
|
|
|
|
TMSECPORTAL_COPY_PORTAL_TO_LINE = 5,
|
2023-08-24 20:36:38 +00:00
|
|
|
TMSECPORTAL_INTERACTIVE = 6, // unimplemented
|
2023-08-24 03:51:52 +00:00
|
|
|
// The two portal types below are new to SRB2
|
2023-08-24 04:09:46 +00:00
|
|
|
TMSECPORTAL_SECTOR = 7,
|
|
|
|
TMSECPORTAL_OBJECT = 8
|
2023-08-24 03:51:52 +00:00
|
|
|
} textmapsecportaltype_t;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// GETSECSPECIAL (specialval, section)
|
|
|
|
//
|
|
|
|
// Pulls out the special # from a particular section.
|
|
|
|
//
|
|
|
|
#define GETSECSPECIAL(i,j) ((i >> ((j-1)*4))&15)
|
|
|
|
|
2020-01-01 15:01:07 +00:00
|
|
|
// This must be updated whenever we up the max flat size - quicker to assume rather than figuring out the sqrt of the specific flat's filesize.
|
|
|
|
#define MAXFLATSIZE (2048<<FRACBITS)
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
// at game start
|
|
|
|
void P_InitPicAnims(void);
|
|
|
|
|
|
|
|
// at map load
|
2017-04-24 19:33:39 +00:00
|
|
|
void P_InitSpecials(void);
|
2021-12-29 07:12:28 +00:00
|
|
|
void P_ApplyFlatAlignment(sector_t* sector, angle_t flatangle, fixed_t xoffs, fixed_t yoffs, boolean floor, boolean ceiling);
|
2021-12-30 17:19:42 +00:00
|
|
|
fixed_t P_GetSectorGravityFactor(sector_t *sec);
|
2019-12-28 11:48:32 +00:00
|
|
|
void P_SpawnSpecials(boolean fromnetsave);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
// every tic
|
|
|
|
void P_UpdateSpecials(void);
|
2021-12-08 20:07:26 +00:00
|
|
|
sector_t *P_MobjTouchingSectorSpecial(mobj_t *mo, INT32 section, INT32 number);
|
2023-01-01 10:31:44 +00:00
|
|
|
sector_t *P_ThingOnSpecial3DFloor(mobj_t *mo);
|
2021-12-30 23:03:24 +00:00
|
|
|
sector_t *P_MobjTouchingSectorSpecialFlag(mobj_t *mo, sectorspecialflags_t flag);
|
2014-03-15 16:59:03 +00:00
|
|
|
sector_t *P_PlayerTouchingSectorSpecial(player_t *player, INT32 section, INT32 number);
|
2021-12-30 23:03:24 +00:00
|
|
|
sector_t *P_PlayerTouchingSectorSpecialFlag(player_t *player, sectorspecialflags_t flag);
|
2014-03-15 16:59:03 +00:00
|
|
|
void P_PlayerInSpecialSector(player_t *player);
|
2021-12-31 10:39:34 +00:00
|
|
|
void P_CheckMobjTrigger(mobj_t *mobj, boolean pushable);
|
2021-12-08 19:29:10 +00:00
|
|
|
sector_t *P_FindPlayerTrigger(player_t *player, line_t *sourceline);
|
2021-12-09 20:36:46 +00:00
|
|
|
boolean P_IsPlayerValid(size_t playernum);
|
|
|
|
boolean P_CanPlayerTrigger(size_t playernum);
|
2014-03-15 16:59:03 +00:00
|
|
|
void P_ProcessSpecialSector(player_t *player, sector_t *sector, sector_t *roversector);
|
|
|
|
|
|
|
|
fixed_t P_FindLowestFloorSurrounding(sector_t *sec);
|
|
|
|
fixed_t P_FindHighestFloorSurrounding(sector_t *sec);
|
|
|
|
|
|
|
|
fixed_t P_FindNextHighestFloor(sector_t *sec, fixed_t currentheight);
|
|
|
|
fixed_t P_FindNextLowestFloor(sector_t *sec, fixed_t currentheight);
|
|
|
|
|
|
|
|
fixed_t P_FindLowestCeilingSurrounding(sector_t *sec);
|
|
|
|
fixed_t P_FindHighestCeilingSurrounding(sector_t *sec);
|
|
|
|
|
|
|
|
INT32 P_FindMinSurroundingLight(sector_t *sector, INT32 max);
|
|
|
|
|
|
|
|
void P_SetupSignExit(player_t *player);
|
2014-05-26 02:41:05 +00:00
|
|
|
boolean P_IsFlagAtBase(mobjtype_t flag);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2023-08-23 20:49:29 +00:00
|
|
|
void P_InitSectorPortals(void);
|
|
|
|
UINT32 P_NewSectorPortal(void);
|
|
|
|
|
2023-08-24 20:36:38 +00:00
|
|
|
boolean P_IsSectorPortalValid(sectorportal_t *secportal);
|
|
|
|
|
2023-08-23 20:49:29 +00:00
|
|
|
sectorportal_t *P_SectorGetFloorPortal(sector_t *sector);
|
|
|
|
sectorportal_t *P_SectorGetCeilingPortal(sector_t *sector);
|
|
|
|
|
2023-08-23 18:46:48 +00:00
|
|
|
boolean P_SectorHasPortal(sector_t *sector);
|
2023-08-23 18:04:50 +00:00
|
|
|
boolean P_SectorHasFloorPortal(sector_t *sector);
|
|
|
|
boolean P_SectorHasCeilingPortal(sector_t *sector);
|
2023-08-23 16:43:02 +00:00
|
|
|
boolean P_CompareSectorPortals(sectorportal_t *a, sectorportal_t *b);
|
|
|
|
|
2021-12-07 06:17:58 +00:00
|
|
|
boolean P_IsMobjTouchingSectorPlane(mobj_t *mo, sector_t *sec);
|
|
|
|
boolean P_IsMobjTouching3DFloor(mobj_t *mo, ffloor_t *ffloor, sector_t *sec);
|
|
|
|
boolean P_IsMobjTouchingPolyobj(mobj_t *mo, polyobj_t *po, sector_t *polysec);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
void P_SwitchWeather(INT32 weathernum);
|
|
|
|
|
2023-03-16 10:47:21 +00:00
|
|
|
void P_RunTriggerLinedef(line_t *triggerline, mobj_t *actor, sector_t *caller);
|
2014-03-15 16:59:03 +00:00
|
|
|
void P_LinedefExecute(INT16 tag, mobj_t *actor, sector_t *caller);
|
2018-03-31 14:11:27 +00:00
|
|
|
void P_RunNightserizeExecutors(mobj_t *actor);
|
|
|
|
void P_RunDeNightserizeExecutors(mobj_t *actor);
|
|
|
|
void P_RunNightsLapExecutors(mobj_t *actor);
|
2018-08-14 16:00:37 +00:00
|
|
|
void P_RunNightsCapsuleTouchExecutors(mobj_t *actor, boolean entering, boolean enoughspheres);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-04-24 21:29:41 +00:00
|
|
|
UINT16 P_GetFFloorID(ffloor_t *fflr);
|
2016-07-10 16:58:54 +00:00
|
|
|
ffloor_t *P_GetFFloorByID(sector_t *sec, UINT16 id);
|
|
|
|
|
2021-09-20 06:18:59 +00:00
|
|
|
// Use this when you don't know the type of your thinker data struct but need to access its thinker.
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
} thinkerdata_t;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
//
|
|
|
|
// P_LIGHTS
|
|
|
|
//
|
|
|
|
/** Fire flicker action structure.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< The thinker in use for the effect.
|
|
|
|
sector_t *sector; ///< The sector where action is taking place.
|
|
|
|
INT32 count;
|
|
|
|
INT32 resetcount;
|
2021-09-19 14:25:27 +00:00
|
|
|
INT16 maxlight; ///< The brightest light level to use.
|
|
|
|
INT16 minlight; ///< The darkest light level to use.
|
2014-03-15 16:59:03 +00:00
|
|
|
} fireflicker_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
sector_t *sector;
|
|
|
|
INT32 maxlight;
|
|
|
|
INT32 minlight;
|
|
|
|
} lightflash_t;
|
|
|
|
|
|
|
|
/** Laser block thinker.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for laser.
|
2020-05-02 08:03:16 +00:00
|
|
|
INT16 tag;
|
2014-03-15 16:59:03 +00:00
|
|
|
line_t *sourceline;
|
2020-04-27 11:09:57 +00:00
|
|
|
UINT8 nobosses;
|
2014-03-15 16:59:03 +00:00
|
|
|
} laserthink_t;
|
|
|
|
|
|
|
|
/** Strobe light action structure..
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< The thinker in use for the effect.
|
|
|
|
sector_t *sector; ///< The sector where the action is taking place.
|
|
|
|
INT32 count;
|
2021-09-19 14:25:27 +00:00
|
|
|
INT16 minlight; ///< The minimum light level to use.
|
|
|
|
INT16 maxlight; ///< The maximum light level to use.
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 darktime; ///< How INT32 to use minlight.
|
|
|
|
INT32 brighttime; ///< How INT32 to use maxlight.
|
|
|
|
} strobe_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
sector_t *sector;
|
2021-09-19 14:25:27 +00:00
|
|
|
INT16 minlight;
|
|
|
|
INT16 maxlight;
|
|
|
|
INT16 direction;
|
|
|
|
INT16 speed;
|
2014-03-15 16:59:03 +00:00
|
|
|
} glow_t;
|
|
|
|
|
|
|
|
/** Thinker struct for fading lights.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
2018-09-15 10:21:25 +00:00
|
|
|
thinker_t thinker; ///< Thinker in use for the effect.
|
|
|
|
sector_t *sector; ///< Sector where action is taking place.
|
|
|
|
INT16 sourcelevel; ///< Light level we're fading from.
|
|
|
|
INT16 destlevel; ///< Light level we're fading to.
|
|
|
|
|
|
|
|
fixed_t fixedcurlevel; ///< Fixed point for current light level.
|
|
|
|
fixed_t fixedpertic; ///< Fixed point for increment per tic.
|
|
|
|
// The reason for those two above to be fixed point is to deal with decimal values that would otherwise get trimmed away.
|
|
|
|
INT32 timer; ///< Internal timer.
|
2014-03-15 16:59:03 +00:00
|
|
|
} lightlevel_t;
|
|
|
|
|
|
|
|
#define GLOWSPEED 8
|
|
|
|
#define STROBEBRIGHT 5
|
|
|
|
#define FASTDARK 15
|
|
|
|
#define SLOWDARK 35
|
|
|
|
|
2018-09-09 03:44:29 +00:00
|
|
|
void P_RemoveLighting(sector_t *sector);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_FireFlicker(fireflicker_t *flick);
|
2021-09-19 13:52:54 +00:00
|
|
|
fireflicker_t *P_SpawnAdjustableFireFlicker(sector_t *sector, INT16 lighta, INT16 lightb, INT32 length);
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_LightningFlash(lightflash_t *flash);
|
|
|
|
void T_StrobeFlash(strobe_t *flash);
|
|
|
|
|
|
|
|
void P_SpawnLightningFlash(sector_t *sector);
|
2021-09-19 13:52:54 +00:00
|
|
|
strobe_t * P_SpawnAdjustableStrobeFlash(sector_t *sector, INT16 lighta, INT16 lightb, INT32 darktime, INT32 brighttime, boolean inSync);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
void T_Glow(glow_t *g);
|
2021-09-19 13:52:54 +00:00
|
|
|
glow_t *P_SpawnAdjustableGlowingLight(sector_t *sector, INT16 lighta, INT16 lightb, INT32 length);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2018-09-09 17:43:00 +00:00
|
|
|
void P_FadeLightBySector(sector_t *sector, INT32 destvalue, INT32 speed, boolean ticbased);
|
2021-09-19 21:12:30 +00:00
|
|
|
void P_FadeLight(INT16 tag, INT32 destvalue, INT32 speed, boolean ticbased, boolean force, boolean relative);
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_LightFade(lightlevel_t *ll);
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
floor_special,
|
|
|
|
ceiling_special,
|
|
|
|
lighting_special,
|
|
|
|
} special_e;
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_CEILNG
|
|
|
|
//
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
raiseToHighest,
|
|
|
|
lowerToLowestFast,
|
|
|
|
|
|
|
|
instantRaise, // instant-move for ceilings
|
|
|
|
|
|
|
|
crushAndRaise,
|
2021-06-26 10:53:14 +00:00
|
|
|
raiseAndCrush,
|
2014-03-15 16:59:03 +00:00
|
|
|
crushCeilOnce,
|
|
|
|
crushBothOnce,
|
|
|
|
|
|
|
|
moveCeilingByFrontSector,
|
|
|
|
instantMoveCeilingByFrontSector,
|
|
|
|
|
2021-06-26 06:43:35 +00:00
|
|
|
moveCeilingByDistance,
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
bounceCeiling,
|
|
|
|
bounceCeilingCrush,
|
|
|
|
} ceiling_e;
|
|
|
|
|
|
|
|
/** Ceiling movement structure.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker for the type of movement.
|
|
|
|
ceiling_e type; ///< Type of movement.
|
|
|
|
sector_t *sector; ///< Sector where the action is taking place.
|
|
|
|
fixed_t bottomheight; ///< The lowest height to move to.
|
|
|
|
fixed_t topheight; ///< The highest height to move to.
|
|
|
|
fixed_t speed; ///< Ceiling speed.
|
|
|
|
fixed_t delay;
|
|
|
|
fixed_t delaytimer;
|
|
|
|
UINT8 crush; ///< Whether to crush things or not.
|
|
|
|
|
|
|
|
INT32 texture; ///< The number of a flat to use when done.
|
|
|
|
INT32 direction; ///< 1 = up, 0 = waiting, -1 = down.
|
|
|
|
|
|
|
|
// ID
|
2021-06-26 13:28:28 +00:00
|
|
|
INT16 tag; ///< Tag of linedef executor to run when movement is done.
|
2014-03-15 16:59:03 +00:00
|
|
|
fixed_t origspeed; ///< The original, "real" speed.
|
|
|
|
INT32 sourceline; ///< Index of the source linedef
|
|
|
|
} ceiling_t;
|
|
|
|
|
|
|
|
#define CEILSPEED (FRACUNIT)
|
|
|
|
|
2021-06-25 08:12:16 +00:00
|
|
|
INT32 EV_DoCeiling(mtag_t tag, line_t *line, ceiling_e type);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2021-06-25 08:12:16 +00:00
|
|
|
INT32 EV_DoCrush(mtag_t tag, line_t *line, ceiling_e type);
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_CrushCeiling(ceiling_t *ceiling);
|
|
|
|
|
|
|
|
void T_MoveCeiling(ceiling_t *ceiling);
|
|
|
|
|
|
|
|
//
|
|
|
|
// P_FLOOR
|
|
|
|
//
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
// raise floor to next highest surrounding floor
|
|
|
|
raiseFloorToNearestFast,
|
|
|
|
|
|
|
|
// move the floor down instantly
|
|
|
|
instantLower,
|
|
|
|
|
|
|
|
moveFloorByFrontSector,
|
|
|
|
instantMoveFloorByFrontSector,
|
|
|
|
|
2021-06-26 06:43:35 +00:00
|
|
|
moveFloorByDistance,
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
bounceFloor,
|
|
|
|
bounceFloorCrush,
|
|
|
|
|
|
|
|
crushFloorOnce,
|
|
|
|
} floor_e;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
elevateUp,
|
|
|
|
elevateDown,
|
|
|
|
elevateContinuous,
|
|
|
|
elevateBounce,
|
|
|
|
elevateHighest,
|
|
|
|
bridgeFall,
|
|
|
|
} elevator_e;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
floor_e type;
|
|
|
|
UINT8 crush;
|
|
|
|
sector_t *sector;
|
|
|
|
INT32 direction;
|
|
|
|
INT32 texture;
|
|
|
|
fixed_t floordestheight;
|
|
|
|
fixed_t speed;
|
|
|
|
fixed_t origspeed;
|
|
|
|
fixed_t delay;
|
|
|
|
fixed_t delaytimer;
|
2021-06-26 13:28:28 +00:00
|
|
|
INT16 tag;
|
2021-06-26 14:25:14 +00:00
|
|
|
INT32 sourceline;
|
2014-03-15 16:59:03 +00:00
|
|
|
} floormove_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
elevator_e type;
|
|
|
|
sector_t *sector;
|
|
|
|
sector_t *actionsector; // The sector the rover action is taking place in.
|
|
|
|
INT32 direction;
|
|
|
|
fixed_t floordestheight;
|
|
|
|
fixed_t ceilingdestheight;
|
|
|
|
fixed_t speed;
|
|
|
|
fixed_t origspeed;
|
|
|
|
fixed_t low;
|
|
|
|
fixed_t high;
|
|
|
|
fixed_t distance;
|
|
|
|
fixed_t delay;
|
|
|
|
fixed_t delaytimer;
|
|
|
|
fixed_t floorwasheight; // Height the floor WAS at
|
|
|
|
fixed_t ceilingwasheight; // Height the ceiling WAS at
|
|
|
|
line_t *sourceline;
|
|
|
|
} elevator_t;
|
|
|
|
|
2020-04-26 14:51:14 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CF_RETURN = 1, // Return after crumbling
|
|
|
|
CF_FLOATBOB = 1<<1, // Float on water
|
|
|
|
CF_REVERSE = 1<<2, // Reverse gravity
|
|
|
|
} crumbleflag_t;
|
|
|
|
|
2020-04-26 09:55:10 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
2020-04-26 14:51:14 +00:00
|
|
|
line_t *sourceline;
|
2020-04-26 09:55:10 +00:00
|
|
|
sector_t *sector;
|
|
|
|
sector_t *actionsector; // The sector the rover action is taking place in.
|
2020-04-26 14:51:14 +00:00
|
|
|
player_t *player; // Player who initiated the thinker (used for airbob)
|
2020-04-26 09:55:10 +00:00
|
|
|
INT32 direction;
|
2020-04-26 14:51:14 +00:00
|
|
|
INT32 origalpha;
|
|
|
|
INT32 timer;
|
2020-04-26 09:55:10 +00:00
|
|
|
fixed_t speed;
|
|
|
|
fixed_t floorwasheight; // Height the floor WAS at
|
|
|
|
fixed_t ceilingwasheight; // Height the ceiling WAS at
|
2020-04-26 14:51:14 +00:00
|
|
|
UINT8 flags;
|
2020-04-26 09:55:10 +00:00
|
|
|
} crumble_t;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline; // Source line of the thinker
|
2020-04-18 07:21:04 +00:00
|
|
|
} noenemies_t;
|
|
|
|
|
2020-04-17 23:42:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
sector_t *sector;
|
|
|
|
fixed_t speed;
|
|
|
|
INT32 direction;
|
|
|
|
fixed_t floorstartheight;
|
|
|
|
fixed_t ceilingstartheight;
|
|
|
|
fixed_t destheight;
|
|
|
|
} continuousfall_t;
|
|
|
|
|
2020-04-18 08:45:21 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline;
|
|
|
|
sector_t *sector;
|
|
|
|
fixed_t speed;
|
|
|
|
fixed_t distance;
|
|
|
|
fixed_t floorwasheight;
|
|
|
|
fixed_t ceilingwasheight;
|
|
|
|
boolean low;
|
|
|
|
} bouncecheese_t;
|
|
|
|
|
2020-04-18 00:05:23 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
sector_t *sector;
|
|
|
|
fixed_t speed;
|
|
|
|
INT32 direction;
|
|
|
|
fixed_t floorstartheight;
|
|
|
|
fixed_t ceilingstartheight;
|
|
|
|
INT16 tag;
|
|
|
|
} mariothink_t;
|
|
|
|
|
2020-04-18 09:05:58 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline;
|
|
|
|
sector_t *sector;
|
|
|
|
} mariocheck_t;
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-04-25 07:20:53 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline;
|
|
|
|
sector_t *sector;
|
|
|
|
fixed_t crushspeed;
|
|
|
|
fixed_t retractspeed;
|
|
|
|
INT32 direction;
|
|
|
|
fixed_t floorstartheight;
|
|
|
|
fixed_t ceilingstartheight;
|
|
|
|
INT32 delay;
|
|
|
|
INT16 tag;
|
|
|
|
UINT16 sound;
|
|
|
|
} thwomp_t;
|
|
|
|
|
2020-04-17 22:26:49 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline;
|
|
|
|
sector_t *sector;
|
|
|
|
INT16 tag;
|
|
|
|
} floatthink_t;
|
|
|
|
|
2020-04-17 12:00:48 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
|
|
|
line_t *sourceline; // Source line of the thinker
|
|
|
|
boolean playersInArea[MAXPLAYERS];
|
|
|
|
boolean triggerOnExit;
|
|
|
|
} eachtime_t;
|
|
|
|
|
2020-04-26 08:33:13 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
RF_REVERSE = 1, //Lower when stood on
|
|
|
|
RF_SPINDASH = 1<<1, //Require spindash to move
|
|
|
|
RF_DYNAMIC = 1<<2, //Dynamically sinking platform
|
|
|
|
} raiseflag_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker;
|
2020-04-27 10:54:08 +00:00
|
|
|
INT16 tag;
|
2020-04-26 08:33:13 +00:00
|
|
|
sector_t *sector;
|
|
|
|
fixed_t ceilingbottom;
|
|
|
|
fixed_t ceilingtop;
|
|
|
|
fixed_t basespeed;
|
|
|
|
fixed_t extraspeed; //For dynamically sinking platform
|
|
|
|
UINT8 shaketimer; //For dynamically sinking platform
|
|
|
|
UINT8 flags;
|
|
|
|
} raise_t;
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
#define ELEVATORSPEED (FRACUNIT*4)
|
|
|
|
#define FLOORSPEED (FRACUNIT)
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2023-07-25 15:30:55 +00:00
|
|
|
planeok,
|
2014-03-15 16:59:03 +00:00
|
|
|
crushed,
|
|
|
|
pastdest
|
|
|
|
} result_e;
|
|
|
|
|
|
|
|
result_e T_MovePlane(sector_t *sector, fixed_t speed, fixed_t dest, boolean crush,
|
2020-04-17 23:08:01 +00:00
|
|
|
boolean ceiling, INT32 direction);
|
2021-06-25 08:12:16 +00:00
|
|
|
void EV_DoFloor(mtag_t tag, line_t *line, floor_e floortype);
|
2021-06-25 09:11:16 +00:00
|
|
|
void EV_DoElevator(mtag_t tag, line_t *line, elevator_e elevtype);
|
2014-03-15 16:59:03 +00:00
|
|
|
void EV_CrumbleChain(sector_t *sec, ffloor_t *rover);
|
2020-04-18 08:52:58 +00:00
|
|
|
void EV_BounceSector(sector_t *sector, fixed_t momz, line_t *sourceline);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
// Some other special 3dfloor types
|
|
|
|
INT32 EV_StartCrumble(sector_t *sector, ffloor_t *rover,
|
|
|
|
boolean floating, player_t *player, fixed_t origalpha, boolean crumblereturn);
|
|
|
|
|
2020-04-17 23:42:13 +00:00
|
|
|
void EV_DoContinuousFall(sector_t *sec, sector_t *backsector, fixed_t spd, boolean backwards);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
2020-04-18 00:05:23 +00:00
|
|
|
void EV_MarioBlock(ffloor_t *rover, sector_t *sector, mobj_t *puncher);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
void T_MoveFloor(floormove_t *movefloor);
|
|
|
|
|
|
|
|
void T_MoveElevator(elevator_t *elevator);
|
2020-04-17 23:42:13 +00:00
|
|
|
void T_ContinuousFalling(continuousfall_t *faller);
|
2020-04-18 08:45:21 +00:00
|
|
|
void T_BounceCheese(bouncecheese_t *bouncer);
|
2020-04-26 09:55:10 +00:00
|
|
|
void T_StartCrumble(crumble_t *crumble);
|
2020-04-18 00:05:23 +00:00
|
|
|
void T_MarioBlock(mariothink_t *block);
|
2020-04-17 22:26:49 +00:00
|
|
|
void T_FloatSector(floatthink_t *floater);
|
2020-04-18 09:05:58 +00:00
|
|
|
void T_MarioBlockChecker(mariocheck_t *block);
|
2020-04-25 07:20:53 +00:00
|
|
|
void T_ThwompSector(thwomp_t *thwomp);
|
2020-04-18 07:21:04 +00:00
|
|
|
void T_NoEnemiesSector(noenemies_t *nobaddies);
|
2020-04-17 12:00:48 +00:00
|
|
|
void T_EachTimeThinker(eachtime_t *eachtime);
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_CameraScanner(elevator_t *elevator);
|
2020-04-26 08:33:13 +00:00
|
|
|
void T_RaiseSector(raise_t *raise);
|
2014-03-15 16:59:03 +00:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; // Thinker for linedef executor delay
|
|
|
|
line_t *line; // Pointer to line that is waiting.
|
|
|
|
mobj_t *caller; // Pointer to calling mobj
|
2014-11-12 00:55:07 +00:00
|
|
|
sector_t *sector; // Pointer to triggering sector
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 timer; // Delay timer
|
|
|
|
} executor_t;
|
|
|
|
|
|
|
|
void T_ExecutorDelay(executor_t *e);
|
|
|
|
|
|
|
|
/** Generalized scroller.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for scrolling.
|
|
|
|
fixed_t dx, dy; ///< (dx,dy) scroll speeds.
|
|
|
|
INT32 affectee; ///< Number of affected sidedef or sector.
|
|
|
|
INT32 control; ///< Control sector (-1 if none) used to control scrolling.
|
|
|
|
fixed_t last_height; ///< Last known height of control sector.
|
|
|
|
fixed_t vdx, vdy; ///< Accumulated velocity if accelerative.
|
|
|
|
INT32 accel; ///< Whether it's accelerative.
|
|
|
|
INT32 exclusive; ///< If a conveyor, same property as in pusher_t
|
|
|
|
/** Types of generalized scrollers.
|
|
|
|
*/
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
sc_side, ///< Scroll wall texture on a sidedef.
|
|
|
|
sc_floor, ///< Scroll floor.
|
|
|
|
sc_ceiling, ///< Scroll ceiling.
|
|
|
|
sc_carry, ///< Carry objects on floor.
|
|
|
|
sc_carry_ceiling,///< Carry objects on ceiling (for 3Dfloor conveyors).
|
|
|
|
} type;
|
|
|
|
} scroll_t;
|
|
|
|
|
|
|
|
void T_Scroll(scroll_t *s);
|
|
|
|
void T_LaserFlash(laserthink_t *flash);
|
|
|
|
|
|
|
|
/** Friction for ice/sludge effects.
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for friction.
|
|
|
|
INT32 friction; ///< Friction value, 0xe800 = normal.
|
2016-08-09 23:05:46 +00:00
|
|
|
INT32 movefactor; ///< Inertia factor when adding to momentum, FRACUNIT = normal.
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 affectee; ///< Number of affected sector.
|
|
|
|
INT32 referrer; ///< If roverfriction == true, then this will contain the sector # of the control sector where the effect was applied.
|
|
|
|
UINT8 roverfriction; ///< flag for whether friction originated from a FOF or not
|
|
|
|
} friction_t;
|
|
|
|
|
|
|
|
// Friction defines.
|
|
|
|
#define ORIG_FRICTION (0xE8 << (FRACBITS-8)) ///< Original value.
|
|
|
|
#define ORIG_FRICTION_FACTOR (8 << (FRACBITS-8)) ///< Original value.
|
|
|
|
|
|
|
|
void T_Friction(friction_t *f);
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
p_wind, ///< Wind.
|
|
|
|
p_current, ///< Current.
|
|
|
|
} pushertype_e;
|
|
|
|
|
|
|
|
// Model for pushers for push/pull effects
|
|
|
|
typedef struct
|
|
|
|
{
|
2021-07-01 18:05:23 +00:00
|
|
|
thinker_t thinker; ///< Thinker structure for pusher effect.
|
|
|
|
pushertype_e type; ///< Type of pusher effect.
|
|
|
|
fixed_t x_mag; ///< X strength.
|
|
|
|
fixed_t y_mag; ///< Y strength.
|
|
|
|
fixed_t z_mag; ///< Z strength.
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 affectee; ///< Number of affected sector.
|
2021-07-01 18:05:23 +00:00
|
|
|
UINT8 roverpusher; ///< flag for whether pusher originated from a FOF or not
|
2014-03-15 16:59:03 +00:00
|
|
|
INT32 referrer; ///< If roverpusher == true, then this will contain the sector # of the control sector where the effect was applied.
|
|
|
|
INT32 exclusive; /// < Once this affect has been applied to a mobj, no other pushers may affect it.
|
|
|
|
INT32 slider; /// < Should the player go into an uncontrollable slide?
|
|
|
|
} pusher_t;
|
|
|
|
|
|
|
|
// Model for disappearing/reappearing FOFs
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for effect.
|
|
|
|
tic_t appeartime; ///< Tics to be appeared for
|
|
|
|
tic_t disappeartime;///< Tics to be disappeared for
|
|
|
|
tic_t offset; ///< Time to wait until thinker starts
|
|
|
|
tic_t timer; ///< Timer between states
|
|
|
|
INT32 affectee; ///< Number of affected line
|
|
|
|
INT32 sourceline; ///< Number of source line
|
|
|
|
INT32 exists; ///< Exists toggle
|
|
|
|
} disappear_t;
|
|
|
|
|
|
|
|
void T_Disappear(disappear_t *d);
|
|
|
|
|
2018-03-30 19:27:37 +00:00
|
|
|
// Model for fading FOFs
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for effect.
|
2018-08-17 06:28:52 +00:00
|
|
|
ffloor_t *rover; ///< Target ffloor
|
2018-09-12 20:57:35 +00:00
|
|
|
extracolormap_t *dest_exc; ///< Colormap to fade to
|
2018-09-10 03:52:36 +00:00
|
|
|
UINT32 sectornum; ///< Number of ffloor target sector
|
|
|
|
UINT32 ffloornum; ///< Number of ffloor of target sector
|
2018-08-17 20:27:32 +00:00
|
|
|
INT32 alpha; ///< Internal alpha counter
|
2018-09-11 14:28:24 +00:00
|
|
|
INT16 sourcevalue; ///< Transparency value to fade from
|
2018-04-07 11:09:04 +00:00
|
|
|
INT16 destvalue; ///< Transparency value to fade to
|
2018-09-09 21:19:49 +00:00
|
|
|
INT16 destlightlevel; ///< Light level to fade to
|
2018-04-07 11:09:04 +00:00
|
|
|
INT16 speed; ///< Speed to fade by
|
2018-09-10 00:45:12 +00:00
|
|
|
boolean ticbased; ///< Tic-based logic toggle
|
|
|
|
INT32 timer; ///< Timer for tic-based logic
|
2022-07-31 10:04:42 +00:00
|
|
|
boolean doexists; ///< Handle FOF_EXISTS
|
|
|
|
boolean dotranslucent; ///< Handle FOF_TRANSLUCENT
|
2018-09-09 00:41:45 +00:00
|
|
|
boolean dolighting; ///< Handle shadows and light blocks
|
2018-09-12 20:57:35 +00:00
|
|
|
boolean docolormap; ///< Handle colormaps
|
2018-09-09 21:19:49 +00:00
|
|
|
boolean docollision; ///< Handle interactive flags
|
2018-08-17 19:13:05 +00:00
|
|
|
boolean doghostfade; ///< No interactive flags during fading
|
|
|
|
boolean exactalpha; ///< Use exact alpha values (opengl)
|
2018-03-30 19:27:37 +00:00
|
|
|
} fade_t;
|
|
|
|
|
|
|
|
void T_Fade(fade_t *d);
|
|
|
|
|
2018-09-12 13:06:38 +00:00
|
|
|
// Model for fading colormaps
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for effect.
|
|
|
|
sector_t *sector; ///< Sector where action is taking place.
|
|
|
|
extracolormap_t *source_exc;
|
|
|
|
extracolormap_t *dest_exc;
|
2018-09-13 14:38:15 +00:00
|
|
|
boolean ticbased; ///< Tic-based timing
|
|
|
|
INT32 duration; ///< Total duration for tic-based logic (OR: speed increment)
|
|
|
|
INT32 timer; ///< Timer for tic-based logic (OR: internal speed counter)
|
2018-09-12 13:06:38 +00:00
|
|
|
} fadecolormap_t;
|
|
|
|
|
|
|
|
void T_FadeColormap(fadecolormap_t *d);
|
|
|
|
|
2021-12-16 06:00:30 +00:00
|
|
|
// Prototype function for pushers
|
2014-03-15 16:59:03 +00:00
|
|
|
void T_Pusher(pusher_t *p);
|
|
|
|
|
2016-12-13 22:42:47 +00:00
|
|
|
// Plane displacement
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
thinker_t thinker; ///< Thinker structure for plane displacement effect.
|
|
|
|
INT32 affectee; ///< Number of affected sector.
|
|
|
|
INT32 control; ///< Control sector used to control plane positions.
|
|
|
|
fixed_t last_height; ///< Last known height of control sector.
|
|
|
|
fixed_t speed; ///< Plane movement speed.
|
2017-04-11 21:33:04 +00:00
|
|
|
UINT8 reverse; ///< Move in reverse direction to control sector?
|
2016-12-13 22:42:47 +00:00
|
|
|
/** Types of plane displacement effects.
|
|
|
|
*/
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
pd_floor, ///< Displace floor.
|
|
|
|
pd_ceiling, ///< Displace ceiling.
|
|
|
|
pd_both, ///< Displace both floor AND ceiling.
|
|
|
|
} type;
|
|
|
|
} planedisplace_t;
|
|
|
|
|
|
|
|
void T_PlaneDisplace(planedisplace_t *pd);
|
|
|
|
|
2014-03-15 16:59:03 +00:00
|
|
|
void P_CalcHeight(player_t *player);
|
|
|
|
|
|
|
|
#endif
|