Skip to content

Commit

Permalink
add macro for calculating radians (#317)
Browse files Browse the repository at this point in the history
* feat: add macro for calculating radians

* style: silence unused variable warning

* remove unnecessary float cast in macro
  • Loading branch information
Pespiri authored and Spacefish committed Jun 28, 2024
1 parent 2d2b21f commit e04d269
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions src/consts.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,13 @@
// PPS: 650 @ 5+1, 650 @ 5+3
#define PACKET_BUNDLING_BUFFERED 2

#define DEG_0 0.f
#define DEG_90 -PI / 2
#define DEG_180 PI
#define DEG_270 PI / 2
// Get radian for a given angle from 0° to 360° (2*PI*r, solve for r given an angle, range -180° to 180°)
#define DEG_X(deg) ((((deg) < 180.0f ? 0 : 360.0f) - (deg)) * PI / 180.0f)

#define DEG_0 DEG_X(0.0f)
#define DEG_90 DEG_X(90.0f)
#define DEG_180 DEG_X(180.0f)
#define DEG_270 DEG_X(270.0f)

#define CONST_EARTH_GRAVITY 9.80665

Expand Down
2 changes: 1 addition & 1 deletion src/network/connection.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ void Connection::searchForServer() {
}

// receive incoming UDP packets
int len = m_UDP.read(m_Packet, sizeof(m_Packet));
int len __attribute__((unused)) = m_UDP.read(m_Packet, sizeof(m_Packet));

#ifdef DEBUG_NETWORK
m_Logger.trace(
Expand Down

0 comments on commit e04d269

Please sign in to comment.