2020-05-21 20:40:46 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
|
|
|
Copyright (C) 2017-2019 Nuke.YKT
|
2020-06-28 07:03:31 +00:00
|
|
|
Copyright (C) 2020 - Christoph Oelckers
|
2020-05-21 20:40:46 +00:00
|
|
|
|
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2020-10-13 19:44:05 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2020-05-21 20:40:46 +00:00
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Original Source: 1996 - Todd Replogle
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#include "ns.h"
|
|
|
|
#include "global.h"
|
2020-07-03 21:56:14 +00:00
|
|
|
#include "names_r.h"
|
2020-07-06 09:39:39 +00:00
|
|
|
#include "prediction.h"
|
2020-11-04 06:01:25 +00:00
|
|
|
#include "dukeactor.h"
|
2021-05-30 21:00:06 +00:00
|
|
|
#include "gamefuncs.h"
|
2020-05-21 20:40:46 +00:00
|
|
|
|
2020-10-13 19:44:05 +00:00
|
|
|
BEGIN_DUKE_NS
|
2020-05-21 20:40:46 +00:00
|
|
|
|
|
|
|
|
2022-09-07 05:34:55 +00:00
|
|
|
void animatesprites_r(tspriteArray& tsprites, int x, int y, int a, double interpfrac)
|
2020-05-21 20:40:46 +00:00
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
DAngle kang;
|
|
|
|
DAngle viewang = DAngle::fromBuild(a);
|
2022-08-23 20:46:05 +00:00
|
|
|
DVector2 viewVec(x * inttoworld, y * inttoworld);
|
2022-08-07 08:25:15 +00:00
|
|
|
int k, p;
|
2020-10-13 19:44:05 +00:00
|
|
|
int l, t1, t3, t4;
|
|
|
|
tspritetype* t;
|
2021-08-30 06:12:39 +00:00
|
|
|
DDukeActor* h;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
int bg = 0;
|
|
|
|
|
2022-08-07 08:25:15 +00:00
|
|
|
for (unsigned j = 0; j < tsprites.Size(); j++)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-08-07 08:25:15 +00:00
|
|
|
t = tsprites.get(j);
|
2021-12-04 18:08:50 +00:00
|
|
|
h = static_cast<DDukeActor*>(t->ownerActor);
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
switch (t->picnum)
|
|
|
|
{
|
|
|
|
case BLOODPOOL:
|
|
|
|
case FOOTPRINTS:
|
|
|
|
case FOOTPRINTS2:
|
|
|
|
case FOOTPRINTS3:
|
|
|
|
case FOOTPRINTS4:
|
|
|
|
if (t->shade == 127) continue;
|
|
|
|
break;
|
|
|
|
case CHAIR3:
|
|
|
|
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(t->angle, viewang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2021-12-21 19:04:37 +00:00
|
|
|
t->picnum = h->spr.picnum + k;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case BLOODSPLAT1:
|
|
|
|
case BLOODSPLAT2:
|
|
|
|
case BLOODSPLAT3:
|
|
|
|
case BLOODSPLAT4:
|
|
|
|
if (t->pal == 6)
|
|
|
|
{
|
|
|
|
t->shade = -127;
|
|
|
|
continue;
|
|
|
|
}
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
case BULLETHOLE:
|
|
|
|
case CRACK1:
|
|
|
|
case CRACK2:
|
|
|
|
case CRACK3:
|
|
|
|
case CRACK4:
|
|
|
|
t->shade = 16;
|
|
|
|
continue;
|
|
|
|
|
|
|
|
case RRTILE1947:
|
|
|
|
case RRTILE2859:
|
|
|
|
case RRTILE3774:
|
|
|
|
case RRTILE5088:
|
|
|
|
case RRTILE8094:
|
|
|
|
case RRTILE8096:
|
|
|
|
if (isRRRA()) continue;
|
|
|
|
|
|
|
|
case NEON1:
|
|
|
|
case NEON2:
|
|
|
|
case NEON3:
|
|
|
|
case NEON4:
|
|
|
|
case NEON5:
|
|
|
|
case NEON6:
|
|
|
|
continue;
|
|
|
|
default:
|
2021-12-18 15:45:05 +00:00
|
|
|
if (((t->cstat & CSTAT_SPRITE_ALIGNMENT_WALL)) || (badguypic(t->picnum) && t->extra > 0) || t->statnum == STAT_PLAYER)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (h->sector()->shadedsector == 1 && h->spr.statnum != 1)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-21 19:04:37 +00:00
|
|
|
h->spr.shade = 16;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = 16;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-30 15:24:51 +00:00
|
|
|
if (t->sectp != nullptr)
|
|
|
|
t->shade = clamp<int>(t->sectp->ceilingstat & CSTAT_SECTOR_SKY ? h->spr.shade : t->sectp->floorshade, -127, 127);
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-08-07 08:25:15 +00:00
|
|
|
for (unsigned j = 0; j < tsprites.Size(); j++)
|
2021-11-09 23:05:42 +00:00
|
|
|
{
|
2022-08-07 08:25:15 +00:00
|
|
|
t = tsprites.get(j);
|
2021-12-04 18:08:50 +00:00
|
|
|
h = static_cast<DDukeActor*>(t->ownerActor);
|
2020-10-23 15:37:19 +00:00
|
|
|
auto OwnerAc = h->GetOwner();
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
switch (h->spr.picnum)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
|
|
|
case SECTOREFFECTOR:
|
2022-09-03 15:51:35 +00:00
|
|
|
if (t->lotag == SE_27_DEMO_CAM && ud.recstat == 1)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = 11 + ((PlayClock >> 3) & 1);
|
2021-12-18 16:00:22 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_YCENTER;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t->statnum == 99) continue;
|
2022-02-06 20:26:17 +00:00
|
|
|
auto pp = &ps[h->PlayerIndex()];
|
|
|
|
if (h->spr.statnum != STAT_ACTOR && h->spr.picnum == APLAYER && pp->newOwner == nullptr && h->GetOwner())
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-09-07 05:34:55 +00:00
|
|
|
t->pos = interpolatedvalue(pp->opos, pp->pos, interpfrac).plusZ(gs.playerheight);
|
2021-12-21 19:04:37 +00:00
|
|
|
h->spr.xrepeat = 24;
|
|
|
|
h->spr.yrepeat = 17;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2022-01-17 23:54:10 +00:00
|
|
|
else if (!actorflag(h, SFLAG_NOINTERPOLATE))
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-09-07 05:34:55 +00:00
|
|
|
t->pos = h->interpolatedpos(interpfrac);
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sectp = h->sector();
|
2020-10-23 18:38:45 +00:00
|
|
|
t1 = h->temp_data[1];
|
|
|
|
t3 = h->temp_data[3];
|
|
|
|
t4 = h->temp_data[4];
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
switch (h->spr.picnum)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
|
|
|
case RESPAWNMARKERRED:
|
|
|
|
case RESPAWNMARKERYELLOW:
|
|
|
|
case RESPAWNMARKERGREEN:
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = 861 + ((PlayClock >> 4) & 13);
|
2021-12-21 19:04:37 +00:00
|
|
|
if (h->spr.picnum == RESPAWNMARKERRED)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->pal = 0;
|
2021-12-21 19:04:37 +00:00
|
|
|
else if (h->spr.picnum == RESPAWNMARKERYELLOW)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->pal = 1;
|
|
|
|
else
|
|
|
|
t->pal = 2;
|
|
|
|
if (ud.marker == 0)
|
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
break;
|
|
|
|
case DUKELYINGDEAD:
|
2021-12-21 19:04:37 +00:00
|
|
|
h->spr.xrepeat = 24;
|
|
|
|
h->spr.yrepeat = 17;
|
|
|
|
if (h->spr.extra > 0)
|
2022-08-20 15:59:15 +00:00
|
|
|
t->pos.Z += 6;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case BLOODPOOL:
|
|
|
|
case FOOTPRINTS:
|
|
|
|
case FOOTPRINTS2:
|
|
|
|
case FOOTPRINTS3:
|
|
|
|
case FOOTPRINTS4:
|
|
|
|
if (t->pal == 6)
|
|
|
|
t->shade = -127;
|
|
|
|
case MONEY:
|
|
|
|
case MONEY + 1:
|
|
|
|
break;
|
2022-01-19 09:05:41 +00:00
|
|
|
case POWDERKEG:
|
2020-10-13 19:44:05 +00:00
|
|
|
continue;
|
|
|
|
case FORCESPHERE:
|
2021-12-21 21:28:13 +00:00
|
|
|
if (t->statnum == STAT_MISC && OwnerAc)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-02-06 20:26:17 +00:00
|
|
|
int sqa = getangle(OwnerAc->spr.pos.XY() - ps[screenpeek].pos.XY());
|
|
|
|
int sqb = getangle(OwnerAc->spr.pos.XY() - t->pos.XY());
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
if (abs(getincangle(sqa, sqb)) > 512)
|
2021-12-21 21:28:13 +00:00
|
|
|
if (ldist(OwnerAc, t) < ldist(ps[screenpeek].GetActor(), OwnerAc))
|
2020-10-13 19:44:05 +00:00
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
case BURNING:
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc && OwnerAc->spr.statnum == STAT_PLAYER)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-09-01 14:42:23 +00:00
|
|
|
if (display_mirror == 0 && OwnerAc->PlayerIndex() == screenpeek && ps[OwnerAc->PlayerIndex()].over_shoulder_on == 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->xrepeat = 0;
|
|
|
|
else
|
|
|
|
{
|
2022-08-23 20:46:05 +00:00
|
|
|
t->angle = VecToAngle(viewVec - t->pos.XY());
|
2022-08-29 20:59:44 +00:00
|
|
|
t->pos.XY() = OwnerAc->spr.pos.XY() + t->angle.ToVector();
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ATOMICHEALTH:
|
2022-02-07 07:47:18 +00:00
|
|
|
t->pos.Z -= 4;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case CRYSTALAMMO:
|
2021-02-18 10:46:36 +00:00
|
|
|
t->shade = bsin(PlayClock << 4, -10);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case SHRINKSPARK:
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc && (OwnerAc->spr.picnum == CHEER || OwnerAc->spr.picnum == CHEERSTAYPUT) && isRRRA())
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = CHEERBLADE + ((PlayClock >> 4) & 3);
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = -127;
|
|
|
|
}
|
|
|
|
else
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = SHRINKSPARK + ((PlayClock >> 4) & 7);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case CHEERBOMB:
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = CHEERBOMB + ((PlayClock >> 4) & 3);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else goto default_case;
|
|
|
|
case SPIT:
|
2021-12-21 21:28:13 +00:00
|
|
|
if (isRRRA() && OwnerAc)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc->spr.picnum == MINION && OwnerAc->spr.pal == 8)
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = RRTILE3500 + ((PlayClock >> 4) % 6);
|
2021-12-21 21:28:13 +00:00
|
|
|
else if (OwnerAc->spr.picnum == MINION && OwnerAc->spr.pal == 19)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = RRTILE5090 + ((PlayClock >> 4) & 3);
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = -127;
|
|
|
|
}
|
2021-12-21 21:28:13 +00:00
|
|
|
else if (OwnerAc->spr.picnum == MAMA)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation1(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = RRTILE7274 + k;
|
|
|
|
}
|
|
|
|
else
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = SPIT + ((PlayClock >> 4) & 3);
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
else
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = SPIT + ((PlayClock >> 4) & 3);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case EMPTYBIKE:
|
|
|
|
if (!isRRRA()) goto default_case;
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = EMPTYBIKE + k;
|
|
|
|
break;
|
|
|
|
case EMPTYBOAT:
|
|
|
|
if (!isRRRA()) goto default_case;
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = EMPTYBOAT + k;
|
|
|
|
break;
|
|
|
|
case RPG:
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = RPG + k;
|
|
|
|
break;
|
|
|
|
case RPG2:
|
|
|
|
if (!isRRRA()) goto default_case;
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = RPG2 + k;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RECON:
|
|
|
|
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
if (abs(t3) > 64) k += 7;
|
|
|
|
t->picnum = RECON + k;
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case APLAYER:
|
|
|
|
|
2022-09-01 15:26:46 +00:00
|
|
|
p = h->PlayerIndex();
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2022-08-20 15:59:15 +00:00
|
|
|
if (t->pal == 1) t->pos.Z -= 18;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[p].over_shoulder_on > 0 && ps[p].newOwner == nullptr)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_TRANSLUCENT;
|
2021-11-21 07:50:04 +00:00
|
|
|
#if 0 // multiplayer only
|
2020-10-13 19:44:05 +00:00
|
|
|
if (screenpeek == myconnectindex && numplayers >= 2)
|
|
|
|
{
|
2022-09-08 10:47:21 +00:00
|
|
|
t->pos = interpolatedvalue(omypos, mypos, interpfrac).plusZ(gs_playerheight);
|
2022-09-07 05:34:55 +00:00
|
|
|
t->ang = interpolatedvalue(omyang, myang, interpfrac).asbuild();
|
2021-11-21 08:05:58 +00:00
|
|
|
t->sector = mycursectnum;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-11-21 07:50:04 +00:00
|
|
|
#endif
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-21 17:19:45 +00:00
|
|
|
if ((display_mirror == 1 || screenpeek != p || !h->GetOwner()) && ud.multimode > 1 && cl_showweapon && ps[p].GetActor()->spr.extra > 0 && ps[p].curr_weapon > 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-08-07 08:25:15 +00:00
|
|
|
auto newtspr = tsprites.newTSprite();
|
|
|
|
*newtspr = *t;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
newtspr->statnum = 99;
|
|
|
|
|
|
|
|
newtspr->yrepeat = (t->yrepeat >> 3);
|
|
|
|
if (t->yrepeat < 4) t->yrepeat = 4;
|
|
|
|
|
|
|
|
newtspr->shade = t->shade;
|
|
|
|
newtspr->cstat = 0;
|
|
|
|
|
|
|
|
switch (ps[p].curr_weapon)
|
|
|
|
{
|
|
|
|
case PISTOL_WEAPON: newtspr->picnum = FIRSTGUNSPRITE; break;
|
|
|
|
case SHOTGUN_WEAPON: newtspr->picnum = SHOTGUNSPRITE; break;
|
|
|
|
case RIFLEGUN_WEAPON: newtspr->picnum = CHAINGUNSPRITE; break;
|
|
|
|
case CROSSBOW_WEAPON: newtspr->picnum = RPGSPRITE; break;
|
|
|
|
case CHICKEN_WEAPON: newtspr->picnum = RPGSPRITE; break;
|
|
|
|
case THROWINGDYNAMITE_WEAPON:
|
|
|
|
case DYNAMITE_WEAPON: newtspr->picnum = HEAVYHBOMB; break;
|
2022-01-19 09:05:41 +00:00
|
|
|
case POWDERKEG_WEAPON: newtspr->picnum = POWDERKEG; break;
|
2020-10-13 19:44:05 +00:00
|
|
|
case BOWLING_WEAPON: newtspr->picnum = 3437; break;
|
|
|
|
case THROWSAW_WEAPON: newtspr->picnum = SHRINKSPARK; break;
|
|
|
|
case BUZZSAW_WEAPON: newtspr->picnum = SHRINKSPARK; break;
|
|
|
|
case ALIENBLASTER_WEAPON: newtspr->picnum = DEVISTATORSPRITE; break;
|
|
|
|
case TIT_WEAPON: newtspr->picnum = FREEZESPRITE; break;
|
|
|
|
}
|
|
|
|
|
2022-02-06 20:26:17 +00:00
|
|
|
if (h->GetOwner()) newtspr->pos.Z = ps[p].pos.Z - 12;
|
|
|
|
else newtspr->pos.Z = h->spr.pos.Z - 51;
|
2020-10-13 19:44:05 +00:00
|
|
|
if (ps[p].curr_weapon == HANDBOMB_WEAPON)
|
|
|
|
{
|
|
|
|
newtspr->xrepeat = 10;
|
|
|
|
newtspr->yrepeat = 10;
|
|
|
|
}
|
|
|
|
else if (ps[p].OnMotorcycle || ps[p].OnBoat)
|
|
|
|
{
|
|
|
|
newtspr->xrepeat = 0;
|
|
|
|
newtspr->yrepeat = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newtspr->xrepeat = 16;
|
|
|
|
newtspr->yrepeat = 16;
|
|
|
|
}
|
|
|
|
newtspr->pal = 0;
|
|
|
|
}
|
|
|
|
|
2020-11-02 23:01:35 +00:00
|
|
|
if (!h->GetOwner())
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-21 19:04:37 +00:00
|
|
|
if (hw_models && md_tilehasmodel(h->spr.picnum, h->spr.pal) >= 0)
|
2020-12-01 22:57:39 +00:00
|
|
|
{
|
2020-10-13 19:44:05 +00:00
|
|
|
k = 0;
|
2021-12-18 16:00:22 +00:00
|
|
|
t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-12-01 22:57:39 +00:00
|
|
|
} else
|
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(h->spr.angle, viewang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-30 15:58:48 +00:00
|
|
|
if (t->sectp->lotag == 2) k += 1795 - 1405;
|
2022-02-04 00:00:28 +00:00
|
|
|
else if ((h->floorz - h->spr.pos.Z) > 64) k += 60;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
t->picnum += k;
|
|
|
|
t->pal = ps[p].palookup;
|
|
|
|
|
|
|
|
goto PALONLY;
|
|
|
|
}
|
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
if (ps[p].on_crane == nullptr && (h->sector()->lotag & 0x7ff) != 1)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-02-04 00:00:28 +00:00
|
|
|
double v = h->spr.pos.Z - ps[p].GetActor()->floorz + 3;
|
|
|
|
if (v > 4 && h->spr.yrepeat > 32 && h->spr.extra > 0)
|
|
|
|
h->spr.yoffset = (int8_t)(v * (1 / REPEAT_SCALE) / h->spr.yrepeat);
|
2021-12-21 19:04:37 +00:00
|
|
|
else h->spr.yoffset = 0;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[p].newOwner != nullptr)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2020-11-29 12:54:58 +00:00
|
|
|
t4 = ScriptCode[gs.actorinfo[APLAYER].scriptaddress + 1];
|
2020-10-13 19:44:05 +00:00
|
|
|
t3 = 0;
|
2020-11-29 12:54:58 +00:00
|
|
|
t1 = ScriptCode[gs.actorinfo[APLAYER].scriptaddress + 2];
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ud.cameraactor == nullptr && ps[p].newOwner == nullptr)
|
2020-11-02 23:01:35 +00:00
|
|
|
if (h->GetOwner() && display_mirror == 0 && ps[p].over_shoulder_on == 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
if (ud.multimode < 2 || (ud.multimode > 1 && p == screenpeek))
|
|
|
|
{
|
2021-12-04 18:08:50 +00:00
|
|
|
t->ownerActor = nullptr;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
continue;
|
2020-05-21 20:40:46 +00:00
|
|
|
}
|
|
|
|
|
2020-10-13 19:44:05 +00:00
|
|
|
PALONLY:
|
|
|
|
|
2021-11-07 15:46:23 +00:00
|
|
|
if (sectp->floorpal)
|
|
|
|
copyfloorpal(t, sectp);
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2020-11-02 23:01:35 +00:00
|
|
|
if (!h->GetOwner()) continue;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2022-02-04 00:00:28 +00:00
|
|
|
if (t->pos.Z > h->floorz && t->xrepeat < 32)
|
|
|
|
t->pos.Z = h->floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
if (ps[p].OnMotorcycle && p == screenpeek)
|
|
|
|
{
|
|
|
|
t->picnum = RRTILE7219;
|
|
|
|
t->xrepeat = 18;
|
|
|
|
t->yrepeat = 18;
|
|
|
|
t4 = 0;
|
|
|
|
t3 = 0;
|
|
|
|
t1 = 0;
|
|
|
|
}
|
|
|
|
else if (ps[p].OnMotorcycle)
|
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation2(h->spr.angle, viewang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
t->picnum = RRTILE7213 + k;
|
|
|
|
t->xrepeat = 18;
|
|
|
|
t->yrepeat = 18;
|
|
|
|
t4 = 0;
|
|
|
|
t3 = 0;
|
|
|
|
t1 = 0;
|
|
|
|
}
|
|
|
|
else if (ps[p].OnBoat && p == screenpeek)
|
|
|
|
{
|
|
|
|
t->picnum = RRTILE7190;
|
|
|
|
t->xrepeat = 32;
|
|
|
|
t->yrepeat = 32;
|
|
|
|
t4 = 0;
|
|
|
|
t3 = 0;
|
|
|
|
t1 = 0;
|
|
|
|
}
|
|
|
|
else if (ps[p].OnBoat)
|
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation2(h->spr.angle, viewang);
|
|
|
|
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
t->picnum = RRTILE7184 + k;
|
|
|
|
t->xrepeat = 32;
|
|
|
|
t->yrepeat = 32;
|
|
|
|
t4 = 0;
|
|
|
|
t3 = 0;
|
|
|
|
t1 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RRTILE2460:
|
|
|
|
case RRTILE2465:
|
|
|
|
case BIKEJIBA:
|
|
|
|
case BIKEJIBB:
|
|
|
|
case BIKEJIBC:
|
|
|
|
case BIKERJIBA:
|
|
|
|
case BIKERJIBB:
|
|
|
|
case BIKERJIBC:
|
|
|
|
case BIKERJIBD:
|
|
|
|
case CHEERJIBA:
|
|
|
|
case CHEERJIBB:
|
|
|
|
case CHEERJIBC:
|
|
|
|
case CHEERJIBD:
|
|
|
|
case FBOATJIBA:
|
|
|
|
case FBOATJIBB:
|
|
|
|
case RABBITJIBA:
|
|
|
|
case RABBITJIBB:
|
|
|
|
case RABBITJIBC:
|
|
|
|
case MAMAJIBA:
|
|
|
|
case MAMAJIBB:
|
|
|
|
if (isRRRA()) goto stuff;
|
|
|
|
else goto default_case;
|
|
|
|
|
|
|
|
case MINJIBA:
|
|
|
|
case MINJIBB:
|
|
|
|
case MINJIBC:
|
|
|
|
if (isRRRA() && t->pal == 19)
|
|
|
|
t->shade = -127;
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
case JIBS1:
|
|
|
|
case JIBS2:
|
|
|
|
case JIBS3:
|
|
|
|
case JIBS4:
|
|
|
|
case JIBS5:
|
|
|
|
case JIBS6:
|
|
|
|
case DUKEGUN:
|
|
|
|
case DUKETORSO:
|
|
|
|
case DUKELEG:
|
|
|
|
case BILLYJIBA:
|
|
|
|
case BILLYJIBB:
|
|
|
|
case HULKJIBA:
|
|
|
|
case HULKJIBB:
|
|
|
|
case HULKJIBC:
|
|
|
|
case COOTJIBA:
|
|
|
|
case COOTJIBB:
|
|
|
|
case COOTJIBC:
|
|
|
|
stuff:
|
|
|
|
if (t->pal == 6) t->shade = -120;
|
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
if (h->sector()->shadedsector == 1)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = 16;
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
case SCRAP1:
|
|
|
|
case SCRAP2:
|
|
|
|
case SCRAP3:
|
|
|
|
case SCRAP4:
|
|
|
|
case SCRAP5:
|
|
|
|
case SCRAP6:
|
|
|
|
case SCRAP6 + 1:
|
|
|
|
case SCRAP6 + 2:
|
|
|
|
case SCRAP6 + 3:
|
|
|
|
case SCRAP6 + 4:
|
|
|
|
case SCRAP6 + 5:
|
|
|
|
case SCRAP6 + 6:
|
|
|
|
case SCRAP6 + 7:
|
|
|
|
|
2022-09-01 16:15:52 +00:00
|
|
|
if (t->picnum == SCRAP1 && h->spr.yint >= 0)
|
|
|
|
t->picnum = h->spr.yint;
|
2020-10-23 18:38:45 +00:00
|
|
|
else t->picnum += h->temp_data[0];
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2021-11-07 15:46:23 +00:00
|
|
|
if (sectp->floorpal)
|
|
|
|
copyfloorpal(t, sectp);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WATERBUBBLE:
|
2021-12-30 15:58:48 +00:00
|
|
|
if (t->sectp->floorpicnum == FLOORSLIME)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
|
|
|
t->pal = 7;
|
|
|
|
break;
|
|
|
|
}
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
default:
|
|
|
|
default_case:
|
|
|
|
|
2021-11-07 15:46:23 +00:00
|
|
|
if (sectp->floorpal)
|
|
|
|
copyfloorpal(t, sectp);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
if (gs.actorinfo[h->spr.picnum].scriptaddress && (t->cstat & CSTAT_SPRITE_ALIGNMENT_MASK) != CSTAT_SPRITE_ALIGNMENT_SLAB)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
|
|
|
if (t4)
|
|
|
|
{
|
|
|
|
l = ScriptCode[t4 + 2];
|
2020-05-21 20:40:46 +00:00
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
if (hw_models && md_tilehasmodel(h->spr.picnum, h->spr.pal) >= 0)
|
2020-12-01 22:57:39 +00:00
|
|
|
{
|
2020-05-21 20:40:46 +00:00
|
|
|
k = 0;
|
2021-12-18 16:00:22 +00:00
|
|
|
t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-12-01 22:57:39 +00:00
|
|
|
}
|
|
|
|
else switch (l)
|
|
|
|
{
|
2020-10-13 19:44:05 +00:00
|
|
|
case 2:
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(h->spr.angle, viewang, 8, 1);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
case 4:
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(h->spr.angle, viewang, 7);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 3)
|
|
|
|
{
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
k = 7 - k;
|
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 5:
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation1(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case 7:
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation2(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 6)
|
|
|
|
{
|
|
|
|
k = 12 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case 8:
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(h->spr.angle, viewang);
|
2021-12-18 16:00:22 +00:00
|
|
|
t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
default:
|
2021-12-21 19:04:37 +00:00
|
|
|
bg = badguy(h);
|
|
|
|
if (bg && h->spr.statnum == 2 && h->spr.extra > 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-09-13 17:52:59 +00:00
|
|
|
kang = VecToAngle(h->spr.pos - viewVec);
|
|
|
|
k = angletorotation1(h->spr.angle, kang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
k = 0;
|
|
|
|
bg = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
t->picnum += k + ScriptCode[t4] + l * t3;
|
|
|
|
|
|
|
|
if (l > 0)
|
2021-12-11 08:56:28 +00:00
|
|
|
{
|
|
|
|
while (t->picnum >= 0 && t->picnum < MAXTILES && !tileGetTexture(t->picnum)->isValid())
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum -= l; //Hack, for actors
|
2021-12-11 08:56:28 +00:00
|
|
|
}
|
|
|
|
|
2020-11-22 17:46:20 +00:00
|
|
|
if (t->picnum < 0 || t->picnum >= MAXTILES)
|
|
|
|
{
|
|
|
|
t->picnum = 0;
|
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
}
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2020-10-23 18:38:45 +00:00
|
|
|
if (h->dispicnum >= 0)
|
|
|
|
h->dispicnum = t->picnum;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
else if (display_mirror == 1)
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
if (!isRRRA() && h->spr.picnum == SBMOVE)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = -127;
|
|
|
|
|
2022-01-07 15:36:02 +00:00
|
|
|
if (h->spr.statnum == STAT_DUMMYPLAYER || badguy(h) || (h->spr.picnum == APLAYER && h->GetOwner()))
|
2022-01-12 23:42:34 +00:00
|
|
|
{
|
2021-12-21 19:04:37 +00:00
|
|
|
if ((h->spr.cstat & CSTAT_SPRITE_ALIGNMENT_MASK) == 0 && t->statnum != 99)
|
2022-01-12 23:42:34 +00:00
|
|
|
{
|
2021-12-21 19:04:37 +00:00
|
|
|
if (h->spr.picnum != EXPLOSION2 && h->spr.picnum != DOMELITE && h->spr.picnum != TORNADO && h->spr.picnum != EXPLOSION3 && (h->spr.picnum != SBMOVE || isRRRA()))
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-08-07 08:25:15 +00:00
|
|
|
if (r_shadows && !(h->spr.cstat2 & CSTAT2_SPRITE_NOSHADOW))
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2022-02-06 20:26:17 +00:00
|
|
|
double floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2021-11-07 15:46:23 +00:00
|
|
|
if (isRRRA() && sectp->lotag == 160) continue;
|
2021-12-21 19:04:37 +00:00
|
|
|
if ((sectp->lotag & 0xff) > 2 || h->spr.statnum == 4 || h->spr.statnum == 5 || h->spr.picnum == DRONE)
|
2022-02-06 20:26:17 +00:00
|
|
|
floorz = sectp->floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
else
|
2022-02-06 20:26:17 +00:00
|
|
|
floorz = h->floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2022-02-06 20:26:17 +00:00
|
|
|
if (h->spr.pos.Z - floorz < 8 && ps[screenpeek].pos.Z < floorz)
|
|
|
|
{
|
2022-08-07 08:25:15 +00:00
|
|
|
auto shadowspr = tsprites.newTSprite();
|
2020-10-13 19:44:05 +00:00
|
|
|
*shadowspr = *t;
|
|
|
|
|
|
|
|
shadowspr->statnum = 99;
|
|
|
|
|
|
|
|
shadowspr->yrepeat = (t->yrepeat >> 3);
|
|
|
|
if (t->yrepeat < 4) t->yrepeat = 4;
|
|
|
|
shadowspr->shade = 127;
|
2021-12-18 15:02:15 +00:00
|
|
|
shadowspr->cstat |= CSTAT_SPRITE_TRANSLUCENT;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2022-02-06 20:26:17 +00:00
|
|
|
shadowspr->pos.Z = floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
shadowspr->pal = 4;
|
|
|
|
|
2020-12-01 22:57:39 +00:00
|
|
|
if (hw_models && md_tilehasmodel(t->picnum, t->pal) >= 0)
|
|
|
|
{
|
|
|
|
shadowspr->yrepeat = 0;
|
|
|
|
// 512:trans reverse
|
|
|
|
//1024:tell MD2SPRITE.C to use Z-buffer hacks to hide overdraw issues
|
|
|
|
shadowspr->clipdist |= TSPR_FLAGS_MDHACK;
|
2021-12-18 16:00:22 +00:00
|
|
|
shadowspr->cstat |= CSTAT_SPRITE_TRANS_FLIP;
|
2020-12-01 22:57:39 +00:00
|
|
|
}
|
|
|
|
else
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2020-12-01 22:57:39 +00:00
|
|
|
// Alter the shadow's position so that it appears behind the sprite itself.
|
2022-08-27 17:57:08 +00:00
|
|
|
auto look = VecToAngle(shadowspr->pos.XY() - ps[screenpeek].pos.XY());
|
2022-08-29 20:59:44 +00:00
|
|
|
shadowspr->pos.XY() += look.ToVector() * 2;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2022-02-06 20:26:17 +00:00
|
|
|
}
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
2022-01-12 23:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-13 19:44:05 +00:00
|
|
|
|
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
switch (h->spr.picnum)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
|
|
|
case RPG2:
|
|
|
|
case RRTILE1790:
|
|
|
|
if (!isRRRA()) break;
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
case EXPLOSION2:
|
|
|
|
case FREEZEBLAST:
|
|
|
|
case ATOMICHEALTH:
|
|
|
|
case FIRELASER:
|
|
|
|
case SHRINKSPARK:
|
|
|
|
case CHAINGUN:
|
|
|
|
case RPG:
|
|
|
|
case EXPLOSION3:
|
|
|
|
case COOLEXPLOSION1:
|
|
|
|
case OWHIP:
|
|
|
|
case UWHIP:
|
|
|
|
if (t->picnum == EXPLOSION2)
|
|
|
|
{
|
|
|
|
ps[screenpeek].visibility = -127;
|
2021-02-18 10:46:36 +00:00
|
|
|
lastvisinc = PlayClock + 32;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->pal = 0;
|
|
|
|
}
|
|
|
|
else if (t->picnum == FIRELASER)
|
|
|
|
{
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = FIRELASER + ((PlayClock >> 2) & 5);
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case UFOBEAM:
|
|
|
|
case RRTILE3586:
|
2021-06-08 22:31:18 +00:00
|
|
|
case LADDER:
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_INVISIBLE;
|
2021-12-21 19:04:37 +00:00
|
|
|
h->spr.cstat |= CSTAT_SPRITE_INVISIBLE;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case DESTRUCTO:
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_INVISIBLE;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case FIRE:
|
|
|
|
case BURNING:
|
2022-01-26 23:41:33 +00:00
|
|
|
if (!OwnerAc || !actorflag(OwnerAc, SFLAG_NOFLOORFIRE))
|
2022-08-20 18:11:01 +00:00
|
|
|
t->pos.Z = t->sectp->floorz;
|
2020-10-13 19:44:05 +00:00
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case WALLLIGHT3:
|
|
|
|
case WALLLIGHT1:
|
|
|
|
case RRTILE3668:
|
|
|
|
case RRTILE3795:
|
|
|
|
case RRTILE5035:
|
|
|
|
case RRTILE7505:
|
|
|
|
case RRTILE7506:
|
|
|
|
case RRTILE7533:
|
|
|
|
case RRTILE8216:
|
|
|
|
case RRTILE8218:
|
|
|
|
case RRTILE8220:
|
|
|
|
if (!isRRRA()) break;
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
case RRTILE1878:
|
|
|
|
case RRTILE1952:
|
|
|
|
case RRTILE1953:
|
|
|
|
case RRTILE1990:
|
|
|
|
case RRTILE2050:
|
|
|
|
case RRTILE2056:
|
|
|
|
case RRTILE2072:
|
|
|
|
case RRTILE2075:
|
|
|
|
case RRTILE2083:
|
|
|
|
case RRTILE2097:
|
|
|
|
case RRTILE2156:
|
|
|
|
case RRTILE2157:
|
|
|
|
case RRTILE2158:
|
|
|
|
case RRTILE2159:
|
|
|
|
case RRTILE2160:
|
|
|
|
case RRTILE2161:
|
|
|
|
case RRTILE2175:
|
|
|
|
case RRTILE2176:
|
|
|
|
case RRTILE2357:
|
|
|
|
case RRTILE2564:
|
|
|
|
case RRTILE2573:
|
|
|
|
case RRTILE2574:
|
|
|
|
case RRTILE2583:
|
|
|
|
case RRTILE2604:
|
|
|
|
case RRTILE2689:
|
|
|
|
case RRTILE2893:
|
|
|
|
case RRTILE2894:
|
|
|
|
case RRTILE2915:
|
|
|
|
case RRTILE2945:
|
|
|
|
case RRTILE2946:
|
|
|
|
case RRTILE2947:
|
|
|
|
case RRTILE2948:
|
|
|
|
case RRTILE2949:
|
|
|
|
case RRTILE2977:
|
|
|
|
case RRTILE2978:
|
|
|
|
case RRTILE3116:
|
|
|
|
case RRTILE3171:
|
|
|
|
case RRTILE3216:
|
|
|
|
case RRTILE3720:
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case CHEER:
|
|
|
|
if (!isRRRA()) break;
|
|
|
|
if (t->picnum >= CHEER + 102 && t->picnum <= CHEER + 151)
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case MINION:
|
|
|
|
if (!isRRRA()) break;
|
|
|
|
if (t->pal == 19)
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case BIKER:
|
|
|
|
if (!isRRRA()) break;
|
|
|
|
if (t->picnum >= BIKER + 54 && t->picnum <= BIKER + 58)
|
|
|
|
t->shade = -127;
|
|
|
|
else if (t->picnum >= BIKER + 84 && t->picnum <= BIKER + 88)
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case BILLYRAY:
|
|
|
|
case BILLYRAYSTAYPUT:
|
|
|
|
if (!isRRRA()) break;
|
|
|
|
if (t->picnum >= BILLYRAY + 5 && t->picnum <= BILLYRAY + 9)
|
|
|
|
t->shade = -127;
|
|
|
|
break;
|
|
|
|
case RRTILE2034:
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = RRTILE2034 + ((PlayClock >> 2) & 1);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case RRTILE2944:
|
|
|
|
t->shade = -127;
|
2021-02-18 10:46:36 +00:00
|
|
|
t->picnum = RRTILE2944 + ((PlayClock >> 2) & 4);
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case PLAYERONWATER:
|
|
|
|
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(t->angle, viewang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
|
2021-12-21 19:04:37 +00:00
|
|
|
t->picnum = h->spr.picnum + k + ((h->temp_data[0] < 4) * 5);
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc) t->shade = OwnerAc->spr.shade;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case MUD:
|
|
|
|
t->picnum = MUD + t1;
|
|
|
|
break;
|
|
|
|
case WATERSPLASH2:
|
|
|
|
t->picnum = WATERSPLASH2 + t1;
|
|
|
|
break;
|
|
|
|
case REACTOR2:
|
2021-12-21 19:04:37 +00:00
|
|
|
t->picnum = h->spr.picnum + h->temp_data[2];
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case SHELL:
|
2021-12-21 19:04:37 +00:00
|
|
|
t->picnum = h->spr.picnum + (h->temp_data[0] & 1);
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-10-13 19:44:05 +00:00
|
|
|
case SHOTGUNSHELL:
|
2021-12-18 16:35:01 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP | CSTAT_SPRITE_YFLIP;
|
2021-12-18 16:00:22 +00:00
|
|
|
if (h->temp_data[0] > 1) t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2021-12-18 16:35:01 +00:00
|
|
|
if (h->temp_data[0] > 2) t->cstat &= ~CSTAT_SPRITE_XFLIP | CSTAT_SPRITE_YFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
case FRAMEEFFECT1:
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc && OwnerAc->spr.statnum < MAXSTATUS)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc->spr.picnum == APLAYER)
|
2020-11-02 22:53:55 +00:00
|
|
|
if (ud.cameraactor == nullptr)
|
2022-09-01 15:26:46 +00:00
|
|
|
if (screenpeek == OwnerAc->PlayerIndex() && display_mirror == 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-04 18:08:50 +00:00
|
|
|
t->ownerActor = nullptr;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-12-21 21:28:13 +00:00
|
|
|
if ((OwnerAc->spr.cstat & CSTAT_SPRITE_INVISIBLE) == 0)
|
2020-10-13 19:44:05 +00:00
|
|
|
{
|
2021-12-21 21:28:13 +00:00
|
|
|
if (OwnerAc->spr.picnum == APLAYER)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->picnum = 1554;
|
|
|
|
else
|
2020-10-23 15:37:19 +00:00
|
|
|
t->picnum = OwnerAc->dispicnum;
|
2021-12-21 21:28:13 +00:00
|
|
|
t->pal = OwnerAc->spr.pal;
|
|
|
|
t->shade = OwnerAc->spr.shade;
|
2022-08-28 03:15:31 +00:00
|
|
|
t->angle = OwnerAc->spr.angle;
|
2021-12-21 21:28:13 +00:00
|
|
|
t->cstat = CSTAT_SPRITE_TRANSLUCENT | OwnerAc->spr.cstat;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CAMERA1:
|
|
|
|
case RAT:
|
2022-09-13 17:52:59 +00:00
|
|
|
k = angletorotation1(t->angle, viewang);
|
2020-10-13 19:44:05 +00:00
|
|
|
if (k > 4)
|
|
|
|
{
|
|
|
|
k = 8 - k;
|
2021-12-18 15:02:15 +00:00
|
|
|
t->cstat |= CSTAT_SPRITE_XFLIP;
|
2020-10-13 19:44:05 +00:00
|
|
|
}
|
2021-12-18 16:00:22 +00:00
|
|
|
else t->cstat &= ~CSTAT_SPRITE_XFLIP;
|
2021-12-21 19:04:37 +00:00
|
|
|
t->picnum = h->spr.picnum + k;
|
2020-10-13 19:44:05 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-10-23 18:38:45 +00:00
|
|
|
h->dispicnum = t->picnum;
|
2021-12-30 15:58:48 +00:00
|
|
|
if (t->sectp->floorpicnum == MIRROR)
|
2020-10-13 19:44:05 +00:00
|
|
|
t->xrepeat = t->yrepeat = 0;
|
|
|
|
}
|
2020-05-21 20:40:46 +00:00
|
|
|
}
|
|
|
|
END_DUKE_NS
|