Tramway SDK v0.1.1
path.h
Go to the documentation of this file.
1// Tramway Drifting and Dungeon Exploration Simulator SDK Runtime
2
3#ifndef TRAM_SDK_FRAMEWORK_PATH_H
4#define TRAM_SDK_FRAMEWORK_PATH_H
5
6#include <framework/graph.h>
7
8#include <framework/uid.h>
9
10namespace tram {
11
13 PATH_STRAIGHT, //< Path vertex connection interpreted as a straight line.
14 PATH_LEFT, //< Path vertex connection interpreted as a left turn.
15 PATH_RIGHT, //< Path vertex connection interpreted as a right turn.
16
17 PATH_LINEAR, //< Path will be interpreted as being made of straight line segments.
18 PATH_CURVE //< Not implemented.
19};
20
23};
24
25class PathFollower;
26
27class Path : public Graph {
28public:
30
31 void LoadFromDisk();
32
33 void Draw();
34
35 static Path* Find(name_t name);
36protected:
37 ~Path() = delete;
38
39 friend class PathFollower;
40
42 std::vector<PathEdgeInfo> edge_infos;
43};
44
46public:
47 PathFollower(Path* path, vec3 initial_pos, PathType type);
48
49 void Advance(float);
50
51 void Project(vec3);
52
53 void TurnLeft();
54 void TurnRight();
55 void TurnStraight();
56
59
60 void SetOrientation(vec3);
61
62 float progress;
63 uint32_t prev;
64 uint32_t next;
68};
69
70}
71
72#endif // TRAM_SDK_FRAMEWORK_PATH_H
Definition: graph.h:21
Point constrained to a Path.
Definition: path.h:45
void Advance(float)
Advances the follower along the path.
Definition: path.cpp:132
void TurnRight()
Definition: path.cpp:224
PathFollower(Path *path, vec3 initial_pos, PathType type)
Creates a new PathFollower for a path.
Definition: path.cpp:119
uint32_t next
Definition: path.h:64
vec3 GetPosition()
Definition: path.cpp:211
PathType direction
Definition: path.h:66
vec3 GetTangent()
Definition: path.cpp:217
void SetOrientation(vec3)
Definition: path.cpp:201
uint32_t prev
Definition: path.h:63
PathType type
Definition: path.h:65
void Project(vec3)
Definition: path.cpp:179
float progress
Definition: path.h:62
void TurnStraight()
Definition: path.cpp:227
Path * path
Definition: path.h:67
Base class for graphs.
Definition: path.h:27
void LoadFromDisk()
Definition: path.cpp:61
~Path()=delete
std::vector< PathEdgeInfo > edge_infos
Definition: path.h:42
name_t name
Definition: path.h:41
Path(name_t name)
Definition: path.h:29
void Draw()
Draws the path's line segments.
Definition: path.cpp:112
static Path * Find(name_t name)
Finds a path.
Definition: path.cpp:50
Serialization, i.e.
glm::vec3 vec3
Definition: math.h:11
PathType
Definition: path.h:12
@ PATH_RIGHT
Definition: path.h:15
@ PATH_STRAIGHT
Definition: path.h:13
@ PATH_CURVE
Definition: path.h:18
@ PATH_LEFT
Definition: path.h:14
@ PATH_LINEAR
Definition: path.h:17
Definition: path.h:21
PathType type
Definition: path.h:22
Interned string type.
Definition: uid.h:10