From 439fde3434940b1abacf10af9b701e5b7d8ad77b Mon Sep 17 00:00:00 2001 From: Nev3r Date: Tue, 14 Apr 2020 23:59:22 +0200 Subject: [PATCH] Replace most P_FindSpecialLineFromTag() cases with Tag_FindLineSpecial(), which settle with the first found result. --- src/p_enemy.c | 8 ++++---- src/p_floor.c | 2 +- src/p_mobj.c | 9 ++++----- src/p_polyobj.c | 2 +- src/p_slopes.c | 2 +- src/p_spec.c | 10 +++++----- src/p_user.c | 8 ++++---- src/taglist.c | 16 ++++++++++++++++ src/taglist.h | 2 ++ 9 files changed, 38 insertions(+), 21 deletions(-) diff --git a/src/p_enemy.c b/src/p_enemy.c index 2341be6d3..8f96c1dee 100644 --- a/src/p_enemy.c +++ b/src/p_enemy.c @@ -6107,7 +6107,7 @@ void A_RockSpawn(mobj_t *actor) { mobj_t *mo; mobjtype_t type; - INT32 i = P_FindSpecialLineFromTag(12, (INT16)actor->threshold, -1); + INT32 i = Tag_FindLineSpecial(12, (INT16)actor->threshold); line_t *line; fixed_t dist; fixed_t randomoomph; @@ -8794,19 +8794,19 @@ void A_Dye(mobj_t *actor) #endif if (color >= MAXTRANSLATIONS) return; - + if (!color) target->colorized = false; else target->colorized = true; - + // What if it's a player? if (target->player) { target->player->powers[pw_dye] = color; return; } - + target->color = color; } diff --git a/src/p_floor.c b/src/p_floor.c index 5d57263d3..bcb546a5c 100644 --- a/src/p_floor.c +++ b/src/p_floor.c @@ -2549,7 +2549,7 @@ void EV_CrumbleChain(sector_t *sec, ffloor_t *rover) if (controlsec->tag != 0) { - INT32 tagline = P_FindSpecialLineFromTag(14, controlsec->tag, -1); + INT32 tagline = Tag_FindLineSpecial(14, controlsec->tag); if (tagline != -1) { if (sides[lines[tagline].sidenum[0]].toptexture) diff --git a/src/p_mobj.c b/src/p_mobj.c index aaea9d49b..c004d3257 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -3552,7 +3552,7 @@ static boolean P_CameraCheckHeat(camera_t *thiscam) // see if we are in water sector = thiscam->subsector->sector; - if (P_FindSpecialLineFromTag(13, sector->tag, -1) != -1) + if (Tag_FindLineSpecial(13, sector->tag) != -1) return true; if (sector->ffloors) @@ -3573,7 +3573,7 @@ static boolean P_CameraCheckHeat(camera_t *thiscam) *rover->bottomheight)) continue; - if (P_FindSpecialLineFromTag(13, rover->master->frontsector->tag, -1) != -1) + if (Tag_FindLineSpecial(13, rover->master->frontsector->tag) != -1) return true; } } @@ -12035,8 +12035,7 @@ static boolean P_SetupMace(mapthing_t *mthing, mobj_t *mobj, boolean *doangle) const size_t mthingi = (size_t)(mthing - mapthings); // Find the corresponding linedef special, using angle as tag - // P_FindSpecialLineFromTag works here now =D - line = P_FindSpecialLineFromTag(9, mthing->angle, -1); + line = Tag_FindLineSpecial(9, mthing->angle); if (line == -1) { @@ -12346,7 +12345,7 @@ static boolean P_SetupParticleGen(mapthing_t *mthing, mobj_t *mobj) const size_t mthingi = (size_t)(mthing - mapthings); // Find the corresponding linedef special, using angle as tag - line = P_FindSpecialLineFromTag(15, mthing->angle, -1); + line = Tag_FindLineSpecial(15, mthing->angle); if (line == -1) { diff --git a/src/p_polyobj.c b/src/p_polyobj.c index 7baa24994..cfe12db13 100644 --- a/src/p_polyobj.c +++ b/src/p_polyobj.c @@ -238,7 +238,7 @@ boolean P_BBoxInsidePolyobj(polyobj_t *po, fixed_t *bbox) // void Polyobj_GetInfo(INT16 poid, INT32 *poflags, INT32 *parentID, INT32 *potrans) { - INT32 i = P_FindSpecialLineFromTag(POLYINFO_SPECIALNUM, poid, -1); + INT32 i = Tag_FindLineSpecial(POLYINFO_SPECIALNUM, poid); if (i == -1) return; // no extra settings to apply, let's leave it diff --git a/src/p_slopes.c b/src/p_slopes.c index 63a7aeb20..9b147f046 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -139,7 +139,7 @@ void T_DynamicSlopeVert (dynplanethink_t* th) INT32 l; for (i = 0; i < 3; i++) { - l = P_FindSpecialLineFromTag(799, th->tags[i], -1); + l = Tag_FindLineSpecial(799, th->tags[i]); if (l != -1) { th->vex[i].z = lines[l].frontsector->floorheight; } diff --git a/src/p_spec.c b/src/p_spec.c index 8b5b5ac9b..1977e7a89 100644 --- a/src/p_spec.c +++ b/src/p_spec.c @@ -4535,7 +4535,7 @@ DoneSection2: if (player->powers[pw_flashing] != 0 && player->powers[pw_flashing] < TICRATE/2) break; - i = P_FindSpecialLineFromTag(4, sector->tag, -1); + i = Tag_FindLineSpecial(4, sector->tag); if (i != -1) { @@ -4647,7 +4647,7 @@ DoneSection2: // important: use sector->tag on next line instead of player->mo->subsector->tag // this part is different from in P_PlayerThink, this is what was causing // FOF custom exits not to work. - lineindex = P_FindSpecialLineFromTag(2, sector->tag, -1); + lineindex = Tag_FindLineSpecial(2, sector->tag); if (gametype == GT_COOP && lineindex != -1) // Custom exit! { @@ -4772,7 +4772,7 @@ DoneSection2: break; // Find line #3 tagged to this sector - lineindex = P_FindSpecialLineFromTag(3, sector->tag, -1); + lineindex = Tag_FindLineSpecial(3, sector->tag); if (lineindex == -1) { @@ -4854,7 +4854,7 @@ DoneSection2: break; // Find line #3 tagged to this sector - lineindex = P_FindSpecialLineFromTag(3, sector->tag, -1); + lineindex = Tag_FindLineSpecial(3, sector->tag); if (lineindex == -1) { @@ -5001,7 +5001,7 @@ DoneSection2: memset(&resulthigh, 0x00, sizeof(resulthigh)); // Find line #11 tagged to this sector - lineindex = P_FindSpecialLineFromTag(11, sector->tag, -1); + lineindex = Tag_FindLineSpecial(11, sector->tag); if (lineindex == -1) { diff --git a/src/p_user.c b/src/p_user.c index 994eb7007..131eedd9c 100644 --- a/src/p_user.c +++ b/src/p_user.c @@ -10654,7 +10654,7 @@ static void P_CalcPostImg(player_t *player) // see if we are in heat (no, not THAT kind of heat...) - if (P_FindSpecialLineFromTag(13, sector->tag, -1) != -1) + if (Tag_FindLineSpecial(13, sector->tag) != -1) *type = postimg_heat; else if (sector->ffloors) { @@ -10673,7 +10673,7 @@ static void P_CalcPostImg(player_t *player) if (pviewheight >= topheight || pviewheight <= bottomheight) continue; - if (P_FindSpecialLineFromTag(13, rover->master->frontsector->tag, -1) != -1) + if (Tag_FindLineSpecial(13, rover->master->frontsector->tag) != -1) *type = postimg_heat; } } @@ -10778,7 +10778,7 @@ static INT32 P_GetMinecartSpecialLine(sector_t *sec) return line; if (sec->tag != 0) - line = P_FindSpecialLineFromTag(16, sec->tag, -1); + line = Tag_FindLineSpecial(16, sec->tag); // Also try for lines facing the sector itself, with tag 0. { @@ -12213,7 +12213,7 @@ void P_PlayerThink(player_t *player) player->powers[pw_nocontrol]--; else player->powers[pw_nocontrol] = 0; - + //pw_super acts as a timer now if (player->powers[pw_super] && (player->mo->state < &states[S_PLAY_SUPER_TRANS1] diff --git a/src/taglist.c b/src/taglist.c index 2e91cd770..4b3ed1981 100644 --- a/src/taglist.c +++ b/src/taglist.c @@ -111,3 +111,19 @@ INT32 Tag_Iterate_Things (const INT16 tag, const size_t p) } return -1; } + +INT32 Tag_FindLineSpecial(const INT16 tag, const INT16 special) +{ + TAG_ITER_C + INT32 i; + + TAG_ITER_LINES(tag, i) + { + if (i == -1) + return -1; + + if (lines[i].special == special) + return i; + } + return -1; +} diff --git a/src/taglist.h b/src/taglist.h index ca3a7d834..9be0013f3 100644 --- a/src/taglist.h +++ b/src/taglist.h @@ -32,6 +32,8 @@ INT32 Tag_Iterate_Sectors (const INT16 tag, const size_t p); INT32 Tag_Iterate_Lines (const INT16 tag, const size_t p); INT32 Tag_Iterate_Things (const INT16 tag, const size_t p); +INT32 Tag_FindLineSpecial(const INT16 tag, const INT16 special); + #define TAG_ITER_C size_t kkkk; #define TAG_ITER(fn, tag, id) for(kkkk = 0; (id = fn(tag, kkkk)) >= 0; kkkk++)