-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathPhysicsBody.c
159 lines (124 loc) · 4.65 KB
/
PhysicsBody.c
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2014-6-3
* Update : 2019-1-18
* Author : scott.cgi
*/
#include <string.h>
#include "Engine/Physics/PhysicsBody.h"
#include "Engine/Toolkit/Platform/Log.h"
#include "Engine/Physics/PhysicsWorld.h"
static inline PhysicsBody* CreateBody(Array(float)* vertexArr, PhysicsShape shape)
{
int size = sizeof(float) * vertexArr->length;
PhysicsBody* body = malloc(sizeof(PhysicsBody) + (size << 1));
body->vertexArr->length = vertexArr->length;
body->vertexArr->data = (char*) body + sizeof(PhysicsBody);
memcpy(body->vertexArr->data, vertexArr->data, (size_t) size);
body->transformedVertexArr->length = vertexArr->length;
body->transformedVertexArr->data = (char*) body->vertexArr->data + size;
memcpy(body->transformedVertexArr->data, vertexArr->data, (size_t) size);
AUserData_Init(body->userData);
body->userID = -1;
body->positionX = 0.0f;
body->positionY = 0.0f;
body->velocityX = 0.0f;
body->velocityY = 0.0f;
body->accelerationX = 0.0f;
body->accelerationY = 0.0f;
body->rotationZ = 0.0f;
body->shape = shape;
body->state = PhysicsBodyState_OutsideWorld;
body->collisionGroup = 0;
body->OnCollision = NULL;
return body;
}
static inline PhysicsBody* CreateWithPolygon(Array(float)* vertexArr)
{
ALog_A(vertexArr->length >= 6, "PhysicsShape_Polygon vertexArr length must more than 6 (vertex contains x, y).");
return CreateBody(vertexArr, PhysicsShape_Polygon);
}
static inline PhysicsBody* CreateWithLine(Array(float)* vertexArr)
{
ALog_A(vertexArr->length == 4, "PhysicsShape_Line vertexArr length must equal 4 (vertex contains x, y).");
return CreateBody(vertexArr, PhysicsShape_Line);
}
static inline PhysicsBody* CreateWithPoint(Array(float)* vertexArr)
{
ALog_A(vertexArr->length == 2, "PhysicsShape_Point vertexArr length must equal 2 (vertex contains x, y).");
return CreateBody(vertexArr, PhysicsShape_Point);
}
static PhysicsBody* Create(PhysicsShape shape, Array(float)* vertexArr)
{
switch (shape)
{
case PhysicsShape_NULL:
break;
case PhysicsShape_Polygon:
return CreateWithPolygon(vertexArr);
case PhysicsShape_Line:
return CreateWithLine(vertexArr);
case PhysicsShape_Point:
return CreateWithPoint(vertexArr);
default:
ALog_E("APhysicsBody Create with unknown shape = %d", shape);
break;
}
return NULL;
}
static void ResetVertices(PhysicsBody* body)
{
memcpy
(
body->transformedVertexArr->data,
body->vertexArr->data,
body->transformedVertexArr->length * sizeof(float)
);
}
static void Update(PhysicsBody* body, float deltaSeconds)
{
// cache v0
float vx = body->velocityX;
float vy = body->velocityY;
// get final velocity in x and y direction
// v1 = at + v0
body->velocityX += (body->accelerationX + APhysicsWorld->gravity.x) * deltaSeconds;
body->velocityY += (body->accelerationY + APhysicsWorld->gravity.y) * deltaSeconds;
// get delta distance in x and y indirection
// s = (v0 + v1) * t / 2
float dx = (body->velocityX + vx) * deltaSeconds * 0.5f;
float dy = (body->velocityY + vy) * deltaSeconds * 0.5f;
// increase x and y distance
body->positionX += dx;
body->positionY += dy;
body->rotationZ = AMath_Atan2(dx, dy);
float cosRZ = AMath_Cos(body->rotationZ);
float sinRZ = AMath_Sin(body->rotationZ);
float* vertices = body->vertexArr->data;
float* transformed = body->transformedVertexArr->data;
for (int i = 0; i < body->transformedVertexArr->length; i += 2)
{
float x = vertices[i];
float y = vertices[i + 1];
transformed[i] = x * cosRZ - y * sinRZ + body->positionX;
transformed[i + 1] = x * sinRZ + y * cosRZ + body->positionY;
}
// if (AMath_TestFloatEqual(body->velocityX, 0.0f) && AMath_TestFloatEqual(body->velocityY, 0.0f))
{
// stop motion
}
}
struct APhysicsBody APhysicsBody[1] =
{{
Create,
ResetVertices,
Update,
}};