diff --git a/source/core/actorlist.cpp b/source/core/actorlist.cpp index c124e91e5..983210e2d 100644 --- a/source/core/actorlist.cpp +++ b/source/core/actorlist.cpp @@ -490,7 +490,7 @@ int DCoreActor::GetOffsetAndHeight(int& height) double DCoreActor::GetOffsetAndHeight(double& height) { - double yrepeat = spr.yrepeat * REPEAT_SCALE; + double yrepeat = spr.ScaleY(); height = tileHeight(spr.picnum) * yrepeat; double zofs = (spr.cstat & CSTAT_SPRITE_YCENTER) ? height * 0.5 : 0; return zofs - tileTopOffset(spr.picnum) * yrepeat; diff --git a/source/core/automap.cpp b/source/core/automap.cpp index 95fb5dc5d..8a14d253e 100644 --- a/source/core/automap.cpp +++ b/source/core/automap.cpp @@ -672,7 +672,7 @@ void DrawAutomapAlignmentWall(const spritetype& spr, const DVector2& bpos, const void DrawAutomapAlignmentFloor(const spritetype& spr, const DVector2& bpos, const DVector2& cangvect, const double czoom, const DVector2& xydim, const PalEntry& col) { auto xrep = spr.xrepeat * REPEAT_SCALE; - auto yrep = spr.yrepeat * REPEAT_SCALE; + auto yrep = spr.ScaleY(); auto xspan = tileWidth(spr.picnum); auto yspan = tileHeight(spr.picnum); auto xoff = tileLeftOffset(spr.picnum); diff --git a/source/core/gamefuncs.cpp b/source/core/gamefuncs.cpp index c93cb36b0..180905d05 100644 --- a/source/core/gamefuncs.cpp +++ b/source/core/gamefuncs.cpp @@ -250,7 +250,7 @@ void TGetFlatSpritePosition(const spritetypebase* spr, const DVector2& pos, DVec double width, height, leftofs, topofs; double sloperatio = sqrt(heinum * heinum + SLOPEVAL_FACTOR * SLOPEVAL_FACTOR) * (1. / SLOPEVAL_FACTOR); double xrepeat = spr->xrepeat * REPEAT_SCALE; - double yrepeat = spr->yrepeat * REPEAT_SCALE; + double yrepeat = spr->ScaleY(); int xo = heinum ? 0 : spr->xoffset; int yo = heinum ? 0 : spr->yoffset; diff --git a/source/core/maptypes.h b/source/core/maptypes.h index f187b4050..c75568ba6 100644 --- a/source/core/maptypes.h +++ b/source/core/maptypes.h @@ -479,6 +479,11 @@ struct spritetypebase xrepeat = uint8_t(x * (1 / REPEAT_SCALE)); yrepeat = uint8_t(y * (1 / REPEAT_SCALE)); } + + double ScaleY() const + { + return yrepeat * REPEAT_SCALE; + } }; diff --git a/source/games/blood/src/actor.cpp b/source/games/blood/src/actor.cpp index f5517148b..6d1dad8de 100644 --- a/source/games/blood/src/actor.cpp +++ b/source/games/blood/src/actor.cpp @@ -2573,7 +2573,7 @@ static void ConcussSprite(DBloodActor* source, DBloodActor* actor, const DVector if (mass > 0) { - double size = (tileWidth(actor->spr.picnum) * actor->spr.xrepeat * REPEAT_SCALE * tileHeight(actor->spr.picnum) * actor->spr.yrepeat * REPEAT_SCALE) / 0x20000; + double size = (tileWidth(actor->spr.picnum) * actor->spr.xrepeat * REPEAT_SCALE * tileHeight(actor->spr.picnum) * actor->spr.ScaleY()) / 0x20000; actor->vel += vect * Scale(damage, size, mass); } } diff --git a/source/games/blood/src/ai.cpp b/source/games/blood/src/ai.cpp index 66735e61d..6f427788b 100644 --- a/source/games/blood/src/ai.cpp +++ b/source/games/blood/src/ai.cpp @@ -1501,7 +1501,7 @@ void aiThinkTarget(DBloodActor* actor) double nDist = dvec.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; @@ -1546,7 +1546,7 @@ void aiLookForTarget(DBloodActor* actor) double nDist = dvec.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvec.Angle()); diff --git a/source/games/blood/src/aibat.cpp b/source/games/blood/src/aibat.cpp index 7704ff86d..2691efb5b 100644 --- a/source/games/blood/src/aibat.cpp +++ b/source/games/blood/src/aibat.cpp @@ -70,8 +70,8 @@ void batBiteSeqCallback(int, DBloodActor* actor) DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); DUDEINFO* pDudeInfoT = getDudeInfo(pTarget->spr.type); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (pTarget->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * pTarget->spr.ScaleY()); actFireVector(actor, 0., 0., DVector3(actor->spr.angle.ToVector() * 64, height2 - height), kVectorBatBite); } @@ -104,7 +104,7 @@ static void batThinkTarget(DBloodActor* actor) double nDist = dvec.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvec.Angle()); @@ -166,7 +166,7 @@ static void batThinkPonder(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, dvec.Angle()); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); double height2 = (getDudeInfo(pTarget->spr.type)->eyeHeight * pTarget->spr.yrepeat) * REPEAT_SCALE; double top, bottom; GetActorExtents(actor, &top, &bottom); @@ -260,9 +260,9 @@ static void batThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, dvec.Angle()); - double height = pDudeInfo->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE; + double height = pDudeInfo->eyeHeight * actor->spr.ScaleY(); // Should be dudeInfo[pTarget->spr.type-kDudeBase] - double height2 = pDudeInfo->eyeHeight * pTarget->spr.yrepeat * REPEAT_SCALE; + double height2 = pDudeInfo->eyeHeight * pTarget->spr.ScaleY(); double top, bottom; GetActorExtents(actor, &top, &bottom); if (cansee(pTarget->spr.pos, pTarget->sector(), actor->spr.pos.plusZ(-height), actor->sector())) diff --git a/source/games/blood/src/aibeast.cpp b/source/games/blood/src/aibeast.cpp index 71da4ef30..d401b1962 100644 --- a/source/games/blood/src/aibeast.cpp +++ b/source/games/blood/src/aibeast.cpp @@ -233,7 +233,7 @@ static void beastThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, dv.Angle()); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) @@ -364,7 +364,7 @@ static void beastThinkSwimChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aiboneel.cpp b/source/games/blood/src/aiboneel.cpp index 2364bcf25..1296916ad 100644 --- a/source/games/blood/src/aiboneel.cpp +++ b/source/games/blood/src/aiboneel.cpp @@ -80,8 +80,8 @@ void eelBiteSeqCallback(int, DBloodActor* actor) assert(actor->spr.type >= kDudeBase && actor->spr.type < kDudeMax); DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); DUDEINFO* pDudeInfoT = getDudeInfo(target->spr.type); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (target->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * target->spr.ScaleY()); DVector3 vect(actor->spr.angle.ToVector() * 1024, height2 - height); actFireVector(actor, 0., 0., vect, kVectorBoneelBite); @@ -115,7 +115,7 @@ static void eelThinkTarget(DBloodActor* actor) double nDist = dvect.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvect.Angle()); @@ -181,7 +181,7 @@ static void eelThinkPonder(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); double height2 = (getDudeInfo(target->spr.type)->eyeHeight * target->spr.yrepeat) * REPEAT_SCALE; double top, bottom; GetActorExtents(actor, &top, &bottom); @@ -276,7 +276,7 @@ static void eelThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); double top, bottom; double top2, bottom2; GetActorExtents(actor, &top, &bottom); diff --git a/source/games/blood/src/aiburn.cpp b/source/games/blood/src/aiburn.cpp index fa524c8f8..b95c07735 100644 --- a/source/games/blood/src/aiburn.cpp +++ b/source/games/blood/src/aiburn.cpp @@ -195,7 +195,7 @@ static void burnThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aicaleb.cpp b/source/games/blood/src/aicaleb.cpp index 2731feda8..9478e90d3 100644 --- a/source/games/blood/src/aicaleb.cpp +++ b/source/games/blood/src/aicaleb.cpp @@ -152,7 +152,7 @@ static void calebThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) @@ -251,7 +251,7 @@ static void calebThinkSwimChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { diff --git a/source/games/blood/src/aicerber.cpp b/source/games/blood/src/aicerber.cpp index 88f6e9495..0f2e2afbe 100644 --- a/source/games/blood/src/aicerber.cpp +++ b/source/games/blood/src/aicerber.cpp @@ -78,7 +78,7 @@ void cerberusBiteSeqCallback(int, DBloodActor* actor) void cerberusBurnSeqCallback(int, DBloodActor* actor) { DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); - double height = pDudeInfo->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE * 0.25; + double height = pDudeInfo->eyeHeight * actor->spr.ScaleY() * 0.25; if (!actor->ValidateTarget(__FUNCTION__)) return; DVector3 pos(actor->spr.pos.XY(), height); @@ -140,7 +140,7 @@ void cerberusBurnSeqCallback2(int, DBloodActor* actor) { if (!actor->ValidateTarget(__FUNCTION__)) return; DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); - double height = pDudeInfo->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE * 0.25; + double height = pDudeInfo->eyeHeight * actor->spr.ScaleY() * 0.25; DVector3 pos(actor->spr.pos.XY(), height); //auto pos = actor->spr.pos.plusZ(height); // what it probably should be @@ -246,7 +246,7 @@ static void cerberusThinkTarget(DBloodActor* actor) double nDist = dvect.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvect.Angle()); @@ -352,7 +352,7 @@ static void cerberusThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aicult.cpp b/source/games/blood/src/aicult.cpp index ac4107b33..1cd042eef 100644 --- a/source/games/blood/src/aicult.cpp +++ b/source/games/blood/src/aicult.cpp @@ -264,7 +264,7 @@ static void cultThinkChase(DBloodActor* actor) if (nDist > 0 && nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aigarg.cpp b/source/games/blood/src/aigarg.cpp index e032ff814..836ea6914 100644 --- a/source/games/blood/src/aigarg.cpp +++ b/source/games/blood/src/aigarg.cpp @@ -81,8 +81,8 @@ void SlashFSeqCallback(int, DBloodActor* actor) auto target = actor->GetTarget(); DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); DUDEINFO* pDudeInfoT = getDudeInfo(target->spr.type); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (target->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * target->spr.ScaleY()); DVector3 vec(actor->spr.angle.ToVector() * 64, height - height2); actFireVector(actor, 0, 0, vec, kVectorGargSlash); @@ -202,7 +202,7 @@ static void gargThinkTarget(DBloodActor* actor) double nDist = dvect.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvect.Angle()); @@ -321,9 +321,9 @@ static void gargThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, dxyAngle); - double height = pDudeInfo->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE; + double height = pDudeInfo->eyeHeight * actor->spr.ScaleY(); // Should be dudeInfo[target->spr.type-kDudeBase] - double height2 = pDudeInfo->eyeHeight * target->spr.yrepeat * REPEAT_SCALE; + double height2 = pDudeInfo->eyeHeight * target->spr.ScaleY(); double top, bottom; GetActorExtents(actor, &top, &bottom); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) diff --git a/source/games/blood/src/aighost.cpp b/source/games/blood/src/aighost.cpp index 6cc382f64..db4d8eca6 100644 --- a/source/games/blood/src/aighost.cpp +++ b/source/games/blood/src/aighost.cpp @@ -66,8 +66,8 @@ void ghostSlashSeqCallback(int, DBloodActor* actor) auto target = actor->GetTarget(); DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); DUDEINFO* pDudeInfoT = getDudeInfo(target->spr.type); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (target->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * target->spr.ScaleY()); DVector3 dv(actor->spr.angle.ToVector() * 64, height - height2); sfxPlay3DSound(actor, 1406, 0, 0); @@ -183,7 +183,7 @@ static void ghostThinkTarget(DBloodActor* actor) double nDist = dvect.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvect.Angle()); @@ -300,9 +300,9 @@ static void ghostThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, dxyAngle); - double height = pDudeInfo->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE; + double height = pDudeInfo->eyeHeight * actor->spr.ScaleY(); // Should be dudeInfo[target->spr.type-kDudeBase] - double height2 = pDudeInfo->eyeHeight * target->spr.yrepeat * REPEAT_SCALE; + double height2 = pDudeInfo->eyeHeight * target->spr.ScaleY(); double top, bottom; GetActorExtents(actor, &top, &bottom); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) diff --git a/source/games/blood/src/aigilbst.cpp b/source/games/blood/src/aigilbst.cpp index 7030f2ce8..c86f90fd3 100644 --- a/source/games/blood/src/aigilbst.cpp +++ b/source/games/blood/src/aigilbst.cpp @@ -137,7 +137,7 @@ static void gillThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) @@ -235,7 +235,7 @@ static void gillThinkSwimChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); double top, bottom; GetActorExtents(actor, &top, &bottom); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) diff --git a/source/games/blood/src/aihand.cpp b/source/games/blood/src/aihand.cpp index 0adfc4db7..20daca2af 100644 --- a/source/games/blood/src/aihand.cpp +++ b/source/games/blood/src/aihand.cpp @@ -104,7 +104,7 @@ static void handThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aihound.cpp b/source/games/blood/src/aihound.cpp index 1dc3897e3..023bae063 100644 --- a/source/games/blood/src/aihound.cpp +++ b/source/games/blood/src/aihound.cpp @@ -116,7 +116,7 @@ static void houndThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aiinnoc.cpp b/source/games/blood/src/aiinnoc.cpp index 21a96bb6b..18e742b14 100644 --- a/source/games/blood/src/aiinnoc.cpp +++ b/source/games/blood/src/aiinnoc.cpp @@ -89,7 +89,7 @@ static void innocThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aipod.cpp b/source/games/blood/src/aipod.cpp index 62f99b19b..b9363d143 100644 --- a/source/games/blood/src/aipod.cpp +++ b/source/games/blood/src/aipod.cpp @@ -199,7 +199,7 @@ static void aiPodChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/airat.cpp b/source/games/blood/src/airat.cpp index 07ff65f27..3f9d35e59 100644 --- a/source/games/blood/src/airat.cpp +++ b/source/games/blood/src/airat.cpp @@ -101,7 +101,7 @@ static void ratThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aispid.cpp b/source/games/blood/src/aispid.cpp index d126ad69b..bea18cfda 100644 --- a/source/games/blood/src/aispid.cpp +++ b/source/games/blood/src/aispid.cpp @@ -209,7 +209,7 @@ static void spidThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aitchern.cpp b/source/games/blood/src/aitchern.cpp index cb901c029..60541e884 100644 --- a/source/games/blood/src/aitchern.cpp +++ b/source/games/blood/src/aitchern.cpp @@ -209,7 +209,7 @@ static void sub_725A4(DBloodActor* actor) if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); @@ -281,7 +281,7 @@ static void tchernobogThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDist < pDudeInfo->SeeDist() && abs(nDeltaAngle) <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/aiunicult.cpp b/source/games/blood/src/aiunicult.cpp index 6f97cf85c..7d177739c 100644 --- a/source/games/blood/src/aiunicult.cpp +++ b/source/games/blood/src/aiunicult.cpp @@ -192,12 +192,12 @@ void punchCallback(int, DBloodActor* actor) auto const target = actor->GetTarget(); if (target != nullptr) { - double nZOffset1 = getDudeInfo(actor->spr.type)->eyeHeight * actor->spr.yrepeat * REPEAT_SCALE; + double nZOffset1 = getDudeInfo(actor->spr.type)->eyeHeight * actor->spr.ScaleY(); double nZOffset2 = 0; if (target->IsDudeActor()) - nZOffset2 = getDudeInfo(target->spr.type)->eyeHeight * target->spr.yrepeat * REPEAT_SCALE; + nZOffset2 = getDudeInfo(target->spr.type)->eyeHeight * target->spr.ScaleY(); if (!playGenDudeSound(actor, kGenDudeSndAttackMelee)) sfxPlay3DSound(actor, 530, 1, 0); @@ -513,7 +513,7 @@ static void unicultThinkChase(DBloodActor* actor) DUDEINFO* pDudeInfo = getDudeInfo(actor->spr.type); DAngle losAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (dist > pDudeInfo->SeeDist() || !cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) diff --git a/source/games/blood/src/aizomba.cpp b/source/games/blood/src/aizomba.cpp index 198df1e28..72f4973db 100644 --- a/source/games/blood/src/aizomba.cpp +++ b/source/games/blood/src/aizomba.cpp @@ -67,8 +67,8 @@ void HackSeqCallback(int, DBloodActor* actor) DVector3 dv; dv.XY() = (actor->xspr.TargetPos.XY() - actor->spr.pos.XY()).Resized(64); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (target->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * target->spr.ScaleY()); dv.Z = height - height2; sfxPlay3DSound(actor, 1101, 1, 0); @@ -134,7 +134,7 @@ static void zombaThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDeltaAngle <= pDudeInfo->Periphery()) @@ -181,7 +181,7 @@ static void zombaThinkPonder(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDeltaAngle <= pDudeInfo->Periphery()) @@ -219,7 +219,7 @@ static void myThinkTarget(DBloodActor* actor) double nDist = dvect.Length(); if (nDist > pDudeInfo->SeeDist() && nDist > pDudeInfo->HearDist()) continue; - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (!cansee(ppos, pSector, actor->spr.pos.plusZ(-height), actor->sector())) continue; DAngle nDeltaAngle = absangle(actor->spr.angle, dvect.Angle()); diff --git a/source/games/blood/src/aizombf.cpp b/source/games/blood/src/aizombf.cpp index 078266d8b..abd037a88 100644 --- a/source/games/blood/src/aizombf.cpp +++ b/source/games/blood/src/aizombf.cpp @@ -67,8 +67,8 @@ void PukeSeqCallback(int, DBloodActor* actor) DVector2 dv = (actor->xspr.TargetPos.XY() - actor->spr.pos.XY()).Resized(64); - double height = (actor->spr.yrepeat * pDudeInfo->eyeHeight) * REPEAT_SCALE; - double height2 = (target->spr.yrepeat * pDudeInfoT->eyeHeight) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); + double height2 = (pDudeInfoT->eyeHeight * target->spr.ScaleY()); double z = (height - height2) * 0.25; sfxPlay3DSound(actor, 1203, 1, 0); @@ -128,7 +128,7 @@ static void zombfThinkChase(DBloodActor* actor) if (nDist <= pDudeInfo->SeeDist()) { DAngle nDeltaAngle = absangle(actor->spr.angle, nAngle); - double height = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double height = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (cansee(target->spr.pos, target->sector(), actor->spr.pos.plusZ(-height), actor->sector())) { if (nDeltaAngle <= pDudeInfo->Periphery()) diff --git a/source/games/blood/src/animatesprite.cpp b/source/games/blood/src/animatesprite.cpp index 9dd87356d..d280581bb 100644 --- a/source/games/blood/src/animatesprite.cpp +++ b/source/games/blood/src/animatesprite.cpp @@ -390,7 +390,7 @@ static tspritetype* viewAddEffect(tspriteArray& tsprites, int nTSprite, VIEW_EFF pNSprite->pal = 5; int height = tileHeight(pNSprite->picnum); int center = height / 2 + tileTopOffset(pNSprite->picnum); - pNSprite->pos.Z -= (pNSprite->yrepeat * REPEAT_SCALE) * (height - center); + pNSprite->pos.Z -= (pNSprite->ScaleY()) * (height - center); break; } case kViewEffectFlareHalo: diff --git a/source/games/blood/src/db.h b/source/games/blood/src/db.h index 2810989aa..812b91290 100644 --- a/source/games/blood/src/db.h +++ b/source/games/blood/src/db.h @@ -87,8 +87,8 @@ void GetSpriteExtents(spritetypebase const* const pSprite, double* top, double* { int height = tileHeight(pSprite->picnum); int center = height / 2 + tileTopOffset(pSprite->picnum); - *top -= pSprite->yrepeat * REPEAT_SCALE * center; - *bottom += pSprite->yrepeat * REPEAT_SCALE * (height - center); + *top -= pSprite->ScaleY() * center; + *bottom += pSprite->ScaleY() * (height - center); } } diff --git a/source/games/blood/src/nnexts.cpp b/source/games/blood/src/nnexts.cpp index a43cda088..db792f9eb 100644 --- a/source/games/blood/src/nnexts.cpp +++ b/source/games/blood/src/nnexts.cpp @@ -3326,7 +3326,7 @@ void useEffectGen(DBloodActor* sourceactor, DBloodActor* actor) pos = bottom; break; case 2: // middle - pos = actor->spr.pos.Z + (tileHeight(actor->spr.picnum) / 2 + tileTopOffset(actor->spr.picnum)) * actor->spr.yrepeat * REPEAT_SCALE; + pos = actor->spr.pos.Z + (tileHeight(actor->spr.picnum) / 2 + tileTopOffset(actor->spr.picnum)) * actor->spr.ScaleY(); break; case 3: case 4: @@ -3769,7 +3769,7 @@ void useSeqSpawnerGen(DBloodActor* sourceactor, int objType, sectortype* pSector break; case 4: // this had no value shift and no yrepeat handling, which looks like a bug. - pos.Z += (tileHeight(iactor->spr.picnum) / 2 + tileTopOffset(iactor->spr.picnum)) * iactor->spr.yrepeat * REPEAT_SCALE; + pos.Z += (tileHeight(iactor->spr.picnum) / 2 + tileTopOffset(iactor->spr.picnum)) * iactor->spr.ScaleY(); break; case 5: case 6: @@ -8422,7 +8422,7 @@ DBloodActor* aiPatrolSearchTargets(DBloodActor* actor) if (nDistf <= seeDistf) { double scratch; - double eyeAboveZ = (pDudeInfo->eyeHeight * actor->spr.yrepeat) * REPEAT_SCALE; + double eyeAboveZ = (pDudeInfo->eyeHeight * actor->spr.ScaleY()); if (nDistf < seeDistf / 8) GetActorExtents(pPlayer->actor, &pos.Z, &scratch); //use ztop of the target sprite if (!cansee(pos, plActor->sector(), actor->spr.pos - eyeAboveZ, actor->sector())) continue; diff --git a/source/games/exhumed/src/move.cpp b/source/games/exhumed/src/move.cpp index 36ba9faa6..d820e2ea6 100644 --- a/source/games/exhumed/src/move.cpp +++ b/source/games/exhumed/src/move.cpp @@ -402,7 +402,7 @@ Collision movespritez(DExhumedActor* pActor, double z, double height, double cli double GetActorHeight(DExhumedActor* actor) { - return tileHeight(actor->spr.picnum) * actor->spr.yrepeat * REPEAT_SCALE; + return tileHeight(actor->spr.picnum) * actor->spr.ScaleY(); } DExhumedActor* insertActor(sectortype* s, int st)