diff options
author | eray orçunus <erayorcunus@gmail.com> | 2019-08-10 17:15:22 +0200 |
---|---|---|
committer | eray orçunus <erayorcunus@gmail.com> | 2019-08-11 19:31:36 +0200 |
commit | be1c7b0761c2de0362a47ecfff616a8931b54805 (patch) | |
tree | 2f0c6d7eac06333b4f04eb3002700e4c3d067f34 /src/core/General.h | |
parent | finished CPathFind (diff) | |
download | re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar.gz re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar.bz2 re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar.lz re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar.xz re3-be1c7b0761c2de0362a47ecfff616a8931b54805.tar.zst re3-be1c7b0761c2de0362a47ecfff616a8931b54805.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/General.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/General.h b/src/core/General.h index fe277689..12f781d4 100644 --- a/src/core/General.h +++ b/src/core/General.h @@ -96,6 +96,21 @@ public: } } + // should return direction in 0-8 range. fits perfectly to peds' path directions. + static int CGeneral::GetNodeHeadingFromVector(float x, float y) + { + float angle = CGeneral::GetRadianAngleBetweenPoints(x, y, 0.0f, 0.0f); + if (angle < 0.0f) + angle += TWOPI; + + angle = DEGTORAD(22.5f) + TWOPI - angle; + + if (angle >= TWOPI) + angle -= TWOPI; + + return (int)floorf(angle / DEGTORAD(45.0f)); + } + // not too sure about all these... static uint16 GetRandomNumber(void) { return myrand() & MYRAND_MAX; } |