-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeroObject.cpp
97 lines (77 loc) · 1.76 KB
/
HeroObject.cpp
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
* HeroObject.cpp
*
* Created on: 20 kwi 2020
* Author: andr
*/
#include "HeroObject.h"
void HeroObject::Tick(double time)
{
Object::Tick(time);
if (Position.y < 0.0f) State = heroIdle;
switch (State)
{
case heroIdle:
{
Position.y = 0.0f;
Velocity = glm::vec3(0.0f);
Acceleration = glm::vec3(0.0f);
} break;
case heroWalk:
{
} break;
case heroJump:
{
Acceleration.y = -9.81f;
Velocity.y += 0.001f*Acceleration.y;
Position.y += 0.001f*Velocity.y;
} break;
}
}
void HeroObject::Forward(float step)
{
Position += Direction * step;
}
void HeroObject::TurnAround(float angle)
{
DirectionAngle += angle;
Direction = glm::vec3(0.0f, .0f, 1.0f);
float cosangle = glm::cos(DirectionAngle);
float sinangle = glm::sin(DirectionAngle);
glm::mat3 transform(cosangle, 0.0f, sinangle,
0, 1, 0,
-sinangle, 0, cosangle);
Direction = Direction * transform;
Rotation.y = DirectionAngle;
}
void HeroObject::Jump()
{
State = heroJump;
Velocity.y = 11.0f;
}
HeroObject::HeroObject()
{
State = heroIdle;
DirectionAngle = 0.0f;
TurnAround(0.0f);
GltfModel = new LoadGltfModel();
GltfModel->init_vao("kwadratowy_ludzik");
Animations.Init(&GltfModel->Base);
Scale = glm::vec3(1.0f);
Rotation = glm::vec3(.0f);
Position = glm::vec3(.0f);
map<int, Model *>::iterator iter = GltfModel->ModelsMap.begin();
while (iter != GltfModel->ModelsMap.end())
{
int nodeid = iter->first;
GltfModel->MatricesMap[nodeid] = glm::mat4(1.0f);
iter++;
}
for (int i = 0; i < GltfModel->Base.Animations.size(); i++)
{
AnimationNode node = GltfModel->Base.Animations[i];
int mesh_id = GltfModel->Base.Nodes[node.NodeId].MeshId;
Animation * anim = Animations.Add(node.NodeId, &node);
Animations.Play(node.NodeId, anim);
}
}