dxx-rebirth/common/3d/clipper.cpp

192 lines
4.5 KiB
C++
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
2006-03-20 17:12:09 +00:00
#include "3d.h"
#include "globvars.h"
#include "clipper.h"
#include "dxxerror.h"
2006-03-20 17:12:09 +00:00
2014-11-13 03:19:45 +00:00
#include "compiler-exchange.h"
2006-03-20 17:12:09 +00:00
int free_point_num=0;
g3s_point temp_points[MAX_POINTS_IN_POLY];
g3s_point *free_points[MAX_POINTS_IN_POLY];
void init_free_points(void)
{
for (int i=0;i<MAX_POINTS_IN_POLY;i++)
2006-03-20 17:12:09 +00:00
free_points[i] = &temp_points[i];
}
2014-11-16 19:14:51 +00:00
static g3s_point &get_temp_point()
2006-03-20 17:12:09 +00:00
{
Assert (free_point_num < MAX_POINTS_IN_POLY );
2014-11-16 19:14:51 +00:00
auto &p = *free_points[free_point_num++];
p.p3_flags = PF_TEMP_POINT;
2006-03-20 17:12:09 +00:00
return p;
}
void free_temp_point(g3s_point *p)
{
Assert(p->p3_flags & PF_TEMP_POINT);
free_points[--free_point_num] = p;
p->p3_flags &= ~PF_TEMP_POINT;
}
//clips an edge against one plane.
2014-11-16 19:14:51 +00:00
static g3s_point &clip_edge(int plane_flag,g3s_point *on_pnt,g3s_point *off_pnt)
2006-03-20 17:12:09 +00:00
{
fix psx_ratio;
fix a,b,kn,kd;
//compute clipping value k = (xs-zs) / (xs-xe-zs+ze)
//use x or y as appropriate, and negate x/y value as appropriate
if (plane_flag & (CC_OFF_RIGHT | CC_OFF_LEFT)) {
a = on_pnt->p3_x;
b = off_pnt->p3_x;
}
else {
a = on_pnt->p3_y;
b = off_pnt->p3_y;
}
if (plane_flag & (CC_OFF_LEFT | CC_OFF_BOT)) {
a = -a;
b = -b;
}
kn = a - on_pnt->p3_z; //xs-zs
kd = kn - b + off_pnt->p3_z; //xs-zs-xe+ze
2014-11-16 19:14:51 +00:00
auto &tmp = get_temp_point();
2006-03-20 17:12:09 +00:00
psx_ratio = fixdiv( kn, kd );
2014-11-16 19:14:51 +00:00
tmp.p3_x = on_pnt->p3_x + fixmul( (off_pnt->p3_x-on_pnt->p3_x), psx_ratio);
tmp.p3_y = on_pnt->p3_y + fixmul( (off_pnt->p3_y-on_pnt->p3_y), psx_ratio);
2006-03-20 17:12:09 +00:00
if (plane_flag & (CC_OFF_TOP|CC_OFF_BOT))
2014-11-16 19:14:51 +00:00
tmp.p3_z = tmp.p3_y;
2006-03-20 17:12:09 +00:00
else
2014-11-16 19:14:51 +00:00
tmp.p3_z = tmp.p3_x;
2006-03-20 17:12:09 +00:00
if (plane_flag & (CC_OFF_LEFT|CC_OFF_BOT))
2014-11-16 19:14:51 +00:00
tmp.p3_z = -tmp.p3_z;
2006-03-20 17:12:09 +00:00
if (on_pnt->p3_flags & PF_UVS) {
// PSX_HACK!!!!
2014-11-16 19:14:51 +00:00
// tmp.p3_u = on_pnt->p3_u + fixmuldiv(off_pnt->p3_u-on_pnt->p3_u,kn,kd);
// tmp.p3_v = on_pnt->p3_v + fixmuldiv(off_pnt->p3_v-on_pnt->p3_v,kn,kd);
tmp.p3_u = on_pnt->p3_u + fixmul((off_pnt->p3_u-on_pnt->p3_u), psx_ratio);
tmp.p3_v = on_pnt->p3_v + fixmul((off_pnt->p3_v-on_pnt->p3_v), psx_ratio);
2006-03-20 17:12:09 +00:00
2014-11-16 19:14:51 +00:00
tmp.p3_flags |= PF_UVS;
2006-03-20 17:12:09 +00:00
}
if (on_pnt->p3_flags & PF_LS) {
// PSX_HACK
2014-11-16 19:14:51 +00:00
// tmp.p3_r = on_pnt->p3_r + fixmuldiv(off_pnt->p3_r-on_pnt->p3_r,kn,kd);
// tmp.p3_g = on_pnt->p3_g + fixmuldiv(off_pnt->p3_g-on_pnt->p3_g,kn,kd);
// tmp.p3_b = on_pnt->p3_b + fixmuldiv(off_pnt->p3_b-on_pnt->p3_b,kn,kd);
tmp.p3_l = on_pnt->p3_l + fixmul((off_pnt->p3_l-on_pnt->p3_l), psx_ratio);
tmp.p3_flags |= PF_LS;
2006-03-20 17:12:09 +00:00
}
2014-11-16 19:14:51 +00:00
g3_code_point(tmp);
return tmp;
2006-03-20 17:12:09 +00:00
}
2014-11-13 03:19:45 +00:00
#ifndef OGL
2006-03-20 17:12:09 +00:00
//clips a line to the viewing pyramid.
2014-11-13 03:19:45 +00:00
void clip_line(g3s_point *&p0,g3s_point *&p1,ubyte codes_or)
2006-03-20 17:12:09 +00:00
{
//might have these left over
2014-11-13 03:19:45 +00:00
p0->p3_flags &= ~(PF_UVS|PF_LS);
p1->p3_flags &= ~(PF_UVS|PF_LS);
2006-03-20 17:12:09 +00:00
for (int plane_flag=1;plane_flag<16;plane_flag<<=1)
2006-03-20 17:12:09 +00:00
if (codes_or & plane_flag) {
2014-11-13 03:19:45 +00:00
if (p0->p3_codes & plane_flag)
std::swap(p0, p1);
2006-03-20 17:12:09 +00:00
2014-11-16 19:14:51 +00:00
const auto old_p1 = exchange(p1, &clip_edge(plane_flag,p0,p1));
2006-03-20 17:12:09 +00:00
if (old_p1->p3_flags & PF_TEMP_POINT)
free_temp_point(old_p1);
}
}
2014-11-13 03:19:45 +00:00
#endif
2006-03-20 17:12:09 +00:00
static int clip_plane(int plane_flag,polygon_clip_points &src,polygon_clip_points &dest,int *nv,g3s_codes *cc)
2006-03-20 17:12:09 +00:00
{
//copy first two verts to end
src[*nv] = src[0];
src[*nv+1] = src[1];
cc->uand = 0xff; cc->uor = 0;
2006-03-20 17:12:09 +00:00
2014-11-16 19:14:50 +00:00
uint_fast32_t j = 0;
for (int i=1;i<=*nv;i++) {
2006-03-20 17:12:09 +00:00
if (src[i]->p3_codes & plane_flag) { //cur point off?
if (! (src[i-1]->p3_codes & plane_flag)) { //prev not off?
2014-11-16 19:14:51 +00:00
dest[j] = &clip_edge(plane_flag,src[i-1],src[i]);
2014-11-16 19:14:50 +00:00
cc->uor |= dest[j]->p3_codes;
cc->uand &= dest[j]->p3_codes;
++j;
2006-03-20 17:12:09 +00:00
}
if (! (src[i+1]->p3_codes & plane_flag)) {
2014-11-16 19:14:51 +00:00
dest[j] = &clip_edge(plane_flag,src[i+1],src[i]);
2014-11-16 19:14:50 +00:00
cc->uor |= dest[j]->p3_codes;
cc->uand &= dest[j]->p3_codes;
++j;
2006-03-20 17:12:09 +00:00
}
//see if must free discarded point
if (src[i]->p3_flags & PF_TEMP_POINT)
free_temp_point(src[i]);
}
else { //cur not off, copy to dest buffer
2014-11-16 19:14:50 +00:00
dest[j++] = src[i];
2006-03-20 17:12:09 +00:00
cc->uor |= src[i]->p3_codes;
cc->uand &= src[i]->p3_codes;
2006-03-20 17:12:09 +00:00
}
}
2014-11-16 19:14:50 +00:00
return j;
2006-03-20 17:12:09 +00:00
}
const polygon_clip_points &clip_polygon(polygon_clip_points &rsrc,polygon_clip_points &rdest,int *nv,g3s_codes *cc)
2006-03-20 17:12:09 +00:00
{
polygon_clip_points *src = &rsrc, *dest = &rdest;
for (int plane_flag=1;plane_flag<16;plane_flag<<=1)
2006-03-20 17:12:09 +00:00
if (cc->uor & plane_flag) {
2006-03-20 17:12:09 +00:00
*nv = clip_plane(plane_flag,*src,*dest,nv,cc);
2006-03-20 17:12:09 +00:00
if (cc->uand) //clipped away
return *dest;
2006-03-20 17:12:09 +00:00
2014-08-20 01:50:40 +00:00
std::swap(src, dest);
2006-03-20 17:12:09 +00:00
}
return *src; //we swapped after we copied
2006-03-20 17:12:09 +00:00
}