metaforce/Runtime/Collision/CRayCastResult.hpp

40 lines
909 B
C++
Raw Normal View History

2016-04-22 20:22:45 +00:00
#ifndef __URDE_CRAYCASTRESULT_HPP__
#define __URDE_CRAYCASTRESULT_HPP__
#include "CMaterialList.hpp"
#include "zeus/zeus.hpp"
namespace urde
{
class CRayCastResult
{
public:
enum class EInvalid
{
Zero,
One
};
private:
EInvalid invalid = EInvalid::Zero;
zeus::CVector3f x4_;
zeus::CVector3f x10_;
CMaterialList x28_material;
public:
CRayCastResult();
2016-04-27 00:26:02 +00:00
CRayCastResult(const CRayCastResult& other, EInvalid) {}
CRayCastResult(float, const zeus::CVector3f&, const zeus::CPlane& plane, const CMaterialList& matList)
2016-04-22 20:22:45 +00:00
: x28_material(matList)
{}
2016-04-27 00:26:02 +00:00
void MakeInvalid();
bool IsInvalid() const;
float GetTime() const;
const zeus::CVector3f& GetPoint() const;
const zeus::CPlane& GetPlane() const;
const CMaterialList& GetMaterial() const;
void Transform(const zeus::CTransform&);
2016-04-22 20:22:45 +00:00
};
}
#endif // __URDE_CRAYCASTRESULT_HPP__