Danbias/Code/Game/DanBiasGame/GameClientState/C_Object.h

67 lines
1.5 KiB
C
Raw Normal View History

#ifndef DANBIAS_CLIENT_COBJECT_H
#define DANBIAS_CLIENT_COBJECT_H
2013-12-09 12:01:36 +01:00
#include "DllInterfaces/GFXAPI.h"
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;
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:
2014-02-12 10:43:06 +01:00
virtual void Init(ModelInitData modelInit);
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;
}
}
} }
#endif