2018-11-05 07:28:01 +00:00
|
|
|
// "Build Engine & Tools" Copyright (c) 1993-1997 Ken Silverman
|
|
|
|
// Ken Silverman's official web site: "http://www.advsys.net/ken"
|
|
|
|
// See the included license file "BUILDLIC.TXT" for license info.
|
|
|
|
//
|
|
|
|
// This file has been modified from Ken Silverman's original release
|
|
|
|
// by Jonathon Fowler (jf@jonof.id.au)
|
|
|
|
// by the EDuke32 team (development@voidpoint.com)
|
|
|
|
|
2016-06-21 00:33:30 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef clip_h_
|
|
|
|
#define clip_h_
|
|
|
|
|
2017-06-07 05:13:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-04-10 09:30:52 +00:00
|
|
|
#define MAXCLIPSECTORS 512
|
2019-03-30 19:36:03 +00:00
|
|
|
#define MAXCLIPNUM 2048
|
2019-08-01 06:49:47 +00:00
|
|
|
#define CLIPCURBHEIGHT (1<<8)
|
2016-06-21 00:33:30 +00:00
|
|
|
#ifdef HAVE_CLIPSHAPE_FEATURE
|
|
|
|
|
|
|
|
#define CM_MAX 256 // must be a power of 2
|
|
|
|
|
|
|
|
// sectoidx bits
|
|
|
|
#undef CM_NONE
|
|
|
|
#define CM_NONE (CM_MAX<<1)
|
|
|
|
#define CM_SOME (CM_NONE-1)
|
|
|
|
#define CM_OUTER (CM_MAX) // sector surrounds clipping sector
|
|
|
|
|
|
|
|
// sprite -> sector tag mappings
|
|
|
|
#define CM_XREPEAT floorpal
|
|
|
|
#define CM_YREPEAT floorxpanning
|
|
|
|
#define CM_XOFFSET ceilingshade
|
|
|
|
#define CM_YOFFSET floorshade
|
|
|
|
#define CM_CSTAT hitag
|
|
|
|
#define CM_ANG extra
|
|
|
|
#define CM_FLOORZ(Sec) (*(int32_t *)§or[Sec].ceilingxpanning) // ceilingxpanning,ceilingypanning,floorpicnum
|
|
|
|
#define CM_CEILINGZ(Sec) (*(int32_t *)§or[Sec].visibility) // visibility,fogpal,lotag
|
|
|
|
|
|
|
|
// backup of original normalized coordinates
|
|
|
|
#define CM_WALL_X(Wal) (*(int32_t *)&wall[Wal].picnum) // picnum, overpicnum
|
|
|
|
#define CM_WALL_Y(Wal) (*(int32_t *)&wall[Wal].lotag) // lotag, hitag
|
|
|
|
|
|
|
|
// don't rotate when applying clipping, for models with rotational symmetry
|
|
|
|
#define CM_NOROT(Spri) (sprite[Spri].cstat&2)
|
|
|
|
#define CM_NOROTS(Sect) (sector[Sect].CM_CSTAT&2)
|
|
|
|
|
2019-09-19 22:42:45 +00:00
|
|
|
extern vec2_t hitscangoal;
|
|
|
|
|
2016-06-21 00:33:30 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int16_t qbeg, qend; // indices into sectq
|
|
|
|
int16_t picnum, next;
|
|
|
|
int32_t maxdist;
|
|
|
|
} clipinfo_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int16_t numsectors, numwalls;
|
2019-04-18 17:25:24 +00:00
|
|
|
usectorptr_t sector;
|
|
|
|
uwallptr_t wall;
|
2016-06-21 00:33:30 +00:00
|
|
|
} mapinfo_t;
|
|
|
|
|
2016-06-21 00:33:35 +00:00
|
|
|
extern int32_t quickloadboard;
|
2019-04-10 09:31:01 +00:00
|
|
|
extern void engineInitClipMaps();
|
2018-04-12 21:03:47 +00:00
|
|
|
extern void engineSetClipMap(mapinfo_t *bak, mapinfo_t *newmap);
|
2016-06-21 00:33:35 +00:00
|
|
|
|
|
|
|
#endif // HAVE_CLIPSHAPE_FEATURE
|
2016-06-21 00:33:30 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int32_t x1, y1, x2, y2;
|
|
|
|
} linetype;
|
|
|
|
|
2019-04-10 09:31:01 +00:00
|
|
|
extern int16_t clipsectorlist[MAXCLIPSECTORS];
|
2016-06-21 00:33:30 +00:00
|
|
|
|
2016-08-27 01:41:33 +00:00
|
|
|
int clipinsidebox(vec2_t *vect, int wallnum, int walldist);
|
|
|
|
int clipinsideboxline(int x, int y, int x1, int y1, int x2, int y2, int walldist);
|
2016-06-21 00:33:30 +00:00
|
|
|
|
|
|
|
extern int32_t clipmoveboxtracenum;
|
|
|
|
|
2019-04-10 09:31:01 +00:00
|
|
|
int32_t clipmove(vec3_t *const pos, int16_t *const sectnum, int32_t xvect, int32_t yvect, int32_t const walldist, int32_t const ceildist,
|
|
|
|
int32_t const flordist, uint32_t const cliptype) ATTRIBUTE((nonnull(1, 2)));
|
|
|
|
int32_t clipmovex(vec3_t *const pos, int16_t *const sectnum, int32_t xvect, int32_t yvect, int32_t const walldist, int32_t const ceildist,
|
|
|
|
int32_t const flordist, uint32_t const cliptype, uint8_t const noslidep) ATTRIBUTE((nonnull(1, 2)));
|
2019-07-24 01:37:47 +00:00
|
|
|
int pushmove(vec3_t *const vect, int16_t *const sectnum, int32_t const walldist, int32_t const ceildist, int32_t const flordist,
|
|
|
|
uint32_t const cliptype, bool clear = true) ATTRIBUTE((nonnull(1, 2)));
|
2016-06-21 00:33:30 +00:00
|
|
|
|
2017-06-07 05:13:54 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-12-26 06:02:01 +00:00
|
|
|
#endif
|