2018-01-18 23:29:49 +00:00
|
|
|
#ifndef P_LTRACEDATA_H
|
|
|
|
#define P_LTRACEDATA_H
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// Structure for passing detailed results of LineTrace to ZScript
|
|
|
|
//
|
|
|
|
//============================================================================
|
|
|
|
struct FLineTraceData
|
|
|
|
{
|
|
|
|
AActor *HitActor;
|
|
|
|
line_t *HitLine;
|
|
|
|
sector_t *HitSector;
|
|
|
|
F3DFloor *Hit3DFloor;
|
|
|
|
FTextureID HitTexture;
|
|
|
|
DVector3 HitLocation;
|
2018-01-28 16:45:36 +00:00
|
|
|
DVector3 HitDir;
|
2018-01-18 23:29:49 +00:00
|
|
|
double Distance;
|
|
|
|
int NumPortals;
|
|
|
|
int LineSide;
|
|
|
|
int LinePart;
|
|
|
|
int SectorPlane;
|
|
|
|
ETraceResult HitType;
|
|
|
|
};
|
|
|
|
|
2018-12-05 19:10:44 +00:00
|
|
|
int P_LineTrace(AActor *t1, DAngle angle, double distance,
|
2018-12-05 16:34:11 +00:00
|
|
|
DAngle pitch, int flags, double sz, double offsetforward,
|
|
|
|
double offsetside, FLineTraceData *outdata);
|
|
|
|
|
2018-01-18 23:29:49 +00:00
|
|
|
#endif
|