roadblocks

This commit is contained in:
Nikolay Korolev
2020-05-30 20:08:31 +03:00
parent dd162c3aa0
commit 09c9e16cb1
7 changed files with 193 additions and 92 deletions

View File

@@ -5,6 +5,8 @@
class CVehicle;
class CPtrList;
#define LANE_WIDTH 5.0f
enum
{
NodeTypeExtern = 1,
@@ -85,6 +87,8 @@ struct CPathNode
float GetX(void) { return x/8.0f; }
float GetY(void) { return y/8.0f; }
float GetZ(void) { return z/8.0f; }
bool HasDivider(void) { return width != 0; }
float GetDivider(void) { return width/(2*8.0f); }
CPathNode *GetPrev(void);
CPathNode *GetNext(void);
void SetPrev(CPathNode *node);
@@ -120,7 +124,7 @@ struct CCarPathLink
float GetY(void) { return y/8.0f; }
float GetDirX(void) { return dirX/100.0f; }
float GetDirY(void) { return dirY/100.0f; }
float GetLaneOffset(void) { return width/80.0f; }
float GetLaneOffset(void) { return width/(2*8.0f*LANE_WIDTH); }
float OneWayLaneOffset()
{