2023-01-20 17:20:50 +01:00
|
|
|
|
//====== Copyright <20> 1996-2005, Valve Corporation, All rights reserved. =======//
|
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $Workfile: $
|
|
|
|
|
// $Date: $
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================//
|
|
|
|
|
|
|
|
|
|
#ifndef CMODEL_H
|
|
|
|
|
#define CMODEL_H
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#pragma once
|
|
|
|
|
#endif
|
|
|
|
|
#include "mathlib/mathlib.h"
|
|
|
|
|
|
|
|
|
|
struct Ray_t
|
|
|
|
|
{
|
|
|
|
|
VectorAligned m_Start;
|
|
|
|
|
VectorAligned m_Delta;
|
|
|
|
|
VectorAligned m_StartOffset;
|
2023-01-21 16:19:39 +01:00
|
|
|
|
int m_nUnk30;
|
|
|
|
|
int m_nUnk34;
|
|
|
|
|
int m_nUnk38;
|
|
|
|
|
int m_nUnk3C;
|
|
|
|
|
int m_nUnk40;
|
|
|
|
|
int m_nUnk44;
|
|
|
|
|
int m_nFlags;
|
|
|
|
|
const matrix3x4_t* m_pWorldAxisTransform;
|
|
|
|
|
int m_nUnk58;
|
2023-01-20 17:20:50 +01:00
|
|
|
|
bool m_IsRay;
|
|
|
|
|
bool m_IsSwept;
|
2023-01-22 12:05:28 +01:00
|
|
|
|
int m_nFlags2; // Unsure what these do yet.
|
|
|
|
|
int m_nUnk68;
|
2023-01-21 16:19:39 +01:00
|
|
|
|
|
2023-01-22 12:05:28 +01:00
|
|
|
|
Ray_t() : m_pWorldAxisTransform(nullptr) {};
|
|
|
|
|
Ray_t(Vector3D const& start, Vector3D const& end, int nFlags1 = 0x3f800000, int nFlags2 = NULL) { Init(start, end, nFlags1, nFlags2); };
|
2023-01-20 17:20:50 +01:00
|
|
|
|
|
2023-01-22 12:05:28 +01:00
|
|
|
|
void Init(Vector3D const& start, Vector3D const& end, int nFlags1, int nFlags2)
|
2023-01-20 17:20:50 +01:00
|
|
|
|
{
|
2023-01-21 16:19:39 +01:00
|
|
|
|
VectorSubtract(end, start, m_Delta);
|
2023-01-20 17:20:50 +01:00
|
|
|
|
m_IsSwept = (m_Delta.LengthSqr() != 0);
|
|
|
|
|
|
2023-01-21 16:19:39 +01:00
|
|
|
|
m_nUnk30 = NULL;
|
|
|
|
|
m_nUnk34 = NULL;
|
2023-01-22 12:05:28 +01:00
|
|
|
|
m_nUnk38 = NULL;
|
2023-01-21 16:19:39 +01:00
|
|
|
|
m_nUnk3C = NULL;
|
2023-01-22 12:05:28 +01:00
|
|
|
|
m_nUnk40 = NULL;
|
2023-01-21 16:19:39 +01:00
|
|
|
|
m_nUnk44 = NULL;
|
|
|
|
|
|
2023-01-22 12:05:28 +01:00
|
|
|
|
m_nFlags = nFlags1; // !TODO: Reverse these flags!
|
2023-01-20 17:20:50 +01:00
|
|
|
|
|
2023-01-22 12:05:28 +01:00
|
|
|
|
m_pWorldAxisTransform = nullptr;
|
2023-01-20 17:20:50 +01:00
|
|
|
|
m_IsRay = true;
|
|
|
|
|
|
2023-01-21 16:19:39 +01:00
|
|
|
|
m_nUnk58 = NULL;
|
2023-01-22 12:05:28 +01:00
|
|
|
|
m_nFlags2 = nFlags2; // !TODO: Reverse these flags!
|
|
|
|
|
m_nUnk68 = NULL;
|
2023-01-21 16:19:39 +01:00
|
|
|
|
|
|
|
|
|
VectorClear(m_StartOffset);
|
|
|
|
|
VectorCopy(start, m_Start);
|
2023-01-20 17:20:50 +01:00
|
|
|
|
}
|
|
|
|
|
};
|
2023-01-21 16:19:39 +01:00
|
|
|
|
static_assert(sizeof(Ray_t) == 0x70);
|
2023-01-20 17:20:50 +01:00
|
|
|
|
|
|
|
|
|
struct csurface_t
|
|
|
|
|
{
|
|
|
|
|
const char* name;
|
|
|
|
|
short surfaceProp;
|
|
|
|
|
uint16_t flags;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct cplanetrace_t
|
|
|
|
|
{
|
|
|
|
|
Vector3D normal;
|
|
|
|
|
float dist;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // CMODEL_H
|