diff --git a/source/games/sw/src/wallmove.cpp b/source/games/sw/src/wallmove.cpp index d8b64d4f2..3a3177ee0 100644 --- a/source/games/sw/src/wallmove.cpp +++ b/source/games/sw/src/wallmove.cpp @@ -38,6 +38,12 @@ BEGIN_SW_NS SECTOR_OBJECT* DetectSectorObjectByWall(walltype*); +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SOwallmove(SECTOR_OBJECT* sop, DSWActor* actor, walltype* find_wallp, int dist, int *nx, int *ny) { int j,k,wallcount; @@ -76,6 +82,12 @@ void SOwallmove(SECTOR_OBJECT* sop, DSWActor* actor, walltype* find_wallp, int d } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoWallMove(DSWActor* actor) { int dist,nx,ny; @@ -154,6 +166,12 @@ int DoWallMove(DSWActor* actor) return found; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool CanSeeWallMove(DSWActor* caller, int match) { int i; @@ -176,6 +194,12 @@ bool CanSeeWallMove(DSWActor* caller, int match) return !found; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoWallMoveMatch(short match) { bool found = false; @@ -194,6 +218,12 @@ int DoWallMoveMatch(short match) return found; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + #include "saveable.h" diff --git a/source/games/sw/src/weapon.cpp b/source/games/sw/src/weapon.cpp index f75286297..09850940a 100644 --- a/source/games/sw/src/weapon.cpp +++ b/source/games/sw/src/weapon.cpp @@ -2748,6 +2748,12 @@ bool MissileHitMatch(DSWActor* weapActor, int WeaponNum, DSWActor* hitActor) #endif } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnShrapX(DSWActor* actor) { //For shrap that has no Weapon to send over @@ -2755,6 +2761,12 @@ int SpawnShrapX(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoLavaErupt(DSWActor* actor) { short i,pnum; @@ -2830,6 +2842,11 @@ int DoLavaErupt(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int SpawnShrap(DSWActor* parentActor, DSWActor* secondaryActor, int means, BREAK_INFO* breakinfo) { @@ -3773,11 +3790,23 @@ AutoShrap: } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void DoShrapMove(DSWActor* actor) { actor->user.coll = move_missile(actor, DVector3(actor->user.change.XY(), 0), actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS*2); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoVomit(DSWActor* actor) { actor->user.Counter = NORM_ANGLE(actor->user.Counter + (30*MISSILEMOVETICS)); @@ -3820,6 +3849,12 @@ int DoVomit(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoVomitSplash(DSWActor* actor) { if ((actor->user.WaitTics-=MISSILEMOVETICS) < 0) @@ -3877,6 +3912,12 @@ int DoShrapJumpFall(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoShrapDamage(DSWActor* actor) { if (actor->user.Flags & (SPR_JUMPING)) @@ -3913,6 +3954,12 @@ int DoShrapDamage(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnBlood(DSWActor* actor, DSWActor* weapActor, DAngle hit_angle, const DVector3* hit_pos) { DVector3 hitpos; @@ -4141,6 +4188,11 @@ int SpawnBlood(DSWActor* actor, DSWActor* weapActor, DAngle hit_angle, const DVe return retval; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- bool VehicleMoveHit(DSWActor* actor) { @@ -4225,6 +4277,11 @@ bool VehicleMoveHit(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- bool WeaponMoveHit(DSWActor* actor) { @@ -4441,6 +4498,12 @@ bool WeaponMoveHit(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoUziSmoke(DSWActor* actor) { actor->spr.pos.Z -= 0.78125; // !JIM! Make them float up @@ -4462,6 +4525,12 @@ int DoMineSpark(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFireballFlames(DSWActor* actor) { bool jumping = false; @@ -4553,6 +4622,12 @@ int DoFireballFlames(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBreakFlames(DSWActor* actor) { bool jumping = false; @@ -4630,6 +4705,12 @@ int DoBreakFlames(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SetSuicide(DSWActor* actor) { if (actor->hasU()) @@ -4671,6 +4752,12 @@ int DoRipperGrow(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void UpdateSinglePlayKills(DSWActor* actor) { // single play and coop kill count @@ -4711,6 +4798,11 @@ void UpdateSinglePlayKills(DSWActor* actor) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int ActorChooseDeath(DSWActor* actor, DSWActor* weapActor) { @@ -4955,6 +5047,12 @@ int ActorChooseDeath(DSWActor* actor, DSWActor* weapActor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ActorHealth(DSWActor* actor, short amt) { extern int FinishAnim; @@ -5059,6 +5157,12 @@ int ActorHealth(DSWActor* actor, short amt) return true; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SopDamage(SECTOR_OBJECT* sop, short amt) { auto actor = sop->sp_child; @@ -5076,6 +5180,12 @@ int SopDamage(SECTOR_OBJECT* sop, short amt) return true; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SopCheckKill(SECTOR_OBJECT* sop) { bool killed = false; @@ -5101,6 +5211,12 @@ int SopCheckKill(SECTOR_OBJECT* sop) return killed; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ActorPain(DSWActor* actor) { // uzi/shotgun damages @@ -5133,6 +5249,12 @@ int ActorPain(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ActorPainPlasma(DSWActor* actor) { if (!(actor->user.Flags & (SPR_JUMPING | SPR_FALLING | SPR_ELECTRO_TOLERANT))) @@ -5153,6 +5275,12 @@ int ActorPainPlasma(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ActorStdMissile(DSWActor* actor, DSWActor* weapActor) { assert(weapActor != nullptr); @@ -5181,6 +5309,12 @@ int ActorStdMissile(DSWActor* actor, DSWActor* weapActor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ActorDamageSlide(DSWActor* actor, int damage, int ang) { auto angle = DAngle::fromBuild(ang); @@ -5215,6 +5349,12 @@ int ActorDamageSlide(DSWActor* actor, int damage, int ang) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int PlayerDamageSlide(PLAYER* pp, int damage, short ang) { DAngle angle = DAngle::fromBuild(ang); @@ -5251,6 +5391,12 @@ int PlayerDamageSlide(PLAYER* pp, int damage, short ang) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int GetDamage(DSWActor* actor, DSWActor* weapActor, int DamageNdx) { auto d = &DamageData[DamageNdx]; @@ -5292,6 +5438,12 @@ int GetDamage(DSWActor* actor, DSWActor* weapActor, int DamageNdx) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int PlayerCheckDeath(PLAYER* pp, DSWActor* weapActor) { DSWActor* actor = pp->actor; @@ -5353,6 +5505,12 @@ int PlayerCheckDeath(PLAYER* pp, DSWActor* weapActor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool PlayerTakeDamage(PLAYER* pp, DSWActor* weapActor) { if (weapActor == nullptr) @@ -5431,6 +5589,12 @@ bool PlayerTakeDamage(PLAYER* pp, DSWActor* weapActor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int StarBlood(DSWActor* actor, DSWActor* weapActor) { short blood_num = 1; @@ -5452,7 +5616,12 @@ objects. */ +//--------------------------------------------------------------------------- +// // this was done wrong multiple times below, resulting in spurious crashes. +// +//--------------------------------------------------------------------------- + bool OwnerIs(DSWActor* actor, int pic) { auto Own = GetOwner(actor); @@ -5462,6 +5631,12 @@ bool OwnerIs(DSWActor* actor, int pic) +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoDamage(DSWActor* actor, DSWActor* weapActor) { int damage=0; @@ -6884,7 +7059,12 @@ int DoDamage(DSWActor* actor, DSWActor* weapActor) return 0; } -// Select death text based on ID +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + const char *DeathString(DSWActor* actor) { if (!actor->hasU()) return " "; @@ -6986,6 +7166,12 @@ const char *DeathString(DSWActor* actor) return ""; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoDamageTest(DSWActor* actor) { int i; @@ -7026,6 +7212,12 @@ int DoDamageTest(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + static void DoHitscanDamage(DSWActor* weaponActor, DSWActor* hitActor) { if (hitActor == nullptr) @@ -7046,6 +7238,12 @@ static void DoHitscanDamage(DSWActor* weaponActor, DSWActor* hitActor) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFlamesDamageTest(DSWActor* actor) { int i; @@ -7101,6 +7299,12 @@ int DoFlamesDamageTest(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + walltype* PrevWall(walltype* wall_num) { for(auto&wal : wallsofsector(wall_num->sectorp())) @@ -7111,6 +7315,12 @@ walltype* PrevWall(walltype* wall_num) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + short StatBreakList[] = { STAT_DEFAULT, @@ -7176,6 +7386,12 @@ void TraverseBreakableWalls(sectortype* start_sect, int x, int y, int z, short a } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoExpDamageTest(DSWActor* actor) { short i, stat; @@ -7313,6 +7529,12 @@ int DoExpDamageTest(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMineExpMine(DSWActor* actor) { int i; @@ -7346,6 +7568,12 @@ int DoMineExpMine(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoStar(DSWActor* actor) { const int STAR_STICK_RNUM = 400; @@ -7553,6 +7781,12 @@ int DoStar(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoCrossBolt(DSWActor* actor) { DoBlurExtend(actor, 0, 2); @@ -7575,6 +7809,12 @@ int DoCrossBolt(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoPlasmaDone(DSWActor* actor) { actor->spr.xrepeat += actor->user.Counter; @@ -7590,6 +7830,12 @@ int DoPlasmaDone(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* PickEnemyTarget(DSWActor* actor, short aware_range) { TARGET_SORT* ts; @@ -7610,6 +7856,12 @@ DSWActor* PickEnemyTarget(DSWActor* actor, short aware_range) return nullptr; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int MissileSeek(DSWActor* actor, int16_t delay_tics, int16_t aware_range/*, int16_t dang_shift, int16_t turn_limit, int16_t z_limit*/) { if (actor->user.WaitTics <= delay_tics) @@ -7657,7 +7909,12 @@ int MissileSeek(DSWActor* actor, int16_t delay_tics, int16_t aware_range/*, int1 return 0; } -// combination of vector manipulation +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ComboMissileSeek(DSWActor* actor, int16_t delay_tics, int16_t aware_range/*, int16_t dang_shift, int16_t turn_limit, int16_t z_limit*/) { if (actor->user.WaitTics <= delay_tics) @@ -7700,7 +7957,12 @@ void SetAngleFromChange(DSWActor* actor) actor->spr.angle = VecToAngle(actor->user.change); } -// completely vector manipulation +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int VectorMissileSeek(DSWActor* actor, int16_t delay_tics, int16_t turn_speed, int16_t aware_range1, int16_t aware_range2) { if (actor->user.WaitTics <= delay_tics) @@ -7767,7 +8029,12 @@ int VectorMissileSeek(DSWActor* actor, int16_t delay_tics, int16_t turn_speed, i return 0; } -// completely vector manipulation +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int VectorWormSeek(DSWActor* actor, int16_t delay_tics, int16_t aware_range1, int16_t aware_range2) { if (actor->user.WaitTics <= delay_tics) @@ -7811,6 +8078,12 @@ int VectorWormSeek(DSWActor* actor, int16_t delay_tics, int16_t aware_range1, in return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBlurExtend(DSWActor* actor, int16_t interval, int16_t blur_num) { if (actor->user.motion_blur_num >= blur_num) @@ -7830,6 +8103,12 @@ int DoBlurExtend(DSWActor* actor, int16_t interval, int16_t blur_num) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitPlasmaFountain(DSWActor* wActor, DSWActor* sActor) { auto actorNew = SpawnActor(STAT_MISSILE, PLASMA_FOUNTAIN, s_PlasmaFountain, sActor->sector(), @@ -7847,6 +8126,12 @@ int InitPlasmaFountain(DSWActor* wActor, DSWActor* sActor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoPlasmaFountain(DSWActor* actor) { // if no Owner then die @@ -7890,6 +8175,12 @@ int DoPlasmaFountain(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoPlasma(DSWActor* actor) { auto oldv = actor->spr.pos; @@ -7951,6 +8242,12 @@ int DoPlasma(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoCoolgFire(DSWActor* actor) { actor->user.coll = move_missile(actor, actor->user.change, actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS); @@ -7975,6 +8272,12 @@ int DoCoolgFire(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoEelFire(DSWActor* actor) { if (actor->user.Flags & (SPR_UNDERWATER) && (RANDOM_P2(1024 << 4) >> 4) < 256) @@ -7996,6 +8299,12 @@ void ScaleSpriteVector(DSWActor* actor, int scale) actor->user.change *= FixedToFloat(scale); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void WallBounce(DSWActor* actor, DAngle ang) { actor->user.bounce++; @@ -8020,6 +8329,11 @@ void WallBounce(DSWActor* actor, DAngle ang) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- bool SlopeBounce(DSWActor* actor, bool* hit_wall) { @@ -8082,6 +8396,12 @@ bool SlopeBounce(DSWActor* actor, bool* hit_wall) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + extern STATE s_Phosphorus[]; int DoGrenade(DSWActor* actor) @@ -8305,6 +8625,12 @@ int DoGrenade(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoVulcanBoulder(DSWActor* actor) { actor->user.Counter += 40; @@ -8443,6 +8769,12 @@ bool OwnerIsPlayer(DSWActor* actor) return (own && own->hasU() && own->user.PlayerP != nullptr); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMineRangeTest(DSWActor* actor, int range) { unsigned stat; @@ -8488,6 +8820,12 @@ int DoMineRangeTest(DSWActor* actor, int range) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMineStuck(DSWActor* actor) { constexpr int MINE_DETONATE_STATE = 99; @@ -8638,6 +8976,12 @@ int DoMineStuck(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SetMineStuck(DSWActor* actor) { // stuck @@ -8652,6 +8996,12 @@ void SetMineStuck(DSWActor* actor) ChangeState(actor, s_MineStuck); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMine(DSWActor* actor) { if (actor->user.Flags & (SPR_UNDERWATER)) @@ -8820,6 +9170,12 @@ int DoRailPuff(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBoltThinMan(DSWActor* actor) { DoBlurExtend(actor, 0, 4); @@ -8851,6 +9207,12 @@ int DoBoltThinMan(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoTracer(DSWActor* actor) { for (int i = 0; i < 4; i++) @@ -8874,6 +9236,12 @@ int DoTracer(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoEMP(DSWActor* actor) { for (int i = 0; i < 4; i++) @@ -8908,6 +9276,12 @@ int DoEMP(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoEMPBurst(DSWActor* actor) { DSWActor* attachActor = actor->user.attachActor; @@ -8953,6 +9327,12 @@ int DoEMPBurst(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoTankShell(DSWActor* actor) { short i; @@ -8977,6 +9357,12 @@ int DoTankShell(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoTracerStart(DSWActor* actor) { actor->user.coll = move_missile(actor, actor->user.change, actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS); @@ -8995,6 +9381,12 @@ int DoTracerStart(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoLaser(DSWActor* actor) { short spawn_count = 0; @@ -9035,6 +9427,12 @@ int DoLaser(DSWActor* actor) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoLaserStart(DSWActor* actor) { if (SW_SHAREWARE) return false; // JBF: verify @@ -9056,6 +9454,12 @@ int DoLaserStart(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoRail(DSWActor* actor) { short spawn_count = 0; @@ -9131,6 +9535,12 @@ int DoRail(DSWActor* actor) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoRailStart(DSWActor* actor) { if (SW_SHAREWARE) return false; // JBF: verify @@ -9152,6 +9562,12 @@ int DoRailStart(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoRocket(DSWActor* actor) { int dist,a,b,c; @@ -9219,6 +9635,12 @@ int DoRocket(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMicroMini(DSWActor* actor) { short i; @@ -9243,6 +9665,12 @@ int DoMicroMini(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnExtraMicroMini(DSWActor* actor) { auto actorNew = SpawnActor(STAT_MISSILE, BOLT_THINMAN_R0, &s_Micro[0][0], actor->sector(), actor->spr.pos, actor->spr.angle, actor->vel.X); @@ -9268,6 +9696,12 @@ int SpawnExtraMicroMini(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMicro(DSWActor* actor) { if (SW_SHAREWARE) return false; // JBF: verify @@ -9327,6 +9761,12 @@ int DoMicro(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoUziBullet(DSWActor* actor) { // call move_sprite twice for each movement @@ -9382,6 +9822,12 @@ int DoUziBullet(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBoltSeeker(DSWActor* actor) { MissileSeek(actor, 30, 768/*, 4, 48, 6*/); @@ -9418,6 +9864,12 @@ int DoBoltFatMan(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoElectro(DSWActor* actor) { DoBlurExtend(actor, 0, 4); @@ -9465,6 +9917,12 @@ int DoElectro(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoLavaBoulder(DSWActor* actor) { actor->user.coll = move_missile(actor, actor->user.change, actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS); @@ -9489,6 +9947,12 @@ int DoLavaBoulder(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoSpear(DSWActor* actor) { actor->user.coll = move_missile(actor, actor->user.change, actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS); @@ -9513,6 +9977,12 @@ int DoSpear(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnCoolieExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9538,6 +10008,12 @@ int SpawnCoolieExp(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnFireballFlames(DSWActor* actor, DSWActor* enemyActor) { if (actor->user.Flags & (SPR_UNDERWATER)) @@ -9647,6 +10123,12 @@ void SpawnFireballFlames(DSWActor* actor, DSWActor* enemyActor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnBreakFlames(DSWActor* actor) { auto actorNew = SpawnActor(STAT_MISSILE, FIREBALL_FLAMES+1, s_BreakFlames, actor->sector(), actor->spr.pos, actor->spr.angle, 0); @@ -9677,6 +10159,12 @@ int SpawnBreakFlames(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnBreakStaticFlames(DSWActor* actor) { auto actorNew = SpawnActor(STAT_STATIC_FIRE, FIREBALL_FLAMES, nullptr, actor->sector(), actor->spr.pos, actor->spr.angle, 0); @@ -9703,6 +10191,12 @@ void SpawnBreakStaticFlames(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnFireballExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9734,6 +10228,12 @@ void SpawnFireballExp(DSWActor* actor) SpawnFireballFlames(actorNew, nullptr); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnGoroFireballExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9762,6 +10262,12 @@ void SpawnGoroFireballExp(DSWActor* actor) SpawnExpZadjust(actor, actorNew, 15, 15); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnBoltExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9792,6 +10298,12 @@ void SpawnBoltExp(DSWActor* actor) SpawnVis(nullptr, expActor->sector(), expActor->spr.pos, 16); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnBunnyExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9810,6 +10322,12 @@ int SpawnBunnyExp(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnTankShellExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -9872,6 +10390,12 @@ void SpawnNuclearSecondaryExp(DSWActor* actor, short ang) InitChemBomb(expActor); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnNuclearExp(DSWActor* actor) { short ang=0; @@ -9948,6 +10472,12 @@ void SpawnNuclearExp(DSWActor* actor) SpawnNuclearSecondaryExp(expActor, ang); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnTracerExp(DSWActor* actor) { DSWActor* expActor; @@ -9981,6 +10511,12 @@ void SpawnTracerExp(DSWActor* actor) expActor->user.Radius = DamageData[DMG_BOLT_EXP].radius; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnMicroExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -10011,6 +10547,12 @@ void SpawnMicroExp(DSWActor* actor) SpawnVis(nullptr, expActor->sector(), expActor->spr.pos, 16); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void AddSpriteToSectorObject(DSWActor* actor, SECTOR_OBJECT* sop) { unsigned sn; @@ -10040,6 +10582,12 @@ void AddSpriteToSectorObject(DSWActor* actor, SECTOR_OBJECT* sop) actor->user.sang = actor->spr.angle; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnBigGunFlames(DSWActor* actor, DSWActor* Operator, SECTOR_OBJECT* sop, bool smallflames) { unsigned sn; @@ -10097,6 +10645,12 @@ void SpawnBigGunFlames(DSWActor* actor, DSWActor* Operator, SECTOR_OBJECT* sop, expActor->user.pos = actor->user.pos; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnGrenadeSecondaryExp(DSWActor* actor, int ang) { int vel; @@ -10132,6 +10686,12 @@ void SpawnGrenadeSecondaryExp(DSWActor* actor, int ang) expActor->backuppos(); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnGrenadeSmallExp(DSWActor* actor) { int ang = RANDOM_P2(2048); @@ -10139,6 +10699,12 @@ int SpawnGrenadeSmallExp(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnGrenadeExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -10191,6 +10757,12 @@ void SpawnGrenadeExp(DSWActor* actor) SpawnVis(nullptr, expActor->sector(), expActor->spr.pos, 0); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnExpZadjust(DSWActor* actor, DSWActor* expActor, double upper_zsize, double lower_zsize) { double tos_z, bos_z; @@ -10235,6 +10807,12 @@ void SpawnExpZadjust(DSWActor* actor, DSWActor* expActor, double upper_zsize, do expActor->backupz(); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnMineExp(DSWActor* actor) { ASSERT(actor->hasU()); @@ -10267,6 +10845,11 @@ void SpawnMineExp(DSWActor* actor) SetExpQuake(expActor); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int DoMineExp(DSWActor* actor) { @@ -10280,6 +10863,12 @@ int DoSectorExp(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* SpawnSectorExp(DSWActor* actor) { short explosion; @@ -10332,6 +10921,12 @@ DSWActor* SpawnLargeExp(DSWActor* actor) return expActor; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnMeteorExp(DSWActor* actor) { DSWActor* expActor; @@ -10370,6 +10965,12 @@ void SpawnMeteorExp(DSWActor* actor) expActor->user.Radius = DamageData[DMG_BASIC_EXP].radius; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SpawnLittleExp(DSWActor* actor) { short explosion; @@ -10387,6 +10988,12 @@ void SpawnLittleExp(DSWActor* actor) SpawnVis(nullptr, expActor->sector(), expActor->spr.pos, 16); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFireball(DSWActor* actor) { if (actor->user.Flags & (SPR_UNDERWATER)) @@ -10443,6 +11050,12 @@ int DoFireball(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFindGround(DSWActor* actor) { Collision ceilhit, florhit; @@ -10495,6 +11108,12 @@ int DoFindGround(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFindGroundPoint(DSWActor* actor) { Collision ceilhit, florhit; @@ -10547,6 +11166,12 @@ int DoFindGroundPoint(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoNapalm(DSWActor* actor) { DoBlurExtend(actor, 1, 7); @@ -10637,6 +11262,12 @@ int DoNapalm(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBloodWorm(DSWActor* actor) { short ang; @@ -10710,6 +11341,12 @@ int DoBloodWorm(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMeteor(DSWActor* actor) { return false; @@ -10756,6 +11393,12 @@ int DoSerpMeteor(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMirvMissile(DSWActor* actor) { actor->spr.xrepeat += MISSILEMOVETICS * 2; @@ -10779,6 +11422,12 @@ int DoMirvMissile(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoMirv(DSWActor* actor) { actor->user.coll = move_missile(actor, actor->user.change, actor->user.ceiling_dist, actor->user.floor_dist, CLIPMASK_MISSILE, MISSILEMOVETICS); @@ -10841,6 +11490,12 @@ int DoMirv(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool MissileSetPos(DSWActor* actor, ANIMATOR* DoWeapon, int dist) { int oldvel, oldzvel; @@ -10874,6 +11529,12 @@ bool MissileSetPos(DSWActor* actor, ANIMATOR* DoWeapon, int dist) return retval; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool TestMissileSetPos(DSWActor* actor, ANIMATOR* DoWeapon, int dist, int zvel) { int oldvel, oldzvel; @@ -10908,6 +11569,11 @@ bool TestMissileSetPos(DSWActor* actor, ANIMATOR* DoWeapon, int dist, int zvel) return retval; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- constexpr int RINGMOVETICS = (MISSILEMOVETICS * 2); constexpr double RING_OUTER_DIST = 200; @@ -10995,6 +11661,13 @@ int DoRing(DSWActor* actor) + +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitSpellRing(PLAYER* pp) { short ang, ang_diff, ang_start, missiles; @@ -11050,6 +11723,12 @@ void InitSpellRing(PLAYER* pp) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoSerpRing(DSWActor* actor) { int dist,a,b,c; @@ -11156,6 +11835,12 @@ int InitLavaFlame(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void SetZVelFromTarget(DSWActor* actorNew, DSWActor* actor, bool setchange = false, double offset = 0) { // find the distance to the target (player) @@ -11170,6 +11855,12 @@ void SetZVelFromTarget(DSWActor* actorNew, DSWActor* actor, bool setchange = fal } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitLavaThrow(DSWActor* actor) { short w; @@ -11211,6 +11902,12 @@ int InitLavaThrow(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitVulcanBoulder(DSWActor* actor) { DAngle nang; @@ -11270,6 +11967,12 @@ void InitVulcanBoulder(DSWActor* actor) actorNew->user.change.Z = -zvel -RandomRange(zvel_rand); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSerpRing(DSWActor* actor) { short ang, ang_diff, ang_start, missiles; @@ -11337,6 +12040,12 @@ int InitSerpRing(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitSpellNapalm(PLAYER* pp) { DSWActor* plActor = pp->actor; @@ -11417,6 +12126,12 @@ void InitSpellNapalm(PLAYER* pp) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyNapalm(DSWActor* actor) { unsigned i; @@ -11483,6 +12198,12 @@ int InitEnemyNapalm(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSpellMirv(PLAYER* pp) { PlaySound(DIGI_MIRVFIRE, pp, v3df_none); @@ -11520,6 +12241,12 @@ int InitSpellMirv(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyMirv(DSWActor* actor) { PlaySound(DIGI_MIRVFIRE, actor, v3df_none); @@ -11552,6 +12279,12 @@ int InitEnemyMirv(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSwordAttack(PLAYER* pp) { DSWActor* plActor = pp->actor; @@ -11714,6 +12447,12 @@ int InitSwordAttack(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitFistAttack(PLAYER* pp) { DSWActor* plActor = pp->actor; @@ -11903,6 +12642,12 @@ int InitFistAttack(PLAYER* pp) } } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSumoNapalm(DSWActor* actor) { short dist; @@ -11969,6 +12714,12 @@ int InitSumoNapalm(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSumoSkull(DSWActor* actor) { extern STATE s_SkullExplode[]; @@ -12016,6 +12767,12 @@ int InitSumoSkull(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSumoStompAttack(DSWActor* actor) { unsigned stat; @@ -12052,6 +12809,12 @@ int InitSumoStompAttack(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitMiniSumoClap(DSWActor* actor) { int dist; @@ -12087,6 +12850,12 @@ int InitMiniSumoClap(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int WeaponAutoAim(DSWActor* actor, DSWActor* mislActor, short ang, bool test) { if (actor->hasU() && actor->user.PlayerP) @@ -12133,6 +12902,12 @@ int WeaponAutoAim(DSWActor* actor, DSWActor* mislActor, short ang, bool test) return -1; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int WeaponAutoAimZvel(DSWActor* actor, DSWActor* missileActor, int *zvel, short ang, bool test) { int dist; @@ -12181,6 +12956,12 @@ int WeaponAutoAimZvel(DSWActor* actor, DSWActor* missileActor, int *zvel, short } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* AimHitscanToTarget(DSWActor* actor, double *z, DAngle *ang, double z_ratio) { DSWActor* hitActor = actor->user.targetActor; @@ -12223,6 +13004,12 @@ DSWActor* AimHitscanToTarget(DSWActor* actor, double *z, DAngle *ang, double z_r return hitActor; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* WeaponAutoAimHitscan(DSWActor* actor, int *z, short *ang, bool test) { int dist; @@ -12269,6 +13056,12 @@ DSWActor* WeaponAutoAimHitscan(DSWActor* actor, int *z, short *ang, bool test) return picked; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void WeaponHitscanShootFeet(DSWActor* actor, DSWActor* hitActor, double *zvect) { auto delta = hitActor->spr.pos.XY() - actor->spr.pos.XY(); @@ -12390,6 +13183,12 @@ int InitStar(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitHeartAttack(PLAYER* pp) { DSWActor* plActor = pp->actor; @@ -12438,6 +13237,12 @@ void InitHeartAttack(PLAYER* pp) actorNew->user.WaitTics = 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int ContinueHitscan(PLAYER* pp, sectortype* sect, const DVector3& start, DAngle ang, const DVector3& vect) { HitInfo hit{}; @@ -12516,6 +13321,12 @@ int ContinueHitscan(PLAYER* pp, sectortype* sect, const DVector3& start, DAngle return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitShotgun(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -12685,6 +13496,12 @@ int InitShotgun(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitLaser(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -12770,7 +13587,11 @@ int InitLaser(PLAYER* pp) return 0; } - +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int InitRail(PLAYER* pp) { @@ -12852,6 +13673,12 @@ int InitRail(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitZillaRail(DSWActor* actor) { if (SW_SHAREWARE) return false; // JBF: verify @@ -12920,6 +13747,12 @@ int InitZillaRail(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitRocket(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -13025,6 +13858,12 @@ int InitRocket(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitBunnyRocket(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -13126,6 +13965,12 @@ int InitBunnyRocket(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitNuke(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -13215,6 +14060,12 @@ int InitNuke(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyNuke(DSWActor* actor) { int nx, ny, nz; @@ -13288,6 +14139,12 @@ int InitEnemyNuke(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitMicro(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -13406,6 +14263,12 @@ int InitMicro(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitRipperSlash(DSWActor* actor) { int i; @@ -13437,6 +14300,12 @@ int InitRipperSlash(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitBunnySlash(DSWActor* actor) { int i; @@ -13466,6 +14335,12 @@ int InitBunnySlash(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSerpSlash(DSWActor* actor) { int i; @@ -13494,6 +14369,12 @@ int InitSerpSlash(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool WallSpriteInsideSprite(DSWActor* wactor, DSWActor* actor) { DVector2 out[2]; @@ -13502,6 +14383,12 @@ bool WallSpriteInsideSprite(DSWActor* wactor, DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBladeDamage(DSWActor* actor) { int i; @@ -13539,6 +14426,12 @@ int DoBladeDamage(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoStaticFlamesDamage(DSWActor* actor) { int i; @@ -13579,6 +14472,12 @@ int DoStaticFlamesDamage(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitCoolgBash(DSWActor* actor) { int i; @@ -13611,6 +14510,12 @@ int InitCoolgBash(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSkelSlash(DSWActor* actor) { int i; @@ -13639,6 +14544,12 @@ int InitSkelSlash(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitGoroChop(DSWActor* actor) { int i; @@ -13668,6 +14579,12 @@ int InitGoroChop(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitHornetSting(DSWActor* actor) { DoDamage(actor->user.coll.actor(), actor); @@ -13675,6 +14592,12 @@ int InitHornetSting(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSerpSpell(DSWActor* actor) { int dist; @@ -13740,6 +14663,12 @@ int InitSerpSpell(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnDemonFist(DSWActor* actor) { if (actor->user.Flags & (SPR_SUICIDE)) @@ -13765,6 +14694,12 @@ int SpawnDemonFist(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSerpMonstSpell(DSWActor* actor) { int dist; @@ -13832,6 +14767,12 @@ int InitSerpMonstSpell(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoTeleRipper(DSWActor* actor) { PlaySound(DIGI_ITEM_SPAWN, actor, v3df_none); @@ -13841,6 +14782,12 @@ int DoTeleRipper(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyRocket(DSWActor* actor) { int dist; @@ -13891,6 +14838,12 @@ int InitEnemyRocket(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyRail(DSWActor* actor) { int dist; @@ -13964,6 +14917,12 @@ int InitEnemyRail(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitZillaRocket(DSWActor* actor) { int dist; @@ -14030,6 +14989,12 @@ int InitZillaRocket(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyStar(DSWActor* actor) { int dist; @@ -14060,6 +15025,12 @@ int InitEnemyStar(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyCrossbow(DSWActor* actor) { int dist; @@ -14097,6 +15068,12 @@ int InitEnemyCrossbow(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSkelSpell(DSWActor* actor) { PlaySound(DIGI_SPELEC, actor, v3df_none); @@ -14126,6 +15103,12 @@ int InitSkelSpell(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitCoolgFire(DSWActor* actor) { int nx, ny, nz, dist; @@ -14170,6 +15153,12 @@ int InitCoolgFire(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoCoolgDrip(DSWActor* actor) { actor->user.Counter += 220; @@ -14186,6 +15175,12 @@ int DoCoolgDrip(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitCoolgDrip(DSWActor* actor) { short w; @@ -14206,6 +15201,12 @@ int InitCoolgDrip(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int GenerateDrips(DSWActor* actor) { short w = 0; @@ -14241,6 +15242,12 @@ int GenerateDrips(DSWActor* actor) return 1; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEelFire(DSWActor* actor) { unsigned stat; @@ -14275,6 +15282,12 @@ int InitEelFire(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitFireballTrap(DSWActor* actor) { short w; @@ -14297,6 +15310,12 @@ void InitFireballTrap(DSWActor* actor) UpdateChange(actorNew); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitBoltTrap(DSWActor* actor) { short w; @@ -14321,6 +15340,12 @@ void InitBoltTrap(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void InitSpearTrap(DSWActor* actor) { // Spawn a shot @@ -14342,6 +15367,12 @@ void InitSpearTrap(DSWActor* actor) PlaySound(DIGI_STAR, actor, v3df_none); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoSuicide(DSWActor* actor) { KillActor(actor); @@ -14355,6 +15386,12 @@ int DoDefaultStat(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTracerUzi(PLAYER* pp) { if (!pp->insector()) @@ -14423,6 +15460,12 @@ int InitTracerUzi(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTracerTurret(DSWActor* actor, DSWActor* Operator, fixed_t q16horiz) { // Spawn a shot @@ -14462,6 +15505,12 @@ int InitTracerTurret(DSWActor* actor, DSWActor* Operator, fixed_t q16horiz) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTracerAutoTurret(DSWActor* actor, int xchange, int ychange, int zchange) { // Spawn a shot @@ -14493,6 +15542,12 @@ int InitTracerAutoTurret(DSWActor* actor, int xchange, int ychange, int zchange) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int BulletHitSprite(DSWActor* actor, DSWActor* hitActor, const DVector3& hit_pos, short ID) { short id; @@ -14578,6 +15633,12 @@ int BulletHitSprite(DSWActor* actor, DSWActor* hitActor, const DVector3& hit_pos return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool HitscanSpriteAdjust(DSWActor* actor, walltype* hit_wall) { int16_t ang; @@ -14605,6 +15666,12 @@ bool HitscanSpriteAdjust(DSWActor* actor, walltype* hit_wall) return true; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitUzi(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -14809,6 +15876,12 @@ int InitUzi(PLAYER* pp) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTankShell(DSWActor* actor, PLAYER* pp) { if (!SW_SHAREWARE) @@ -14847,6 +15920,12 @@ int InitTankShell(DSWActor* actor, PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretMicro(DSWActor* actor, PLAYER* pp) { DSWActor* plActor = pp->actor; @@ -14943,6 +16022,12 @@ int InitTurretMicro(DSWActor* actor, PLAYER* pp) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretRocket(DSWActor* actor, PLAYER* pp) { if (SW_SHAREWARE) return false; // JBF: verify @@ -14977,6 +16062,12 @@ int InitTurretRocket(DSWActor* actor, PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretFireball(DSWActor* actor, PLAYER* pp) { if (SW_SHAREWARE) return false; // JBF: verify @@ -15012,6 +16103,12 @@ int InitTurretFireball(DSWActor* actor, PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretRail(DSWActor* actor, PLAYER* pp) { if (SW_SHAREWARE) return false; // JBF: verify @@ -15053,6 +16150,12 @@ int InitTurretRail(DSWActor* actor, PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretLaser(DSWActor* actor, PLAYER* pp) { if (SW_SHAREWARE) return false; // JBF: verify @@ -15091,6 +16194,12 @@ int InitTurretLaser(DSWActor* actor, PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSobjMachineGun(DSWActor* actor, PLAYER* pp) { short daang; @@ -15299,6 +16408,12 @@ int InitSobjGun(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* SpawnBoatSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wall, const DVector3& hitpos, DAngle hit_ang) { auto actorNew = SpawnActor(STAT_MISSILE, UZI_SMOKE, s_UziSmoke, hit_sect, hitpos, hit_ang, 0); @@ -15335,6 +16450,12 @@ DSWActor* SpawnBoatSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wall, return actorNew; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnSwordSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wall, const DVector3& hitpos, DAngle hit_ang) { DSWActor* actor = pp->actor; @@ -15371,6 +16492,12 @@ int SpawnSwordSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wall, const return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* SpawnTurretSparks(sectortype* hit_sect, walltype* hit_wall, const DVector3& hitpos, DAngle hit_ang) { auto actorNew = SpawnActor(STAT_MISSILE, UZI_SMOKE, s_UziSmoke, hit_sect, hitpos, hit_ang, 0); @@ -15403,6 +16530,12 @@ DSWActor* SpawnTurretSparks(sectortype* hit_sect, walltype* hit_wall, const DVec return actorNew; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* SpawnShotgunSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wall, const DVector3& hitpos, DAngle hit_ang) { auto actorNew = SpawnActor(STAT_MISSILE, UZI_SPARK, s_UziSpark, hit_sect, hitpos, hit_ang, 0); @@ -15435,6 +16568,12 @@ DSWActor* SpawnShotgunSparks(PLAYER* pp, sectortype* hit_sect, walltype* hit_wal return actorNew; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitTurretMgun(SECTOR_OBJECT* sop) { short daang, i; @@ -15597,6 +16736,11 @@ int InitTurretMgun(SECTOR_OBJECT* sop) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int InitEnemyUzi(DSWActor* actor) { @@ -15743,6 +16887,12 @@ int InitEnemyUzi(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitGrenade(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -15831,6 +16981,12 @@ int InitGrenade(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitSpriteGrenade(DSWActor* actor) { PlaySound(DIGI_30MMFIRE, actor, v3df_dontpan|v3df_doppler); @@ -15878,6 +17034,12 @@ int InitSpriteGrenade(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitMine(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -15931,6 +17093,12 @@ int InitMine(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyMine(DSWActor* actor) { int nx, ny, nz; @@ -15974,6 +17142,12 @@ int InitEnemyMine(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int HelpMissileLateral(DSWActor* actor, int dist) { auto old_xvel = actor->int_xvel(); @@ -15995,6 +17169,12 @@ int HelpMissileLateral(DSWActor* actor, int dist) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitFireball(PLAYER* pp) { DSWActor* actor = pp->actor; @@ -16060,6 +17240,12 @@ int InitFireball(PLAYER* pp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int InitEnemyFireball(DSWActor* actor) { int nz, dist; @@ -16208,6 +17394,12 @@ bool WarpToUnderwater(DVector3& pos, sectortype** psectu) return true; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool WarpToSurface(DVector3& pos, sectortype** psectu) { int i; @@ -16271,6 +17463,12 @@ bool WarpToSurface(DVector3& pos, sectortype** psectu) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool SpriteWarpToUnderwater(DSWActor* actor) { int i; @@ -16336,6 +17534,12 @@ bool SpriteWarpToUnderwater(DSWActor* actor) return true; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool SpriteWarpToSurface(DSWActor* actor) { auto sectu = actor->sector(); @@ -16408,6 +17612,12 @@ bool SpriteWarpToSurface(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnSplash(DSWActor* actor) { auto sectu = actor->sector(); @@ -16439,6 +17649,12 @@ int SpawnSplash(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnSplashXY(const DVector3& pos, sectortype* sectp) { if (Prediction) @@ -16462,6 +17678,12 @@ int SpawnSplashXY(const DVector3& pos, sectortype* sectp) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool MissileHitDiveArea(DSWActor* actor) { // correctly set underwater bit for missiles @@ -16514,6 +17736,12 @@ bool MissileHitDiveArea(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* SpawnBubble(DSWActor* actor) { if (Prediction) @@ -16539,6 +17767,12 @@ DSWActor* SpawnBubble(DSWActor* actor) return actorNew; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoVehicleSmoke(DSWActor* actor) { actor->spr.pos.XY() += actor->user.change.XY(); @@ -16552,6 +17786,12 @@ int DoWaterSmoke(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnVehicleSmoke(DSWActor* actor) { if (MoveSkip2 != 0) @@ -16579,6 +17819,12 @@ int SpawnVehicleSmoke(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int SpawnSmokePuff(DSWActor* actor) { auto actorNew = SpawnActor(STAT_MISSILE, PUFF, s_WaterSmoke, actor->sector(), actor->spr.pos.plusZ(-RANDOM_P2F(8, 8)), actor->spr.angle, 0); @@ -16604,6 +17850,12 @@ int SpawnSmokePuff(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoBubble(DSWActor* actor) { actor->spr.pos.Z -= actor->vel.Z; @@ -16667,9 +17919,14 @@ int DoBubble(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// // this needs to be called before killsprite // whenever killing a sprite that you aren't completely sure what it is, like // with the drivables, copy sectors, break sprites, etc +// +//--------------------------------------------------------------------------- + void SpriteQueueDelete(DSWActor* actor) { size_t i; @@ -16700,6 +17957,12 @@ void SpriteQueueDelete(DSWActor* actor) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void QueueReset(void) { size_t i; @@ -16730,6 +17993,12 @@ void QueueReset(void) LoWangsQueue[i] = nullptr; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool TestDontStick(DSWActor* actor, walltype* hit_wall) { if (hit_wall == nullptr) @@ -16750,6 +18019,12 @@ bool TestDontStick(DSWActor* actor, walltype* hit_wall) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool TestDontStickSector(sectortype* hit_sect) { if ((hit_sect->extra & (SECTFX_DYNAMIC_AREA|SECTFX_SECTOR_OBJECT))) @@ -16758,6 +18033,12 @@ bool TestDontStickSector(sectortype* hit_sect) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int QueueStar(DSWActor* actor) { if (TestDontStick(actor, nullptr)) @@ -16789,6 +18070,12 @@ int QueueStar(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void QueueHole(sectortype* hit_sect, walltype* hit_wall, const DVector3& pos) { short w,nw,wall_ang; @@ -16839,6 +18126,12 @@ void QueueHole(sectortype* hit_sect, walltype* hit_wall, const DVector3& pos) } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + enum { FLOORBLOOD_RATE = 30 }; ANIMATOR DoFloorBlood; STATE s_FloorBlood1[] = @@ -16847,6 +18140,12 @@ STATE s_FloorBlood1[] = {FLOORBLOOD1, FLOORBLOOD_RATE, NullAnimator, &s_FloorBlood1[0]}, }; +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int QueueFloorBlood(DSWActor* actor) { sectortype* sectp = actor->sector(); @@ -16901,6 +18200,12 @@ int QueueFloorBlood(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + enum { FOOTPRINT1 = 2490, @@ -16922,6 +18227,12 @@ STATE s_FootPrint3[] = {FOOTPRINT3, FOOTPRINT_RATE, NullAnimator, &s_FootPrint3[0]}, }; +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int QueueFootPrint(DSWActor* actor) { DSWActor* spawnedActor; @@ -17014,6 +18325,12 @@ int QueueFootPrint(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + enum { WALLBLOOD1 = 2500, @@ -17045,6 +18362,12 @@ STATE s_WallBlood4[] = }; +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + DSWActor* QueueWallBlood(DSWActor* actor, DAngle bang) { short w,nw,wall_ang,dang; @@ -17148,6 +18471,12 @@ DSWActor* QueueWallBlood(DSWActor* actor, DAngle bang) return spawnedActor; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoFloorBlood(DSWActor* actor) { const int FEET_IN_BLOOD_DIST = 300; @@ -17211,6 +18540,12 @@ int DoFloorBlood(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + int DoWallBlood(DSWActor* actor) { // Make blood drip down the wall @@ -17223,7 +18558,12 @@ int DoWallBlood(DSWActor* actor) return 0; } -// This is the FAST queue, it doesn't call any animator functions or states +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void QueueGeneric(DSWActor* actor, short pic) { if ((actor->sector()->extra & SECTFX_LIQUID_MASK) == SECTFX_LIQUID_WATER) @@ -17294,32 +18634,11 @@ void QueueGeneric(DSWActor* actor, short pic) GenericQueueHead = (GenericQueueHead+1) & (MAX_GENERIC_QUEUE-1); } -#if 0 -int DoShellShrap(DSWActor* actor) -{ - // If the shell doesn't fall in the allowable range, kill it. - if (actor->user.ShellNum < (ShellCount-MAXSHELLS)) - { - KillActor(actor); - return 0; - } - - // Get rid of shell if they fall in non-divable liquid areas - if ((actor->sector()->extra & SECTFX_LIQUID_MASK) == SECTFX_LIQUID_WATER) - { - KillActor(actor); - return 0; - } - - if ((actor->sector()->extra & SECTFX_LIQUID_MASK) == SECTFX_LIQUID_LAVA) - { - KillActor(actor); - return 0; - } - - return 0; -} -#endif +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int DoShrapVelocity(DSWActor* actor) { @@ -17467,6 +18786,11 @@ int DoShrapVelocity(DSWActor* actor) return false; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- int ShrapKillSprite(DSWActor* actor) { @@ -17598,6 +18922,12 @@ int ShrapKillSprite(DSWActor* actor) return 0; } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + bool CheckBreakToughness(BREAK_INFO* break_info, int ID) { if ((break_info->flags & BF_TOUGH)) @@ -17701,7 +19031,12 @@ int DoItemFly(DSWActor* actor) return true; } -// This is the FAST queue, it doesn't call any animator functions or states +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + void QueueLoWangs(DSWActor* actor) { DSWActor* spawnedActor; @@ -17748,6 +19083,12 @@ void QueueLoWangs(DSWActor* actor) LoWangsQueueHead = (LoWangsQueueHead+1) & (MAX_LOWANGS_QUEUE-1); } +//--------------------------------------------------------------------------- +// +// +// +//--------------------------------------------------------------------------- + #include "saveable.h"