2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-08-25 02:47:11 +00:00
|
|
|
sw_rsprite.c
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 04:50:53 +00:00
|
|
|
(description)
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
This program 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
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-05-15 04:50:53 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-20 03:54:55 +00:00
|
|
|
#include "QF/render.h"
|
2001-05-15 04:50:53 +00:00
|
|
|
#include "QF/sys.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2021-07-24 05:19:52 +00:00
|
|
|
#include "QF/scene/entity.h"
|
|
|
|
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "r_internal.h"
|
2001-05-10 06:01:11 +00:00
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
static int clip_current;
|
|
|
|
static vec5_t clip_verts[2][MAXWORKINGVERTS];
|
|
|
|
static int sprite_width, sprite_height;
|
|
|
|
|
|
|
|
spritedesc_t r_spritedesc;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2022-03-30 14:50:12 +00:00
|
|
|
R_RotateSprite (vec4f_t relvieworg, float beamlength, vec3_t org)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
vec3_t vec;
|
|
|
|
|
2022-03-11 04:10:20 +00:00
|
|
|
VectorCopy (relvieworg, org);
|
2001-02-19 21:15:25 +00:00
|
|
|
if (beamlength == 0.0)
|
|
|
|
return;
|
|
|
|
|
[renderer] Clean up use of vup/vright/vpn
This moves the common camera setup code out of the individual drivers,
and completely removes vup/vright/vpn from the non-software renderers.
This has highlighted the craziness around AngleVectors with it putting
+X forward, -Y right and +Z up. The main issue with this is it requires
a 90 degree pre-rotation about the Z axis to get the camera pointing in
the right direction, and that's for the native sw renderer (vulkan needs
a 90 degree pre-rotation about X, and gl and glsl need to invert an
axis, too), though at least it's just a matrix swizzle and vector
negation. However, it does mean the camera matrices can't be used
directly.
Also rename vpn to vfwd (still abbreviated, but fwd is much clearer in
meaning (to me, at least) than pn (plane normal, I guess, but which
way?)).
2022-03-14 00:34:24 +00:00
|
|
|
VectorScale (r_spritedesc.vfwd, -beamlength, vec);
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorAdd (r_entorigin, vec, r_entorigin);
|
2022-03-11 04:10:20 +00:00
|
|
|
VectorSubtract (relvieworg, vec, org);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-05-15 04:50:53 +00:00
|
|
|
R_ClipSpriteFace
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 04:50:53 +00:00
|
|
|
Clips the winding at clip_verts[clip_current] and changes clip_current
|
|
|
|
Throws out the back side
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2003-01-06 18:28:13 +00:00
|
|
|
static int
|
2001-02-26 06:48:02 +00:00
|
|
|
R_ClipSpriteFace (int nump, clipplane_t *pclipplane)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
int i, outcount;
|
|
|
|
float dists[MAXWORKINGVERTS + 1];
|
|
|
|
float frac, clipdist, *pclipnormal;
|
|
|
|
float *in, *instep, *outstep, *vert2;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
clipdist = pclipplane->dist;
|
|
|
|
pclipnormal = pclipplane->normal;
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// calc dists
|
2001-02-26 06:48:02 +00:00
|
|
|
if (clip_current) {
|
2001-02-19 21:15:25 +00:00
|
|
|
in = clip_verts[1][0];
|
|
|
|
outstep = clip_verts[0][0];
|
|
|
|
clip_current = 0;
|
2001-02-26 06:48:02 +00:00
|
|
|
} else {
|
2001-02-19 21:15:25 +00:00
|
|
|
in = clip_verts[0][0];
|
|
|
|
outstep = clip_verts[1][0];
|
|
|
|
clip_current = 1;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
instep = in;
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < nump; i++, instep += sizeof (vec5_t) / sizeof (float)) {
|
2001-02-19 21:15:25 +00:00
|
|
|
dists[i] = DotProduct (instep, pclipnormal) - clipdist;
|
|
|
|
}
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// handle wraparound case
|
2001-02-19 21:15:25 +00:00
|
|
|
dists[nump] = dists[0];
|
|
|
|
memcpy (instep, in, sizeof (vec5_t));
|
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// clip the winding
|
2001-02-19 21:15:25 +00:00
|
|
|
instep = in;
|
|
|
|
outcount = 0;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < nump; i++, instep += sizeof (vec5_t) / sizeof (float)) {
|
|
|
|
if (dists[i] >= 0) {
|
2001-02-19 21:15:25 +00:00
|
|
|
memcpy (outstep, instep, sizeof (vec5_t));
|
|
|
|
outstep += sizeof (vec5_t) / sizeof (float);
|
|
|
|
outcount++;
|
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (dists[i] == 0 || dists[i + 1] == 0)
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2003-01-06 19:05:51 +00:00
|
|
|
#if __APPLE_CC__ <= 1175
|
2002-12-20 23:49:11 +00:00
|
|
|
// bug in gcc (GCC) 3.1 20020420 (prerelease) for darwin
|
|
|
|
if ((dists[i] > 0) && (dists[i + 1] > 0))
|
|
|
|
continue;
|
|
|
|
if ((dists[i] <= 0) && (dists[i + 1] <= 0))
|
|
|
|
continue;
|
|
|
|
#else
|
2001-02-26 06:48:02 +00:00
|
|
|
if ((dists[i] > 0) == (dists[i + 1] > 0))
|
2001-02-19 21:15:25 +00:00
|
|
|
continue;
|
2002-12-20 23:49:11 +00:00
|
|
|
#endif
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
// split it into a new vertex
|
|
|
|
frac = dists[i] / (dists[i] - dists[i + 1]);
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
vert2 = instep + sizeof (vec5_t) / sizeof (float);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
|
|
|
outstep[0] = instep[0] + frac * (vert2[0] - instep[0]);
|
|
|
|
outstep[1] = instep[1] + frac * (vert2[1] - instep[1]);
|
|
|
|
outstep[2] = instep[2] + frac * (vert2[2] - instep[2]);
|
|
|
|
outstep[3] = instep[3] + frac * (vert2[3] - instep[3]);
|
|
|
|
outstep[4] = instep[4] + frac * (vert2[4] - instep[4]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
outstep += sizeof (vec5_t) / sizeof (float);
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
outcount++;
|
2001-02-26 06:48:02 +00:00
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
return outcount;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-06 18:28:13 +00:00
|
|
|
static void
|
2022-03-11 04:10:20 +00:00
|
|
|
R_SetupAndDrawSprite (const vec3_t relvieworg)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
int i, nump;
|
|
|
|
float dot, scale, *pv;
|
|
|
|
vec5_t *pverts;
|
|
|
|
vec3_t left, up, right, down, transformed, local;
|
|
|
|
emitpoint_t outverts[MAXWORKINGVERTS + 1], *pout;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
[renderer] Clean up use of vup/vright/vpn
This moves the common camera setup code out of the individual drivers,
and completely removes vup/vright/vpn from the non-software renderers.
This has highlighted the craziness around AngleVectors with it putting
+X forward, -Y right and +Z up. The main issue with this is it requires
a 90 degree pre-rotation about the Z axis to get the camera pointing in
the right direction, and that's for the native sw renderer (vulkan needs
a 90 degree pre-rotation about X, and gl and glsl need to invert an
axis, too), though at least it's just a matrix swizzle and vector
negation. However, it does mean the camera matrices can't be used
directly.
Also rename vpn to vfwd (still abbreviated, but fwd is much clearer in
meaning (to me, at least) than pn (plane normal, I guess, but which
way?)).
2022-03-14 00:34:24 +00:00
|
|
|
dot = DotProduct (r_spritedesc.vfwd, relvieworg);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// backface cull
|
2001-02-19 21:15:25 +00:00
|
|
|
if (dot >= 0)
|
|
|
|
return;
|
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// build the sprite poster in worldspace
|
2001-02-19 21:15:25 +00:00
|
|
|
VectorScale (r_spritedesc.vright, r_spritedesc.pspriteframe->right, right);
|
|
|
|
VectorScale (r_spritedesc.vup, r_spritedesc.pspriteframe->up, up);
|
|
|
|
VectorScale (r_spritedesc.vright, r_spritedesc.pspriteframe->left, left);
|
|
|
|
VectorScale (r_spritedesc.vup, r_spritedesc.pspriteframe->down, down);
|
|
|
|
|
|
|
|
pverts = clip_verts[0];
|
|
|
|
|
|
|
|
pverts[0][0] = r_entorigin[0] + up[0] + left[0];
|
|
|
|
pverts[0][1] = r_entorigin[1] + up[1] + left[1];
|
|
|
|
pverts[0][2] = r_entorigin[2] + up[2] + left[2];
|
|
|
|
pverts[0][3] = 0;
|
|
|
|
pverts[0][4] = 0;
|
|
|
|
|
|
|
|
pverts[1][0] = r_entorigin[0] + up[0] + right[0];
|
|
|
|
pverts[1][1] = r_entorigin[1] + up[1] + right[1];
|
|
|
|
pverts[1][2] = r_entorigin[2] + up[2] + right[2];
|
|
|
|
pverts[1][3] = sprite_width;
|
|
|
|
pverts[1][4] = 0;
|
|
|
|
|
|
|
|
pverts[2][0] = r_entorigin[0] + down[0] + right[0];
|
|
|
|
pverts[2][1] = r_entorigin[1] + down[1] + right[1];
|
|
|
|
pverts[2][2] = r_entorigin[2] + down[2] + right[2];
|
|
|
|
pverts[2][3] = sprite_width;
|
|
|
|
pverts[2][4] = sprite_height;
|
|
|
|
|
|
|
|
pverts[3][0] = r_entorigin[0] + down[0] + left[0];
|
|
|
|
pverts[3][1] = r_entorigin[1] + down[1] + left[1];
|
|
|
|
pverts[3][2] = r_entorigin[2] + down[2] + left[2];
|
|
|
|
pverts[3][3] = 0;
|
|
|
|
pverts[3][4] = sprite_height;
|
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// clip to the frustum in worldspace
|
2001-02-19 21:15:25 +00:00
|
|
|
nump = 4;
|
|
|
|
clip_current = 0;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < 4; i++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
nump = R_ClipSpriteFace (nump, &view_clipplanes[i]);
|
|
|
|
if (nump < 3)
|
|
|
|
return;
|
|
|
|
if (nump >= MAXWORKINGVERTS)
|
2001-02-26 06:48:02 +00:00
|
|
|
Sys_Error ("R_SetupAndDrawSprite: too many points");
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// transform vertices into viewspace and project
|
2001-02-19 21:15:25 +00:00
|
|
|
pv = &clip_verts[clip_current][0][0];
|
|
|
|
r_spritedesc.nearzi = -999999;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
for (i = 0; i < nump; i++) {
|
[renderer] Clean up use of vup/vright/vpn
This moves the common camera setup code out of the individual drivers,
and completely removes vup/vright/vpn from the non-software renderers.
This has highlighted the craziness around AngleVectors with it putting
+X forward, -Y right and +Z up. The main issue with this is it requires
a 90 degree pre-rotation about the Z axis to get the camera pointing in
the right direction, and that's for the native sw renderer (vulkan needs
a 90 degree pre-rotation about X, and gl and glsl need to invert an
axis, too), though at least it's just a matrix swizzle and vector
negation. However, it does mean the camera matrices can't be used
directly.
Also rename vpn to vfwd (still abbreviated, but fwd is much clearer in
meaning (to me, at least) than pn (plane normal, I guess, but which
way?)).
2022-03-14 00:34:24 +00:00
|
|
|
VectorSubtract (pv, r_refdef.frame.position, local);
|
2001-02-19 21:15:25 +00:00
|
|
|
TransformVector (local, transformed);
|
|
|
|
|
|
|
|
if (transformed[2] < NEAR_CLIP)
|
|
|
|
transformed[2] = NEAR_CLIP;
|
|
|
|
|
|
|
|
pout = &outverts[i];
|
|
|
|
pout->zi = 1.0 / transformed[2];
|
|
|
|
if (pout->zi > r_spritedesc.nearzi)
|
|
|
|
r_spritedesc.nearzi = pout->zi;
|
|
|
|
|
|
|
|
pout->s = pv[3];
|
|
|
|
pout->t = pv[4];
|
2001-02-26 06:48:02 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
scale = xscale * pout->zi;
|
|
|
|
pout->u = (xcenter + scale * transformed[0]);
|
|
|
|
|
|
|
|
scale = yscale * pout->zi;
|
|
|
|
pout->v = (ycenter - scale * transformed[1]);
|
|
|
|
|
|
|
|
pv += sizeof (vec5_t) / sizeof (*pv);
|
|
|
|
}
|
|
|
|
|
2001-05-15 21:13:07 +00:00
|
|
|
// draw it
|
2001-02-19 21:15:25 +00:00
|
|
|
r_spritedesc.nump = nump;
|
|
|
|
r_spritedesc.pverts = outverts;
|
2022-03-11 04:10:20 +00:00
|
|
|
D_DrawSprite (relvieworg);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
void
|
2022-03-11 06:07:38 +00:00
|
|
|
R_DrawSprite (entity_t *ent)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2022-03-11 06:07:38 +00:00
|
|
|
msprite_t *sprite = ent->renderer.model->cache.data;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-03-30 14:50:12 +00:00
|
|
|
vec4f_t cameravec = r_refdef.frame.position - r_entorigin;
|
2022-03-11 06:07:38 +00:00
|
|
|
|
|
|
|
r_spritedesc.pspriteframe = R_GetSpriteFrame (sprite, &ent->animation);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
sprite_width = r_spritedesc.pspriteframe->width;
|
|
|
|
sprite_height = r_spritedesc.pspriteframe->height;
|
|
|
|
|
2022-03-30 14:50:12 +00:00
|
|
|
vec4f_t up = {};
|
|
|
|
vec4f_t right = {};
|
|
|
|
vec4f_t fwd = {};
|
|
|
|
if (!R_BillboardFrame (ent, sprite->type, cameravec, &up, &right, &fwd)) {
|
2021-12-10 05:34:04 +00:00
|
|
|
// the orientation is undefined so can't draw the sprite
|
|
|
|
return;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2022-03-30 14:50:12 +00:00
|
|
|
VectorCopy (up, r_spritedesc.vup);//FIXME
|
|
|
|
VectorCopy (right, r_spritedesc.vright);
|
|
|
|
VectorCopy (fwd, r_spritedesc.vfwd);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-03-11 04:10:20 +00:00
|
|
|
vec3_t org;
|
2022-03-30 14:50:12 +00:00
|
|
|
R_RotateSprite (cameravec, sprite->beamlength, org);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2022-03-11 04:10:20 +00:00
|
|
|
R_SetupAndDrawSprite (org);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|