-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameObject.h
45 lines (35 loc) · 1.22 KB
/
GameObject.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#pragma once
#include <directxmath.h>
#include <d3d11_4.h>
#include <string>
#include "Structures.h"
#include "Transform.h"
#include "Appearance.h"
#include "PhysicsModel.h"
using namespace DirectX;
using namespace std;
class GameObject
{
public:
GameObject(string type, std::shared_ptr<Geometry> geometry, std::shared_ptr<Material> material);
~GameObject();
string GetType() const { return _type; }
Transform* GetTransform() const { return _transform; }
Appearance* GetAppearance() const { return _appearance; }
XMMATRIX GetWorldMatrix() const { return XMLoadFloat4x4(&_world); }
PhysicsModel* GetPhysicsModel() const { return _physicsModel; }
void SetTransform(Transform* transform) { _transform = transform; }
void SetParent(GameObject * parent) { _parent = parent; }
void SetAppearance(Appearance* appearance) { _appearance = appearance; }
void SetPhysicsModel(PhysicsModel* physicsModel) { _physicsModel = physicsModel; }
void SetCollider(Collider* collider) { _physicsModel->SetCollider(collider); }
void Update(float t);
void Draw(ID3D11DeviceContext * pImmediateContext);
private:
string _type;
Appearance* _appearance;
Transform* _transform;
PhysicsModel* _physicsModel;
GameObject * _parent;
XMFLOAT4X4 _world;
};