📄 p_maputl.h
字号:
// Emacs style mode select -*- C++ -*- //-----------------------------------------------------------------------------//// $Id: p_maputl.h,v 1.4 2000/11/02 19:49:36 bpereira Exp $//// Copyright (C) 1998-2000 by DooM Legacy Team.//// 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.////// $Log: p_maputl.h,v $// Revision 1.4 2000/11/02 19:49:36 bpereira// no message//// Revision 1.3 2000/04/08 17:29:25 stroggonmeth// no message//// Revision 1.2 2000/02/27 00:42:10 hurdler// fix CR+LF problem//// Revision 1.1.1.1 2000/02/22 20:32:32 hurdler// Initial import into CVS (v1.29 pr3)////// DESCRIPTION:// map utility functions////-----------------------------------------------------------------------------#ifndef __P_MAPUTL__#define __P_MAPUTL__#include "doomtype.h"#include "r_defs.h"#include "m_fixed.h"//// P_MAPUTL//typedef struct{ fixed_t x; fixed_t y; fixed_t dx; fixed_t dy;} divline_t;typedef struct{ fixed_t frac; // along trace line boolean isaline; union { mobj_t* thing; line_t* line; } d;} intercept_t;/*#define MAXINTERCEPTS 128extern intercept_t intercepts[MAXINTERCEPTS];extern intercept_t* intercept_p;*///SoM: 4/6/2000: Remove limit.extern int max_intercepts;extern intercept_t* intercepts;extern intercept_t* intercept_p;void P_CheckIntercepts();typedef boolean (*traverser_t) (intercept_t *in);boolean P_PathTraverse ( fixed_t x1, fixed_t y1, fixed_t x2, fixed_t y2, int flags, traverser_t trav);fixed_t P_AproxDistance (fixed_t dx, fixed_t dy);int P_PointOnLineSide (fixed_t x, fixed_t y, line_t* line);int P_PointOnDivlineSide (fixed_t x, fixed_t y, divline_t* line);void P_MakeDivline (line_t* li, divline_t* dl);fixed_t P_InterceptVector (divline_t* v2, divline_t* v1);int P_BoxOnLineSide (fixed_t* tmbox, line_t* ld);extern fixed_t opentop;extern fixed_t openbottom;extern fixed_t openrange;extern fixed_t lowfloor;void P_LineOpening (line_t* linedef);boolean P_BlockLinesIterator (int x, int y, boolean(*func)(line_t*) );boolean P_BlockThingsIterator (int x, int y, boolean(*func)(mobj_t*) );#define PT_ADDLINES 1#define PT_ADDTHINGS 2#define PT_EARLYOUT 4extern divline_t trace;extern fixed_t tmbbox[4]; //p_map.c// call your user function for each line of the blockmap in the bbox defined by the radius/*boolean P_RadiusLinesCheck ( fixed_t radius, fixed_t x, fixed_t y, boolean (*func)(line_t*));*/#endif // __P_MAPUTL__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -