Public release of the DLU server code!

Have fun!
This commit is contained in:
Unknown
2021-12-05 18:54:36 +01:00
parent 5f7270e4ad
commit 0545adfac3
1146 changed files with 368646 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
#include "dpShapeSphere.h"
#include "dpCollisionChecks.h"
#include <iostream>
dpShapeSphere::dpShapeSphere(dpEntity* parentEntity, float radius) :
dpShapeBase(parentEntity),
m_Radius(radius)
{
m_ShapeType = dpShapeType::Sphere;
}
dpShapeSphere::~dpShapeSphere() {
}
bool dpShapeSphere::IsColliding(dpShapeBase* other) {
if (!other) return false;
switch (other->GetShapeType()) {
case dpShapeType::Sphere:
return dpCollisionChecks::CheckSpheres(m_ParentEntity, other->GetParentEntity());
case dpShapeType::Box:
return dpCollisionChecks::CheckSphereBox(m_ParentEntity, other->GetParentEntity());
default:
std::cout << "No collision detection for: " << (int)m_ShapeType << "-to-" << (int)other->GetShapeType() << " collision!" << std::endl;
}
return false;
}