2013-12-10 11:26:18 +01:00
|
|
|
#ifndef DANBIAS_CLIENT_COBJECT_H
|
|
|
|
#define DANBIAS_CLIENT_COBJECT_H
|
2013-12-09 12:01:36 +01:00
|
|
|
#include "DllInterfaces/GFXAPI.h"
|
2013-12-09 11:05:47 +01:00
|
|
|
namespace DanBias
|
|
|
|
{
|
|
|
|
namespace Client
|
|
|
|
{
|
2013-12-09 12:01:36 +01:00
|
|
|
struct ModelInitData
|
|
|
|
{
|
2013-12-19 11:58:42 +01:00
|
|
|
int id;
|
2013-12-09 12:01:36 +01:00
|
|
|
std::wstring modelPath;
|
2014-02-10 14:00:14 +01:00
|
|
|
Oyster::Math::Float3 position;
|
|
|
|
Oyster::Math::Quaternion rotation;
|
|
|
|
Oyster::Math::Float3 scale;
|
2013-12-09 12:01:36 +01:00
|
|
|
bool visible;
|
|
|
|
};
|
|
|
|
|
2014-02-12 10:43:06 +01:00
|
|
|
class C_Object
|
|
|
|
{
|
2014-02-12 14:33:56 +01:00
|
|
|
protected:
|
|
|
|
Oyster::Graphics::Model::Model *model;
|
2014-02-12 10:43:06 +01:00
|
|
|
private:
|
|
|
|
Oyster::Math::Float4x4 world;
|
|
|
|
Oyster::Math::Float3 position;
|
|
|
|
Oyster::Math::Quaternion rotation;
|
|
|
|
Oyster::Math::Float3 scale;
|
2014-02-12 14:33:56 +01:00
|
|
|
|
2014-02-12 10:43:06 +01:00
|
|
|
int id;
|
|
|
|
void updateWorld();
|
|
|
|
public:
|
2013-12-09 11:05:47 +01:00
|
|
|
|
2014-02-12 10:43:06 +01:00
|
|
|
virtual void Init(ModelInitData modelInit);
|
2014-02-10 14:00:14 +01:00
|
|
|
|
2014-02-12 10:43:06 +01:00
|
|
|
void setWorld(Oyster::Math::Float4x4 world);
|
|
|
|
Oyster::Math::Float4x4 getWorld() const;
|
|
|
|
void setPos(Oyster::Math::Float3 newPos);
|
|
|
|
Oyster::Math::Float3 getPos() const;
|
|
|
|
void addPos(Oyster::Math::Float3 deltaPos);
|
|
|
|
void setRot(Oyster::Math::Quaternion newRot);
|
|
|
|
Oyster::Math::Quaternion getRotation() const;
|
|
|
|
void addRot(Oyster::Math::Quaternion deltaRot);
|
|
|
|
void setScale(Oyster::Math::Float3 newScale);
|
|
|
|
void addScale(Oyster::Math::Float3 deltaScale);
|
|
|
|
Oyster::Math::Float3 getScale() const;
|
|
|
|
|
|
|
|
virtual void Render();
|
|
|
|
virtual void Release();
|
|
|
|
virtual int GetId() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace Utility { namespace DynamicMemory
|
|
|
|
{ // template specializationto allowuse of dynamicmemory tools
|
|
|
|
template<>
|
|
|
|
inline void SafeDeleteInstance( ::DanBias::Client::C_Object *dynamicInstance )
|
|
|
|
{
|
|
|
|
if( dynamicInstance )
|
|
|
|
{
|
|
|
|
dynamicInstance->Release();
|
|
|
|
delete dynamicInstance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
2013-12-09 11:05:47 +01:00
|
|
|
|
2013-12-10 11:26:18 +01:00
|
|
|
#endif
|