mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Polymost: make spriteext[].{x,y,z}off independent of xdimen/viewingrange/aspect.
The offsets (that will translate the axes for .pitch/.roll rotation) were calculated improperly with screen sizes other than 1280 x 1024 and were dependent on other related variables. The fix proceeded empirically, i.e. mostly trial, error, and some educated guesswork. (It's telling that the magic constant 1280 is needed.) A test for Lunatic is added to test.lua that will rotate SEENINES. Bug pointed out by Mblackwell. git-svn-id: https://svn.eduke32.com/eduke32@4058 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1baf9fa275
commit
694975b2f5
2 changed files with 32 additions and 8 deletions
|
@ -2024,6 +2024,7 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
|||
// dereferenced unconditionally below anyway.
|
||||
const spriteext_t *const sext = ((unsigned)owner < MAXSPRITES+MAXUNIQHUDID) ? &spriteext[owner] : NULL;
|
||||
const uint8_t lpal = ((unsigned)owner < MAXSPRITES) ? sprite[tspr->owner].pal : tspr->pal;
|
||||
const int32_t sizyrep = tilesizy[tspr->picnum]*tspr->yrepeat;
|
||||
|
||||
if (r_vbos && (m->vbos == NULL))
|
||||
mdloadvbos(m);
|
||||
|
@ -2076,13 +2077,14 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
|||
|
||||
// Parkar: Moved up to be able to use k0 for the y-flipping code
|
||||
k0 = (float)tspr->z;
|
||||
if ((globalorientation&128) && !((globalorientation&48)==32)) k0 += (float)((tilesizy[tspr->picnum]*tspr->yrepeat)<<1);
|
||||
if ((globalorientation&128) && !((globalorientation&48)==32))
|
||||
k0 += (float)(sizyrep<<1);
|
||||
|
||||
// Parkar: Changed to use the same method as centeroriented sprites
|
||||
if (globalorientation&8) //y-flipping
|
||||
{
|
||||
m0.z = -m0.z; m1.z = -m1.z; a0.z = -a0.z;
|
||||
k0 -= (float)((tilesizy[tspr->picnum]*tspr->yrepeat)<<2);
|
||||
k0 -= (float)(sizyrep<<2);
|
||||
}
|
||||
if (globalorientation&4) { m0.y = -m0.y; m1.y = -m1.y; a0.y = -a0.y; } //x-flipping
|
||||
|
||||
|
@ -2102,9 +2104,11 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
|||
m0.z = -m0.z; m1.z = -m1.z; a0.z = -a0.z;
|
||||
m0.y = -m0.y; m1.y = -m1.y; a0.y = -a0.y;
|
||||
f = a0.x; a0.x = a0.z; a0.z = f;
|
||||
k1 += (float)((tilesizy[tspr->picnum]*tspr->yrepeat)>>3);
|
||||
k1 += (float)(sizyrep>>3);
|
||||
}
|
||||
|
||||
// Note: These SCREEN_FACTORS will be neutralized in axes offset
|
||||
// calculations below again, but are needed for the base offsets.
|
||||
f = (65536.0*512.0)/((float)xdimen*viewingrange);
|
||||
g = 32.0/((float)xdimen*gxyaspect);
|
||||
m0.y *= f; m1.y *= f; a0.y = (((float)(tspr->x-globalposx))/ 1024.0 + a0.y)*f;
|
||||
|
@ -2187,15 +2191,15 @@ static int32_t md3draw(md3model_t *m, const spritetype *tspr)
|
|||
if (sext->pitch || sext->roll || MFLAGS_NOCONV(m))
|
||||
{
|
||||
if (sext->xoff)
|
||||
a0.x = (float)(sext->xoff / (2560 * (m0.x+m1.x)));
|
||||
a0.x = (float)(sext->xoff / (2560 * (m0.x+m1.x) * ((float)xdimen*viewingrange)/(65536.0*1280.0)));
|
||||
else
|
||||
a0.x = 0;
|
||||
if (sext->yoff)
|
||||
a0.y = (float)(sext->yoff / (2560 * (m0.x+m1.x)));
|
||||
if (sext->yoff) // Compare with SCREEN_FACTORS above
|
||||
a0.y = (float)(sext->yoff / (2560 * (m0.x+m1.x) * ((float)xdimen*viewingrange)/(65536.0*1280.0)));
|
||||
else
|
||||
a0.y = 0;
|
||||
if ((sext->zoff) && !(tspr->cstat&CSTAT_SPRITE_MDHACK))
|
||||
a0.z = (float)(sext->zoff / (655360 * (m0.z+m1.z)));
|
||||
if ((sext->zoff) && !(tspr->cstat&CSTAT_SPRITE_MDHACK)) // Compare with SCREEN_FACTORS above
|
||||
a0.z = (float)(sext->zoff / (655360 * (m0.z+m1.z) * (gxyaspect*xdimen/1280.0)));
|
||||
else
|
||||
a0.z = 0;
|
||||
k0 = (float)sintable[(sext->pitch+512)&2047] / 16384.0;
|
||||
|
|
|
@ -250,6 +250,26 @@ gameevent
|
|||
local D = require("CON.DEFS")
|
||||
local WEAPON = gv.WEAPON
|
||||
|
||||
-- Bad hack to test out pitch/roll: EVENT_GAME is discouraged from Lunatic.
|
||||
local PITCH_PICNUM = { [D.SEENINE]=true, }
|
||||
gameevent{ "GAME",
|
||||
function(aci)
|
||||
local spr = sprite[aci]
|
||||
if (PITCH_PICNUM[spr.picnum]) then
|
||||
local height = spr:getheightofs()
|
||||
|
||||
local sexy = spriteext[aci]
|
||||
sexy.pitch = gv.totalclock
|
||||
sexy.mdoff.x = -height/16 -- test xoff + pitch
|
||||
sexy.mdoff.z = -height -- test zoff + pitch
|
||||
|
||||
-- Test roll + yoff
|
||||
sexy.roll = gv.totalclock
|
||||
sexy.mdoff.y = -height/16
|
||||
end
|
||||
end
|
||||
}
|
||||
|
||||
-- test event chaining
|
||||
gameevent
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue