2021-12-10 05:34:04 +00:00
|
|
|
/*
|
|
|
|
r_billboard.c
|
|
|
|
|
|
|
|
Billboard frame setup
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include "QF/render.h"
|
|
|
|
#include "QF/sys.h"
|
|
|
|
|
|
|
|
#include "QF/scene/entity.h"
|
|
|
|
|
|
|
|
#include "r_internal.h"
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
R_BillboardFrame (entity_t *ent, int orientation, const vec3_t cameravec,
|
[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
|
|
|
vec3_t bbup, vec3_t bbright, vec3_t bbfwd)
|
2021-12-10 05:34:04 +00:00
|
|
|
{
|
|
|
|
vec3_t tvec;
|
|
|
|
float dot;
|
|
|
|
|
|
|
|
switch (orientation) {
|
|
|
|
case SPR_FACING_UPRIGHT:
|
2021-12-10 05:54:18 +00:00
|
|
|
// the billboard has its up vector parallel with world up, and
|
|
|
|
// its right vector perpendicular to cameravec.
|
|
|
|
// Undefined if the camera is too close to the entity.
|
2021-12-10 05:34:04 +00:00
|
|
|
VectorNegate (cameravec, tvec);
|
|
|
|
VectorNormalize (tvec);
|
2021-12-10 05:54:18 +00:00
|
|
|
dot = tvec[2]; // DotProduct (tvec, world up)
|
2021-12-10 05:34:04 +00:00
|
|
|
if ((dot > 0.999848) || (dot < -0.999848)) // cos(1 degree)
|
|
|
|
return 0;
|
|
|
|
VectorSet (0, 0, 1, bbup);
|
|
|
|
//CrossProduct(bbup, -cameravec, bbright)
|
|
|
|
VectorSet (tvec[1], -tvec[0], 0, bbright);
|
|
|
|
VectorNormalize (bbright);
|
[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
|
|
|
//CrossProduct (bbright, bbup, bbfwd)
|
|
|
|
VectorSet (-bbright[1], bbright[0], 0, bbfwd);
|
2021-12-10 05:34:04 +00:00
|
|
|
break;
|
|
|
|
case SPR_VP_PARALLEL:
|
2021-12-10 05:54:18 +00:00
|
|
|
// the billboard always has the same orientation as the camera
|
[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
|
|
|
VectorCopy (r_refdef.frame.up, bbup);
|
|
|
|
VectorCopy (r_refdef.frame.right, bbright);
|
|
|
|
VectorCopy (r_refdef.frame.forward, bbfwd);
|
2021-12-10 05:34:04 +00:00
|
|
|
break;
|
|
|
|
case SPR_VP_PARALLEL_UPRIGHT:
|
2021-12-10 05:54:18 +00:00
|
|
|
// the billboar has its up vector parallel with world up, and
|
|
|
|
// its right vector parallel with the view plane.
|
|
|
|
// Undefined if the camera is looking straight up or down.
|
[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 = r_refdef.frame.forward[2];
|
2021-12-10 05:54:18 +00:00
|
|
|
if ((dot > 0.999848) || (dot < -0.999848)) // cos(1 degree)
|
2021-12-10 05:34:04 +00:00
|
|
|
return 0;
|
|
|
|
VectorSet (0, 0, 1, bbup);
|
[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
|
|
|
VectorSet (r_refdef.frame.forward[1], -r_refdef.frame.forward[0], 0, bbright);
|
2021-12-10 05:34:04 +00:00
|
|
|
VectorNormalize (bbright);
|
[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
|
|
|
VectorSet (-bbright[1], bbright[0], 0, bbfwd);
|
2021-12-10 05:34:04 +00:00
|
|
|
break;
|
|
|
|
case SPR_ORIENTED:
|
|
|
|
{
|
2021-12-10 05:54:18 +00:00
|
|
|
// The billboard's orientation is fully specified by the
|
|
|
|
// entity's orientation.
|
2021-12-10 05:34:04 +00:00
|
|
|
mat4f_t mat;
|
|
|
|
Transform_GetWorldMatrix (ent->transform, mat);
|
[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
|
|
|
VectorCopy (mat[0], bbfwd);
|
2021-12-10 05:34:04 +00:00
|
|
|
VectorNegate (mat[1], bbright);
|
|
|
|
VectorCopy (mat[2], bbup);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SPR_VP_PARALLEL_ORIENTED:
|
|
|
|
{
|
2021-12-10 05:54:18 +00:00
|
|
|
// The billboard is rotated relative to the camera using
|
|
|
|
// the entity's local rotation.
|
[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
|
|
|
mat4f_t entmat;
|
|
|
|
mat4f_t spmat;
|
|
|
|
Transform_GetLocalMatrix (ent->transform, entmat);
|
2021-12-10 05:34:04 +00:00
|
|
|
// FIXME needs proper testing (need to find, make, or fake a
|
|
|
|
// parallel oriented sprite)
|
[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
|
|
|
mmulf (spmat, r_refdef.camera, entmat);
|
|
|
|
VectorCopy (spmat[0], bbfwd);
|
|
|
|
VectorNegate (spmat[1], bbright);
|
|
|
|
VectorCopy (spmat[1], bbup);
|
2021-12-10 05:34:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
Sys_Error ("R_BillboardFrame: Bad orientation %d", orientation);
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|