455 lines
14 KiB
C++
455 lines
14 KiB
C++
/* 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 the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
See file, 'COPYING', for details.
|
|
*/
|
|
|
|
#include <common/bsputils.hh>
|
|
#include <cstddef>
|
|
|
|
#include <common/qvec.hh>
|
|
|
|
const dmodelh2_t *BSP_GetWorldModel(const mbsp_t *bsp)
|
|
{
|
|
// We only support .bsp's that have a world model
|
|
if (bsp->dmodels.size() < 1) {
|
|
FError("BSP has no models");
|
|
}
|
|
return &bsp->dmodels[0];
|
|
}
|
|
|
|
int Face_GetNum(const mbsp_t *bsp, const mface_t *f)
|
|
{
|
|
Q_assert(f != nullptr);
|
|
|
|
const ptrdiff_t diff = f - bsp->dfaces.data();
|
|
Q_assert(diff >= 0 && diff < bsp->dfaces.size());
|
|
|
|
return static_cast<int>(diff);
|
|
}
|
|
|
|
const bsp2_dnode_t *BSP_GetNode(const mbsp_t *bsp, int nodenum)
|
|
{
|
|
Q_assert(nodenum >= 0 && nodenum < bsp->dnodes.size());
|
|
return &bsp->dnodes[nodenum];
|
|
}
|
|
|
|
const mleaf_t *BSP_GetLeaf(const mbsp_t *bsp, int leafnum)
|
|
{
|
|
if (leafnum < 0 || leafnum >= bsp->dleafs.size()) {
|
|
Error("Corrupt BSP: leaf {} is out of bounds (bsp->numleafs = {})", leafnum, bsp->dleafs.size());
|
|
}
|
|
return &bsp->dleafs[leafnum];
|
|
}
|
|
|
|
const mleaf_t *BSP_GetLeafFromNodeNum(const mbsp_t *bsp, int nodenum)
|
|
{
|
|
const int leafnum = (-1 - nodenum);
|
|
return BSP_GetLeaf(bsp, leafnum);
|
|
}
|
|
|
|
const dplane_t *BSP_GetPlane(const mbsp_t *bsp, int planenum)
|
|
{
|
|
Q_assert(planenum >= 0 && planenum < bsp->dplanes.size());
|
|
return &bsp->dplanes[planenum];
|
|
}
|
|
|
|
const mface_t *BSP_GetFace(const mbsp_t *bsp, int fnum)
|
|
{
|
|
Q_assert(fnum >= 0 && fnum < bsp->dfaces.size());
|
|
return &bsp->dfaces[fnum];
|
|
}
|
|
|
|
const gtexinfo_t *BSP_GetTexinfo(const mbsp_t *bsp, int texinfo)
|
|
{
|
|
if (texinfo < 0) {
|
|
return nullptr;
|
|
}
|
|
if (texinfo >= bsp->texinfo.size()) {
|
|
return nullptr;
|
|
}
|
|
const gtexinfo_t *tex = &bsp->texinfo[texinfo];
|
|
return tex;
|
|
}
|
|
|
|
mface_t *BSP_GetFace(mbsp_t *bsp, int fnum)
|
|
{
|
|
Q_assert(fnum >= 0 && fnum < bsp->dfaces.size());
|
|
return &bsp->dfaces[fnum];
|
|
}
|
|
|
|
/* small helper that just retrieves the correct vertex from face->surfedge->edge lookups */
|
|
int Face_VertexAtIndex(const mbsp_t *bsp, const mface_t *f, int v)
|
|
{
|
|
Q_assert(v >= 0);
|
|
Q_assert(v < f->numedges);
|
|
|
|
int edge = f->firstedge + v;
|
|
edge = bsp->dsurfedges[edge];
|
|
if (edge < 0)
|
|
return bsp->dedges[-edge][1];
|
|
return bsp->dedges[edge][0];
|
|
}
|
|
|
|
const qvec3f &Vertex_GetPos(const mbsp_t *bsp, int num)
|
|
{
|
|
Q_assert(num >= 0 && num < bsp->dvertexes.size());
|
|
return bsp->dvertexes[num];
|
|
}
|
|
|
|
const qvec3f &Face_PointAtIndex(const mbsp_t *bsp, const mface_t *f, int v)
|
|
{
|
|
const int vertnum = Face_VertexAtIndex(bsp, f, v);
|
|
return Vertex_GetPos(bsp, vertnum);
|
|
}
|
|
|
|
qvec3d Face_Normal(const mbsp_t *bsp, const mface_t *f)
|
|
{
|
|
return Face_Plane(bsp, f).normal();
|
|
}
|
|
|
|
qplane3d Face_Plane(const mbsp_t *bsp, const mface_t *f)
|
|
{
|
|
Q_assert(f->planenum >= 0 && f->planenum < bsp->dplanes.size());
|
|
const dplane_t *dplane = &bsp->dplanes[f->planenum];
|
|
|
|
vec3_t planeNormal;
|
|
VectorCopy(dplane->normal, planeNormal); // convert from float->double if needed
|
|
|
|
plane_t result;
|
|
if (f->side) {
|
|
VectorSubtract(vec3_origin, planeNormal, result.normal);
|
|
result.dist = -dplane->dist;
|
|
} else {
|
|
VectorCopy(planeNormal, result.normal);
|
|
result.dist = dplane->dist;
|
|
}
|
|
return {result.normal, result.dist};
|
|
}
|
|
|
|
const gtexinfo_t *Face_Texinfo(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
if (face->texinfo < 0 || face->texinfo >= bsp->texinfo.size())
|
|
return nullptr;
|
|
|
|
return &bsp->texinfo[face->texinfo];
|
|
}
|
|
|
|
const miptex_t *Face_Miptex(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
// no miptex data (Q2 maps)
|
|
if (!bsp->dtex.textures.size())
|
|
return nullptr;
|
|
|
|
const gtexinfo_t *texinfo = Face_Texinfo(bsp, face);
|
|
if (texinfo == nullptr)
|
|
return nullptr;
|
|
|
|
const int32_t texnum = texinfo->miptex;
|
|
const miptex_t *miptex = &bsp->dtex.textures[texnum];
|
|
|
|
// sometimes the texture just wasn't written. including its name.
|
|
if (!miptex->name.size())
|
|
return nullptr;
|
|
|
|
return miptex;
|
|
}
|
|
|
|
const rgba_miptex_t *Face_RgbaMiptex(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
if (!bsp->drgbatexdata.size())
|
|
return nullptr;
|
|
|
|
const gtexinfo_t *texinfo = Face_Texinfo(bsp, face);
|
|
if (texinfo == nullptr)
|
|
return nullptr;
|
|
|
|
return &bsp->drgbatexdata[texinfo->miptex];
|
|
}
|
|
|
|
const std::string &Face_TextureName(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
const auto *miptex = Face_Miptex(bsp, face);
|
|
|
|
if (miptex)
|
|
return miptex->name;
|
|
|
|
const auto *rgbamiptex = Face_RgbaMiptex(bsp, face);
|
|
|
|
if (rgbamiptex)
|
|
return rgbamiptex->name;
|
|
|
|
// a bit silly, but...
|
|
static std::string empty_name;
|
|
return empty_name;
|
|
}
|
|
|
|
bool Face_IsLightmapped(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
const gtexinfo_t *texinfo = Face_Texinfo(bsp, face);
|
|
|
|
if (texinfo == nullptr)
|
|
return false;
|
|
|
|
return bsp->loadversion->game->surf_is_lightmapped(texinfo->flags);
|
|
}
|
|
|
|
const qvec3f &GetSurfaceVertexPoint(const mbsp_t *bsp, const mface_t *f, int v)
|
|
{
|
|
return bsp->dvertexes[Face_VertexAtIndex(bsp, f, v)];
|
|
}
|
|
|
|
static int TextureName_Contents(const std::string &texname)
|
|
{
|
|
if (!Q_strncasecmp(texname.data(), "sky", 3))
|
|
return CONTENTS_SKY;
|
|
else if (!Q_strncasecmp(texname.data(), "*lava", 5))
|
|
return CONTENTS_LAVA;
|
|
else if (!Q_strncasecmp(texname.data(), "*slime", 6))
|
|
return CONTENTS_SLIME;
|
|
else if (texname[0] == '*')
|
|
return CONTENTS_WATER;
|
|
|
|
return CONTENTS_SOLID;
|
|
}
|
|
|
|
bool // mxd
|
|
ContentsOrSurfaceFlags_IsTranslucent(const mbsp_t *bsp, const int contents_or_surf_flags)
|
|
{
|
|
if (bsp->loadversion->game->id == GAME_QUAKE_II)
|
|
return (contents_or_surf_flags & Q2_SURF_TRANSLUCENT) &&
|
|
((contents_or_surf_flags & Q2_SURF_TRANSLUCENT) !=
|
|
Q2_SURF_TRANSLUCENT); // Don't count KMQ2 fence flags combo as translucent
|
|
else
|
|
return contents_or_surf_flags == CONTENTS_WATER || contents_or_surf_flags == CONTENTS_LAVA ||
|
|
contents_or_surf_flags == CONTENTS_SLIME;
|
|
}
|
|
|
|
bool // mxd. Moved here from ltface.c (was Face_IsLiquid)
|
|
Face_IsTranslucent(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
return ContentsOrSurfaceFlags_IsTranslucent(bsp, Face_ContentsOrSurfaceFlags(bsp, face));
|
|
}
|
|
|
|
int // mxd. Returns CONTENTS_ value for Q1, Q2_SURF_ bitflags for Q2...
|
|
Face_ContentsOrSurfaceFlags(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
if (bsp->loadversion->game->id == GAME_QUAKE_II) {
|
|
const gtexinfo_t *info = Face_Texinfo(bsp, face);
|
|
return info->flags.native;
|
|
} else {
|
|
return TextureName_Contents(Face_TextureName(bsp, face));
|
|
}
|
|
}
|
|
|
|
const dmodelh2_t *BSP_DModelForModelString(const mbsp_t *bsp, const std::string &submodel_str)
|
|
{
|
|
int submodel = -1;
|
|
if (1 == sscanf(submodel_str.c_str(), "*%d", &submodel)) {
|
|
|
|
if (submodel < 0 || submodel >= bsp->dmodels.size()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return &bsp->dmodels[submodel];
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
vec_t Plane_Dist(const qvec3d &point, const dplane_t *plane)
|
|
{
|
|
switch (plane->type) {
|
|
case PLANE_X: return point[0] - plane->dist;
|
|
case PLANE_Y: return point[1] - plane->dist;
|
|
case PLANE_Z: return point[2] - plane->dist;
|
|
default: {
|
|
vec3_t planeNormal;
|
|
VectorCopy(plane->normal, planeNormal); // convert from float->double if needed
|
|
return DotProduct(point, planeNormal) - plane->dist;
|
|
}
|
|
}
|
|
}
|
|
|
|
static bool Light_PointInSolid_r(const mbsp_t *bsp, const int nodenum, const qvec3d &point)
|
|
{
|
|
if (nodenum < 0) {
|
|
const mleaf_t *leaf = BSP_GetLeafFromNodeNum(bsp, nodenum);
|
|
|
|
// mxd
|
|
if (bsp->loadversion->game->id == GAME_QUAKE_II) {
|
|
return leaf->contents & Q2_CONTENTS_SOLID;
|
|
}
|
|
|
|
return (leaf->contents == CONTENTS_SOLID || leaf->contents == CONTENTS_SKY);
|
|
}
|
|
|
|
const bsp2_dnode_t *node = &bsp->dnodes[nodenum];
|
|
const vec_t dist = Plane_Dist(point, &bsp->dplanes[node->planenum]);
|
|
|
|
if (dist > 0.1)
|
|
return Light_PointInSolid_r(bsp, node->children[0], point);
|
|
if (dist < -0.1)
|
|
return Light_PointInSolid_r(bsp, node->children[1], point);
|
|
|
|
// too close to the plane, check both sides
|
|
return Light_PointInSolid_r(bsp, node->children[0], point) || Light_PointInSolid_r(bsp, node->children[1], point);
|
|
}
|
|
|
|
// Tests hull 0 of the given model
|
|
bool Light_PointInSolid(const mbsp_t *bsp, const dmodelh2_t *model, const qvec3d &point)
|
|
{
|
|
// fast bounds check
|
|
for (int i = 0; i < 3; ++i) {
|
|
if (point[i] < model->mins[i])
|
|
return false;
|
|
if (point[i] > model->maxs[i])
|
|
return false;
|
|
}
|
|
|
|
return Light_PointInSolid_r(bsp, model->headnode[0], point);
|
|
}
|
|
|
|
bool Light_PointInWorld(const mbsp_t *bsp, const qvec3d &point)
|
|
{
|
|
return Light_PointInSolid(bsp, &bsp->dmodels[0], point);
|
|
}
|
|
|
|
static const mface_t *BSP_FindFaceAtPoint_r(
|
|
const mbsp_t *bsp, const int nodenum, const qvec3d &point, const qvec3d &wantedNormal)
|
|
{
|
|
if (nodenum < 0) {
|
|
// we're only interested in nodes, since faces are owned by nodes.
|
|
return nullptr;
|
|
}
|
|
|
|
const bsp2_dnode_t *node = &bsp->dnodes[nodenum];
|
|
const vec_t dist = Plane_Dist(point, &bsp->dplanes[node->planenum]);
|
|
|
|
if (dist > 0.1)
|
|
return BSP_FindFaceAtPoint_r(bsp, node->children[0], point, wantedNormal);
|
|
if (dist < -0.1)
|
|
return BSP_FindFaceAtPoint_r(bsp, node->children[1], point, wantedNormal);
|
|
|
|
// Point is close to this node plane. Check all faces on the plane.
|
|
for (int i = 0; i < node->numfaces; i++) {
|
|
const mface_t *face = BSP_GetFace(bsp, node->firstface + i);
|
|
// First check if it's facing the right way
|
|
qvec3d faceNormal = Face_Normal(bsp, face);
|
|
|
|
if (DotProduct(faceNormal, wantedNormal) < 0) {
|
|
// Opposite, so not the right face.
|
|
continue;
|
|
}
|
|
|
|
// Next test if it's within the boundaries of the face
|
|
plane_t *edgeplanes = Face_AllocInwardFacingEdgePlanes(bsp, face);
|
|
const bool insideFace = EdgePlanes_PointInside(face, edgeplanes, point);
|
|
delete[] edgeplanes;
|
|
|
|
// Found a match?
|
|
if (insideFace) {
|
|
return face;
|
|
}
|
|
}
|
|
|
|
// No match found on this plane. Check both sides of the tree.
|
|
const mface_t *side0Match = BSP_FindFaceAtPoint_r(bsp, node->children[0], point, wantedNormal);
|
|
if (side0Match != nullptr) {
|
|
return side0Match;
|
|
} else {
|
|
return BSP_FindFaceAtPoint_r(bsp, node->children[1], point, wantedNormal);
|
|
}
|
|
}
|
|
|
|
const mface_t *BSP_FindFaceAtPoint(
|
|
const mbsp_t *bsp, const dmodelh2_t *model, const qvec3d &point, const qvec3d &wantedNormal)
|
|
{
|
|
return BSP_FindFaceAtPoint_r(bsp, model->headnode[0], point, wantedNormal);
|
|
}
|
|
|
|
plane_t *Face_AllocInwardFacingEdgePlanes(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
plane_t *out = new plane_t[face->numedges];
|
|
|
|
const qplane3d faceplane = Face_Plane(bsp, face);
|
|
for (int i = 0; i < face->numedges; i++) {
|
|
plane_t *dest = &out[i];
|
|
|
|
const qvec3d v0 = GetSurfaceVertexPoint(bsp, face, i);
|
|
const qvec3d v1 = GetSurfaceVertexPoint(bsp, face, (i + 1) % face->numedges);
|
|
|
|
vec3_t edgevec;
|
|
VectorSubtract(v1, v0, edgevec);
|
|
VectorNormalize(edgevec);
|
|
|
|
CrossProduct(edgevec, faceplane.normal(), dest->normal);
|
|
dest->dist = DotProduct(dest->normal, v0);
|
|
}
|
|
|
|
return out;
|
|
}
|
|
|
|
bool EdgePlanes_PointInside(const mface_t *face, const plane_t *edgeplanes, const qvec3d &point)
|
|
{
|
|
for (int i = 0; i < face->numedges; i++) {
|
|
const vec_t planedist = DotProduct(point, edgeplanes[i].normal) - edgeplanes[i].dist;
|
|
if (planedist < 0) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// glm stuff
|
|
std::vector<qvec3f> GLM_FacePoints(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
std::vector<qvec3f> points;
|
|
|
|
points.reserve(face->numedges);
|
|
|
|
for (int j = 0; j < face->numedges; j++) {
|
|
points.push_back(Face_PointAtIndex(bsp, face, j));
|
|
}
|
|
|
|
return points;
|
|
}
|
|
|
|
qvec3f Face_Centroid(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
// FIXME: GLM_PolyCentroid has a assertion that there are >= 3 points
|
|
return GLM_PolyCentroid(GLM_FacePoints(bsp, face));
|
|
}
|
|
|
|
void Face_DebugPrint(const mbsp_t *bsp, const mface_t *face)
|
|
{
|
|
const gtexinfo_t *tex = &bsp->texinfo[face->texinfo];
|
|
const std::string &texname = Face_TextureName(bsp, face);
|
|
|
|
LogPrint("face {}, texture '{}', {} edges...\n"
|
|
" vectors ({:3.3}, {:3.3}, {:3.3}) ({:3.3})\n"
|
|
" ({:3.3}, {:3.3}, {:3.3}) ({:3.3})\n",
|
|
Face_GetNum(bsp, face), texname, face->numedges, tex->vecs[0][0], tex->vecs[0][1], tex->vecs[0][2],
|
|
tex->vecs[0][3], tex->vecs[1][0], tex->vecs[1][1], tex->vecs[1][2], tex->vecs[1][3]);
|
|
|
|
for (int i = 0; i < face->numedges; i++) {
|
|
int edge = bsp->dsurfedges[face->firstedge + i];
|
|
int vert = Face_VertexAtIndex(bsp, face, i);
|
|
const qvec3f &point = GetSurfaceVertexPoint(bsp, face, i);
|
|
LogPrint("{} {:3} ({:3.3}, {:3.3}, {:3.3}) :: edge {}\n", i ? " " : " verts ", vert, point[0],
|
|
point[1], point[2], edge);
|
|
}
|
|
}
|