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.
2016-05-18 00:42:11 +00:00
// Copyright (C) 1999-2016 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_inter.c
/// \brief Handling interactions (i.e., collisions)
# include "doomdef.h"
# include "i_system.h"
# include "am_map.h"
# include "g_game.h"
# include "m_random.h"
# include "p_local.h"
# include "s_sound.h"
# include "r_main.h"
# include "st_stuff.h"
# include "hu_stuff.h"
# include "lua_hook.h"
# include "m_cond.h" // unlockables, emblems, etc
2018-06-03 21:41:54 +00:00
# include "p_setup.h"
2014-03-15 16:59:03 +00:00
# include "m_cheat.h" // objectplace
# include "m_misc.h"
# include "v_video.h" // video flags for CEchos
2016-04-07 02:55:58 +00:00
// CTF player names
# define CTFTEAMCODE(pl) pl->ctfteam ? (pl->ctfteam == 1 ? "\x85" : "\x84") : ""
# define CTFTEAMENDCODE(pl) pl->ctfteam ? "\x80" : ""
2014-03-15 16:59:03 +00:00
void P_ForceFeed ( const player_t * player , INT32 attack , INT32 fade , tic_t duration , INT32 period )
{
BasicFF_t Basicfeed ;
if ( ! player )
return ;
Basicfeed . Duration = ( UINT32 ) ( duration * ( 100L / TICRATE ) ) ;
Basicfeed . ForceX = Basicfeed . ForceY = 1 ;
Basicfeed . Gain = 25000 ;
Basicfeed . Magnitude = period * 10 ;
Basicfeed . player = player ;
/// \todo test FFB
P_RampConstant ( & Basicfeed , attack , fade ) ;
}
void P_ForceConstant ( const BasicFF_t * FFInfo )
{
JoyFF_t ConstantQuake ;
if ( ! FFInfo | | ! FFInfo - > player )
return ;
ConstantQuake . ForceX = FFInfo - > ForceX ;
ConstantQuake . ForceY = FFInfo - > ForceY ;
ConstantQuake . Duration = FFInfo - > Duration ;
ConstantQuake . Gain = FFInfo - > Gain ;
ConstantQuake . Magnitude = FFInfo - > Magnitude ;
if ( FFInfo - > player = = & players [ consoleplayer ] )
I_Tactile ( ConstantForce , & ConstantQuake ) ;
else if ( splitscreen & & FFInfo - > player = = & players [ secondarydisplayplayer ] )
I_Tactile2 ( ConstantForce , & ConstantQuake ) ;
}
void P_RampConstant ( const BasicFF_t * FFInfo , INT32 Start , INT32 End )
{
JoyFF_t RampQuake ;
if ( ! FFInfo | | ! FFInfo - > player )
return ;
RampQuake . ForceX = FFInfo - > ForceX ;
RampQuake . ForceY = FFInfo - > ForceY ;
RampQuake . Duration = FFInfo - > Duration ;
RampQuake . Gain = FFInfo - > Gain ;
RampQuake . Magnitude = FFInfo - > Magnitude ;
RampQuake . Start = Start ;
RampQuake . End = End ;
if ( FFInfo - > player = = & players [ consoleplayer ] )
I_Tactile ( ConstantForce , & RampQuake ) ;
else if ( splitscreen & & FFInfo - > player = = & players [ secondarydisplayplayer ] )
I_Tactile2 ( ConstantForce , & RampQuake ) ;
}
//
// GET STUFF
//
/** Makes sure all previous starposts are cleared.
* For instance , hitting starpost 5 will clear starposts 1 through 4 , even if
* you didn ' t touch them . This is how the classic games work , although it can
* lead to bizarre situations on levels that allow you to make a circuit .
*
* \ param postnum The number of the starpost just touched .
*/
void P_ClearStarPost ( INT32 postnum )
{
thinker_t * th ;
mobj_t * mo2 ;
// scan the thinkers
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo2 = ( mobj_t * ) th ;
if ( mo2 - > type = = MT_STARPOST & & mo2 - > health < = postnum )
P_SetMobjState ( mo2 , mo2 - > info - > seestate ) ;
}
return ;
}
//
// P_ResetStarposts
//
// Resets all starposts back to their spawn state, used on A_Mixup and some other things.
//
void P_ResetStarposts ( void )
{
// Search through all the thinkers.
thinker_t * th ;
mobj_t * post ;
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
post = ( mobj_t * ) th ;
if ( post - > type = = MT_STARPOST )
P_SetMobjState ( post , post - > info - > spawnstate ) ;
}
}
//
// P_CanPickupItem
//
// Returns true if the player is in a state where they can pick up items.
//
boolean P_CanPickupItem ( player_t * player , boolean weapon )
{
if ( player - > bot & & weapon )
return false ;
2016-10-12 16:55:07 +00:00
if ( player - > powers [ pw_flashing ] > ( flashingtics / 4 ) * 3 & & player - > powers [ pw_flashing ] < UINT16_MAX )
2014-03-15 16:59:03 +00:00
return false ;
2016-10-13 14:13:33 +00:00
if ( player - > mo & & player - > mo - > health < = 0 )
return false ;
2014-03-15 16:59:03 +00:00
return true ;
}
//
// P_DoNightsScore
//
// When you pick up some items in nights, it displays
// a score sign, and awards you some drill time.
//
void P_DoNightsScore ( player_t * player )
{
mobj_t * dummymo ;
if ( player - > exiting )
return ; // Don't do any fancy shit for failures.
dummymo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , player - > mo - > z + player - > mo - > height / 2 , MT_NIGHTSCORE ) ;
if ( player - > bot )
player = & players [ consoleplayer ] ;
if ( G_IsSpecialStage ( gamemap ) ) // Global link count? Maybe not a good idea...
{
INT32 i ;
for ( i = 0 ; i < MAXPLAYERS ; i + + )
if ( playeringame [ i ] )
{
if ( + + players [ i ] . linkcount > players [ i ] . maxlink )
players [ i ] . maxlink = players [ i ] . linkcount ;
players [ i ] . linktimer = 2 * TICRATE ;
}
}
else // Individual link counts
{
if ( + + player - > linkcount > player - > maxlink )
player - > maxlink = player - > linkcount ;
player - > linktimer = 2 * TICRATE ;
}
if ( player - > linkcount < 10 )
{
if ( player - > bonustime )
{
P_AddPlayerScore ( player , player - > linkcount * 20 ) ;
P_SetMobjState ( dummymo , dummymo - > info - > xdeathstate + player - > linkcount - 1 ) ;
}
else
{
P_AddPlayerScore ( player , player - > linkcount * 10 ) ;
P_SetMobjState ( dummymo , dummymo - > info - > spawnstate + player - > linkcount - 1 ) ;
}
}
else
{
if ( player - > bonustime )
{
P_AddPlayerScore ( player , 200 ) ;
P_SetMobjState ( dummymo , dummymo - > info - > xdeathstate + 9 ) ;
}
else
{
P_AddPlayerScore ( player , 100 ) ;
P_SetMobjState ( dummymo , dummymo - > info - > spawnstate + 9 ) ;
}
}
// Hoops are the only things that should add to your drill meter
//player->drillmeter += TICRATE;
dummymo - > momz = FRACUNIT ;
dummymo - > fuse = 3 * TICRATE ;
// What?! NO, don't use the camera! Scale up instead!
//P_InstaThrust(dummymo, R_PointToAngle2(dummymo->x, dummymo->y, camera.x, camera.y), 3*FRACUNIT);
dummymo - > scalespeed = FRACUNIT / 25 ;
dummymo - > destscale = 2 * FRACUNIT ;
}
2015-05-27 06:08:18 +00:00
//
// P_DoMatchSuper
//
// Checks if you have all 7 pw_emeralds, then turns you "super". =P
//
void P_DoMatchSuper ( player_t * player )
{
UINT16 match_emeralds = player - > powers [ pw_emeralds ] ;
boolean doteams = false ;
int i ;
// If this gametype has teams, check every player on your team for emeralds.
if ( G_GametypeHasTeams ( ) )
{
doteams = true ;
for ( i = 0 ; i < MAXPLAYERS ; i + + )
if ( players [ i ] . ctfteam = = player - > ctfteam )
match_emeralds | = players [ i ] . powers [ pw_emeralds ] ;
}
if ( ! ALL7EMERALDS ( match_emeralds ) )
return ;
// Got 'em all? Turn "super"!
2015-05-27 08:01:58 +00:00
emeraldspawndelay = invulntics + 1 ;
2015-05-27 06:08:18 +00:00
player - > powers [ pw_emeralds ] = 0 ;
2015-05-27 08:01:58 +00:00
player - > powers [ pw_invulnerability ] = emeraldspawndelay ;
player - > powers [ pw_sneakers ] = emeraldspawndelay ;
2015-05-27 06:08:18 +00:00
if ( P_IsLocalPlayer ( player ) & & ! player - > powers [ pw_super ] )
{
S_StopMusic ( ) ;
if ( mariomode )
G_GhostAddColor ( GHC_INVINCIBLE ) ;
2017-04-29 15:27:52 +00:00
strlcpy ( S_sfx [ sfx_None ] . caption , " Invincibility " , 14 ) ;
S_StartCaption ( sfx_None , - 1 , player - > powers [ pw_invulnerability ] ) ;
2016-11-13 21:55:32 +00:00
S_ChangeMusicInternal ( ( mariomode ) ? " _minv " : " _inv " , false ) ;
2015-05-27 06:08:18 +00:00
}
// Also steal 50 points from every enemy, sealing your victory.
P_StealPlayerScore ( player , 50 ) ;
// In a team game?
// Check everyone else on your team for emeralds, and turn those helpful assisting players invincible too.
if ( doteams )
for ( i = 0 ; i < MAXPLAYERS ; i + + )
if ( playeringame [ i ] & & players [ i ] . ctfteam = = player - > ctfteam
& & players [ i ] . powers [ pw_emeralds ] ! = 0 )
{
players [ i ] . powers [ pw_emeralds ] = 0 ;
player - > powers [ pw_invulnerability ] = invulntics + 1 ;
player - > powers [ pw_sneakers ] = player - > powers [ pw_invulnerability ] ;
if ( P_IsLocalPlayer ( player ) & & ! player - > powers [ pw_super ] )
{
S_StopMusic ( ) ;
if ( mariomode )
G_GhostAddColor ( GHC_INVINCIBLE ) ;
2017-04-29 15:27:52 +00:00
strlcpy ( S_sfx [ sfx_None ] . caption , " Invincibility " , 14 ) ;
S_StartCaption ( sfx_None , - 1 , player - > powers [ pw_invulnerability ] ) ;
2016-11-13 21:55:32 +00:00
S_ChangeMusicInternal ( ( mariomode ) ? " _minv " : " _inv " , false ) ;
2015-05-27 06:08:18 +00:00
}
}
}
2014-03-15 16:59:03 +00:00
/** Takes action based on a ::MF_SPECIAL thing touched by a player.
* Actually , this just checks a few things ( heights , toucher - > player , no
* objectplace , no dead or disappearing things )
*
* The special thing may be collected and disappear , or a sound may play , or
* both .
*
* \ param special The special thing .
* \ param toucher The player ' s mobj .
* \ param heightcheck Whether or not to make sure the player and the object
* are actually touching .
*/
void P_TouchSpecialThing ( mobj_t * special , mobj_t * toucher , boolean heightcheck )
{
player_t * player ;
INT32 i ;
2016-10-24 12:33:10 +00:00
UINT8 elementalpierce ;
2014-03-15 16:59:03 +00:00
if ( objectplacing )
return ;
I_Assert ( special ! = NULL ) ;
I_Assert ( toucher ! = NULL ) ;
// Dead thing touching.
// Can happen with a sliding player corpse.
if ( toucher - > health < = 0 )
return ;
if ( heightcheck )
{
if ( special - > type = = MT_FLINGEMERALD ) // little hack here...
{ // flingemerald sprites are low to the ground, so extend collision radius down some.
if ( toucher - > z > ( special - > z + special - > height ) )
return ;
if ( special - > z - special - > height > ( toucher - > z + toucher - > height ) )
return ;
}
else
{
if ( toucher - > momz < 0 ) {
if ( toucher - > z + toucher - > momz > special - > z + special - > height )
return ;
} else if ( toucher - > z > special - > z + special - > height )
return ;
if ( toucher - > momz > 0 ) {
if ( toucher - > z + toucher - > height + toucher - > momz < special - > z )
return ;
} else if ( toucher - > z + toucher - > height < special - > z )
return ;
}
}
if ( special - > health < = 0 )
return ;
player = toucher - > player ;
I_Assert ( player ! = NULL ) ; // Only players can touch stuff!
if ( player - > spectator )
return ;
2018-05-02 22:48:50 +00:00
// Ignore multihits in "ouchie" mode
if ( special - > flags & ( MF_ENEMY | MF_BOSS ) & & special - > flags2 & MF2_FRET )
2014-03-15 16:59:03 +00:00
return ;
# ifdef HAVE_BLUA
if ( LUAh_TouchSpecial ( special , toucher ) | | P_MobjWasRemoved ( special ) )
return ;
# endif
2016-10-24 12:33:10 +00:00
// 0 = none, 1 = elemental pierce, 2 = bubble bounce
elementalpierce = ( ( ( player - > powers [ pw_shield ] & SH_NOSTACK ) = = SH_ELEMENTAL | | ( player - > powers [ pw_shield ] & SH_NOSTACK ) = = SH_BUBBLEWRAP ) & & ( player - > pflags & PF_SHIELDABILITY )
? ( ( ( player - > powers [ pw_shield ] & SH_NOSTACK ) = = SH_ELEMENTAL ) ? 1 : 2 )
: 0 ) ;
2016-07-08 20:55:17 +00:00
2018-05-02 22:48:50 +00:00
if ( ( special - > flags & ( MF_ENEMY | MF_BOSS ) ) & & ! ( special - > flags & MF_MISSILE ) )
2014-03-15 16:59:03 +00:00
{
2018-05-02 22:48:50 +00:00
////////////////////////////////////////////////////////
/////ENEMIES & BOSSES!!/////////////////////////////////
////////////////////////////////////////////////////////
2014-03-15 16:59:03 +00:00
if ( special - > type = = MT_BLACKEGGMAN )
{
2015-02-13 16:15:58 +00:00
P_DamageMobj ( toucher , special , special , 1 , 0 ) ; // ouch
2014-03-15 16:59:03 +00:00
return ;
}
2018-04-26 19:18:51 +00:00
if ( special - > type = = MT_BIGMINE )
{
special - > momx = toucher - > momx / 3 ;
special - > momy = toucher - > momy / 3 ;
special - > momz = toucher - > momz / 3 ;
toucher - > momx / = - 8 ;
toucher - > momy / = - 8 ;
toucher - > momz / = - 8 ;
special - > flags & = ~ MF_SPECIAL ;
if ( special - > info - > activesound )
S_StartSound ( special , special - > info - > activesound ) ;
P_SetTarget ( & special - > tracer , toucher ) ;
player - > homing = 0 ;
return ;
}
2018-05-02 22:48:50 +00:00
if ( special - > type = = MT_GSNAPPER & & ! elementalpierce
2017-08-09 19:56:31 +00:00
& & toucher - > z < special - > z + special - > height & & toucher - > z + toucher - > height > special - > z
2018-05-02 22:48:50 +00:00
& & P_DamageMobj ( toucher , special , special , 1 , DMG_SPIKE ) )
return ; // Can only hit snapper from above
2018-05-13 13:09:20 +00:00
if ( special - > type = = MT_SPINCUSHION
& & ( P_MobjFlip ( toucher ) * ( toucher - > z - ( special - > z + special - > height / 2 ) ) > 0 ) )
2014-03-15 16:59:03 +00:00
{
2016-12-24 00:11:54 +00:00
if ( player - > pflags & PF_BOUNCING )
{
toucher - > momz = - toucher - > momz ;
P_DoAbilityBounce ( player , false ) ;
2018-05-02 22:48:50 +00:00
return ;
2016-12-24 00:11:54 +00:00
}
2018-05-02 22:48:50 +00:00
else if ( P_DamageMobj ( toucher , special , special , 1 , DMG_SPIKE ) )
2018-05-13 13:09:20 +00:00
return ; // Cannot hit sharp from above
2014-03-15 16:59:03 +00:00
}
2018-05-02 22:48:50 +00:00
if ( ( ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) & & ( player - > pflags & PF_DRILLING ) )
2017-03-18 21:06:06 +00:00
| | ( ( player - > pflags & PF_JUMPED ) & & ( ! ( player - > pflags & PF_NOJUMPDAMAGE ) | | ( player - > charability = = CA_TWINSPIN & & player - > panim = = PA_ABILITY ) ) )
A thorough reimplementation of Nojumpspin for the SPR2_ age.
* SF_NOJUMPSPIN - Player's height is full whilst jumping, SPR2_JUMP defaults to SPR2_SPNG instead of SPR2_SPIN, and the player goes into fall frames if they start moving downwards or use their ability.
* PA_JUMP - for jumping (upwards in the case of SF_NOJUMPSPIN.
* SF_NOJUMPDAMAGE - Ala rosy.wad, don't damage enemies, etc when jumping into them.
* SF_STOMPDAMAGE - Just for fun. Ala in Mario, always damage enemies when you land on top of them (your gravity reference, not theirs).
* SF_MARIODAMAGE - SF_NOJUMPDAMAGE|SF_STOMPDAMAGE is reasonably accurate to the Mario games, and might as well be surfaced as such.
Also, a minor change:
* Instead of not spawning the revitem if your SPR2_ is SPR2_DASH, don't spawn it if it's set to 0. This requires the player.dta I uploaded a couple days ago to behave as it was previously.
* Don't get stuck in spindash frames if your maxdash is 0, and don't flash rolling frames if you're on goop.
2016-07-10 17:41:38 +00:00
| | ( player - > pflags & ( PF_SPINNING | PF_GLIDING ) )
2016-07-17 20:31:15 +00:00
| | ( player - > charability2 = = CA2_MELEE & & player - > panim = = PA_ABILITY2 )
2016-12-23 17:31:07 +00:00
| | ( ( player - > charflags & SF_STOMPDAMAGE | | player - > pflags & PF_BOUNCING ) & & ( P_MobjFlip ( toucher ) * ( toucher - > z - ( special - > z + special - > height / 2 ) ) > 0 ) & & ( P_MobjFlip ( toucher ) * toucher - > momz < 0 ) )
2018-05-02 22:48:50 +00:00
| | player - > powers [ pw_invulnerability ] | | player - > powers [ pw_super ]
| | elementalpierce ) // Do you possess the ability to subdue the object?
2014-03-15 16:59:03 +00:00
{
2016-10-24 12:33:10 +00:00
if ( ( P_MobjFlip ( toucher ) * toucher - > momz < 0 ) & & ( elementalpierce ! = 1 ) )
{
if ( elementalpierce = = 2 )
P_DoBubbleBounce ( player ) ;
2017-03-19 16:48:35 +00:00
else if ( ! ( player - > charability2 = = CA2_MELEE & & player - > panim = = PA_ABILITY2 ) )
2016-10-24 12:33:10 +00:00
toucher - > momz = - toucher - > momz ;
}
2016-12-24 00:11:54 +00:00
if ( player - > pflags & PF_BOUNCING )
P_DoAbilityBounce ( player , false ) ;
2018-05-02 22:48:50 +00:00
if ( special - > info - > spawnhealth > 1 ) // Multi-hit? Bounce back!
{
toucher - > momx = - toucher - > momx ;
toucher - > momy = - toucher - > momy ;
}
2015-02-13 16:15:58 +00:00
P_DamageMobj ( special , toucher , toucher , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
}
else if ( ( ( toucher - > z < special - > z & & ! ( toucher - > eflags & MFE_VERTICALFLIP ) )
2018-05-02 22:48:50 +00:00
| | ( toucher - > z + toucher - > height > special - > z + special - > height & & ( toucher - > eflags & MFE_VERTICALFLIP ) ) )
2014-08-04 03:49:33 +00:00
& & player - > charability = = CA_FLY
& & ( player - > powers [ pw_tailsfly ]
2018-05-02 22:48:50 +00:00
| | toucher - > state - states = = S_PLAY_FLY_TIRED ) ) // Tails can shred stuff with her propeller.
2014-03-15 16:59:03 +00:00
{
2018-05-02 22:48:50 +00:00
toucher - > momz = - toucher - > momz / 2 ;
2014-03-15 16:59:03 +00:00
2015-02-13 16:15:58 +00:00
P_DamageMobj ( special , toucher , toucher , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
}
else
2015-02-13 16:15:58 +00:00
P_DamageMobj ( toucher , special , special , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
return ;
}
else if ( special - > flags & MF_FIRE )
{
2015-02-13 16:15:58 +00:00
P_DamageMobj ( toucher , special , special , 1 , DMG_FIRE ) ;
2014-03-15 16:59:03 +00:00
return ;
}
else
{
// We now identify by object type, not sprite! Tails 04-11-2001
switch ( special - > type )
{
// ***************************************** //
// Rings, coins, spheres, weapon panels, etc //
// ***************************************** //
case MT_REDTEAMRING :
if ( player - > ctfteam ! = 1 )
return ;
2017-09-28 13:39:47 +00:00
/* FALLTHRU */
2014-03-15 16:59:03 +00:00
case MT_BLUETEAMRING : // Yes, I'm lazy. Oh well, deal with it.
if ( special - > type = = MT_BLUETEAMRING & & player - > ctfteam ! = 2 )
return ;
2017-09-28 13:39:47 +00:00
/* FALLTHRU */
2014-03-15 16:59:03 +00:00
case MT_RING :
case MT_FLINGRING :
2018-06-03 21:41:54 +00:00
case MT_COIN :
case MT_FLINGCOIN :
2014-03-15 16:59:03 +00:00
if ( ! ( P_CanPickupItem ( player , false ) ) )
return ;
special - > momx = special - > momy = special - > momz = 0 ;
P_GivePlayerRings ( player , 1 ) ;
2018-06-03 21:41:54 +00:00
if ( ( maptol & TOL_NIGHTS ) & & special - > type ! = MT_FLINGRING & & special - > type ! = MT_FLINGCOIN )
2014-03-15 16:59:03 +00:00
P_DoNightsScore ( player ) ;
break ;
2018-06-03 21:41:54 +00:00
case MT_BLUESPHERE :
2014-03-15 16:59:03 +00:00
if ( ! ( P_CanPickupItem ( player , false ) ) )
return ;
2018-06-03 21:41:54 +00:00
special - > momx = special - > momy = special - > momz = 0 ;
P_GivePlayerSpheres ( player , 1 ) ;
2014-03-15 16:59:03 +00:00
2018-06-03 21:41:54 +00:00
special - > destscale = ( ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) ? 4 : 2 ) * special - > scale ;
if ( states [ special - > info - > deathstate ] . tics > 0 )
special - > scalespeed = FixedDiv ( FixedDiv ( special - > destscale , special - > scale ) , states [ special - > info - > deathstate ] . tics < < FRACBITS ) ;
else
special - > scalespeed = 4 * FRACUNIT / 5 ;
if ( maptol & TOL_NIGHTS )
2014-03-15 16:59:03 +00:00
P_DoNightsScore ( player ) ;
break ;
2018-06-03 21:41:54 +00:00
case MT_NIGHTSCHIP :
2014-03-15 16:59:03 +00:00
if ( ! ( P_CanPickupItem ( player , false ) ) )
return ;
2018-06-03 21:41:54 +00:00
special - > momx = special - > momy = special - > momz = 0 ;
P_GivePlayerSpheres ( player , 1 ) ;
if ( maptol & TOL_NIGHTS )
P_DoNightsScore ( player ) ;
break ;
case MT_NIGHTSSTAR :
if ( ! ( P_CanPickupItem ( player , false ) ) )
return ;
2014-03-15 16:59:03 +00:00
special - > momx = special - > momy = special - > momz = 0 ;
if ( maptol & TOL_NIGHTS )
P_DoNightsScore ( player ) ;
break ;
case MT_AUTOPICKUP :
case MT_BOUNCEPICKUP :
case MT_SCATTERPICKUP :
case MT_GRENADEPICKUP :
case MT_EXPLODEPICKUP :
case MT_RAILPICKUP :
2014-08-04 03:49:33 +00:00
if ( ! ( P_CanPickupItem ( player , true ) ) )
2014-03-15 16:59:03 +00:00
return ;
// Give the power and ringweapon
if ( special - > info - > mass > = pw_infinityring & & special - > info - > mass < = pw_railring )
{
INT32 pindex = special - > info - > mass - ( INT32 ) pw_infinityring ;
2015-05-27 04:45:34 +00:00
player - > powers [ special - > info - > mass ] + = ( UINT16 ) special - > reactiontime ;
2014-03-15 16:59:03 +00:00
player - > ringweapons | = 1 < < ( pindex - 1 ) ;
if ( player - > powers [ special - > info - > mass ] > rw_maximums [ pindex ] )
player - > powers [ special - > info - > mass ] = rw_maximums [ pindex ] ;
}
break ;
// Ammo pickups
case MT_INFINITYRING :
case MT_AUTOMATICRING :
case MT_BOUNCERING :
case MT_SCATTERRING :
case MT_GRENADERING :
case MT_EXPLOSIONRING :
case MT_RAILRING :
2014-08-04 03:49:33 +00:00
if ( ! ( P_CanPickupItem ( player , true ) ) )
2014-03-15 16:59:03 +00:00
return ;
if ( special - > info - > mass > = pw_infinityring & & special - > info - > mass < = pw_railring )
{
INT32 pindex = special - > info - > mass - ( INT32 ) pw_infinityring ;
player - > powers [ special - > info - > mass ] + = ( UINT16 ) special - > health ;
if ( player - > powers [ special - > info - > mass ] > rw_maximums [ pindex ] )
player - > powers [ special - > info - > mass ] = rw_maximums [ pindex ] ;
}
break ;
// ***************************** //
// Gameplay related collectibles //
// ***************************** //
// Special Stage Token
2017-07-15 19:15:34 +00:00
case MT_TOKEN :
2014-03-15 16:59:03 +00:00
if ( player - > bot )
return ;
2017-04-18 16:45:23 +00:00
P_AddPlayerScore ( player , 1000 ) ;
2018-03-30 20:49:15 +00:00
if ( gametype ! = GT_COOP | | modeattacking ) // score only?
2018-06-03 21:41:54 +00:00
{
S_StartSound ( toucher , sfx_chchng ) ;
2018-03-30 20:49:15 +00:00
break ;
2018-06-03 21:41:54 +00:00
}
2018-03-30 20:49:15 +00:00
tokenlist + = special - > health ;
if ( ALL7EMERALDS ( emeralds ) ) // Got all 7
2014-03-15 16:59:03 +00:00
{
2018-03-30 20:49:15 +00:00
if ( ! ( netgame | | multiplayer ) )
2017-04-18 16:45:23 +00:00
{
2018-03-30 20:49:15 +00:00
player - > continues + = 1 ;
players - > gotcontinue = true ;
if ( P_IsLocalPlayer ( player ) )
S_StartSound ( NULL , sfx_s3kac ) ;
2018-06-03 21:41:54 +00:00
else
S_StartSound ( toucher , sfx_chchng ) ;
2017-04-18 16:45:23 +00:00
}
2018-06-03 21:41:54 +00:00
else
S_StartSound ( toucher , sfx_chchng ) ;
2014-03-15 16:59:03 +00:00
}
2018-03-30 20:49:15 +00:00
else
2018-06-03 21:41:54 +00:00
{
2018-03-30 20:49:15 +00:00
token + + ;
2018-06-03 21:41:54 +00:00
S_StartSound ( toucher , sfx_token ) ;
}
2018-03-30 20:49:15 +00:00
2014-03-15 16:59:03 +00:00
break ;
// Emerald Hunt
case MT_EMERHUNT :
if ( player - > bot )
return ;
if ( hunt1 = = special )
hunt1 = NULL ;
else if ( hunt2 = = special )
hunt2 = NULL ;
else if ( hunt3 = = special )
hunt3 = NULL ;
if ( ! hunt1 & & ! hunt2 & & ! hunt3 )
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( ! playeringame [ i ] | | players [ i ] . spectator )
continue ;
players [ i ] . exiting = ( 14 * TICRATE ) / 5 + 1 ;
}
2018-06-03 21:41:54 +00:00
//S_StartSound(NULL, sfx_lvpass);
2014-03-15 16:59:03 +00:00
}
break ;
// Collectible emeralds
case MT_EMERALD1 :
case MT_EMERALD2 :
case MT_EMERALD3 :
case MT_EMERALD4 :
case MT_EMERALD5 :
case MT_EMERALD6 :
case MT_EMERALD7 :
if ( player - > bot )
return ;
if ( special - > threshold )
2015-05-27 06:08:18 +00:00
{
2014-03-15 16:59:03 +00:00
player - > powers [ pw_emeralds ] | = special - > info - > speed ;
2015-05-27 06:08:18 +00:00
P_DoMatchSuper ( player ) ;
}
2014-03-15 16:59:03 +00:00
else
emeralds | = special - > info - > speed ;
if ( special - > target & & special - > target - > type = = MT_EMERALDSPAWN )
{
if ( special - > target - > target )
P_SetTarget ( & special - > target - > target , NULL ) ;
special - > target - > threshold = 0 ;
P_SetTarget ( & special - > target , NULL ) ;
}
break ;
// Power stones / Match emeralds
case MT_FLINGEMERALD :
2014-08-04 03:49:33 +00:00
if ( ! ( P_CanPickupItem ( player , true ) ) | | player - > tossdelay )
2014-03-15 16:59:03 +00:00
return ;
player - > powers [ pw_emeralds ] | = special - > threshold ;
2015-05-27 06:08:18 +00:00
P_DoMatchSuper ( player ) ;
2014-03-15 16:59:03 +00:00
break ;
// Secret emblem thingy
case MT_EMBLEM :
{
2014-03-17 12:13:16 +00:00
if ( demoplayback | | player - > bot )
2014-03-15 16:59:03 +00:00
return ;
emblemlocations [ special - > health - 1 ] . collected = true ;
M_UpdateUnlockablesAndExtraEmblems ( ) ;
G_SaveGameData ( ) ;
break ;
}
// CTF Flags
case MT_REDFLAG :
case MT_BLUEFLAG :
if ( player - > bot )
return ;
if ( player - > powers [ pw_flashing ] | | player - > tossdelay )
return ;
if ( ! special - > spawnpoint )
return ;
if ( special - > fuse = = 1 )
return ;
// if (special->momz > 0)
// return;
{
UINT8 flagteam = ( special - > type = = MT_REDFLAG ) ? 1 : 2 ;
const char * flagtext ;
2016-04-07 02:55:58 +00:00
char flagcolor ;
char plname [ MAXPLAYERNAME + 4 ] ;
2014-03-15 16:59:03 +00:00
if ( special - > type = = MT_REDFLAG )
2016-04-07 02:55:58 +00:00
{
flagtext = M_GetText ( " Red flag " ) ;
flagcolor = ' \x85 ' ;
}
2014-03-15 16:59:03 +00:00
else
2016-04-07 02:55:58 +00:00
{
flagtext = M_GetText ( " Blue flag " ) ;
flagcolor = ' \x84 ' ;
}
snprintf ( plname , sizeof ( plname ) , " %s%s%s " ,
CTFTEAMCODE ( player ) ,
player_names [ player - players ] ,
CTFTEAMENDCODE ( player ) ) ;
2014-03-15 16:59:03 +00:00
if ( player - > ctfteam = = flagteam ) // Player is on the same team as the flag
{
// Ignore height, only check x/y for now
// avoids stupid problems with some flags constantly returning
if ( special - > x > > FRACBITS ! = special - > spawnpoint - > x
| | special - > y > > FRACBITS ! = special - > spawnpoint - > y )
{
special - > fuse = 1 ;
special - > flags2 | = MF2_JUSTATTACKED ;
if ( ! P_PlayerTouchingSectorSpecial ( player , 4 , 2 + flagteam ) )
{
2016-04-07 02:55:58 +00:00
CONS_Printf ( M_GetText ( " %s returned the %c%s%c to base. \n " ) , plname , flagcolor , flagtext , 0x80 ) ;
2014-03-15 16:59:03 +00:00
2016-04-07 02:55:58 +00:00
// The fuse code plays this sound effect
//if (players[consoleplayer].ctfteam == player->ctfteam)
// S_StartSound(NULL, sfx_hoop1);
2014-03-15 16:59:03 +00:00
}
}
}
else if ( player - > ctfteam ) // Player is on the other team (and not a spectator)
{
UINT16 flagflag = ( special - > type = = MT_REDFLAG ) ? GF_REDFLAG : GF_BLUEFLAG ;
mobj_t * * flagmobj = ( special - > type = = MT_REDFLAG ) ? & redflag : & blueflag ;
if ( player - > powers [ pw_super ] )
return ;
player - > gotflag | = flagflag ;
2016-04-07 02:55:58 +00:00
CONS_Printf ( M_GetText ( " %s picked up the %c%s%c! \n " ) , plname , flagcolor , flagtext , 0x80 ) ;
2014-03-15 16:59:03 +00:00
( * flagmobj ) = NULL ;
2014-08-04 03:49:33 +00:00
// code for dealing with abilities is handled elsewhere now
2014-03-15 16:59:03 +00:00
break ;
}
}
return ;
// ********************************** //
// NiGHTS gameplay items and powerups //
// ********************************** //
case MT_NIGHTSDRONE :
{
2018-06-03 21:41:54 +00:00
boolean spec = G_IsSpecialStage ( gamemap ) ;
if ( player - > bot )
return ;
if ( player - > exiting )
return ;
if ( player - > bonustime )
2014-03-15 16:59:03 +00:00
{
2018-06-03 21:41:54 +00:00
if ( spec ) //After-mare bonus time/emerald reward in special stages.
2014-08-04 03:49:33 +00:00
{
2018-06-03 21:41:54 +00:00
// only allow the player with the emerald in-hand to leave.
if ( toucher - > tracer
& & toucher - > tracer - > type = = MT_GOTEMERALD )
{ }
else // Make sure that SOMEONE has the emerald, at least!
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
if ( playeringame [ i ] & & players [ i ] . playerstate = = PST_LIVE
& & players [ i ] . mo - > tracer
& & players [ i ] . mo - > tracer - > type = = MT_GOTEMERALD )
return ;
// Well no one has an emerald, so exit anyway!
}
P_GiveEmerald ( false ) ;
// Don't play Ideya sound in special stage mode
2014-08-04 03:49:33 +00:00
}
2018-06-03 21:41:54 +00:00
else
S_StartSound ( toucher , special - > info - > activesound ) ;
}
else //Initial transformation. Don't allow second chances in special stages!
{
if ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE )
return ;
S_StartSound ( toucher , sfx_supert ) ;
}
P_SwitchSpheresBonusMode ( false ) ;
if ( ! ( netgame | | multiplayer ) & & ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
P_SetTarget ( & special - > tracer , toucher ) ;
P_NightserizePlayer ( player , special - > health ) ; // Transform!
if ( ! spec )
{
if ( toucher - > tracer ) // Move the ideya over to the drone!
2014-08-04 03:49:33 +00:00
{
2018-06-03 21:41:54 +00:00
mobj_t * hnext = special - > hnext ;
P_SetTarget ( & special - > hnext , toucher - > tracer ) ;
P_SetTarget ( & special - > hnext - > hnext , hnext ) ; // Buffalo buffalo Buffalo buffalo buffalo buffalo Buffalo buffalo.
P_SetTarget ( & special - > hnext - > target , special ) ;
P_SetTarget ( & toucher - > tracer , NULL ) ;
if ( hnext )
{
special - > hnext - > extravalue1 = ( angle_t ) ( hnext - > extravalue1 - 72 * ANG1 ) ;
if ( special - > hnext - > extravalue1 > hnext - > extravalue1 )
special - > hnext - > extravalue1 - = ( 72 * ANG1 ) / special - > hnext - > extravalue1 ;
}
}
if ( player - > exiting ) // ...then move it back?
{
mobj_t * hnext = special ;
while ( ( hnext = hnext - > hnext ) )
P_SetTarget ( & hnext - > target , toucher ) ;
2014-08-04 03:49:33 +00:00
}
2014-03-15 16:59:03 +00:00
}
2018-06-03 21:41:54 +00:00
return ;
2014-03-15 16:59:03 +00:00
}
case MT_NIGHTSLOOPHELPER :
// One second delay
2014-08-04 03:49:33 +00:00
if ( special - > fuse < toucher - > fuse - TICRATE )
2014-03-15 16:59:03 +00:00
{
thinker_t * th ;
mobj_t * mo2 ;
INT32 count ;
fixed_t x , y , z , gatherradius ;
angle_t d ;
statenum_t sparklestate = S_NULL ;
if ( special - > target ! = toucher ) // These ain't your helpers, pal!
return ;
x = special - > x > > FRACBITS ;
y = special - > y > > FRACBITS ;
z = special - > z > > FRACBITS ;
count = 1 ;
// scan the remaining thinkers
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo2 = ( mobj_t * ) th ;
if ( mo2 = = special )
continue ;
// Not our stuff!
if ( mo2 - > target ! = toucher )
continue ;
if ( mo2 - > type = = MT_NIGHTSPARKLE )
mo2 - > tics = 1 ;
else if ( mo2 - > type = = MT_NIGHTSLOOPHELPER )
{
if ( mo2 - > fuse > = special - > fuse )
{
count + + ;
x + = mo2 - > x > > FRACBITS ;
y + = mo2 - > y > > FRACBITS ;
z + = mo2 - > z > > FRACBITS ;
}
P_RemoveMobj ( mo2 ) ;
}
}
x = ( x / count ) < < FRACBITS ;
y = ( y / count ) < < FRACBITS ;
z = ( z / count ) < < FRACBITS ;
gatherradius = P_AproxDistance ( P_AproxDistance ( special - > x - x , special - > y - y ) , special - > z - z ) ;
P_RemoveMobj ( special ) ;
if ( player - > powers [ pw_nights_superloop ] )
{
gatherradius * = 2 ;
sparklestate = mobjinfo [ MT_NIGHTSPARKLE ] . seestate ;
}
if ( gatherradius < 30 * FRACUNIT ) // Player is probably just sitting there.
return ;
for ( d = 0 ; d < 16 ; d + + )
P_SpawnParaloop ( x , y , z , gatherradius , 16 , MT_NIGHTSPARKLE , sparklestate , d * ANGLE_22h , false ) ;
S_StartSound ( toucher , sfx_prloop ) ;
// Now we RE-scan all the thinkers to find close objects to pull
// in from the paraloop. Isn't this just so efficient?
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo2 = ( mobj_t * ) th ;
if ( P_AproxDistance ( P_AproxDistance ( mo2 - > x - x , mo2 - > y - y ) , mo2 - > z - z ) > gatherradius )
continue ;
if ( mo2 - > flags & MF_SHOOTABLE )
{
2015-02-13 16:15:58 +00:00
P_DamageMobj ( mo2 , toucher , toucher , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
continue ;
}
// Make these APPEAR!
// Tails 12-15-2003
if ( mo2 - > flags & MF_NIGHTSITEM )
{
// Requires Bonus Time
if ( ( mo2 - > flags2 & MF2_STRONGBOX ) & & ! player - > bonustime )
continue ;
if ( ! ( mo2 - > flags & MF_SPECIAL ) & & mo2 - > health )
{
2017-05-09 15:20:26 +00:00
mo2 - > flags2 & = ~ MF2_DONTDRAW ;
2014-03-15 16:59:03 +00:00
mo2 - > flags | = MF_SPECIAL ;
mo2 - > flags & = ~ MF_NIGHTSITEM ;
S_StartSound ( toucher , sfx_hidden ) ;
continue ;
}
}
2018-06-03 21:41:54 +00:00
if ( ! ( mo2 - > type = = MT_RING | | mo2 - > type = = MT_COIN | | mo2 - > type = = MT_BLUESPHERE
| | mo2 - > type = = MT_NIGHTSCHIP | | mo2 - > type = = MT_NIGHTSSTAR
2017-05-09 15:20:26 +00:00
| | ( ( mo2 - > type = = MT_EMBLEM ) & & ( mo2 - > reactiontime & GE_NIGHTSPULL ) ) ) )
2014-03-15 16:59:03 +00:00
continue ;
// Yay! The thing's in reach! Pull it in!
mo2 - > flags | = MF_NOCLIP | MF_NOCLIPHEIGHT ;
mo2 - > flags2 | = MF2_NIGHTSPULL ;
P_SetTarget ( & mo2 - > tracer , toucher ) ;
}
}
return ;
case MT_EGGCAPSULE :
if ( player - > bot )
return ;
// make sure everything is as it should be, THEN take rings from players in special stages
2017-03-14 18:11:17 +00:00
if ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE & & ! toucher - > target )
2014-08-04 03:49:33 +00:00
return ;
if ( player - > mare ! = special - > threshold ) // wrong mare
2014-03-15 16:59:03 +00:00
return ;
2014-08-04 03:49:33 +00:00
if ( special - > reactiontime > 0 ) // capsule already has a player attacking it, ignore
2014-03-15 16:59:03 +00:00
return ;
if ( G_IsSpecialStage ( gamemap ) & & ! player - > exiting )
2018-06-03 21:41:54 +00:00
{ // In special stages, share spheres. Everyone gives up theirs to the player who touched the capsule
2014-03-15 16:59:03 +00:00
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2018-06-03 21:41:54 +00:00
if ( playeringame [ i ] & & ( & players [ i ] ! = player ) & & players [ i ] . spheres > 0 )
2014-03-15 16:59:03 +00:00
{
2018-06-03 21:41:54 +00:00
player - > spheres + = players [ i ] . spheres ;
players [ i ] . spheres = 0 ;
2014-03-15 16:59:03 +00:00
}
}
2018-06-03 21:41:54 +00:00
if ( player - > spheres < = 0 | | player - > exiting )
2014-03-15 16:59:03 +00:00
return ;
// Mark the player as 'pull into the capsule'
P_SetTarget ( & player - > capsule , special ) ;
special - > reactiontime = ( player - players ) + 1 ;
P_SetTarget ( & special - > target , NULL ) ;
// Clear text
player - > texttimer = 0 ;
return ;
case MT_NIGHTSBUMPER :
// Don't trigger if the stage is ended/failed
if ( player - > exiting )
return ;
if ( player - > bumpertime < TICRATE / 4 )
{
2014-08-04 03:49:33 +00:00
S_StartSound ( toucher , special - > info - > seesound ) ;
2017-03-14 18:11:17 +00:00
if ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
{
player - > bumpertime = TICRATE / 2 ;
if ( special - > threshold > 0 )
player - > flyangle = ( special - > threshold * 30 ) - 1 ;
else
player - > flyangle = special - > threshold ;
player - > speed = FixedMul ( special - > info - > speed , special - > scale ) ;
// Potentially causes axis transfer failures.
// Also rarely worked properly anyway.
//P_UnsetThingPosition(player->mo);
//player->mo->x = special->x;
//player->mo->y = special->y;
//P_SetThingPosition(player->mo);
2014-08-04 03:49:33 +00:00
toucher - > z = special - > z + ( special - > height / 4 ) ;
2014-03-15 16:59:03 +00:00
}
else // More like a spring
{
angle_t fa ;
fixed_t xspeed , yspeed ;
const fixed_t speed = FixedMul ( FixedDiv ( special - > info - > speed * FRACUNIT , 75 * FRACUNIT ) , FixedSqrt ( FixedMul ( toucher - > scale , special - > scale ) ) ) ;
player - > bumpertime = TICRATE / 2 ;
2014-08-04 03:49:33 +00:00
P_UnsetThingPosition ( toucher ) ;
toucher - > x = special - > x ;
toucher - > y = special - > y ;
P_SetThingPosition ( toucher ) ;
toucher - > z = special - > z + ( special - > height / 4 ) ;
2014-03-15 16:59:03 +00:00
if ( special - > threshold > 0 )
fa = ( FixedAngle ( ( ( special - > threshold * 30 ) - 1 ) * FRACUNIT ) > > ANGLETOFINESHIFT ) & FINEMASK ;
else
fa = 0 ;
xspeed = FixedMul ( FINECOSINE ( fa ) , speed ) ;
yspeed = FixedMul ( FINESINE ( fa ) , speed ) ;
2014-08-04 03:49:33 +00:00
P_InstaThrust ( toucher , special - > angle , xspeed / 10 ) ;
toucher - > momz = yspeed / 11 ;
2014-03-15 16:59:03 +00:00
2014-08-04 03:49:33 +00:00
toucher - > angle = special - > angle ;
2014-03-15 16:59:03 +00:00
if ( player = = & players [ consoleplayer ] )
2014-08-04 03:49:33 +00:00
localangle = toucher - > angle ;
2014-03-15 16:59:03 +00:00
else if ( player = = & players [ secondarydisplayplayer ] )
2014-08-04 03:49:33 +00:00
localangle2 = toucher - > angle ;
2014-03-15 16:59:03 +00:00
P_ResetPlayer ( player ) ;
2015-01-22 15:23:45 +00:00
P_SetPlayerMobjState ( toucher , S_PLAY_FALL ) ;
2014-03-15 16:59:03 +00:00
}
}
return ;
case MT_NIGHTSSUPERLOOP :
2017-03-14 18:11:17 +00:00
if ( player - > bot | | ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
2014-03-15 16:59:03 +00:00
return ;
if ( ! G_IsSpecialStage ( gamemap ) )
player - > powers [ pw_nights_superloop ] = ( UINT16 ) special - > info - > speed ;
else
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
players [ i ] . powers [ pw_nights_superloop ] = ( UINT16 ) special - > info - > speed ;
if ( special - > info - > deathsound ! = sfx_None )
S_StartSound ( NULL , special - > info - > deathsound ) ;
}
// CECHO showing you what this item is
if ( player = = & players [ displayplayer ] | | G_IsSpecialStage ( gamemap ) )
{
HU_SetCEchoFlags ( V_AUTOFADEOUT ) ;
HU_SetCEchoDuration ( 4 ) ;
HU_DoCEcho ( M_GetText ( " \\ \\ \\ \\ \\ \\ \\ \\ Super Paraloop " ) ) ;
}
break ;
case MT_NIGHTSDRILLREFILL :
2017-03-14 18:11:17 +00:00
if ( player - > bot | | ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
2014-03-15 16:59:03 +00:00
return ;
if ( ! G_IsSpecialStage ( gamemap ) )
player - > drillmeter = special - > info - > speed ;
else
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
players [ i ] . drillmeter = special - > info - > speed ;
if ( special - > info - > deathsound ! = sfx_None )
S_StartSound ( NULL , special - > info - > deathsound ) ;
}
// CECHO showing you what this item is
if ( player = = & players [ displayplayer ] | | G_IsSpecialStage ( gamemap ) )
{
HU_SetCEchoFlags ( V_AUTOFADEOUT ) ;
HU_SetCEchoDuration ( 4 ) ;
HU_DoCEcho ( M_GetText ( " \\ \\ \\ \\ \\ \\ \\ \\ Drill Refill " ) ) ;
}
break ;
case MT_NIGHTSHELPER :
2017-03-14 18:11:17 +00:00
if ( player - > bot | | ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
2014-03-15 16:59:03 +00:00
return ;
if ( ! G_IsSpecialStage ( gamemap ) )
{
// A flicky orbits us now
mobj_t * flickyobj = P_SpawnMobj ( toucher - > x , toucher - > y , toucher - > z + toucher - > info - > height , MT_NIGHTOPIANHELPER ) ;
P_SetTarget ( & flickyobj - > target , toucher ) ;
player - > powers [ pw_nights_helper ] = ( UINT16 ) special - > info - > speed ;
}
else
{
mobj_t * flickyobj ;
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . mo & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE ) {
2014-03-15 16:59:03 +00:00
players [ i ] . powers [ pw_nights_helper ] = ( UINT16 ) special - > info - > speed ;
flickyobj = P_SpawnMobj ( players [ i ] . mo - > x , players [ i ] . mo - > y , players [ i ] . mo - > z + players [ i ] . mo - > info - > height , MT_NIGHTOPIANHELPER ) ;
P_SetTarget ( & flickyobj - > target , players [ i ] . mo ) ;
}
if ( special - > info - > deathsound ! = sfx_None )
S_StartSound ( NULL , special - > info - > deathsound ) ;
}
// CECHO showing you what this item is
if ( player = = & players [ displayplayer ] | | G_IsSpecialStage ( gamemap ) )
{
HU_SetCEchoFlags ( V_AUTOFADEOUT ) ;
HU_SetCEchoDuration ( 4 ) ;
HU_DoCEcho ( M_GetText ( " \\ \\ \\ \\ \\ \\ \\ \\ Nightopian Helper " ) ) ;
}
break ;
case MT_NIGHTSEXTRATIME :
2017-03-14 18:11:17 +00:00
if ( player - > bot | | ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
2014-03-15 16:59:03 +00:00
return ;
if ( ! G_IsSpecialStage ( gamemap ) )
{
player - > nightstime + = special - > info - > speed ;
player - > startedtime + = special - > info - > speed ;
P_RestoreMusic ( player ) ;
}
else
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
{
players [ i ] . nightstime + = special - > info - > speed ;
players [ i ] . startedtime + = special - > info - > speed ;
P_RestoreMusic ( & players [ i ] ) ;
}
if ( special - > info - > deathsound ! = sfx_None )
S_StartSound ( NULL , special - > info - > deathsound ) ;
}
// CECHO showing you what this item is
if ( player = = & players [ displayplayer ] | | G_IsSpecialStage ( gamemap ) )
{
HU_SetCEchoFlags ( V_AUTOFADEOUT ) ;
HU_SetCEchoDuration ( 4 ) ;
HU_DoCEcho ( M_GetText ( " \\ \\ \\ \\ \\ \\ \\ \\ Extra Time " ) ) ;
}
break ;
case MT_NIGHTSLINKFREEZE :
2017-03-14 18:11:17 +00:00
if ( player - > bot | | ! ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) )
2014-03-15 16:59:03 +00:00
return ;
if ( ! G_IsSpecialStage ( gamemap ) )
{
player - > powers [ pw_nights_linkfreeze ] = ( UINT16 ) special - > info - > speed ;
player - > linktimer = 2 * TICRATE ;
}
else
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
{
players [ i ] . powers [ pw_nights_linkfreeze ] + = ( UINT16 ) special - > info - > speed ;
players [ i ] . linktimer = 2 * TICRATE ;
}
if ( special - > info - > deathsound ! = sfx_None )
S_StartSound ( NULL , special - > info - > deathsound ) ;
}
// CECHO showing you what this item is
if ( player = = & players [ displayplayer ] | | G_IsSpecialStage ( gamemap ) )
{
HU_SetCEchoFlags ( V_AUTOFADEOUT ) ;
HU_SetCEchoDuration ( 4 ) ;
HU_DoCEcho ( M_GetText ( " \\ \\ \\ \\ \\ \\ \\ \\ Link Freeze " ) ) ;
}
break ;
case MT_HOOPCOLLIDE :
// This produces a kind of 'domino effect' with the hoop's pieces.
for ( ; special - > hprev ! = NULL ; special = special - > hprev ) ; // Move to the first sprite in the hoop
i = 0 ;
for ( ; special - > type = = MT_HOOP ; special = special - > hnext )
{
special - > fuse = 11 ;
special - > movedir = i ;
special - > extravalue1 = special - > target - > extravalue1 ;
special - > extravalue2 = special - > target - > extravalue2 ;
special - > target - > threshold = 4242 ;
i + + ;
}
// Make the collision detectors disappear.
{
mobj_t * hnext ;
for ( ; special ! = NULL ; special = hnext )
{
hnext = special - > hnext ;
P_RemoveMobj ( special ) ;
}
}
P_DoNightsScore ( player ) ;
// Hoops are the only things that should add to the drill meter
// Also, one tic's worth of drill is too much.
if ( G_IsSpecialStage ( gamemap ) )
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
2017-03-14 18:11:17 +00:00
if ( playeringame [ i ] & & players [ i ] . powers [ pw_carry ] = = CR_NIGHTSMODE )
2014-03-15 16:59:03 +00:00
players [ i ] . drillmeter + = TICRATE / 2 ;
}
else if ( player - > bot )
players [ consoleplayer ] . drillmeter + = TICRATE / 2 ;
else
player - > drillmeter + = TICRATE / 2 ;
// Play hoop sound -- pick one depending on the current link.
if ( player - > linkcount < = 5 )
S_StartSound ( toucher , sfx_hoop1 ) ;
else if ( player - > linkcount < = 10 )
S_StartSound ( toucher , sfx_hoop2 ) ;
else
S_StartSound ( toucher , sfx_hoop3 ) ;
return ;
// ***** //
// Mario //
// ***** //
case MT_SHELL :
{
2017-01-25 14:52:36 +00:00
boolean bounceon = ( ( P_MobjFlip ( toucher ) * ( toucher - > z - ( special - > z + special - > height / 2 ) ) > 0 ) & & ( P_MobjFlip ( toucher ) * toucher - > momz < 0 ) ) ;
if ( special - > threshold = = TICRATE ) // it's moving
{
if ( bounceon )
{
// Stop it!
special - > momx = special - > momy = 0 ;
S_StartSound ( toucher , sfx_mario2 ) ;
P_SetTarget ( & special - > target , NULL ) ;
special - > threshold = TICRATE - 1 ;
toucher - > momz = - toucher - > momz ;
}
2017-01-25 14:52:36 +00:00
else // can't handle in PIT_CheckThing because of landing-on causing it to stop
P_DamageMobj ( toucher , special , special - > target , 1 , 0 ) ;
2017-01-25 14:52:36 +00:00
}
else if ( special - > threshold = = 0 )
{
// Kick that sucker around!
special - > movedir = ( ( special - > movedir = = 1 ) ? - 1 : 1 ) ;
P_InstaThrust ( special , toucher - > angle , ( special - > info - > speed * special - > scale ) ) ;
S_StartSound ( toucher , sfx_mario2 ) ;
P_SetTarget ( & special - > target , toucher ) ;
special - > threshold = ( 3 * TICRATE ) / 2 ;
if ( bounceon )
toucher - > momz = - toucher - > momz ;
}
2014-03-15 16:59:03 +00:00
}
return ;
case MT_AXE :
{
line_t junk ;
thinker_t * th ;
mobj_t * mo2 ;
if ( player - > bot )
return ;
junk . tag = 649 ;
EV_DoElevator ( & junk , bridgeFall , false ) ;
// scan the remaining thinkers to find koopa
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo2 = ( mobj_t * ) th ;
if ( mo2 - > type = = MT_KOOPA )
{
mo2 - > momz = 5 * FRACUNIT ;
break ;
}
}
}
break ;
case MT_FIREFLOWER :
if ( player - > bot )
return ;
2016-10-12 22:47:18 +00:00
2016-10-24 11:35:40 +00:00
S_StartSound ( toucher , sfx_mario3 ) ;
2016-10-12 22:47:18 +00:00
2016-10-24 11:35:40 +00:00
player - > powers [ pw_shield ] = ( player - > powers [ pw_shield ] & SH_NOSTACK ) | SH_FIREFLOWER ;
if ( ! ( player - > powers [ pw_super ] | | ( mariomode & & player - > powers [ pw_invulnerability ] ) ) )
2016-10-12 16:55:07 +00:00
{
2016-10-24 11:35:40 +00:00
player - > mo - > color = SKINCOLOR_WHITE ;
G_GhostAddColor ( GHC_FIREFLOWER ) ;
2016-10-12 16:55:07 +00:00
}
2016-10-12 22:47:18 +00:00
2014-03-15 16:59:03 +00:00
break ;
// *************** //
// Misc touchables //
// *************** //
case MT_STARPOST :
if ( player - > bot )
return ;
// In circuit, player must have touched all previous starposts
if ( circuitmap
& & special - > health - player - > starpostnum > 1 )
{
// blatant reuse of a variable that's normally unused in circuit
if ( ! player - > tossdelay )
2014-08-04 03:49:33 +00:00
S_StartSound ( toucher , sfx_lose ) ;
2014-03-15 16:59:03 +00:00
player - > tossdelay = 3 ;
return ;
}
// We could technically have 91.1 Star Posts. 90 is cleaner.
if ( special - > health > 90 )
{
CONS_Debug ( DBG_GAMELOGIC , " Bad Starpost Number! \n " ) ;
return ;
}
if ( player - > starpostnum > = special - > health )
return ; // Already hit this post
2017-06-03 16:55:03 +00:00
if ( cv_coopstarposts . value & & gametype = = GT_COOP & & ( netgame | | multiplayer ) )
2017-05-28 14:33:35 +00:00
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( playeringame [ i ] )
{
if ( players [ i ] . bot ) // ignore dumb, stupid tails
continue ;
players [ i ] . starposttime = leveltime ;
players [ i ] . starpostx = player - > mo - > x > > FRACBITS ;
players [ i ] . starposty = player - > mo - > y > > FRACBITS ;
players [ i ] . starpostz = special - > z > > FRACBITS ;
players [ i ] . starpostangle = special - > angle ;
players [ i ] . starpostnum = special - > health ;
2017-06-03 16:55:03 +00:00
if ( cv_coopstarposts . value = = 2 & & ( players [ i ] . playerstate = = PST_DEAD | | players [ i ] . spectator ) & & P_GetLives ( & players [ i ] ) )
2017-05-29 20:23:00 +00:00
P_SpectatorJoinGame ( & players [ i ] ) ; //players[i].playerstate = PST_REBORN;
2017-05-28 14:33:35 +00:00
}
}
S_StartSound ( NULL , special - > info - > painsound ) ;
}
else
{
// Save the player's time and position.
player - > starposttime = leveltime ;
player - > starpostx = toucher - > x > > FRACBITS ;
player - > starposty = toucher - > y > > FRACBITS ;
player - > starpostz = special - > z > > FRACBITS ;
player - > starpostangle = special - > angle ;
player - > starpostnum = special - > health ;
S_StartSound ( toucher , special - > info - > painsound ) ;
}
2014-03-15 16:59:03 +00:00
P_ClearStarPost ( special - > health ) ;
// Find all starposts in the level with this value.
{
thinker_t * th ;
mobj_t * mo2 ;
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo2 = ( mobj_t * ) th ;
if ( mo2 = = special )
continue ;
if ( mo2 - > type = = MT_STARPOST & & mo2 - > health = = special - > health )
{
if ( ! ( netgame & & circuitmap & & player ! = & players [ consoleplayer ] ) )
P_SetMobjState ( mo2 , mo2 - > info - > painstate ) ;
}
}
}
2014-08-04 03:49:33 +00:00
S_StartSound ( toucher , special - > info - > painsound ) ;
2014-03-15 16:59:03 +00:00
if ( ! ( netgame & & circuitmap & & player ! = & players [ consoleplayer ] ) )
P_SetMobjState ( special , special - > info - > painstate ) ;
return ;
case MT_FAKEMOBILE :
{
fixed_t touchx , touchy , touchspeed ;
angle_t angle ;
if ( P_AproxDistance ( toucher - > x - special - > x , toucher - > y - special - > y ) >
P_AproxDistance ( ( toucher - > x - toucher - > momx ) - special - > x , ( toucher - > y - toucher - > momy ) - special - > y ) )
{
touchx = toucher - > x + toucher - > momx ;
touchy = toucher - > y + toucher - > momy ;
}
else
{
touchx = toucher - > x ;
touchy = toucher - > y ;
}
angle = R_PointToAngle2 ( special - > x , special - > y , touchx , touchy ) ;
touchspeed = P_AproxDistance ( toucher - > momx , toucher - > momy ) ;
toucher - > momx = P_ReturnThrustX ( special , angle , touchspeed ) ;
toucher - > momy = P_ReturnThrustY ( special , angle , touchspeed ) ;
toucher - > momz = - toucher - > momz ;
if ( player - > pflags & PF_GLIDING )
{
2017-03-18 21:06:06 +00:00
player - > pflags & = ~ ( PF_GLIDING | PF_JUMPED | PF_NOJUMPDAMAGE ) ;
2015-01-22 15:23:45 +00:00
P_SetPlayerMobjState ( toucher , S_PLAY_FALL ) ;
2014-03-15 16:59:03 +00:00
}
2017-03-23 19:11:22 +00:00
player - > homing = 0 ;
2014-03-15 16:59:03 +00:00
// Play a bounce sound?
S_StartSound ( toucher , special - > info - > painsound ) ;
}
return ;
case MT_BLACKEGGMAN_GOOPFIRE :
2017-03-15 21:51:35 +00:00
if ( ! player - > powers [ pw_flashing ] )
2014-03-15 16:59:03 +00:00
{
toucher - > momx = 0 ;
toucher - > momy = 0 ;
if ( toucher - > momz ! = 0 )
special - > momz = toucher - > momz ;
2017-03-15 21:51:35 +00:00
player - > powers [ pw_carry ] = CR_BRAKGOOP ;
P_SetTarget ( & toucher - > tracer , special ) ;
2014-03-15 16:59:03 +00:00
P_ResetPlayer ( player ) ;
if ( special - > target & & special - > target - > state = = & states [ S_BLACKEGG_SHOOT1 ] )
{
2016-03-27 14:33:15 +00:00
if ( special - > target - > health < = 2 & & P_RandomChance ( FRACUNIT / 2 ) )
2014-03-15 16:59:03 +00:00
P_SetMobjState ( special - > target , special - > target - > info - > missilestate ) ;
else
P_SetMobjState ( special - > target , special - > target - > info - > raisestate ) ;
}
}
return ;
case MT_EGGSHIELD :
{
2018-05-22 22:02:54 +00:00
angle_t angle = R_PointToAngle2 ( special - > x , special - > y , toucher - > x , toucher - > y ) - special - > angle ;
fixed_t touchspeed = P_AproxDistance ( toucher - > momx , toucher - > momy ) ;
if ( touchspeed < special - > scale )
touchspeed = special - > scale ;
2014-03-15 16:59:03 +00:00
// Blocked by the shield?
if ( ! ( angle > ANGLE_90 & & angle < ANGLE_270 ) )
{
toucher - > momx = P_ReturnThrustX ( special , special - > angle , touchspeed ) ;
toucher - > momy = P_ReturnThrustY ( special , special - > angle , touchspeed ) ;
toucher - > momz = - toucher - > momz ;
if ( player - > pflags & PF_GLIDING )
{
2017-03-18 21:06:06 +00:00
player - > pflags & = ~ ( PF_GLIDING | PF_JUMPED | PF_NOJUMPDAMAGE ) ;
2015-01-22 15:23:45 +00:00
P_SetPlayerMobjState ( toucher , S_PLAY_FALL ) ;
2014-03-15 16:59:03 +00:00
}
2017-03-23 19:11:22 +00:00
player - > homing = 0 ;
2014-03-15 16:59:03 +00:00
// Play a bounce sound?
S_StartSound ( toucher , special - > info - > painsound ) ;
2018-05-22 22:02:54 +00:00
// experimental bounce
if ( special - > target )
special - > target - > extravalue1 = - special - > target - > info - > speed ;
2014-03-15 16:59:03 +00:00
}
2018-05-31 20:00:12 +00:00
else
2014-03-15 16:59:03 +00:00
{
// Shatter the shield!
toucher - > momx = - toucher - > momx / 2 ;
toucher - > momy = - toucher - > momy / 2 ;
toucher - > momz = - toucher - > momz ;
break ;
}
}
return ;
case MT_BIGTUMBLEWEED :
case MT_LITTLETUMBLEWEED :
if ( toucher - > momx | | toucher - > momy )
{
special - > momx = toucher - > momx ;
special - > momy = toucher - > momy ;
special - > momz = P_AproxDistance ( toucher - > momx , toucher - > momy ) / 4 ;
if ( toucher - > momz > 0 )
special - > momz + = toucher - > momz / 8 ;
P_SetMobjState ( special , special - > info - > seestate ) ;
}
return ;
2018-05-24 00:40:57 +00:00
case MT_SMALLGRABCHAIN :
case MT_BIGGRABCHAIN :
if ( P_MobjFlip ( toucher ) * toucher - > momz > 0
2016-09-23 22:48:48 +00:00
| | ( player - > powers [ pw_carry ] ) )
2014-03-15 16:59:03 +00:00
return ;
if ( toucher - > z > special - > z + special - > height / 2 )
return ;
if ( toucher - > z + toucher - > height / 2 < special - > z )
return ;
if ( player - > powers [ pw_flashing ] )
return ;
2018-04-03 00:46:42 +00:00
if ( special - > movefactor & & special - > tracer & & special - > tracer - > angle ! = ANGLE_90 & & special - > tracer - > angle ! = ANGLE_270 )
2017-07-12 13:01:16 +00:00
{ // I don't expect you to understand this, Mr Bond...
2018-04-03 00:46:42 +00:00
angle_t ang = R_PointToAngle2 ( special - > x , special - > y , toucher - > x , toucher - > y ) - special - > tracer - > angle ;
if ( ( special - > movefactor > 0 ) = = ( special - > tracer - > angle > ANGLE_90 & & special - > tracer - > angle < ANGLE_270 ) )
2017-07-12 13:01:16 +00:00
ang + = ANGLE_180 ;
if ( ang < ANGLE_180 )
return ; // I expect you to die.
}
2014-03-15 16:59:03 +00:00
P_ResetPlayer ( player ) ;
P_SetTarget ( & toucher - > tracer , special ) ;
Hooh boy.
****
* MF2_MACEROTATE. Apply to any object. Replaces the indiscriminate spamming of A_MaceRotate each tic.
****
* Mace point mapthings have been slightly modified.
- MTF_AMBUSH: bigger luke theory (has no effect on custom mace, different effect on spring mace)
- MTF_OBJECTFLIP: flips the objects, but nothing else - just so it doesn't look out of place in gravflip sections
- MTF_OBJECTSPECIAL: keeps it from attempting to play swinging sounds
- angle: tag of controlling linedef
- parameter: number of "spokes" minus one - for example, a parameter of 2 results in 3 equidistant maces rotating around the same point.
****
* Mace linedefs have been significantly revamped.
- line dx: number of chain links
- line dy: speed (in FU)
- frontside floor height: Pitch (in degrees; how much it "tilts" over - Yaw influences the axis it's tilting on)
- frontside ceiling height: Yaw (in degrees; rotation of entire thing on xy plane)
- frontside x offset: Phase (in degrees; how far it is through the rotation cycle)
- frontside y offset: Max speed (in FU; if less than speed, set to speed*2)
- backside floor height: Pinch (in degrees; 0 if no backside; essentially makes rotation conical instead of wheel-like)
- backside ceiling height: Roll (in degrees; 0 if no backside; rotates on the axis of the spinning - identical to Phase for spinning maces, but useful for rotating swinging maces as opposed to just offsetting them)
- backside x offset: Number of "antispokes" (0 if no backside; makes that many spokes not exist so you can put another mace/chain type in there instead; for combo mace/chain instead turns them into chains directly)
- backside y offset: Width (in number of extra chains per side; 0 if no backside; creates a "skiprope" arrangement)
----
- ML_NOCLIMB: for chains and chain-mace combos, allow for player control of yaw through strafe keys
- ML_EFFECT1: replacing the seperate mapthings, this makes a mace type swing instead of spin.
- ML_EFFECT2: for all spokes of the mace wheel ending in maces, make the chains out of the mace type (inverted for firebars)
- ML_EFFECT3: spawn a bonus mace type at the center(s) of rotation
- ML_EFFECT4: don't clip inside ground
****
* Mapthing 1104 represents both spinning and swinging maces from prior versions of SRB2.
* Mapthing 1105 has gone from being a swinging mace variant to a combination of chains and maces in a single unit, provided the number of "spokes" is greater than one.
* Mapthing 1105 has gone from being a swinging chain variant to a vertical spring-on-a-ball-on-a-chain. Yellow by default, apply MTF_AMBUSH to turn into a red spring.
* Mapthing 1107 represents both spinning and swinging chains from prior versions of SRB2.
* Mapthing 1108 is completely untouched except to port over 2.1's functionality to the new backend.
* Mapthing 1109 is a Mario castle-level style firebar. This inverts the functionality of ML_EFFECT2 on the tagged linedef.
* Mapthing 1110 is a free slot should we want to implement another type of base-game mace.
* Mapthing 1111 is a custom mace. Use the linedef's frontside texture slots to identify a macetype mobjtype, then use the backside texture slots to identify a linktype mobjtype (defaults to MT_NULL if no backside).
****
Whooh. Requires new patch.dta for sprites.
2017-07-02 14:11:09 +00:00
if ( special - > tracer & & ! ( special - > tracer - > flags2 & MF2_STRONGBOX ) )
2014-03-15 16:59:03 +00:00
{
2016-09-23 22:48:48 +00:00
player - > powers [ pw_carry ] = CR_MACESPIN ;
2014-03-15 16:59:03 +00:00
S_StartSound ( toucher , sfx_spin ) ;
2017-03-11 02:09:01 +00:00
P_SetPlayerMobjState ( toucher , S_PLAY_ROLL ) ;
2014-03-15 16:59:03 +00:00
}
else
2016-09-23 22:48:48 +00:00
player - > powers [ pw_carry ] = CR_GENERIC ;
2016-02-14 20:28:03 +00:00
// Can't jump first frame
player - > pflags | = PF_JUMPSTASIS ;
Hooh boy.
****
* MF2_MACEROTATE. Apply to any object. Replaces the indiscriminate spamming of A_MaceRotate each tic.
****
* Mace point mapthings have been slightly modified.
- MTF_AMBUSH: bigger luke theory (has no effect on custom mace, different effect on spring mace)
- MTF_OBJECTFLIP: flips the objects, but nothing else - just so it doesn't look out of place in gravflip sections
- MTF_OBJECTSPECIAL: keeps it from attempting to play swinging sounds
- angle: tag of controlling linedef
- parameter: number of "spokes" minus one - for example, a parameter of 2 results in 3 equidistant maces rotating around the same point.
****
* Mace linedefs have been significantly revamped.
- line dx: number of chain links
- line dy: speed (in FU)
- frontside floor height: Pitch (in degrees; how much it "tilts" over - Yaw influences the axis it's tilting on)
- frontside ceiling height: Yaw (in degrees; rotation of entire thing on xy plane)
- frontside x offset: Phase (in degrees; how far it is through the rotation cycle)
- frontside y offset: Max speed (in FU; if less than speed, set to speed*2)
- backside floor height: Pinch (in degrees; 0 if no backside; essentially makes rotation conical instead of wheel-like)
- backside ceiling height: Roll (in degrees; 0 if no backside; rotates on the axis of the spinning - identical to Phase for spinning maces, but useful for rotating swinging maces as opposed to just offsetting them)
- backside x offset: Number of "antispokes" (0 if no backside; makes that many spokes not exist so you can put another mace/chain type in there instead; for combo mace/chain instead turns them into chains directly)
- backside y offset: Width (in number of extra chains per side; 0 if no backside; creates a "skiprope" arrangement)
----
- ML_NOCLIMB: for chains and chain-mace combos, allow for player control of yaw through strafe keys
- ML_EFFECT1: replacing the seperate mapthings, this makes a mace type swing instead of spin.
- ML_EFFECT2: for all spokes of the mace wheel ending in maces, make the chains out of the mace type (inverted for firebars)
- ML_EFFECT3: spawn a bonus mace type at the center(s) of rotation
- ML_EFFECT4: don't clip inside ground
****
* Mapthing 1104 represents both spinning and swinging maces from prior versions of SRB2.
* Mapthing 1105 has gone from being a swinging mace variant to a combination of chains and maces in a single unit, provided the number of "spokes" is greater than one.
* Mapthing 1105 has gone from being a swinging chain variant to a vertical spring-on-a-ball-on-a-chain. Yellow by default, apply MTF_AMBUSH to turn into a red spring.
* Mapthing 1107 represents both spinning and swinging chains from prior versions of SRB2.
* Mapthing 1108 is completely untouched except to port over 2.1's functionality to the new backend.
* Mapthing 1109 is a Mario castle-level style firebar. This inverts the functionality of ML_EFFECT2 on the tagged linedef.
* Mapthing 1110 is a free slot should we want to implement another type of base-game mace.
* Mapthing 1111 is a custom mace. Use the linedef's frontside texture slots to identify a macetype mobjtype, then use the backside texture slots to identify a linktype mobjtype (defaults to MT_NULL if no backside).
****
Whooh. Requires new patch.dta for sprites.
2017-07-02 14:11:09 +00:00
2014-03-15 16:59:03 +00:00
return ;
case MT_EGGMOBILE2_POGO :
// sanity checks
if ( ! special - > target | | ! special - > target - > health )
return ;
// Goomba Stomp'd!
if ( special - > target - > momz < 0 )
{
2015-02-13 16:15:58 +00:00
P_DamageMobj ( toucher , special , special - > target , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
//special->target->momz = -special->target->momz;
special - > target - > momx = special - > target - > momy = 0 ;
special - > target - > momz = 0 ;
special - > target - > flags | = MF_NOGRAVITY ;
P_SetMobjState ( special - > target , special - > info - > raisestate ) ;
S_StartSound ( special - > target , special - > info - > activesound ) ;
P_RemoveMobj ( special ) ;
}
return ;
case MT_EXTRALARGEBUBBLE :
2016-10-13 14:13:33 +00:00
if ( player - > powers [ pw_shield ] & SH_PROTECTWATER )
2014-03-15 16:59:03 +00:00
return ;
if ( maptol & TOL_NIGHTS )
return ;
if ( mariomode )
return ;
2014-08-04 03:49:33 +00:00
else if ( toucher - > eflags & MFE_VERTICALFLIP )
{
if ( special - > z + special - > height < toucher - > z + toucher - > height / 3
| | special - > z + special - > height > toucher - > z + ( toucher - > height * 2 / 3 ) )
return ; // Only go in the mouth
}
else if ( special - > z < toucher - > z + toucher - > height / 3
| | special - > z > toucher - > z + ( toucher - > height * 2 / 3 ) )
2014-03-15 16:59:03 +00:00
return ; // Only go in the mouth
// Eaten by player!
2017-09-18 01:37:36 +00:00
if ( ( ! player - > bot ) & & ( player - > powers [ pw_underwater ] & & player - > powers [ pw_underwater ] < = 12 * TICRATE + 1 ) )
2014-03-15 16:59:03 +00:00
P_RestoreMusic ( player ) ;
if ( player - > powers [ pw_underwater ] < underwatertics + 1 )
player - > powers [ pw_underwater ] = underwatertics + 1 ;
if ( ! player - > climbing )
{
2017-09-24 17:43:36 +00:00
if ( player - > bot & & toucher - > state - states ! = S_PLAY_GASP )
S_StartSound ( toucher , special - > info - > deathsound ) ; // Force it to play a sound for bots
2014-08-04 03:49:33 +00:00
P_SetPlayerMobjState ( toucher , S_PLAY_GASP ) ;
2014-03-15 16:59:03 +00:00
P_ResetPlayer ( player ) ;
}
2014-08-04 03:49:33 +00:00
toucher - > momx = toucher - > momy = toucher - > momz = 0 ;
2017-09-18 01:37:36 +00:00
if ( player - > bot )
return ;
else
break ;
2014-03-15 16:59:03 +00:00
case MT_WATERDROP :
if ( special - > state = = & states [ special - > info - > spawnstate ] )
{
special - > z = toucher - > z + toucher - > height - FixedMul ( 8 * FRACUNIT , special - > scale ) ;
special - > momz = 0 ;
special - > flags | = MF_NOGRAVITY ;
P_SetMobjState ( special , special - > info - > deathstate ) ;
S_StartSound ( special , special - > info - > deathsound + ( P_RandomKey ( special - > info - > mass ) ) ) ;
}
return ;
default : // SOC or script pickup
if ( player - > bot )
return ;
P_SetTarget ( & special - > target , toucher ) ;
break ;
}
}
S_StartSound ( toucher , special - > info - > deathsound ) ; // was NULL, but changed to player so you could hear others pick up rings
2015-02-13 16:15:58 +00:00
P_KillMobj ( special , NULL , toucher , 0 ) ;
2014-03-15 16:59:03 +00:00
}
/** Prints death messages relating to a dying or hit player.
*
* \ param player Affected player .
* \ param inflictor The attack weapon used , can be NULL .
* \ param source The attacker , can be NULL .
2015-02-13 16:15:58 +00:00
* \ param damagetype The type of damage dealt to the player . If bit 7 ( 0x80 ) is set , this was an instant - kill .
2014-03-15 16:59:03 +00:00
*/
2015-02-13 16:15:58 +00:00
static void P_HitDeathMessages ( player_t * player , mobj_t * inflictor , mobj_t * source , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
const char * str = NULL ;
boolean deathonly = false ;
boolean deadsource = false ;
boolean deadtarget = false ;
// player names complete with control codes
char targetname [ MAXPLAYERNAME + 4 ] ;
char sourcename [ MAXPLAYERNAME + 4 ] ;
if ( G_PlatformGametype ( ) )
return ; // Not in coop, etc.
if ( ! player )
return ; // Impossible!
2015-08-15 20:07:16 +00:00
if ( ! player - > mo )
return ; // Also impossible!
2016-04-07 02:55:58 +00:00
if ( player - > spectator )
return ; // No messages for dying (crushed) spectators.
2014-03-15 16:59:03 +00:00
if ( ! netgame )
return ; // Presumably it's obvious what's happening in splitscreen.
2014-08-04 03:49:33 +00:00
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
if ( LUAh_HurtMsg ( player , inflictor , source , damagetype ) )
2014-08-04 03:49:33 +00:00
return ;
# endif
2015-08-15 20:07:16 +00:00
deadtarget = ( player - > mo - > health < = 0 ) ;
2014-03-15 16:59:03 +00:00
// Target's name
snprintf ( targetname , sizeof ( targetname ) , " %s%s%s " ,
CTFTEAMCODE ( player ) ,
player_names [ player - players ] ,
CTFTEAMENDCODE ( player ) ) ;
if ( source )
{
// inflictor shouldn't be NULL if source isn't
I_Assert ( inflictor ! = NULL ) ;
if ( source - > player )
{
// Source's name (now that we know there is one)
snprintf ( sourcename , sizeof ( sourcename ) , " %s%s%s " ,
CTFTEAMCODE ( source - > player ) ,
player_names [ source - > player - players ] ,
CTFTEAMENDCODE ( source - > player ) ) ;
// We don't care if it's us.
// "Player 1's [redacted] killed Player 1."
if ( source - > player - > playerstate = = PST_DEAD & & source - > player ! = player & &
( inflictor - > flags2 & MF2_BEYONDTHEGRAVE ) )
deadsource = true ;
if ( inflictor - > flags & MF_PUSHABLE )
{
str = M_GetText ( " %s%s's playtime with heavy objects %s %s. \n " ) ;
}
else switch ( inflictor - > type )
{
case MT_PLAYER :
2016-11-20 16:44:38 +00:00
if ( damagetype = = DMG_NUKE ) // SH_ARMAGEDDON, armageddon shield
2014-03-15 16:59:03 +00:00
str = M_GetText ( " %s%s's armageddon blast %s %s. \n " ) ;
2016-11-20 16:44:38 +00:00
else if ( ( inflictor - > player - > powers [ pw_shield ] & SH_NOSTACK ) = = SH_ELEMENTAL & & ( inflictor - > player - > pflags & PF_SHIELDABILITY ) )
2017-07-18 13:17:10 +00:00
str = M_GetText ( " %s%s's elemental stomp %s %s. \n " ) ;
2014-03-17 12:13:16 +00:00
else if ( inflictor - > player - > powers [ pw_invulnerability ] )
2014-03-15 16:59:03 +00:00
str = M_GetText ( " %s%s's invincibility aura %s %s. \n " ) ;
2014-03-18 17:56:54 +00:00
else if ( inflictor - > player - > powers [ pw_super ] )
str = M_GetText ( " %s%s's super aura %s %s. \n " ) ;
2014-03-17 12:13:16 +00:00
else
str = M_GetText ( " %s%s's tagging hand %s %s. \n " ) ;
2014-03-15 16:59:03 +00:00
break ;
case MT_SPINFIRE :
str = M_GetText ( " %s%s's elemental fire trail %s %s. \n " ) ;
break ;
case MT_THROWNBOUNCE :
str = M_GetText ( " %s%s's bounce ring %s %s. \n " ) ;
break ;
case MT_THROWNINFINITY :
str = M_GetText ( " %s%s's infinity ring %s %s. \n " ) ;
break ;
case MT_THROWNAUTOMATIC :
str = M_GetText ( " %s%s's automatic ring %s %s. \n " ) ;
break ;
case MT_THROWNSCATTER :
str = M_GetText ( " %s%s's scatter ring %s %s. \n " ) ;
break ;
// TODO: For next two, figure out how to determine if it was a direct hit or splash damage. -SH
case MT_THROWNEXPLOSION :
str = M_GetText ( " %s%s's explosion ring %s %s. \n " ) ;
break ;
case MT_THROWNGRENADE :
str = M_GetText ( " %s%s's grenade ring %s %s. \n " ) ;
break ;
case MT_REDRING :
if ( inflictor - > flags2 & MF2_RAILRING )
str = M_GetText ( " %s%s's rail ring %s %s. \n " ) ;
else
2014-03-17 12:13:16 +00:00
str = M_GetText ( " %s%s's thrown ring %s %s. \n " ) ;
2014-03-15 16:59:03 +00:00
break ;
default :
str = M_GetText ( " %s%s %s %s. \n " ) ;
break ;
}
CONS_Printf ( str ,
deadsource ? M_GetText ( " The late " ) : " " ,
sourcename ,
deadtarget ? M_GetText ( " killed " ) : M_GetText ( " hit " ) ,
targetname ) ;
return ;
}
else switch ( source - > type )
{
2015-12-31 16:38:23 +00:00
case MT_EGGMAN_ICON :
2014-03-18 17:56:54 +00:00
str = M_GetText ( " %s was %s by Eggman's nefarious TV magic. \n " ) ;
break ;
2014-03-15 16:59:03 +00:00
case MT_SPIKE :
2017-07-18 13:17:10 +00:00
case MT_WALLSPIKE :
2014-03-15 16:59:03 +00:00
str = M_GetText ( " %s was %s by spikes. \n " ) ;
break ;
default :
str = M_GetText ( " %s was %s by an environmental hazard. \n " ) ;
break ;
}
}
else
{
// null source, environment kills
2015-02-13 16:15:58 +00:00
switch ( damagetype )
2014-03-15 16:59:03 +00:00
{
2015-02-13 16:15:58 +00:00
case DMG_WATER :
str = M_GetText ( " %s was %s by chemical water. \n " ) ;
break ;
case DMG_FIRE :
str = M_GetText ( " %s was %s by molten lava. \n " ) ;
break ;
case DMG_ELECTRIC :
str = M_GetText ( " %s was %s by electricity. \n " ) ;
break ;
case DMG_SPIKE :
str = M_GetText ( " %s was %s by spikes. \n " ) ;
break ;
case DMG_DROWNED :
deathonly = true ;
str = M_GetText ( " %s drowned. \n " ) ;
break ;
case DMG_CRUSHED :
deathonly = true ;
str = M_GetText ( " %s was crushed. \n " ) ;
break ;
case DMG_DEATHPIT :
if ( deadtarget )
{
deathonly = true ;
str = M_GetText ( " %s fell into a bottomless pit. \n " ) ;
}
break ;
case DMG_SPACEDROWN :
if ( deadtarget )
{
deathonly = true ;
str = M_GetText ( " %s asphyxiated in space. \n " ) ;
}
break ;
default :
if ( deadtarget )
{
deathonly = true ;
str = M_GetText ( " %s died. \n " ) ;
}
break ;
2014-03-15 16:59:03 +00:00
}
if ( ! str )
str = M_GetText ( " %s was %s by an environmental hazard. \n " ) ;
}
if ( ! str ) // Should not happen! Unless we missed catching something above.
return ;
// Don't log every hazard hit if they don't want us to.
if ( ! deadtarget & & ! cv_hazardlog . value )
return ;
if ( deathonly )
{
if ( ! deadtarget )
return ;
CONS_Printf ( str , targetname ) ;
}
else
CONS_Printf ( str , targetname , deadtarget ? M_GetText ( " killed " ) : M_GetText ( " hit " ) ) ;
}
2015-10-11 20:01:04 +00:00
/** Checks if the level timer is over the timelimit and the round should end,
* unless you are in overtime . In which case leveltime may stretch out beyond
* timelimitintics and overtime ' s status will be checked here each tick .
* Verify that the value of : : cv_timelimit is greater than zero before
* calling this function .
*
* \ sa cv_timelimit , P_CheckPointLimit , P_UpdateSpecials
*/
void P_CheckTimeLimit ( void )
{
INT32 i , k ;
if ( ! cv_timelimit . value )
return ;
if ( ! ( multiplayer | | netgame ) )
return ;
if ( G_PlatformGametype ( ) )
return ;
if ( leveltime < timelimitintics )
return ;
if ( gameaction = = ga_completed )
return ;
//Tagmode round end but only on the tic before the
2017-01-13 19:53:52 +00:00
//XD_EXITLEVEL packet is received by all players.
2015-10-11 20:01:04 +00:00
if ( G_TagGametype ( ) )
{
if ( leveltime = = ( timelimitintics + 1 ) )
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( ! playeringame [ i ] | | players [ i ] . spectator
2017-09-15 19:34:46 +00:00
| | ( players [ i ] . pflags & PF_GAMETYPEOVER ) | | ( players [ i ] . pflags & PF_TAGIT ) )
2015-10-11 20:01:04 +00:00
continue ;
2017-01-13 19:53:52 +00:00
CONS_Printf ( M_GetText ( " %s received double points for surviving the round. \n " ) , player_names [ i ] ) ;
2015-10-11 20:01:04 +00:00
P_AddPlayerScore ( & players [ i ] , players [ i ] . score ) ;
}
}
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
//Optional tie-breaker for Match/CTF
else if ( cv_overtime . value )
{
INT32 playerarray [ MAXPLAYERS ] ;
INT32 tempplayer = 0 ;
INT32 spectators = 0 ;
INT32 playercount = 0 ;
//Figure out if we have enough participating players to care.
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( playeringame [ i ] & & players [ i ] . spectator )
spectators + + ;
}
if ( ( D_NumPlayers ( ) - spectators ) > 1 )
{
// Play the starpost sfx after the first second of overtime.
if ( gamestate = = GS_LEVEL & & ( leveltime = = ( timelimitintics + TICRATE ) ) )
S_StartSound ( NULL , sfx_strpst ) ;
// Normal Match
if ( ! G_GametypeHasTeams ( ) )
{
//Store the nodes of participating players in an array.
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( playeringame [ i ] & & ! players [ i ] . spectator )
{
playerarray [ playercount ] = i ;
playercount + + ;
}
}
//Sort 'em.
for ( i = 1 ; i < playercount ; i + + )
{
for ( k = i ; k < playercount ; k + + )
{
if ( players [ playerarray [ i - 1 ] ] . score < players [ playerarray [ k ] ] . score )
{
tempplayer = playerarray [ i - 1 ] ;
playerarray [ i - 1 ] = playerarray [ k ] ;
playerarray [ k ] = tempplayer ;
}
}
}
//End the round if the top players aren't tied.
if ( players [ playerarray [ 0 ] ] . score = = players [ playerarray [ 1 ] ] . score )
return ;
}
else
{
//In team match and CTF, determining a tie is much simpler. =P
if ( redscore = = bluescore )
return ;
}
}
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
2014-03-15 16:59:03 +00:00
/** Checks if a player's score is over the pointlimit and the round should end.
* Verify that the value of : : cv_pointlimit is greater than zero before
* calling this function .
*
2015-10-11 20:01:04 +00:00
* \ sa cv_pointlimit , P_CheckTimeLimit , P_UpdateSpecials
2014-03-15 16:59:03 +00:00
*/
void P_CheckPointLimit ( void )
{
INT32 i ;
if ( ! cv_pointlimit . value )
return ;
if ( ! ( multiplayer | | netgame ) )
return ;
if ( G_PlatformGametype ( ) )
return ;
// pointlimit is nonzero, check if it's been reached by this player
if ( G_GametypeHasTeams ( ) )
{
// Just check both teams
if ( ( UINT32 ) cv_pointlimit . value < = redscore | | ( UINT32 ) cv_pointlimit . value < = bluescore )
{
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
}
else
{
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( ! playeringame [ i ] | | players [ i ] . spectator )
continue ;
if ( ( UINT32 ) cv_pointlimit . value < = players [ i ] . score )
{
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
return ;
}
}
}
}
/*Checks for untagged remaining players in both tag derivitave modes.
* If no untagged players remain , end the round .
* Also serves as error checking if the only IT player leaves . */
void P_CheckSurvivors ( void )
{
INT32 i ;
INT32 survivors = 0 ;
INT32 taggers = 0 ;
INT32 spectators = 0 ;
INT32 survivorarray [ MAXPLAYERS ] ;
if ( ! D_NumPlayers ( ) ) //no players in the game, no check performed.
return ;
for ( i = 0 ; i < MAXPLAYERS ; i + + ) //figure out counts of taggers, survivors and spectators.
{
if ( playeringame [ i ] )
{
if ( players [ i ] . spectator )
spectators + + ;
else if ( players [ i ] . pflags & PF_TAGIT )
taggers + + ;
2017-09-15 19:34:46 +00:00
else if ( ! ( players [ i ] . pflags & PF_GAMETYPEOVER ) )
2014-03-15 16:59:03 +00:00
{
survivorarray [ survivors ] = i ;
survivors + + ;
}
}
}
if ( ! taggers ) //If there are no taggers, pick a survivor at random to be it.
{
// Exception for hide and seek. If a round has started and the IT player leaves, end the round.
if ( gametype = = GT_HIDEANDSEEK & & ( leveltime > = ( hidetime * TICRATE ) ) )
{
CONS_Printf ( M_GetText ( " The IT player has left the game. \n " ) ) ;
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
return ;
}
if ( survivors )
{
INT32 newtagger = survivorarray [ P_RandomKey ( survivors ) ] ;
CONS_Printf ( M_GetText ( " %s is now IT! \n " ) , player_names [ newtagger ] ) ; // Tell everyone who is it!
players [ newtagger ] . pflags | = PF_TAGIT ;
survivors - - ; //Get rid of the guy we just made IT.
//Yeah, we have an eligible tagger, but we may not have anybody for him to tag!
//If there is only one guy waiting on the game to fill or spectators to enter game, don't bother.
if ( ! survivors & & ( D_NumPlayers ( ) - spectators ) > 1 )
{
CONS_Printf ( M_GetText ( " All players have been tagged! \n " ) ) ;
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
return ;
}
//If we reach this point, no player can replace the one that was IT.
//Unless it is one player waiting on a game, end the round.
if ( ( D_NumPlayers ( ) - spectators ) > 1 )
{
CONS_Printf ( M_GetText ( " There are no players able to become IT. \n " ) ) ;
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
return ;
}
//If there are taggers, but no survivors, end the round.
//Except when the tagger is by himself and the rest of the game are spectators.
if ( ! survivors & & ( D_NumPlayers ( ) - spectators ) > 1 )
{
CONS_Printf ( M_GetText ( " All players have been tagged! \n " ) ) ;
if ( server )
SendNetXCmd ( XD_EXITLEVEL , NULL , 0 ) ;
}
}
// Checks whether or not to end a race netgame.
boolean P_CheckRacers ( void )
{
INT32 i ;
// Check if all the players in the race have finished. If so, end the level.
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( playeringame [ i ] & & ! players [ i ] . exiting & & players [ i ] . lives > 0 )
break ;
}
if ( i = = MAXPLAYERS ) // finished
{
countdown = 0 ;
countdown2 = 0 ;
return true ;
}
return false ;
}
/** Kills an object.
*
* \ param target The victim .
* \ param inflictor The attack weapon . May be NULL ( environmental damage ) .
* \ param source The attacker . May be NULL .
2015-02-13 16:15:58 +00:00
* \ param damagetype The type of damage dealt that killed the target . If bit 7 ( 0x80 ) was set , this was an instant - death .
2014-03-15 16:59:03 +00:00
* \ todo Cleanup , refactor , split up .
* \ sa P_DamageMobj
*/
2015-02-13 16:15:58 +00:00
void P_KillMobj ( mobj_t * target , mobj_t * inflictor , mobj_t * source , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
mobj_t * mo ;
if ( inflictor & & ( inflictor - > type = = MT_SHELL | | inflictor - > type = = MT_FIREBALL ) )
P_SetTarget ( & target - > tracer , inflictor ) ;
2018-06-03 21:41:54 +00:00
if ( ! ( maptol & TOL_NIGHTS ) & & G_IsSpecialStage ( gamemap ) & & target - > player & & target - > player - > nightstime > 6 )
target - > player - > nightstime = 6 ; // Just let P_Ticker take care of the rest.
2014-03-15 16:59:03 +00:00
if ( target - > flags & ( MF_ENEMY | MF_BOSS ) )
target - > momx = target - > momy = target - > momz = 0 ;
if ( target - > type ! = MT_PLAYER & & ! ( target - > flags & MF_MONITOR ) )
target - > flags | = MF_NOGRAVITY | MF_NOCLIP | MF_NOCLIPHEIGHT ; // Don't drop Tails 03-08-2000
if ( target - > flags2 & MF2_NIGHTSPULL )
P_SetTarget ( & target - > tracer , NULL ) ;
// dead target is no more shootable
target - > flags & = ~ ( MF_SHOOTABLE | MF_FLOAT | MF_SPECIAL ) ;
target - > flags2 & = ~ ( MF2_SKULLFLY | MF2_NIGHTSPULL ) ;
target - > health = 0 ; // This makes it easy to check if something's dead elsewhere.
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
if ( LUAh_MobjDeath ( target , inflictor , source , damagetype ) | | P_MobjWasRemoved ( target ) )
2014-03-15 16:59:03 +00:00
return ;
# endif
// Let EVERYONE know what happened to a player! 01-29-2002 Tails
if ( target - > player & & ! target - > player - > spectator )
{
if ( metalrecording ) // Ack! Metal Sonic shouldn't die! Cut the tape, end recording!
2014-03-23 16:00:29 +00:00
G_StopMetalRecording ( ) ;
2017-04-14 19:51:25 +00:00
if ( gametype = = GT_MATCH // note, no team match suicide penalty
2014-03-15 16:59:03 +00:00
& & ( ( target = = source ) | | ( source = = NULL & & inflictor = = NULL ) | | ( source & & ! source - > player ) ) )
{ // Suicide penalty
if ( target - > player - > score > = 50 )
target - > player - > score - = 50 ;
else
target - > player - > score = 0 ;
}
target - > flags2 & = ~ MF2_DONTDRAW ;
}
// if killed by a player
if ( source & & source - > player )
{
if ( target - > flags & MF_MONITOR )
{
P_SetTarget ( & target - > target , source ) ;
source - > player - > numboxes + + ;
if ( ( cv_itemrespawn . value & & gametype ! = GT_COOP & & ( modifiedgame | | netgame | | multiplayer ) ) )
target - > fuse = cv_itemrespawntime . value * TICRATE + 2 ; // Random box generation
}
// Award Score Tails
{
INT32 score = 0 ;
if ( maptol & TOL_NIGHTS ) // Enemies always worth 200, bosses don't do anything.
{
if ( ( target - > flags & MF_ENEMY ) & & ! ( target - > flags & ( MF_MISSILE | MF_BOSS ) ) )
{
score = 200 ;
if ( source - > player - > bonustime )
score * = 2 ;
// Also, add to the link.
// I don't know if NiGHTS did this, but
// Sonic Time Attacked did and it seems like a good enough incentive
// to make people want to actually dash towards/paraloop enemies
if ( + + source - > player - > linkcount > source - > player - > maxlink )
source - > player - > maxlink = source - > player - > linkcount ;
source - > player - > linktimer = 2 * TICRATE ;
}
}
else
{
if ( target - > flags & MF_BOSS )
score = 1000 ;
2018-05-02 22:48:50 +00:00
else if ( ( target - > flags & MF_ENEMY ) & & ! ( target - > flags & MF_MISSILE ) & & target - > info - > spawnhealth )
2014-03-15 16:59:03 +00:00
{
2018-05-02 22:48:50 +00:00
UINT8 locscoreadd = source - > player - > scoreadd + target - > info - > spawnhealth ;
2014-03-15 16:59:03 +00:00
mobj_t * scoremobj ;
UINT32 scorestate = mobjinfo [ MT_SCORE ] . spawnstate ;
scoremobj = P_SpawnMobj ( target - > x , target - > y , target - > z + ( target - > height / 2 ) , MT_SCORE ) ;
2018-05-02 22:48:50 +00:00
// More Sonic-like point system
if ( ! mariomode ) switch ( locscoreadd )
2014-03-15 16:59:03 +00:00
{
2018-05-02 22:48:50 +00:00
case 1 : score = 100 ; break ;
case 2 : score = 200 ; scorestate + = 1 ; break ;
case 3 : score = 500 ; scorestate + = 2 ; break ;
case 4 : case 5 : case 6 : case 7 : case 8 : case 9 :
case 10 : case 11 : case 12 : case 13 : case 14 :
score = 1000 ; scorestate + = 3 ; break ;
default : score = 10000 ; scorestate + = 4 ; break ;
2014-03-15 16:59:03 +00:00
}
// Mario Mode has Mario-like chain point values
2018-05-02 22:48:50 +00:00
else switch ( locscoreadd )
2014-03-15 16:59:03 +00:00
{
case 1 : score = 100 ; break ;
case 2 : score = 200 ; scorestate + = 1 ; break ;
case 3 : score = 400 ; scorestate + = 5 ; break ;
case 4 : score = 800 ; scorestate + = 6 ; break ;
case 5 : score = 1000 ; scorestate + = 3 ; break ;
case 6 : score = 2000 ; scorestate + = 7 ; break ;
case 7 : score = 4000 ; scorestate + = 8 ; break ;
case 8 : score = 8000 ; scorestate + = 9 ; break ;
default : // 1up for a chain this long
if ( modeattacking ) // but 1ups don't exist in record attack!
{ // So we just go back to 10k points.
score = 10000 ; scorestate + = 4 ; break ;
}
P_GivePlayerLives ( source - > player , 1 ) ;
P_PlayLivesJingle ( source - > player ) ;
scorestate + = 10 ;
break ;
}
P_SetMobjState ( scoremobj , scorestate ) ;
2018-05-02 22:48:50 +00:00
// On ground? No chain starts.
2018-05-13 16:25:55 +00:00
if ( source - > player - > powers [ pw_invulnerability ] | | ! P_IsObjectOnGround ( source ) )
2018-05-02 22:48:50 +00:00
source - > player - > scoreadd = locscoreadd ;
2014-03-15 16:59:03 +00:00
}
}
P_AddPlayerScore ( source - > player , score ) ;
}
}
// if a player avatar dies...
if ( target - > player )
{
target - > flags & = ~ ( MF_SOLID | MF_SHOOTABLE ) ; // does not block
P_UnsetThingPosition ( target ) ;
2015-05-29 04:56:02 +00:00
target - > flags | = MF_NOBLOCKMAP | MF_NOCLIP | MF_NOCLIPHEIGHT | MF_NOGRAVITY ;
2014-03-15 16:59:03 +00:00
P_SetThingPosition ( target ) ;
2017-07-04 12:17:29 +00:00
if ( ( target - > player - > lives < = 1 ) & & ( netgame | | multiplayer ) & & ( gametype = = GT_COOP ) & & ( cv_cooplives . value = = 0 ) )
;
2017-08-17 23:58:16 +00:00
else if ( ! target - > player - > bot & & ! target - > player - > spectator & & ! G_IsSpecialStage ( gamemap ) & & ( target - > player - > lives ! = 0x7f )
2014-03-15 16:59:03 +00:00
& & G_GametypeUsesLives ( ) )
{
target - > player - > lives - = 1 ; // Lose a life Tails 03-11-2000
if ( target - > player - > lives < = 0 ) // Tails 03-14-2000
{
2017-06-03 11:26:42 +00:00
boolean gameovermus = false ;
2017-07-04 12:17:29 +00:00
if ( ( netgame | | multiplayer ) & & ( gametype = = GT_COOP ) & & ( cv_cooplives . value ! = 1 ) )
2017-06-03 11:26:42 +00:00
{
INT32 i ;
for ( i = 0 ; i < MAXPLAYERS ; i + + )
{
if ( ! playeringame [ i ] )
continue ;
if ( players [ i ] . lives > 0 )
break ;
}
if ( i = = MAXPLAYERS )
gameovermus = true ;
}
else if ( P_IsLocalPlayer ( target - > player ) )
gameovermus = true ;
if ( gameovermus )
2014-03-15 16:59:03 +00:00
{
S_StopMusic ( ) ; // Stop the Music! Tails 03-14-2000
2016-02-04 09:17:27 +00:00
S_ChangeMusicInternal ( " _gover " , false ) ; // Yousa dead now, Okieday? Tails 03-14-2000
2014-03-15 16:59:03 +00:00
}
2017-08-17 23:58:16 +00:00
if ( ! ( netgame | | multiplayer | | demoplayback | | demorecording | | metalrecording | | modeattacking ) & & numgameovers < maxgameovers )
{
numgameovers + + ;
2017-08-20 22:18:47 +00:00
if ( ( ! modifiedgame | | savemoddata ) & & cursaveslot > 0 )
2017-08-20 12:14:17 +00:00
G_SaveGameOver ( ( UINT32 ) cursaveslot , ( target - > player - > continues < = 0 ) ) ;
2017-08-17 23:58:16 +00:00
}
2014-03-15 16:59:03 +00:00
}
}
target - > player - > playerstate = PST_DEAD ;
if ( target - > player = = & players [ consoleplayer ] )
{
// don't die in auto map,
// switch view prior to dying
if ( automapactive )
AM_Stop ( ) ;
//added : 22-02-98: recenter view for next life...
localaiming = 0 ;
}
if ( target - > player = = & players [ secondarydisplayplayer ] )
{
// added : 22-02-98: recenter view for next life...
localaiming2 = 0 ;
}
//tag deaths handled differently in suicide cases. Don't count spectators!
if ( G_TagGametype ( )
& & ! ( target - > player - > pflags & PF_TAGIT ) & & ( ! source | | ! source - > player ) & & ! ( target - > player - > spectator ) )
{
// if you accidentally die before you run out of time to hide, ignore it.
// allow them to try again, rather than sitting the whole thing out.
if ( leveltime > = hidetime * TICRATE )
{
2015-08-15 12:00:49 +00:00
if ( gametype = = GT_TAG ) //suiciding in survivor makes you IT.
2014-03-15 16:59:03 +00:00
{
target - > player - > pflags | = PF_TAGIT ;
CONS_Printf ( M_GetText ( " %s is now IT! \n " ) , player_names [ target - > player - players ] ) ; // Tell everyone who is it!
P_CheckSurvivors ( ) ;
}
else
{
2017-09-15 19:34:46 +00:00
if ( ! ( target - > player - > pflags & PF_GAMETYPEOVER ) )
2014-03-15 16:59:03 +00:00
{
//otherwise, increment the tagger's score.
//in hide and seek, suiciding players are counted as found.
INT32 w ;
for ( w = 0 ; w < MAXPLAYERS ; w + + )
{
if ( players [ w ] . pflags & PF_TAGIT )
P_AddPlayerScore ( & players [ w ] , 100 ) ;
}
2017-09-15 19:34:46 +00:00
target - > player - > pflags | = PF_GAMETYPEOVER ;
2014-03-15 16:59:03 +00:00
CONS_Printf ( M_GetText ( " %s was found! \n " ) , player_names [ target - > player - players ] ) ;
P_CheckSurvivors ( ) ;
}
}
}
}
}
if ( source & & target & & target - > player & & source - > player )
P_PlayVictorySound ( source ) ; // Killer laughs at you. LAUGHS! BWAHAHAHA!
// Other death animation effects
2016-12-29 17:02:05 +00:00
switch ( target - > type )
2014-03-15 16:59:03 +00:00
{
case MT_BOUNCEPICKUP :
case MT_RAILPICKUP :
case MT_AUTOPICKUP :
case MT_EXPLODEPICKUP :
case MT_SCATTERPICKUP :
case MT_GRENADEPICKUP :
P_SetObjectMomZ ( target , FRACUNIT , false ) ;
target - > fuse = target - > info - > damage ;
break ;
2018-05-04 20:30:15 +00:00
case MT_BUBBLEBUZZ :
2018-04-26 19:18:51 +00:00
if ( inflictor & & inflictor - > player // did a player kill you? Spawn relative to the player so they're bound to get it
& & P_AproxDistance ( inflictor - > x - target - > x , inflictor - > y - target - > y ) < = inflictor - > radius + target - > radius + FixedMul ( 8 * FRACUNIT , inflictor - > scale ) // close enough?
& & inflictor - > z < = target - > z + target - > height + FixedMul ( 8 * FRACUNIT , inflictor - > scale )
& & inflictor - > z + inflictor - > height > = target - > z - FixedMul ( 8 * FRACUNIT , inflictor - > scale ) )
mo = P_SpawnMobj ( inflictor - > x + inflictor - > momx , inflictor - > y + inflictor - > momy , inflictor - > z + ( inflictor - > height / 2 ) + inflictor - > momz , MT_EXTRALARGEBUBBLE ) ;
else
mo = P_SpawnMobj ( target - > x , target - > y , target - > z , MT_EXTRALARGEBUBBLE ) ;
mo - > destscale = target - > scale ;
P_SetScale ( mo , mo - > destscale ) ;
break ;
case MT_YELLOWSHELL :
P_SpawnMobjFromMobj ( target , 0 , 0 , 0 , MT_YELLOWSPRING ) ;
break ;
2018-05-02 22:48:50 +00:00
case MT_CRAWLACOMMANDER :
target - > momx = target - > momy = target - > momz = 0 ;
break ;
2018-05-14 00:19:24 +00:00
case MT_CRUSHSTACEAN :
if ( target - > tracer )
{
mobj_t * chain = target - > tracer - > target , * chainnext ;
while ( chain )
{
chainnext = chain - > target ;
P_RemoveMobj ( chain ) ;
chain = chainnext ;
}
P_KillMobj ( target - > tracer , inflictor , source , damagetype ) ;
}
break ;
2018-05-31 20:00:12 +00:00
case MT_EGGSHIELD :
P_SetObjectMomZ ( target , 4 * target - > scale , false ) ;
P_InstaThrust ( target , target - > angle , 3 * target - > scale ) ;
target - > flags = ( target - > flags | MF_NOCLIPHEIGHT ) & ~ MF_NOGRAVITY ;
break ;
2018-04-26 19:18:51 +00:00
case MT_EGGMOBILE3 :
{
thinker_t * th ;
UINT32 i = 0 ; // to check how many clones we've removed
// scan the thinkers to make sure all the old pinch dummies are gone on death
// this can happen if the boss was hurt earlier than expected
for ( th = thinkercap . next ; th ! = & thinkercap ; th = th - > next )
{
if ( th - > function . acp1 ! = ( actionf_p1 ) P_MobjThinker )
continue ;
mo = ( mobj_t * ) th ;
if ( mo - > type = = ( mobjtype_t ) target - > info - > mass & & mo - > tracer = = target )
{
P_RemoveMobj ( mo ) ;
i + + ;
}
if ( i = = 2 ) // we've already removed 2 of these, let's stop now
break ;
}
}
break ;
case MT_BIGMINE :
if ( inflictor )
{
fixed_t dx = target - > x - inflictor - > x , dy = target - > y - inflictor - > y , dz = target - > z - inflictor - > z ;
fixed_t dm = FixedHypot ( dz , FixedHypot ( dy , dx ) ) ;
target - > momx = FixedDiv ( FixedDiv ( dx , dm ) , dm ) * 512 ;
target - > momy = FixedDiv ( FixedDiv ( dy , dm ) , dm ) * 512 ;
target - > momz = FixedDiv ( FixedDiv ( dz , dm ) , dm ) * 512 ;
}
if ( source )
P_SetTarget ( & target - > tracer , source ) ;
break ;
case MT_BLASTEXECUTOR :
if ( target - > spawnpoint )
P_LinedefExecute ( target - > spawnpoint - > angle , ( source ? source : inflictor ) , target - > subsector - > sector ) ;
break ;
2018-04-28 14:13:44 +00:00
case MT_SPINBOBERT :
if ( target - > hnext )
P_KillMobj ( target - > hnext , inflictor , source , damagetype ) ;
if ( target - > hprev )
P_KillMobj ( target - > hprev , inflictor , source , damagetype ) ;
break ;
2014-03-15 16:59:03 +00:00
case MT_EGGTRAP :
// Time for birdies! Yaaaaaaaay!
target - > fuse = TICRATE * 2 ;
break ;
2014-08-04 03:49:33 +00:00
case MT_PLAYER :
2015-02-13 16:15:58 +00:00
{
2016-10-12 22:47:18 +00:00
target - > fuse = TICRATE * 3 ; // timer before mobj disappears from view (even if not an actual player)
2016-10-24 11:35:40 +00:00
target - > momx = target - > momy = target - > momz = 0 ;
2016-10-12 22:47:18 +00:00
if ( damagetype = = DMG_DROWNED ) // drowned
{
target - > movedir = damagetype ; // we're MOVING the Damage Into anotheR function... Okay, this is a bit of a hack.
if ( target - > player - > charflags & SF_MACHINE )
S_StartSound ( target , sfx_fizzle ) ;
else
S_StartSound ( target , sfx_drown ) ;
// Don't jump up when drowning
}
2015-02-13 16:15:58 +00:00
else
2016-10-12 22:47:18 +00:00
{
2016-10-24 11:35:40 +00:00
P_SetObjectMomZ ( target , 14 * FRACUNIT , false ) ;
2017-07-18 13:17:10 +00:00
if ( damagetype = = DMG_SPIKE ) // Spikes
2016-10-12 22:47:18 +00:00
S_StartSound ( target , sfx_spkdth ) ;
else
P_PlayDeathSound ( target ) ;
}
2015-02-13 16:15:58 +00:00
}
2014-08-04 03:49:33 +00:00
break ;
2014-03-15 16:59:03 +00:00
default :
break ;
}
2018-04-26 19:18:51 +00:00
// Final state setting - do something instead of P_SetMobjState;
2017-07-18 13:17:10 +00:00
if ( target - > type = = MT_SPIKE & & target - > info - > deathstate ! = S_NULL )
2014-03-15 16:59:03 +00:00
{
2017-07-18 13:17:10 +00:00
const angle_t ang = ( ( inflictor ) ? inflictor - > angle : 0 ) + ANGLE_90 ;
const fixed_t scale = target - > scale ;
const fixed_t xoffs = P_ReturnThrustX ( target , ang , 8 * scale ) , yoffs = P_ReturnThrustY ( target , ang , 8 * scale ) ;
const UINT16 flip = ( target - > eflags & MFE_VERTICALFLIP ) ;
mobj_t * chunk ;
fixed_t momz ;
S_StartSound ( target , target - > info - > deathsound ) ;
if ( target - > info - > xdeathstate ! = S_NULL )
{
momz = 6 * scale ;
if ( flip )
momz * = - 1 ;
# define makechunk(angtweak, xmov, ymov) \
chunk = P_SpawnMobj ( target - > x , target - > y , target - > z , MT_SPIKE ) ; \
chunk - > eflags | = flip ; \
P_SetMobjState ( chunk , target - > info - > xdeathstate ) ; \
chunk - > health = 0 ; \
chunk - > angle = angtweak ; \
chunk - > destscale = scale ; \
P_SetScale ( chunk , scale ) ; \
P_UnsetThingPosition ( chunk ) ; \
chunk - > flags = MF_NOCLIP ; \
chunk - > x + = xmov ; \
chunk - > y + = ymov ; \
P_SetThingPosition ( chunk ) ; \
P_InstaThrust ( chunk , chunk - > angle , 4 * scale ) ; \
chunk - > momz = momz
makechunk ( ang + ANGLE_180 , - xoffs , - yoffs ) ;
makechunk ( ang , xoffs , yoffs ) ;
# undef makechunk
}
momz = 7 * scale ;
if ( flip )
momz * = - 1 ;
chunk = P_SpawnMobj ( target - > x , target - > y , target - > z , MT_SPIKE ) ;
chunk - > eflags | = flip ;
P_SetMobjState ( chunk , target - > info - > deathstate ) ;
chunk - > health = 0 ;
chunk - > angle = ang + ANGLE_180 ;
chunk - > destscale = scale ;
P_SetScale ( chunk , scale ) ;
P_UnsetThingPosition ( chunk ) ;
chunk - > flags = MF_NOCLIP ;
chunk - > x - = xoffs ;
chunk - > y - = yoffs ;
if ( flip )
chunk - > z - = 12 * scale ;
else
chunk - > z + = 12 * scale ;
P_SetThingPosition ( chunk ) ;
P_InstaThrust ( chunk , chunk - > angle , 2 * scale ) ;
chunk - > momz = momz ;
2014-03-15 16:59:03 +00:00
P_SetMobjState ( target , target - > info - > deathstate ) ;
target - > health = 0 ;
2017-07-18 13:17:10 +00:00
target - > angle = ang ;
2014-03-15 16:59:03 +00:00
P_UnsetThingPosition ( target ) ;
target - > flags = MF_NOCLIP ;
2017-07-18 13:17:10 +00:00
target - > x + = xoffs ;
target - > y + = yoffs ;
target - > z = chunk - > z ;
2014-03-15 16:59:03 +00:00
P_SetThingPosition ( target ) ;
2017-07-18 13:17:10 +00:00
P_InstaThrust ( target , target - > angle , 2 * scale ) ;
target - > momz = momz ;
}
else if ( target - > type = = MT_WALLSPIKE & & target - > info - > deathstate ! = S_NULL )
{
const angle_t ang = ( /*(inflictor) ? inflictor->angle : */ target - > angle ) + ANGLE_90 ;
const fixed_t scale = target - > scale ;
const fixed_t xoffs = P_ReturnThrustX ( target , ang , 8 * scale ) , yoffs = P_ReturnThrustY ( target , ang , 8 * scale ) , forwardxoffs = P_ReturnThrustX ( target , target - > angle , 7 * scale ) , forwardyoffs = P_ReturnThrustY ( target , target - > angle , 7 * scale ) ;
const UINT16 flip = ( target - > eflags & MFE_VERTICALFLIP ) ;
mobj_t * chunk ;
boolean sprflip ;
2014-03-15 16:59:03 +00:00
2017-07-18 13:17:10 +00:00
S_StartSound ( target , target - > info - > deathsound ) ;
if ( ! P_MobjWasRemoved ( target - > tracer ) )
P_RemoveMobj ( target - > tracer ) ;
if ( target - > info - > xdeathstate ! = S_NULL )
2014-03-15 16:59:03 +00:00
{
2017-07-18 13:17:10 +00:00
sprflip = P_RandomChance ( FRACUNIT / 2 ) ;
# define makechunk(angtweak, xmov, ymov) \
chunk = P_SpawnMobj ( target - > x , target - > y , target - > z , MT_WALLSPIKE ) ; \
chunk - > eflags | = flip ; \
P_SetMobjState ( chunk , target - > info - > xdeathstate ) ; \
chunk - > health = 0 ; \
chunk - > angle = target - > angle ; \
chunk - > destscale = scale ; \
P_SetScale ( chunk , scale ) ; \
P_UnsetThingPosition ( chunk ) ; \
chunk - > flags = MF_NOCLIP ; \
chunk - > x + = xmov - forwardxoffs ; \
chunk - > y + = ymov - forwardyoffs ; \
P_SetThingPosition ( chunk ) ; \
P_InstaThrust ( chunk , angtweak , 4 * scale ) ; \
chunk - > momz = P_RandomRange ( 5 , 7 ) * scale ; \
if ( flip ) \
chunk - > momz * = - 1 ; \
if ( sprflip ) \
chunk - > frame | = FF_VERTICALFLIP
makechunk ( ang + ANGLE_180 , - xoffs , - yoffs ) ;
sprflip = ! sprflip ;
makechunk ( ang , xoffs , yoffs ) ;
# undef makechunk
2014-03-15 16:59:03 +00:00
}
2017-07-18 13:17:10 +00:00
sprflip = P_RandomChance ( FRACUNIT / 2 ) ;
chunk = P_SpawnMobj ( target - > x , target - > y , target - > z , MT_WALLSPIKE ) ;
chunk - > eflags | = flip ;
P_SetMobjState ( chunk , target - > info - > deathstate ) ;
chunk - > health = 0 ;
chunk - > angle = target - > angle ;
chunk - > destscale = scale ;
P_SetScale ( chunk , scale ) ;
P_UnsetThingPosition ( chunk ) ;
chunk - > flags = MF_NOCLIP ;
chunk - > x + = forwardxoffs - xoffs ;
chunk - > y + = forwardyoffs - yoffs ;
P_SetThingPosition ( chunk ) ;
P_InstaThrust ( chunk , ang + ANGLE_180 , 2 * scale ) ;
chunk - > momz = P_RandomRange ( 5 , 7 ) * scale ;
if ( flip )
chunk - > momz * = - 1 ;
if ( sprflip )
chunk - > frame | = FF_VERTICALFLIP ;
2014-03-15 16:59:03 +00:00
P_SetMobjState ( target , target - > info - > deathstate ) ;
target - > health = 0 ;
P_UnsetThingPosition ( target ) ;
target - > flags = MF_NOCLIP ;
2017-07-18 13:17:10 +00:00
target - > x + = forwardxoffs + xoffs ;
target - > y + = forwardyoffs + yoffs ;
2014-03-15 16:59:03 +00:00
P_SetThingPosition ( target ) ;
2017-07-18 13:17:10 +00:00
P_InstaThrust ( target , ang , 2 * scale ) ;
target - > momz = P_RandomRange ( 5 , 7 ) * scale ;
2014-03-15 16:59:03 +00:00
if ( flip )
2017-07-18 13:17:10 +00:00
target - > momz * = - 1 ;
if ( ! sprflip )
target - > frame | = FF_VERTICALFLIP ;
2014-03-15 16:59:03 +00:00
}
else if ( target - > player )
2015-05-29 04:56:02 +00:00
{
if ( damagetype = = DMG_DROWNED | | damagetype = = DMG_SPACEDROWN )
P_SetPlayerMobjState ( target , target - > info - > xdeathstate ) ;
else
P_SetPlayerMobjState ( target , target - > info - > deathstate ) ;
}
2014-03-15 16:59:03 +00:00
else
# ifdef DEBUG_NULL_DEATHSTATE
P_SetMobjState ( target , S_NULL ) ;
# else
P_SetMobjState ( target , target - > info - > deathstate ) ;
# endif
/** \note For player, the above is redundant because of P_SetMobjState (target, S_PLAY_DIE1)
in P_DamageMobj ( )
Graue 12 - 22 - 2003 */
}
static inline void P_NiGHTSDamage ( mobj_t * target , mobj_t * source )
{
player_t * player = target - > player ;
tic_t oldnightstime = player - > nightstime ;
2015-10-05 16:13:34 +00:00
if ( ! player - > powers [ pw_flashing ] )
2014-03-15 16:59:03 +00:00
{
angle_t fa ;
player - > angle_pos = player - > old_angle_pos ;
player - > speed / = 5 ;
player - > flyangle + = 180 ; // Shuffle's BETTERNIGHTSMOVEMENT?
player - > flyangle % = 360 ;
if ( gametype = = GT_RACE | | gametype = = GT_COMPETITION )
player - > drillmeter - = 5 * 20 ;
else
{
2018-06-03 21:41:54 +00:00
if ( player - > nightstime > 5 * TICRATE )
player - > nightstime - = 5 * TICRATE ;
2014-03-15 16:59:03 +00:00
else
2018-06-03 21:41:54 +00:00
player - > nightstime = 1 ;
2014-03-15 16:59:03 +00:00
}
if ( player - > pflags & PF_TRANSFERTOCLOSEST )
{
target - > momx = - target - > momx ;
target - > momy = - target - > momy ;
}
else
{
fa = player - > old_angle_pos > > ANGLETOFINESHIFT ;
target - > momx = FixedMul ( FINECOSINE ( fa ) , target - > target - > radius ) ;
target - > momy = FixedMul ( FINESINE ( fa ) , target - > target - > radius ) ;
}
player - > powers [ pw_flashing ] = flashingtics ;
2017-03-11 17:14:39 +00:00
P_SetPlayerMobjState ( target , S_PLAY_NIGHTS_STUN ) ;
2014-03-15 16:59:03 +00:00
S_StartSound ( target , sfx_nghurt ) ;
if ( oldnightstime > 10 * TICRATE
& & player - > nightstime < 10 * TICRATE )
{
//S_StartSound(NULL, sfx_timeup); // that creepy "out of time" music from NiGHTS. Dummied out, as some on the dev team thought it wasn't Sonic-y enough (Mystic, notably). Uncomment to restore. -SH
2018-06-03 21:41:54 +00:00
S_ChangeMusicInternal ( ( ( ( maptol & TOL_NIGHTS ) & & ! G_IsSpecialStage ( gamemap ) ) ? " _ntime " : " _drown " ) , false ) ;
2014-03-15 16:59:03 +00:00
}
}
}
2018-05-08 22:26:36 +00:00
static inline boolean P_TagDamage ( mobj_t * target , mobj_t * inflictor , mobj_t * source , INT32 damage , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
player_t * player = target - > player ;
( void ) damage ; //unused parm
// If flashing or invulnerable, ignore the tag,
if ( player - > powers [ pw_flashing ] | | player - > powers [ pw_invulnerability ] )
return false ;
// Ignore IT players shooting each other, unless friendlyfire is on.
2018-05-08 22:26:36 +00:00
if ( ( player - > pflags & PF_TAGIT & & ! ( ( cv_friendlyfire . value | | ( damagetype & DMG_CANHURTSELF ) ) & &
2014-03-15 16:59:03 +00:00
source & & source - > player & & source - > player - > pflags & PF_TAGIT ) ) )
return false ;
// Don't allow any damage before the round starts.
if ( leveltime < = hidetime * TICRATE )
return false ;
// Don't allow players on the same team to hurt one another,
// unless cv_friendlyfire is on.
2018-05-08 22:26:36 +00:00
if ( ! ( cv_friendlyfire . value | | ( damagetype & DMG_CANHURTSELF ) ) & & ( player - > pflags & PF_TAGIT ) = = ( source - > player - > pflags & PF_TAGIT ) )
2014-03-15 16:59:03 +00:00
{
if ( ! ( inflictor - > flags & MF_FIRE ) )
P_GivePlayerRings ( player , 1 ) ;
2014-04-14 05:14:58 +00:00
if ( inflictor - > flags2 & MF2_BOUNCERING )
2016-05-12 20:52:41 +00:00
inflictor - > fuse = 0 ; // bounce ring disappears at -1 not 0
2014-03-15 16:59:03 +00:00
return false ;
}
// The tag occurs so long as you aren't shooting another tagger with friendlyfire on.
if ( source - > player - > pflags & PF_TAGIT & & ! ( player - > pflags & PF_TAGIT ) )
{
P_AddPlayerScore ( source - > player , 100 ) ; //award points to tagger.
2015-02-13 16:15:58 +00:00
P_HitDeathMessages ( player , inflictor , source , 0 ) ;
2014-03-15 16:59:03 +00:00
if ( gametype = = GT_TAG ) //survivor
{
player - > pflags | = PF_TAGIT ; //in survivor, the player becomes IT and helps hunt down the survivors.
CONS_Printf ( M_GetText ( " %s is now IT! \n " ) , player_names [ player - players ] ) ; // Tell everyone who is it!
}
else
{
2017-09-15 19:34:46 +00:00
player - > pflags | = PF_GAMETYPEOVER ; //in hide and seek, the player is tagged and stays stationary.
2014-03-15 16:59:03 +00:00
CONS_Printf ( M_GetText ( " %s was found! \n " ) , player_names [ player - players ] ) ; // Tell everyone who is it!
}
//checks if tagger has tagged all players, if so, end round early.
P_CheckSurvivors ( ) ;
}
P_DoPlayerPain ( player , source , inflictor ) ;
// Check for a shield
if ( player - > powers [ pw_shield ] )
{
P_RemoveShield ( player ) ;
S_StartSound ( target , sfx_shldls ) ;
return true ;
}
2015-08-15 20:07:16 +00:00
if ( player - > rings > 0 ) // Ring loss
2014-03-15 16:59:03 +00:00
{
P_PlayRinglossSound ( target ) ;
2015-08-15 20:07:16 +00:00
P_PlayerRingBurst ( player , player - > rings ) ;
2014-03-15 16:59:03 +00:00
}
2015-08-15 20:07:16 +00:00
else // Death
2014-03-15 16:59:03 +00:00
{
2015-08-15 20:07:16 +00:00
P_PlayDeathSound ( target ) ;
P_PlayVictorySound ( source ) ; // Killer laughs at you! LAUGHS! BWAHAHAHHAHAA!!
2014-03-15 16:59:03 +00:00
}
2015-10-01 00:40:27 +00:00
player - > rings = 0 ;
2014-03-15 16:59:03 +00:00
return true ;
}
2018-05-08 22:26:36 +00:00
static inline boolean P_PlayerHitsPlayer ( mobj_t * target , mobj_t * inflictor , mobj_t * source , INT32 damage , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
player_t * player = target - > player ;
2018-05-08 22:26:36 +00:00
if ( ! ( damagetype & DMG_CANHURTSELF ) )
{
// You can't kill yourself, idiot...
if ( source = = target )
return false ;
2014-03-15 16:59:03 +00:00
2018-05-08 22:26:36 +00:00
// In COOP/RACE, you can't hurt other players unless cv_friendlyfire is on
if ( ! cv_friendlyfire . value & & ( G_PlatformGametype ( ) ) )
return false ;
}
2014-03-15 16:59:03 +00:00
// Tag handling
if ( G_TagGametype ( ) )
2018-05-08 22:26:36 +00:00
return P_TagDamage ( target , inflictor , source , damage , damagetype ) ;
else if ( damagetype & DMG_CANHURTSELF )
return true ;
2014-03-15 16:59:03 +00:00
else if ( G_GametypeHasTeams ( ) ) // CTF + Team Match
{
// Don't allow players on the same team to hurt one another,
// unless cv_friendlyfire is on.
if ( ! cv_friendlyfire . value & & target - > player - > ctfteam = = source - > player - > ctfteam )
{
if ( ! ( inflictor - > flags & MF_FIRE ) )
P_GivePlayerRings ( target - > player , 1 ) ;
2014-04-14 05:14:58 +00:00
if ( inflictor - > flags2 & MF2_BOUNCERING )
2016-05-12 20:52:41 +00:00
inflictor - > fuse = 0 ; // bounce ring disappears at -1 not 0
2014-03-15 16:59:03 +00:00
return false ;
}
}
// Add pity.
if ( ! player - > powers [ pw_flashing ] & & ! player - > powers [ pw_invulnerability ] & & ! player - > powers [ pw_super ]
& & source - > player - > score > player - > score )
player - > pity + + ;
return true ;
}
static void P_KillPlayer ( player_t * player , mobj_t * source , INT32 damage )
{
2017-03-14 18:11:17 +00:00
player - > pflags & = ~ PF_SLIDING ;
2016-09-23 22:48:48 +00:00
player - > powers [ pw_carry ] = CR_NONE ;
2014-03-15 16:59:03 +00:00
// Burst weapons and emeralds in Match/CTF only
if ( source & & ( gametype = = GT_MATCH | | gametype = = GT_TEAMMATCH | | gametype = = GT_CTF ) )
{
2015-08-15 20:07:16 +00:00
P_PlayerRingBurst ( player , player - > rings ) ;
2014-03-15 16:59:03 +00:00
P_PlayerEmeraldBurst ( player , false ) ;
}
// Get rid of shield
2016-10-24 11:35:40 +00:00
player - > powers [ pw_shield ] = SH_NONE ;
player - > mo - > color = player - > skincolor ;
2014-03-15 16:59:03 +00:00
// Get rid of emeralds
player - > powers [ pw_emeralds ] = 0 ;
P_ForceFeed ( player , 40 , 10 , TICRATE , 40 + min ( damage , 100 ) * 2 ) ;
P_ResetPlayer ( player ) ;
P_SetPlayerMobjState ( player - > mo , player - > mo - > info - > deathstate ) ;
if ( gametype = = GT_CTF & & ( player - > gotflag & ( GF_REDFLAG | GF_BLUEFLAG ) ) )
{
P_PlayerFlagBurst ( player , false ) ;
if ( source & & source - > player )
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
P_AddPlayerScore ( source - > player , 25 ) ;
}
}
if ( source & & source - > player & & ! player - > powers [ pw_super ] ) //don't score points against super players
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
P_AddPlayerScore ( source - > player , 100 ) ;
}
// If the player was super, tell them he/she ain't so super nomore.
if ( gametype ! = GT_COOP & & player - > powers [ pw_super ] )
{
S_StartSound ( NULL , sfx_s3k66 ) ; //let all players hear it.
HU_SetCEchoFlags ( 0 ) ;
HU_SetCEchoDuration ( 5 ) ;
HU_DoCEcho ( va ( " %s \\ is no longer super. \\ \\ \\ \\ " , player_names [ player - players ] ) ) ;
}
}
static inline void P_SuperDamage ( player_t * player , mobj_t * inflictor , mobj_t * source , INT32 damage )
{
fixed_t fallbackspeed ;
angle_t ang ;
P_ForceFeed ( player , 40 , 10 , TICRATE , 40 + min ( damage , 100 ) * 2 ) ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
player - > mo - > z - - ;
else
player - > mo - > z + + ;
if ( player - > mo - > eflags & MFE_UNDERWATER )
P_SetObjectMomZ ( player - > mo , FixedDiv ( 10511 * FRACUNIT , 2600 * FRACUNIT ) , false ) ;
else
P_SetObjectMomZ ( player - > mo , FixedDiv ( 69 * FRACUNIT , 10 * FRACUNIT ) , false ) ;
ang = R_PointToAngle2 ( inflictor - > x , inflictor - > y , player - > mo - > x , player - > mo - > y ) ;
// explosion and rail rings send you farther back, making it more difficult
// to recover
if ( inflictor - > flags2 & MF2_SCATTER & & source )
{
fixed_t dist = P_AproxDistance ( P_AproxDistance ( source - > x - player - > mo - > x , source - > y - player - > mo - > y ) , source - > z - player - > mo - > z ) ;
dist = FixedMul ( 128 * FRACUNIT , inflictor - > scale ) - dist / 4 ;
if ( dist < FixedMul ( 4 * FRACUNIT , inflictor - > scale ) )
dist = FixedMul ( 4 * FRACUNIT , inflictor - > scale ) ;
fallbackspeed = dist ;
}
else if ( inflictor - > flags2 & MF2_EXPLOSION )
{
if ( inflictor - > flags2 & MF2_RAILRING )
fallbackspeed = FixedMul ( 28 * FRACUNIT , inflictor - > scale ) ; // 7x
else
fallbackspeed = FixedMul ( 20 * FRACUNIT , inflictor - > scale ) ; // 5x
}
else if ( inflictor - > flags2 & MF2_RAILRING )
fallbackspeed = FixedMul ( 16 * FRACUNIT , inflictor - > scale ) ; // 4x
else
fallbackspeed = FixedMul ( 4 * FRACUNIT , inflictor - > scale ) ; // the usual amount of force
P_InstaThrust ( player - > mo , ang , fallbackspeed ) ;
2017-03-11 02:09:01 +00:00
P_SetPlayerMobjState ( player - > mo , S_PLAY_STUN ) ;
2014-03-15 16:59:03 +00:00
P_ResetPlayer ( player ) ;
if ( player - > timeshit ! = UINT8_MAX )
+ + player - > timeshit ;
}
void P_RemoveShield ( player_t * player )
{
if ( player - > powers [ pw_shield ] & SH_FORCE )
{ // Multi-hit
2016-10-24 11:35:40 +00:00
if ( player - > powers [ pw_shield ] & SH_FORCEHP )
2014-03-15 16:59:03 +00:00
player - > powers [ pw_shield ] - - ;
2016-10-24 11:35:40 +00:00
else
player - > powers [ pw_shield ] & = SH_STACK ;
2014-03-15 16:59:03 +00:00
}
2017-08-06 17:57:02 +00:00
else if ( player - > powers [ pw_shield ] & SH_NOSTACK )
{ // First layer shields
if ( ( player - > powers [ pw_shield ] & SH_NOSTACK ) = = SH_ARMAGEDDON ) // Give them what's coming to them!
{
P_BlackOw ( player ) ; // BAM!
player - > pflags | = PF_JUMPDOWN ;
}
else
player - > powers [ pw_shield ] & = SH_STACK ;
}
else
2014-03-15 16:59:03 +00:00
{ // Second layer shields
2016-10-24 11:35:40 +00:00
if ( ( ( player - > powers [ pw_shield ] & SH_STACK ) = = SH_FIREFLOWER ) & & ! ( player - > powers [ pw_super ] | | ( mariomode & & player - > powers [ pw_invulnerability ] ) ) )
{
player - > mo - > color = player - > skincolor ;
G_GhostAddColor ( GHC_NORMAL ) ;
}
2014-03-15 16:59:03 +00:00
player - > powers [ pw_shield ] = SH_NONE ;
}
}
2015-10-05 19:18:45 +00:00
static void P_ShieldDamage ( player_t * player , mobj_t * inflictor , mobj_t * source , INT32 damage , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
2014-03-25 02:17:59 +00:00
// Must do pain first to set flashing -- P_RemoveShield can cause damage
P_DoPlayerPain ( player , source , inflictor ) ;
2014-03-15 16:59:03 +00:00
P_RemoveShield ( player ) ;
P_ForceFeed ( player , 40 , 10 , TICRATE , 40 + min ( damage , 100 ) * 2 ) ;
2017-07-18 13:17:10 +00:00
if ( damagetype = = DMG_SPIKE ) // spikes
2014-03-15 16:59:03 +00:00
S_StartSound ( player - > mo , sfx_spkdth ) ;
else
S_StartSound ( player - > mo , sfx_shldls ) ; // Ba-Dum! Shield loss.
if ( gametype = = GT_CTF & & ( player - > gotflag & ( GF_REDFLAG | GF_BLUEFLAG ) ) )
{
P_PlayerFlagBurst ( player , false ) ;
if ( source & & source - > player )
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
P_AddPlayerScore ( source - > player , 25 ) ;
}
}
if ( source & & source - > player & & ! player - > powers [ pw_super ] ) //don't score points against super players
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
2017-04-14 19:51:25 +00:00
P_AddPlayerScore ( source - > player , 50 ) ;
2014-03-15 16:59:03 +00:00
}
}
2015-02-13 16:15:58 +00:00
static void P_RingDamage ( player_t * player , mobj_t * inflictor , mobj_t * source , INT32 damage , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
2015-05-27 10:43:24 +00:00
P_DoPlayerPain ( player , source , inflictor ) ;
2014-03-15 16:59:03 +00:00
2015-05-27 10:43:24 +00:00
P_ForceFeed ( player , 40 , 10 , TICRATE , 40 + min ( damage , 100 ) * 2 ) ;
2014-03-15 16:59:03 +00:00
2017-07-18 13:17:10 +00:00
if ( damagetype = = DMG_SPIKE ) // spikes
2015-05-27 10:43:24 +00:00
S_StartSound ( player - > mo , sfx_spkdth ) ;
2014-03-15 16:59:03 +00:00
if ( source & & source - > player & & ! player - > powers [ pw_super ] ) //don't score points against super players
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
P_AddPlayerScore ( source - > player , 50 ) ;
}
if ( gametype = = GT_CTF & & ( player - > gotflag & ( GF_REDFLAG | GF_BLUEFLAG ) ) )
{
P_PlayerFlagBurst ( player , false ) ;
if ( source & & source - > player )
{
// Award no points when players shoot each other when cv_friendlyfire is on.
if ( ! G_GametypeHasTeams ( ) | | ! ( source - > player - > ctfteam = = player - > ctfteam & & source ! = player - > mo ) )
P_AddPlayerScore ( source - > player , 25 ) ;
}
}
// Ring loss sound plays despite hitting spikes
P_PlayRinglossSound ( player - > mo ) ; // Ringledingle!
2015-10-06 21:05:32 +00:00
P_PlayerRingBurst ( player , damage ) ;
player - > rings - = damage ;
if ( player - > rings < 0 )
player - > rings = 0 ;
2014-03-15 16:59:03 +00:00
}
2017-08-06 21:10:29 +00:00
//
// P_SpecialStageDamage
//
// Do old special stage-style damaging
2018-06-03 21:41:54 +00:00
// Removes 5 seconds from the player, or knocks off their shield if they have one.
2017-08-06 21:10:29 +00:00
// If they don't have anything, just knock the player back anyway (this doesn't kill them).
//
void P_SpecialStageDamage ( player_t * player , mobj_t * inflictor , mobj_t * source )
{
2018-06-03 21:41:54 +00:00
tic_t oldnightstime = player - > nightstime ;
2017-08-06 21:10:29 +00:00
if ( player - > powers [ pw_invulnerability ] | | player - > powers [ pw_flashing ] | | player - > powers [ pw_super ] )
return ;
if ( player - > powers [ pw_shield ] | | player - > bot ) //If One-Hit Shield
{
P_RemoveShield ( player ) ;
S_StartSound ( player - > mo , sfx_shldls ) ; // Ba-Dum! Shield loss.
}
else
{
2018-06-03 21:41:54 +00:00
S_StartSound ( player - > mo , sfx_nghurt ) ;
if ( player - > nightstime > 5 * TICRATE )
player - > nightstime - = 5 * TICRATE ;
2017-08-06 21:10:29 +00:00
else
2018-06-03 21:41:54 +00:00
player - > nightstime = 0 ;
2017-08-06 21:10:29 +00:00
}
P_DoPlayerPain ( player , inflictor , source ) ;
if ( gametype = = GT_CTF & & player - > gotflag & ( GF_REDFLAG | GF_BLUEFLAG ) )
P_PlayerFlagBurst ( player , false ) ;
2018-06-03 21:41:54 +00:00
if ( oldnightstime > 10 * TICRATE
& & player - > nightstime < 10 * TICRATE )
{
//S_StartSound(NULL, sfx_timeup); // that creepy "out of time" music from NiGHTS. Dummied out, as some on the dev team thought it wasn't Sonic-y enough (Mystic, notably). Uncomment to restore. -SH
S_ChangeMusicInternal ( ( ( ( maptol & TOL_NIGHTS ) & & ! G_IsSpecialStage ( gamemap ) ) ? " _ntime " : " _drown " ) , false ) ;
}
2017-08-06 21:10:29 +00:00
}
2014-03-15 16:59:03 +00:00
/** Damages an object, which may or may not be a player.
* For melee attacks , source and inflictor are the same .
*
2015-02-13 16:15:58 +00:00
* \ param target The object being damaged .
* \ param inflictor The thing that caused the damage : creature , missile ,
* gargoyle , and so forth . Can be NULL in the case of
* environmental damage , such as slime or crushing .
* \ param source The creature or person responsible . For example , if a
* player is hit by a ring , the player who shot it . In some
* cases , the target will go after this object after
* receiving damage . This can be NULL .
* \ param damage Amount of damage to be dealt .
* \ param damagetype Type of damage to be dealt . If bit 7 ( 0x80 ) is set , this is an instant - kill .
2014-03-15 16:59:03 +00:00
* \ return True if the target sustained damage , otherwise false .
* \ todo Clean up this mess , split into multiple functions .
* \ sa P_KillMobj
*/
2015-02-13 16:15:58 +00:00
boolean P_DamageMobj ( mobj_t * target , mobj_t * inflictor , mobj_t * source , INT32 damage , UINT8 damagetype )
2014-03-15 16:59:03 +00:00
{
player_t * player ;
# ifdef HAVE_BLUA
boolean force = false ;
# else
static const boolean force = false ;
# endif
if ( objectplacing )
return false ;
if ( target - > health < = 0 )
return false ;
// Spectator handling
if ( netgame )
{
2015-02-13 16:15:58 +00:00
if ( damagetype ! = DMG_SPECTATOR & & target - > player & & target - > player - > spectator )
2014-03-15 16:59:03 +00:00
return false ;
if ( source & & source - > player & & source - > player - > spectator )
return false ;
}
# ifdef HAVE_BLUA
// Everything above here can't be forced.
if ( ! metalrecording )
{
2016-07-20 21:02:02 +00:00
UINT8 shouldForce = LUAh_ShouldDamage ( target , inflictor , source , damage , damagetype ) ;
2014-03-15 16:59:03 +00:00
if ( P_MobjWasRemoved ( target ) )
return ( shouldForce = = 1 ) ; // mobj was removed
if ( shouldForce = = 1 )
force = true ;
else if ( shouldForce = = 2 )
return false ;
}
# endif
if ( ! force )
{
2016-11-12 15:39:47 +00:00
if ( ! ( target - > flags & MF_SHOOTABLE ) )
2014-03-15 16:59:03 +00:00
return false ; // shouldn't happen...
if ( target - > type = = MT_BLACKEGGMAN )
return false ;
// Make sure that boxes cannot be popped by enemies, red rings, etc.
2016-11-12 15:39:47 +00:00
if ( target - > flags & MF_MONITOR & & ( ( ! source | | ! source - > player | | source - > player - > bot ) | | ( inflictor & & ! inflictor - > player ) ) )
2014-03-15 16:59:03 +00:00
return false ;
}
if ( target - > flags2 & MF2_SKULLFLY )
target - > momx = target - > momy = target - > momz = 0 ;
if ( ! force )
{
// Special case for team ring boxes
2015-12-31 16:38:23 +00:00
if ( target - > type = = MT_RING_REDBOX & & ! ( source - > player - > ctfteam = = 1 ) )
2014-03-15 16:59:03 +00:00
return false ;
2015-12-31 16:38:23 +00:00
if ( target - > type = = MT_RING_BLUEBOX & & ! ( source - > player - > ctfteam = = 2 ) )
2014-03-15 16:59:03 +00:00
return false ;
}
2018-05-02 22:48:50 +00:00
if ( target - > flags & ( MF_ENEMY | MF_BOSS ) )
2014-03-15 16:59:03 +00:00
{
if ( ! force & & target - > flags2 & MF2_FRET ) // Currently flashing from being hit
return false ;
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
if ( LUAh_MobjDamage ( target , inflictor , source , damage , damagetype ) | | P_MobjWasRemoved ( target ) )
2014-03-15 16:59:03 +00:00
return true ;
# endif
if ( target - > health > 1 )
target - > flags2 | = MF2_FRET ;
}
player = target - > player ;
if ( player ) // Player is the target
{
if ( ! force )
{
if ( player - > exiting )
return false ;
2015-10-05 16:13:34 +00:00
if ( player - > pflags & PF_GODMODE )
return false ;
2017-09-15 19:34:46 +00:00
if ( ( maptol & TOL_NIGHTS ) & & target - > player - > powers [ pw_carry ] ! = CR_NIGHTSMODE & & target - > player - > powers [ pw_carry ] ! = CR_NIGHTSFALL )
2014-03-15 16:59:03 +00:00
return false ;
2015-02-13 16:15:58 +00:00
switch ( damagetype )
{
2017-08-09 19:56:31 +00:00
# define DAMAGECASE(type)\
case DMG_ # # type : \
if ( player - > powers [ pw_shield ] & SH_PROTECT # # type ) \
return false ; \
break
DAMAGECASE ( WATER ) ;
DAMAGECASE ( FIRE ) ;
DAMAGECASE ( ELECTRIC ) ;
DAMAGECASE ( SPIKE ) ;
# undef DAMAGECASE
2015-02-13 16:15:58 +00:00
default :
break ;
}
2014-03-15 16:59:03 +00:00
}
2017-03-14 18:11:17 +00:00
if ( player - > powers [ pw_carry ] = = CR_NIGHTSMODE ) // NiGHTS damage handling
2014-03-15 16:59:03 +00:00
{
if ( ! force )
{
if ( source = = target )
return false ; // Don't hit yourself with your own paraloop, baka
if ( source & & source - > player & & ! cv_friendlyfire . value
& & ( gametype = = GT_COOP
2015-10-06 20:14:11 +00:00
| | ( G_GametypeHasTeams ( ) & & player - > ctfteam = = source - > player - > ctfteam ) ) )
2014-03-15 16:59:03 +00:00
return false ; // Don't run eachother over in special stages and team games and such
}
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
if ( LUAh_MobjDamage ( target , inflictor , source , damage , damagetype ) )
2014-03-15 16:59:03 +00:00
return true ;
# endif
P_NiGHTSDamage ( target , source ) ; // -5s :(
return true ;
}
2018-06-03 21:41:54 +00:00
if ( G_IsSpecialStage ( gamemap ) )
{
P_SpecialStageDamage ( player , inflictor , source ) ;
return true ;
}
2015-02-13 16:15:58 +00:00
if ( ! force & & inflictor & & inflictor - > flags & MF_FIRE )
2014-03-15 16:59:03 +00:00
{
2016-10-13 14:13:33 +00:00
if ( player - > powers [ pw_shield ] & SH_PROTECTFIRE )
2014-03-15 16:59:03 +00:00
return false ; // Invincible to fire objects
2015-02-13 16:15:58 +00:00
if ( G_PlatformGametype ( ) & & inflictor & & source & & source - > player )
2014-03-15 16:59:03 +00:00
return false ; // Don't get hurt by fire generated from friends.
}
// Player hits another player
if ( ! force & & source & & source - > player )
{
2018-05-08 22:26:36 +00:00
if ( ! P_PlayerHitsPlayer ( target , inflictor , source , damage , damagetype ) )
2014-03-15 16:59:03 +00:00
return false ;
}
// Instant-Death
2015-02-13 16:15:58 +00:00
if ( damagetype & DMG_DEATHMASK )
2015-10-06 21:05:32 +00:00
{
2014-03-15 16:59:03 +00:00
P_KillPlayer ( player , source , damage ) ;
2015-10-06 21:05:32 +00:00
player - > rings = 0 ;
}
2014-03-15 16:59:03 +00:00
else if ( metalrecording )
{
if ( ! inflictor )
inflictor = source ;
if ( inflictor & & inflictor - > flags & MF_ENEMY )
{ // Metal Sonic destroy enemy !!
2015-02-13 16:15:58 +00:00
P_KillMobj ( inflictor , NULL , target , damagetype ) ;
2014-03-15 16:59:03 +00:00
return false ;
}
else if ( inflictor & & inflictor - > flags & MF_MISSILE )
return false ; // Metal Sonic walk through flame !!
else
{ // Oh no! Metal Sonic is hit !!
2015-10-05 19:18:45 +00:00
P_ShieldDamage ( player , inflictor , source , damage , damagetype ) ;
2014-03-15 16:59:03 +00:00
return true ;
}
}
else if ( player - > powers [ pw_invulnerability ] | | player - > powers [ pw_flashing ] // ignore bouncing & such in invulnerability
2015-05-27 06:08:18 +00:00
| | player - > powers [ pw_super ] )
2014-03-15 16:59:03 +00:00
{
if ( force | | ( inflictor & & ( inflictor - > flags & MF_MISSILE )
& & ( inflictor - > flags2 & MF2_SUPERFIRE )
& & player - > powers [ pw_super ] ) )
{
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
if ( ! LUAh_MobjDamage ( target , inflictor , source , damage , damagetype ) )
2014-03-15 16:59:03 +00:00
# endif
P_SuperDamage ( player , inflictor , source , damage ) ;
return true ;
}
else
return false ;
}
# ifdef HAVE_BLUA
2016-07-20 21:02:02 +00:00
else if ( LUAh_MobjDamage ( target , inflictor , source , damage , damagetype ) )
2014-03-15 16:59:03 +00:00
return true ;
# endif
2015-10-06 20:14:11 +00:00
else if ( player - > powers [ pw_shield ] | | player - > bot ) //If One-Hit Shield
2014-03-15 16:59:03 +00:00
{
2015-10-05 19:18:45 +00:00
P_ShieldDamage ( player , inflictor , source , damage , damagetype ) ;
2014-03-15 16:59:03 +00:00
damage = 0 ;
}
2015-08-15 20:07:16 +00:00
else if ( player - > rings > 0 ) // No shield but have rings.
2014-03-15 16:59:03 +00:00
{
2015-08-15 20:07:16 +00:00
damage = player - > rings ;
2015-02-13 16:15:58 +00:00
P_RingDamage ( player , inflictor , source , damage , damagetype ) ;
2015-10-06 21:05:32 +00:00
damage = 0 ;
2014-03-15 16:59:03 +00:00
}
2015-10-06 20:14:11 +00:00
// To reduce griefing potential, don't allow players to be killed
// by friendly fire. Spilling their rings and other items is enough.
else if ( ! force & & G_GametypeHasTeams ( )
& & source & & source - > player & & ( source - > player - > ctfteam = = player - > ctfteam )
& & cv_friendlyfire . value )
2014-03-15 16:59:03 +00:00
{
2015-10-06 20:14:11 +00:00
damage = 0 ;
P_ShieldDamage ( player , inflictor , source , damage , damagetype ) ;
2014-03-15 16:59:03 +00:00
}
else // No shield, no rings, no invincibility.
{
2015-10-06 20:14:11 +00:00
damage = 1 ;
P_KillPlayer ( player , source , damage ) ;
2014-03-15 16:59:03 +00:00
}
P_ForceFeed ( player , 40 , 10 , TICRATE , 40 + min ( damage , 100 ) * 2 ) ;
}
// Killing dead. Just for kicks.
2014-04-19 17:41:29 +00:00
// Require source and inflictor be player. Don't hurt for firing rings.
2016-03-27 14:33:15 +00:00
if ( cv_killingdead . value & & ( source & & source - > player ) & & ( inflictor & & inflictor - > player ) & & P_RandomChance ( 5 * FRACUNIT / 16 ) )
2015-02-13 16:15:58 +00:00
P_DamageMobj ( source , target , target , 1 , 0 ) ;
2014-03-15 16:59:03 +00:00
// do the damage
2015-08-15 20:07:16 +00:00
if ( damagetype & DMG_DEATHMASK )
2015-02-13 16:15:58 +00:00
target - > health = 0 ;
2014-03-15 16:59:03 +00:00
else
target - > health - = damage ;
2018-03-26 22:53:09 +00:00
if ( player )
P_HitDeathMessages ( player , inflictor , source , damagetype ) ;
2014-03-15 16:59:03 +00:00
if ( source & & source - > player & & target )
G_GhostAddHit ( target ) ;
if ( target - > health < = 0 )
{
2015-02-13 16:15:58 +00:00
P_KillMobj ( target , inflictor , source , damagetype ) ;
2014-03-15 16:59:03 +00:00
return true ;
}
if ( player )
2015-05-27 06:08:18 +00:00
P_ResetPlayer ( target - > player ) ;
2018-05-04 20:30:15 +00:00
else if ( ( target - > type = = MT_EGGMOBILE2 ) // egg slimer
& & ( target - > health < target - > info - > damage ) ) // in pinch phase
P_SetMobjState ( target , target - > info - > meleestate ) ; // go to pinch pain state
2014-03-15 16:59:03 +00:00
else
2018-05-04 20:30:15 +00:00
P_SetMobjState ( target , target - > info - > painstate ) ;
if ( target - > type = = MT_HIVEELEMENTAL )
target - > extravalue1 + = 3 ;
2014-03-15 16:59:03 +00:00
target - > reactiontime = 0 ; // we're awake now...
if ( source & & source ! = target )
{
// if not intent on another player,
// chase after this one
P_SetTarget ( & target - > target , source ) ;
}
return true ;
}
/** Spills an injured player's rings.
*
* \ param player The player who is losing rings .
* \ param num_rings Number of rings lost . A maximum of 32 rings will be
* spawned .
* \ sa P_PlayerFlagBurst
*/
void P_PlayerRingBurst ( player_t * player , INT32 num_rings )
{
INT32 i ;
mobj_t * mo ;
angle_t fa ;
fixed_t ns ;
fixed_t z ;
// Better safe than sorry.
if ( ! player )
return ;
// If no health, don't spawn ring!
2015-08-15 20:07:16 +00:00
if ( player - > rings < = 0 )
2014-03-15 16:59:03 +00:00
num_rings = 0 ;
2017-09-15 19:34:46 +00:00
if ( num_rings > 32 & & player - > powers [ pw_carry ] ! = CR_NIGHTSFALL )
2014-03-15 16:59:03 +00:00
num_rings = 32 ;
if ( player - > powers [ pw_emeralds ] )
P_PlayerEmeraldBurst ( player , false ) ;
// Spill weapons first
2015-05-27 04:45:34 +00:00
P_PlayerWeaponPanelOrAmmoBurst ( player ) ;
2014-03-15 16:59:03 +00:00
for ( i = 0 ; i < num_rings ; i + + )
{
INT32 objType = mobjinfo [ MT_RING ] . reactiontime ;
2016-10-24 11:35:40 +00:00
if ( mariomode )
objType = mobjinfo [ MT_COIN ] . reactiontime ;
2014-03-15 16:59:03 +00:00
z = player - > mo - > z ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
z + = player - > mo - > height - mobjinfo [ objType ] . height ;
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , objType ) ;
mo - > fuse = 8 * TICRATE ;
P_SetTarget ( & mo - > target , player - > mo ) ;
mo - > destscale = player - > mo - > scale ;
P_SetScale ( mo , player - > mo - > scale ) ;
// Angle offset by player angle, then slightly offset by amount of rings
fa = ( ( i * FINEANGLES / 16 ) + ( player - > mo - > angle > > ANGLETOFINESHIFT ) - ( ( num_rings - 1 ) * FINEANGLES / 32 ) ) & FINEMASK ;
// Make rings spill out around the player in 16 directions like SA, but spill like Sonic 2.
// Technically a non-SA way of spilling rings. They just so happen to be a little similar.
2017-09-15 19:34:46 +00:00
if ( player - > powers [ pw_carry ] = = CR_NIGHTSFALL )
2014-03-15 16:59:03 +00:00
{
ns = FixedMul ( ( ( i * FRACUNIT ) / 16 ) + 2 * FRACUNIT , mo - > scale ) ;
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ;
P_SetObjectMomZ ( mo , 8 * FRACUNIT , false ) ;
mo - > fuse = 20 * TICRATE ; // Adjust fuse for NiGHTS
}
else
{
fixed_t momxy , momz ; // base horizonal/vertical thrusts
if ( i > 15 )
{
momxy = 3 * FRACUNIT ;
momz = 4 * FRACUNIT ;
}
else
{
momxy = 2 * FRACUNIT ;
momz = 3 * FRACUNIT ;
}
ns = FixedMul ( FixedMul ( momxy , FRACUNIT + FixedDiv ( player - > losstime < < FRACBITS , 10 * TICRATE < < FRACBITS ) ) , mo - > scale ) ;
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ;
ns = FixedMul ( momz , FRACUNIT + FixedDiv ( player - > losstime < < FRACBITS , 10 * TICRATE < < FRACBITS ) ) ;
P_SetObjectMomZ ( mo , ns , false ) ;
if ( i & 1 )
P_SetObjectMomZ ( mo , ns , true ) ;
}
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
mo - > momz * = - 1 ;
2017-09-15 19:34:46 +00:00
if ( P_IsObjectOnGround ( player - > mo ) )
player - > powers [ pw_carry ] = CR_NONE ;
2014-03-15 16:59:03 +00:00
}
player - > losstime + = 10 * TICRATE ;
return ;
}
void P_PlayerWeaponPanelBurst ( player_t * player )
{
mobj_t * mo ;
angle_t fa ;
fixed_t ns ;
INT32 i ;
fixed_t z ;
INT32 num_weapons = M_CountBits ( ( UINT32 ) player - > ringweapons , NUM_WEAPONS - 1 ) ;
UINT16 ammoamt = 0 ;
for ( i = 0 ; i < num_weapons ; i + + )
{
mobjtype_t weptype = 0 ;
powertype_t power = 0 ;
if ( player - > ringweapons & RW_BOUNCE ) // Bounce
{
weptype = MT_BOUNCEPICKUP ;
player - > ringweapons & = ~ RW_BOUNCE ;
power = pw_bouncering ;
}
else if ( player - > ringweapons & RW_RAIL ) // Rail
{
weptype = MT_RAILPICKUP ;
player - > ringweapons & = ~ RW_RAIL ;
power = pw_railring ;
}
else if ( player - > ringweapons & RW_AUTO ) // Auto
{
weptype = MT_AUTOPICKUP ;
player - > ringweapons & = ~ RW_AUTO ;
power = pw_automaticring ;
}
else if ( player - > ringweapons & RW_EXPLODE ) // Explode
{
weptype = MT_EXPLODEPICKUP ;
player - > ringweapons & = ~ RW_EXPLODE ;
power = pw_explosionring ;
}
else if ( player - > ringweapons & RW_SCATTER ) // Scatter
{
weptype = MT_SCATTERPICKUP ;
player - > ringweapons & = ~ RW_SCATTER ;
power = pw_scatterring ;
}
else if ( player - > ringweapons & RW_GRENADE ) // Grenade
{
weptype = MT_GRENADEPICKUP ;
player - > ringweapons & = ~ RW_GRENADE ;
power = pw_grenadering ;
}
if ( ! weptype ) // ???
continue ;
if ( player - > powers [ power ] > = mobjinfo [ weptype ] . reactiontime )
ammoamt = ( UINT16 ) mobjinfo [ weptype ] . reactiontime ;
else
ammoamt = player - > powers [ power ] ;
player - > powers [ power ] - = ammoamt ;
z = player - > mo - > z ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
z + = player - > mo - > height - mobjinfo [ weptype ] . height ;
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , weptype ) ;
mo - > reactiontime = ammoamt ;
mo - > flags2 | = MF2_DONTRESPAWN ;
mo - > flags & = ~ ( MF_NOGRAVITY | MF_NOCLIPHEIGHT ) ;
P_SetTarget ( & mo - > target , player - > mo ) ;
mo - > fuse = 12 * TICRATE ;
mo - > destscale = player - > mo - > scale ;
P_SetScale ( mo , player - > mo - > scale ) ;
// Angle offset by player angle
fa = ( ( i * FINEANGLES / 16 ) + ( player - > mo - > angle > > ANGLETOFINESHIFT ) ) & FINEMASK ;
// Make rings spill out around the player in 16 directions like SA, but spill like Sonic 2.
// Technically a non-SA way of spilling rings. They just so happen to be a little similar.
// >16 ring type spillout
ns = FixedMul ( 3 * FRACUNIT , mo - > scale ) ;
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ;
P_SetObjectMomZ ( mo , 4 * FRACUNIT , false ) ;
if ( i & 1 )
P_SetObjectMomZ ( mo , 4 * FRACUNIT , true ) ;
}
}
void P_PlayerWeaponAmmoBurst ( player_t * player )
{
mobj_t * mo ;
angle_t fa ;
fixed_t ns ;
INT32 i = 0 ;
fixed_t z ;
mobjtype_t weptype = 0 ;
powertype_t power = 0 ;
while ( true )
{
if ( player - > powers [ pw_bouncering ] )
{
weptype = MT_BOUNCERING ;
power = pw_bouncering ;
}
else if ( player - > powers [ pw_railring ] )
{
weptype = MT_RAILRING ;
power = pw_railring ;
}
else if ( player - > powers [ pw_infinityring ] )
{
weptype = MT_INFINITYRING ;
power = pw_infinityring ;
}
else if ( player - > powers [ pw_automaticring ] )
{
weptype = MT_AUTOMATICRING ;
power = pw_automaticring ;
}
else if ( player - > powers [ pw_explosionring ] )
{
weptype = MT_EXPLOSIONRING ;
power = pw_explosionring ;
}
else if ( player - > powers [ pw_scatterring ] )
{
weptype = MT_SCATTERRING ;
power = pw_scatterring ;
}
else if ( player - > powers [ pw_grenadering ] )
{
weptype = MT_GRENADERING ;
power = pw_grenadering ;
}
else
break ; // All done!
z = player - > mo - > z ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
z + = player - > mo - > height - mobjinfo [ weptype ] . height ;
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , weptype ) ;
mo - > health = player - > powers [ power ] ;
mo - > flags2 | = MF2_DONTRESPAWN ;
mo - > flags & = ~ ( MF_NOGRAVITY | MF_NOCLIPHEIGHT ) ;
P_SetTarget ( & mo - > target , player - > mo ) ;
player - > powers [ power ] = 0 ;
mo - > fuse = 12 * TICRATE ;
mo - > destscale = player - > mo - > scale ;
P_SetScale ( mo , player - > mo - > scale ) ;
// Angle offset by player angle
fa = ( ( i * FINEANGLES / 16 ) + ( player - > mo - > angle > > ANGLETOFINESHIFT ) ) & FINEMASK ;
// Spill them!
ns = FixedMul ( 2 * FRACUNIT , mo - > scale ) ;
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ;
P_SetObjectMomZ ( mo , 3 * FRACUNIT , false ) ;
if ( i & 1 )
P_SetObjectMomZ ( mo , 3 * FRACUNIT , true ) ;
i + + ;
}
}
2015-05-27 04:45:34 +00:00
void P_PlayerWeaponPanelOrAmmoBurst ( player_t * player )
{
mobj_t * mo ;
angle_t fa ;
fixed_t ns ;
INT32 i = 0 ;
fixed_t z ;
# define SETUP_DROP(thingtype) \
z = player - > mo - > z ; \
if ( player - > mo - > eflags & MFE_VERTICALFLIP ) \
z + = player - > mo - > height - mobjinfo [ thingtype ] . height ; \
fa = ( ( i * FINEANGLES / 16 ) + ( player - > mo - > angle > > ANGLETOFINESHIFT ) ) & FINEMASK ; \
ns = FixedMul ( 3 * FRACUNIT , player - > mo - > scale ) ; \
# define DROP_WEAPON(rwflag, pickup, ammo, power) \
if ( player - > ringweapons & rwflag ) \
{ \
player - > ringweapons & = ~ rwflag ; \
SETUP_DROP ( pickup ) \
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , pickup ) ; \
mo - > reactiontime = 0 ; \
mo - > flags2 | = MF2_DONTRESPAWN ; \
mo - > flags & = ~ ( MF_NOGRAVITY | MF_NOCLIPHEIGHT ) ; \
P_SetTarget ( & mo - > target , player - > mo ) ; \
mo - > fuse = 12 * TICRATE ; \
mo - > destscale = player - > mo - > scale ; \
P_SetScale ( mo , player - > mo - > scale ) ; \
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ; \
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) ) \
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ; \
P_SetObjectMomZ ( mo , 4 * FRACUNIT , false ) ; \
if ( i & 1 ) \
P_SetObjectMomZ ( mo , 4 * FRACUNIT , true ) ; \
+ + i ; \
} \
else if ( player - > powers [ power ] > 0 ) \
{ \
SETUP_DROP ( ammo ) \
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , ammo ) ; \
mo - > health = player - > powers [ power ] ; \
mo - > flags2 | = MF2_DONTRESPAWN ; \
mo - > flags & = ~ ( MF_NOGRAVITY | MF_NOCLIPHEIGHT ) ; \
P_SetTarget ( & mo - > target , player - > mo ) ; \
mo - > fuse = 12 * TICRATE ; \
mo - > destscale = player - > mo - > scale ; \
P_SetScale ( mo , player - > mo - > scale ) ; \
mo - > momx = FixedMul ( FINECOSINE ( fa ) , ns ) ; \
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) ) \
mo - > momy = FixedMul ( FINESINE ( fa ) , ns ) ; \
P_SetObjectMomZ ( mo , 3 * FRACUNIT , false ) ; \
if ( i & 1 ) \
P_SetObjectMomZ ( mo , 3 * FRACUNIT , true ) ; \
player - > powers [ power ] = 0 ; \
+ + i ; \
}
DROP_WEAPON ( RW_BOUNCE , MT_BOUNCEPICKUP , MT_BOUNCERING , pw_bouncering ) ;
DROP_WEAPON ( RW_RAIL , MT_RAILPICKUP , MT_RAILRING , pw_railring ) ;
DROP_WEAPON ( RW_AUTO , MT_AUTOPICKUP , MT_AUTOMATICRING , pw_automaticring ) ;
DROP_WEAPON ( RW_EXPLODE , MT_EXPLODEPICKUP , MT_EXPLOSIONRING , pw_explosionring ) ;
DROP_WEAPON ( RW_SCATTER , MT_SCATTERPICKUP , MT_SCATTERRING , pw_scatterring ) ;
DROP_WEAPON ( RW_GRENADE , MT_GRENADEPICKUP , MT_GRENADERING , pw_grenadering ) ;
DROP_WEAPON ( 0 , 0 , MT_INFINITYRING , pw_infinityring ) ;
# undef DROP_WEAPON
# undef SETUP_DROP
}
2014-03-15 16:59:03 +00:00
//
// P_PlayerEmeraldBurst
//
// Spills ONLY emeralds.
//
void P_PlayerEmeraldBurst ( player_t * player , boolean toss )
{
INT32 i ;
angle_t fa ;
fixed_t ns ;
fixed_t z = 0 , momx = 0 , momy = 0 ;
// Better safe than sorry.
if ( ! player )
return ;
// Spill power stones
if ( player - > powers [ pw_emeralds ] )
{
INT32 num_stones = 0 ;
if ( player - > powers [ pw_emeralds ] & EMERALD1 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD2 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD3 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD4 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD5 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD6 )
num_stones + + ;
if ( player - > powers [ pw_emeralds ] & EMERALD7 )
num_stones + + ;
for ( i = 0 ; i < num_stones ; i + + )
{
INT32 stoneflag = 0 ;
statenum_t statenum = S_CEMG1 ;
mobj_t * mo ;
if ( player - > powers [ pw_emeralds ] & EMERALD1 )
{
stoneflag = EMERALD1 ;
statenum = S_CEMG1 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD2 )
{
stoneflag = EMERALD2 ;
statenum = S_CEMG2 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD3 )
{
stoneflag = EMERALD3 ;
statenum = S_CEMG3 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD4 )
{
stoneflag = EMERALD4 ;
statenum = S_CEMG4 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD5 )
{
stoneflag = EMERALD5 ;
statenum = S_CEMG5 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD6 )
{
stoneflag = EMERALD6 ;
statenum = S_CEMG6 ;
}
else if ( player - > powers [ pw_emeralds ] & EMERALD7 )
{
stoneflag = EMERALD7 ;
statenum = S_CEMG7 ;
}
if ( ! stoneflag ) // ???
continue ;
player - > powers [ pw_emeralds ] & = ~ stoneflag ;
if ( toss )
{
fa = player - > mo - > angle > > ANGLETOFINESHIFT ;
z = player - > mo - > z + player - > mo - > height ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
z - = mobjinfo [ MT_FLINGEMERALD ] . height + player - > mo - > height ;
ns = FixedMul ( 8 * FRACUNIT , player - > mo - > scale ) ;
}
else
{
fa = ( ( 255 / num_stones ) * i ) * FINEANGLES / 256 ;
z = player - > mo - > z + ( player - > mo - > height / 2 ) ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
z - = mobjinfo [ MT_FLINGEMERALD ] . height ;
ns = FixedMul ( 4 * FRACUNIT , player - > mo - > scale ) ;
}
momx = FixedMul ( FINECOSINE ( fa ) , ns ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
momy = FixedMul ( FINESINE ( fa ) , ns ) ;
else
momy = 0 ;
mo = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , z , MT_FLINGEMERALD ) ;
mo - > health = 1 ;
mo - > threshold = stoneflag ;
mo - > flags2 | = ( MF2_DONTRESPAWN | MF2_SLIDEPUSH ) ;
mo - > flags & = ~ ( MF_NOGRAVITY | MF_NOCLIPHEIGHT ) ;
P_SetTarget ( & mo - > target , player - > mo ) ;
mo - > fuse = 12 * TICRATE ;
P_SetMobjState ( mo , statenum ) ;
mo - > momx = momx ;
mo - > momy = momy ;
P_SetObjectMomZ ( mo , 3 * FRACUNIT , false ) ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
mo - > momz = - mo - > momz ;
if ( toss )
player - > tossdelay = 2 * TICRATE ;
}
}
}
/** Makes an injured or dead player lose possession of the flag.
*
* \ param player The player with the flag , about to lose it .
* \ sa P_PlayerRingBurst
*/
void P_PlayerFlagBurst ( player_t * player , boolean toss )
{
mobj_t * flag ;
mobjtype_t type ;
if ( ! ( player - > gotflag & ( GF_REDFLAG | GF_BLUEFLAG ) ) )
return ;
if ( player - > gotflag & GF_REDFLAG )
type = MT_REDFLAG ;
else
type = MT_BLUEFLAG ;
flag = P_SpawnMobj ( player - > mo - > x , player - > mo - > y , player - > mo - > z , type ) ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
flag - > z + = player - > mo - > height - flag - > height ;
if ( toss )
P_InstaThrust ( flag , player - > mo - > angle , FixedMul ( 6 * FRACUNIT , player - > mo - > scale ) ) ;
else
{
2016-03-27 14:33:15 +00:00
angle_t fa = P_RandomByte ( ) * FINEANGLES / 256 ;
2014-03-15 16:59:03 +00:00
flag - > momx = FixedMul ( FINECOSINE ( fa ) , FixedMul ( 6 * FRACUNIT , player - > mo - > scale ) ) ;
if ( ! ( twodlevel | | ( player - > mo - > flags2 & MF2_TWOD ) ) )
flag - > momy = FixedMul ( FINESINE ( fa ) , FixedMul ( 6 * FRACUNIT , player - > mo - > scale ) ) ;
}
flag - > momz = FixedMul ( 8 * FRACUNIT , player - > mo - > scale ) ;
if ( player - > mo - > eflags & MFE_VERTICALFLIP )
flag - > momz = - flag - > momz ;
if ( type = = MT_REDFLAG )
flag - > spawnpoint = rflagpoint ;
else
flag - > spawnpoint = bflagpoint ;
flag - > fuse = cv_flagtime . value * TICRATE ;
P_SetTarget ( & flag - > target , player - > mo ) ;
2016-04-07 02:55:58 +00:00
// Flag text
{
char plname [ MAXPLAYERNAME + 4 ] ;
2016-06-13 15:11:02 +00:00
const char * flagtext ;
2016-04-07 02:55:58 +00:00
char flagcolor ;
snprintf ( plname , sizeof ( plname ) , " %s%s%s " ,
CTFTEAMCODE ( player ) ,
player_names [ player - players ] ,
CTFTEAMENDCODE ( player ) ) ;
if ( type = = MT_REDFLAG )
{
flagtext = M_GetText ( " Red flag " ) ;
flagcolor = ' \x85 ' ;
}
else
{
flagtext = M_GetText ( " Blue flag " ) ;
flagcolor = ' \x84 ' ;
}
if ( toss )
CONS_Printf ( M_GetText ( " %s tossed the %c%s%c. \n " ) , plname , flagcolor , flagtext , 0x80 ) ;
else
CONS_Printf ( M_GetText ( " %s dropped the %c%s%c. \n " ) , plname , flagcolor , flagtext , 0x80 ) ;
}
2014-03-15 16:59:03 +00:00
player - > gotflag = 0 ;
// Pointers set for displaying time value and for consistency restoration.
if ( type = = MT_REDFLAG )
redflag = flag ;
else
blueflag = flag ;
if ( toss )
player - > tossdelay = 2 * TICRATE ;
return ;
}