mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-05 07:21:26 +00:00
- SW: Move player sprite loop out of sector loop, and eliminate goto crap.
This commit is contained in:
parent
f236cc8728
commit
18f97c3d7e
4 changed files with 66 additions and 63 deletions
|
@ -619,6 +619,24 @@ void DrawOverheadMap(const DVector2& plxy, const DAngle pl_angle, double const s
|
|||
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// Draws lines for alls in Duke/SW when cstat is CSTAT_SPRITE_ALIGNMENT_FACING.
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
void DrawAutomapAlignmentFacing(const spritetype& spr, const DVector2& bpos, const DVector2& cangvect, const double czoom, const DVector2& xydim, const PalEntry& col)
|
||||
{
|
||||
auto v1 = OutAutomapVector(bpos, cangvect, czoom, xydim);
|
||||
auto v2 = OutAutomapVector(spr.angle.ToVector() * 8., cangvect, czoom);
|
||||
auto v3 = v2.Rotated90CW();
|
||||
auto v4 = v1 + v2;
|
||||
|
||||
drawlinergb(v1 - v2, v4, col);
|
||||
drawlinergb(v1 - v3, v4, col);
|
||||
drawlinergb(v1 + v3, v4, col);
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
// Draws lines for alls in Duke/SW when cstat is CSTAT_SPRITE_ALIGNMENT_WALL.
|
||||
|
|
|
@ -19,6 +19,7 @@ void MarkSectorSeen(sectortype* sect);
|
|||
void DrawOverheadMap(const DVector2& plxy, const DAngle pl_angle, double const smoothratio);
|
||||
bool AM_Responder(event_t* ev, bool last);
|
||||
void drawlinergb(const DVector2& v1, const DVector2& v2, PalEntry p);
|
||||
void DrawAutomapAlignmentFacing(const spritetype& spr, const DVector2& bpos, const DVector2& cangvect, const double czoom, const DVector2& xydim, const PalEntry& col);
|
||||
void DrawAutomapAlignmentWall(const spritetype& spr, const DVector2& bpos, const DVector2& cangvect, const double czoom, const DVector2& xydim, const PalEntry& col);
|
||||
void DrawAutomapAlignmentFloor(const spritetype& spr, const DVector2& bpos, const DVector2& cangvect, const double czoom, const DVector2& xydim, const PalEntry& col);
|
||||
|
||||
|
|
|
@ -384,9 +384,7 @@ ReservedSpace GameInterface::GetReservedScreenSpace(int viewsize)
|
|||
|
||||
bool GameInterface::DrawAutomapPlayer(const DVector2& mxy, const DVector2& cpos, const DAngle cang, const DVector2& xydim, const double czoom, double const smoothratio)
|
||||
{
|
||||
DVector2 b0, b1, b2, b3, b4, v1, v2, v3, v4;
|
||||
int xoff, yoff, xspan, yspan, tilenum;
|
||||
|
||||
// Pre-caculate incoming angle vector.
|
||||
auto cangvect = cang.ToVector();
|
||||
|
||||
// Draw sprites
|
||||
|
@ -400,27 +398,21 @@ bool GameInterface::DrawAutomapPlayer(const DVector2& mxy, const DVector2& cpos,
|
|||
if (act == pactor || (act->spr.cstat & CSTAT_SPRITE_INVISIBLE) || act->spr.cstat == CSTAT_SPRITE_BLOCK_ALL || act->spr.xrepeat == 0) continue;
|
||||
|
||||
PalEntry col = act->spr.cstat & CSTAT_SPRITE_BLOCK ? PalEntry(170, 0, 170) : PalEntry(0, 170, 170);
|
||||
auto sprpos = act->spr.pos.XY() - cpos;
|
||||
|
||||
if ((act->spr.cstat & CSTAT_SPRITE_BLOCK_ALL) != 0) switch (act->spr.cstat & CSTAT_SPRITE_ALIGNMENT_MASK)
|
||||
{
|
||||
case CSTAT_SPRITE_ALIGNMENT_FACING:
|
||||
v1 = OutAutomapVector(act->spr.pos.XY() - cpos, cangvect, czoom, xydim);
|
||||
v2 = OutAutomapVector(act->spr.angle.ToVector() * 8., cangvect, czoom);
|
||||
v3 = v2.Rotated90CW();
|
||||
v4 = v1 + v2;
|
||||
|
||||
drawlinergb(v1 - v2, v4, col);
|
||||
drawlinergb(v1 - v3, v4, col);
|
||||
drawlinergb(v1 + v3, v4, col);
|
||||
DrawAutomapAlignmentFacing(act->spr, sprpos, cangvect, czoom, xydim, col);
|
||||
break;
|
||||
|
||||
case CSTAT_SPRITE_ALIGNMENT_WALL:
|
||||
if (actorflag(act, SFLAG2_SHOWWALLSPRITEONMAP)) DrawAutomapAlignmentWall(act->spr, act->spr.pos.XY() - cpos, cangvect, czoom, xydim, col);
|
||||
if (actorflag(act, SFLAG2_SHOWWALLSPRITEONMAP)) DrawAutomapAlignmentWall(act->spr, sprpos, cangvect, czoom, xydim, col);
|
||||
break;
|
||||
|
||||
case CSTAT_SPRITE_ALIGNMENT_FLOOR:
|
||||
case CSTAT_SPRITE_ALIGNMENT_SLOPE:
|
||||
DrawAutomapAlignmentFloor(act->spr, act->spr.pos.XY() - cpos, cangvect, czoom, xydim, col);
|
||||
DrawAutomapAlignmentFloor(act->spr, sprpos, cangvect, czoom, xydim, col);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1573,83 +1573,75 @@ bool GameInterface::GenerateSavePic()
|
|||
|
||||
bool GameInterface::DrawAutomapPlayer(const DVector2& mxy, const DVector2& cpos, const DAngle cang, const DVector2& xydim, const double czoom, double const smoothratio)
|
||||
{
|
||||
DVector2 b0, b1, b2, b3, b4, v1, v2, v3, v4;
|
||||
int xoff, yoff, xspan, yspan, tilenum, p;
|
||||
static int pspr_ndx[8] = { 0,0,0,0,0,0,0,0 };
|
||||
bool sprisplayer = false;
|
||||
|
||||
// Pre-caculate incoming angle vector.
|
||||
auto cangvect = cang.ToVector();
|
||||
|
||||
// Draw sprites
|
||||
auto peekActor = Player[screenpeek].actor;
|
||||
for (unsigned i = 0; i < sector.Size(); i++)
|
||||
{
|
||||
SWSectIterator it(i);
|
||||
while (auto actor = it.Next())
|
||||
{
|
||||
for (p = connecthead; p >= 0; p = connectpoint2[p])
|
||||
{
|
||||
if (Player[p].actor == actor)
|
||||
{
|
||||
if (actor->int_xvel() > 16)
|
||||
pspr_ndx[myconnectindex] = ((PlayClock >> 4) & 3);
|
||||
sprisplayer = true;
|
||||
|
||||
goto SHOWSPRITE;
|
||||
}
|
||||
}
|
||||
if (gFullMap || (actor->spr.cstat2 & CSTAT2_SPRITE_MAPPED))
|
||||
{
|
||||
SHOWSPRITE:
|
||||
|
||||
// 1=white / 31=black / 44=green / 56=pink / 128=yellow / 210=blue / 248=orange / 255=purple
|
||||
PalEntry col = (actor->spr.cstat & CSTAT_SPRITE_BLOCK) > 0 ? GPalette.BaseColors[248] : actor == peekActor ? GPalette.BaseColors[31] : GPalette.BaseColors[56];
|
||||
PalEntry col = (actor->spr.cstat & CSTAT_SPRITE_BLOCK) > 0 ? GPalette.BaseColors[248] : actor == Player[screenpeek].actor ? GPalette.BaseColors[31] : GPalette.BaseColors[56];
|
||||
|
||||
auto statnum = actor->spr.statnum;
|
||||
auto sprxy = ((statnum >= 1) && (statnum <= 8) && (statnum != 2) ? actor->interpolatedvec3(smoothratio * (1. / MaxSmoothRatio)) : actor->spr.pos).XY();
|
||||
auto sprxy = ((statnum >= 1) && (statnum <= 8) && (statnum != 2) ? actor->interpolatedvec3(smoothratio * (1. / MaxSmoothRatio)) : actor->spr.pos).XY() - cpos;
|
||||
|
||||
switch (actor->spr.cstat & CSTAT_SPRITE_ALIGNMENT_MASK)
|
||||
{
|
||||
case CSTAT_SPRITE_ALIGNMENT_FACING: // Regular sprite
|
||||
if (Player[p].actor == actor)
|
||||
{
|
||||
if (czoom > 0.1875)
|
||||
{
|
||||
const auto daang = -((!SyncInput() ? actor->spr.angle : actor->interpolatedangle(smoothratio * (1. / MaxSmoothRatio))) - cang).Normalized360().Degrees();
|
||||
auto vect = OutAutomapVector(mxy - cpos, cangvect, czoom, xydim);
|
||||
|
||||
// Special case tiles
|
||||
if (actor->spr.picnum == 3123) break;
|
||||
|
||||
int spnum = -1;
|
||||
if (sprisplayer)
|
||||
{
|
||||
if (gNet.MultiGameType != MULTI_GAME_COMMBAT || actor == Player[screenpeek].actor)
|
||||
spnum = 1196 + pspr_ndx[myconnectindex];
|
||||
}
|
||||
else spnum = actor->spr.picnum;
|
||||
|
||||
// This yrepeat scale is correct.
|
||||
double sc = czoom * actor->spr.yrepeat * (1. / 32.);
|
||||
if (spnum >= 0)
|
||||
{
|
||||
DrawTexture(twod, tileGetTexture(1196 + pspr_ndx[myconnectindex], true), vect.X, vect.Y, DTA_ScaleX, sc, DTA_ScaleY, sc, DTA_Rotate, daang,
|
||||
DTA_CenterOffsetRel, 2, DTA_TranslationIndex, TRANSLATION(Translation_Remap, actor->spr.pal), DTA_Color, shadeToLight(actor->spr.shade),
|
||||
DTA_Alpha, (actor->spr.cstat & CSTAT_SPRITE_TRANSLUCENT) ? 0.33 : 1., TAG_DONE);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
case CSTAT_SPRITE_ALIGNMENT_WALL: // Rotated sprite
|
||||
DrawAutomapAlignmentWall(actor->spr, sprxy - cpos, cangvect, czoom, xydim, col);
|
||||
DrawAutomapAlignmentWall(actor->spr, sprxy, cangvect, czoom, xydim, col);
|
||||
break;
|
||||
case CSTAT_SPRITE_ALIGNMENT_FLOOR: // Floor sprite
|
||||
if (automapMode == am_overlay) DrawAutomapAlignmentFloor(actor->spr, sprxy - cpos, cangvect, czoom, xydim, col);
|
||||
if (automapMode == am_overlay) DrawAutomapAlignmentFloor(actor->spr, sprxy, cangvect, czoom, xydim, col);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (int p = connecthead; p >= 0; p = connectpoint2[p])
|
||||
{
|
||||
if (p == screenpeek)
|
||||
{
|
||||
auto actor = Player[p].actor;
|
||||
if (actor->int_xvel() > 16) pspr_ndx[myconnectindex] = ((PlayClock >> 4) & 3);
|
||||
sprisplayer = true;
|
||||
|
||||
if (czoom > 0.1875)
|
||||
{
|
||||
// Special case tiles
|
||||
if (actor->spr.picnum == 3123) break;
|
||||
|
||||
int spnum = -1;
|
||||
if (sprisplayer)
|
||||
{
|
||||
if (gNet.MultiGameType != MULTI_GAME_COMMBAT || actor == Player[screenpeek].actor)
|
||||
spnum = 1196 + pspr_ndx[myconnectindex];
|
||||
}
|
||||
else spnum = actor->spr.picnum;
|
||||
|
||||
if (spnum >= 0)
|
||||
{
|
||||
const auto daang = -((!SyncInput() ? actor->spr.angle : actor->interpolatedangle(smoothratio * (1. / MaxSmoothRatio))) - cang).Normalized360().Degrees();
|
||||
auto vect = OutAutomapVector(mxy - cpos, cangvect, czoom, xydim);
|
||||
|
||||
// This yrepeat scale is correct.
|
||||
double sc = czoom * actor->spr.yrepeat * (1. / 32.);
|
||||
|
||||
DrawTexture(twod, tileGetTexture(1196 + pspr_ndx[myconnectindex], true), vect.X, vect.Y, DTA_ScaleX, sc, DTA_ScaleY, sc, DTA_Rotate, daang,
|
||||
DTA_CenterOffsetRel, 2, DTA_TranslationIndex, TRANSLATION(Translation_Remap, actor->spr.pal), DTA_Color, shadeToLight(actor->spr.shade),
|
||||
DTA_Alpha, (actor->spr.cstat & CSTAT_SPRITE_TRANSLUCENT) ? 0.33 : 1., TAG_DONE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue