2013-11-19 18:35:35 +01:00
|
|
|
#include "Object.h"
|
2013-11-21 12:05:39 +01:00
|
|
|
#include "OysterMath.h"
|
2013-12-12 12:16:13 +01:00
|
|
|
#include "CollisionManager.h"
|
2013-12-18 13:01:13 +01:00
|
|
|
#include "GID.h"
|
2013-11-21 12:05:39 +01:00
|
|
|
|
2013-11-19 18:35:35 +01:00
|
|
|
|
|
|
|
using namespace GameLogic;
|
|
|
|
|
2013-11-21 12:05:39 +01:00
|
|
|
using namespace Oyster::Math;
|
2013-11-28 11:23:11 +01:00
|
|
|
using namespace Oyster::Physics;
|
2013-11-19 18:35:35 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
Object::Object()
|
|
|
|
{
|
2013-11-29 09:23:00 +01:00
|
|
|
API::SimpleBodyDescription sbDesc;
|
|
|
|
//sbDesc.centerPosition =
|
|
|
|
|
2013-12-03 11:47:04 +01:00
|
|
|
//poi
|
2013-11-29 09:23:00 +01:00
|
|
|
ICustomBody* temp = rigidBody = API::Instance().CreateRigidBody(sbDesc).Release();
|
2013-11-28 11:23:11 +01:00
|
|
|
|
2013-12-12 12:16:13 +01:00
|
|
|
rigidBody->gameObjectRef = this;
|
2013-11-21 12:05:39 +01:00
|
|
|
|
2013-12-18 13:01:13 +01:00
|
|
|
this->objectID = GID();
|
2013-12-12 09:36:14 +01:00
|
|
|
this->type = OBJECT_TYPE_UNKNOWN;
|
2013-11-19 18:35:35 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
}
|
2013-11-19 18:35:35 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
Object::Object(void* collisionFunc, OBJECT_TYPE type)
|
2013-11-19 18:35:35 +01:00
|
|
|
{
|
2013-12-12 09:36:14 +01:00
|
|
|
API::SimpleBodyDescription sbDesc;
|
|
|
|
//sbDesc.centerPosition =
|
2013-11-28 08:37:56 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
//poi
|
|
|
|
ICustomBody* temp = rigidBody = API::Instance().CreateRigidBody(sbDesc).Release();
|
|
|
|
|
|
|
|
rigidBody->SetSubscription((Oyster::Physics::ICustomBody::EventAction_Collision)(collisionFunc));
|
|
|
|
|
2013-12-12 12:16:13 +01:00
|
|
|
rigidBody->gameObjectRef = this;
|
2013-11-28 08:33:29 +01:00
|
|
|
|
2013-12-18 13:01:13 +01:00
|
|
|
this->objectID = GID();
|
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
this->type = type;
|
2013-11-21 12:05:39 +01:00
|
|
|
}
|
2013-11-28 08:33:29 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
|
|
|
|
Object::~Object(void)
|
2013-11-28 11:23:11 +01:00
|
|
|
{
|
2013-12-12 09:36:14 +01:00
|
|
|
|
|
|
|
|
2013-11-19 18:35:35 +01:00
|
|
|
}
|
2013-11-26 11:30:49 +01:00
|
|
|
|
2013-12-12 09:36:14 +01:00
|
|
|
OBJECT_TYPE Object::GetType()
|
2013-11-26 11:30:49 +01:00
|
|
|
{
|
|
|
|
return this->type;
|
|
|
|
}
|
2013-12-18 13:01:13 +01:00
|
|
|
int Object::GetID()
|
|
|
|
{
|
|
|
|
return this->objectID;
|
|
|
|
}
|
2013-12-12 12:16:13 +01:00
|
|
|
|
|
|
|
Oyster::Physics::ICustomBody* Object::GetRigidBody()
|
|
|
|
{
|
|
|
|
return this->rigidBody;
|
|
|
|
}
|