blob: e359adcdf1986698fef9dc79db5d94e10501bfc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <cmath>
#include "Force.h"
namespace crepe::api {
Force::Force(uint32_t game_object_id, uint32_t magnitude, uint32_t direction)
: Component(game_object_id) {
// TODO: A standard angle unit should be established for the entire engine
// and assumed to be the default everywhere. Only conversion functions should
// explicitly contain the unit (i.e. `deg_to_rad()` & `rad_to_deg()`)
// Convert direction from degrees to radians
float radian_direction = static_cast<float>(direction) * (M_PI / 180.0f);
force_x = static_cast<int32_t>(
std::round(magnitude * std::cos(radian_direction)));
force_y = static_cast<int32_t>(
std::round(magnitude * std::sin(radian_direction)));
}
} // namespace crepe::api
|