78 lines
2.4 KiB
C++
78 lines
2.4 KiB
C++
#include "Object.h"
|
|
#include "OysterMath.h"
|
|
#include "CollisionManager.h"
|
|
#include "GID.h"
|
|
#include "PhysicsAPI.h"
|
|
#include "Game.h"
|
|
|
|
|
|
using namespace GameLogic;
|
|
|
|
using namespace Oyster::Math;
|
|
using namespace Oyster::Physics;
|
|
|
|
const Game *Object::gameInstance = (Game*)(&Game::Instance());
|
|
|
|
Object::Object()
|
|
{
|
|
this->rigidBody = API::Instance().AddCollisionBox(Oyster::Math::Float3(0.0f, 0.0f, 0.0f), Oyster::Math::Float4(0, 0, 0, 1), Oyster::Math::Float3(0, 0, 0), 0, 0.5f, 0.8f, 0.6f);
|
|
|
|
this->type = ObjectSpecialType_Unknown;
|
|
this->objectID = -1;
|
|
this->scale = Float3(1.0f, 1.0f, 1.0f);
|
|
}
|
|
|
|
Object::Object(Oyster::Physics::ICustomBody *rigidBody, void (*collisionFuncAfter)(Oyster::Physics::ICustomBody *proto,Oyster::Physics::ICustomBody *deuter,Oyster::Math::Float kineticEnergyLoss), ObjectSpecialType type, int objectID)
|
|
{
|
|
this->rigidBody = rigidBody;
|
|
this->rigidBody->SetSubscription((Oyster::Physics::ICustomBody::EventAction_AfterCollisionResponse)(collisionFuncAfter));
|
|
this->type = type;
|
|
this->objectID = objectID;
|
|
this->extraDamageOnCollision = 0;
|
|
this->rigidBody->SetCustomTag(this);
|
|
this->scale = Float3(1.0f, 1.0f, 1.0f);
|
|
}
|
|
|
|
|
|
Object::Object(Oyster::Physics::ICustomBody *rigidBody , Oyster::Physics::ICustomBody::SubscriptMessage (*collisionFuncAfter)(Oyster::Physics::ICustomBody *proto,Oyster::Physics::ICustomBody *deuter,Oyster::Math::Float kineticEnergyLoss), ObjectSpecialType type, int objectID)
|
|
{
|
|
this->rigidBody = rigidBody;
|
|
this->rigidBody->SetSubscription((Oyster::Physics::ICustomBody::EventAction_AfterCollisionResponse)(collisionFuncAfter));
|
|
this->type = type;
|
|
this->objectID = objectID;
|
|
this->extraDamageOnCollision = 0;
|
|
this->rigidBody->SetCustomTag(this);
|
|
this->scale = Float3(1.0f, 1.0f, 1.0f);
|
|
}
|
|
|
|
Object::~Object(void)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
void Object::SetOnCollision(OnCollisionCallback func)
|
|
{
|
|
this->rigidBody->SetSubscription((Oyster::Physics::ICustomBody::EventAction_AfterCollisionResponse)(func));
|
|
}
|
|
|
|
|
|
Oyster::Math::Float3 Object::GetPosition()
|
|
{
|
|
Oyster::Physics::ICustomBody::State state;
|
|
state = this->rigidBody->GetState();
|
|
return state.centerPos;
|
|
}
|
|
Oyster::Math::Quaternion Object::GetRotation()
|
|
{
|
|
Oyster::Physics::ICustomBody::State state;
|
|
state = this->rigidBody->GetState();
|
|
return state.quaternion;
|
|
}
|
|
Oyster::Math::Float4x4 Object::GetOrientation()
|
|
{
|
|
Oyster::Physics::ICustomBody::State state;
|
|
state = this->rigidBody->GetState();
|
|
return state.GetOrientation();
|
|
}
|