23 #ifndef M4_ADV_R_ADV_RAILS_H 24 #define M4_ADV_R_ADV_RAILS_H 26 #include "m4/m4_types.h" 27 #include "m4/adv_r/adv.h" 28 #include "m4/wscript/ws_machine.h" 34 int16 *myEdges =
nullptr;
36 railNode **stackBottom =
nullptr, **stackTop =
nullptr;
39 int32 memtypePATHN = 0;
43 void rail_system_shutdown();
45 noWalkRect *intr_add_no_walk_rect(int32 x1, int32 y1, int32 x2, int32 y2, int32 altX, int32 altY,
Buffer *walkCodes);
46 noWalkRect *intr_add_no_walk_rect(int32 x1, int32 y1, int32 x2, int32 y2, int32 altX, int32 altY);
47 void intr_move_no_walk_rect(
noWalkRect *myRect, int32 new_x1, int32 new_y1,
48 int32 new_x2, int32 new_y2, int32 new_altX, int32 new_altY,
Buffer *walkCodes);
50 void intr_remove_no_walk_rect(
noWalkRect *myRect);
51 void CreateEdge(int32 node1, int32 node2,
Buffer *walkCodes);
52 void RestoreNodeEdges(int32 nodeID,
Buffer *walkCodes);
53 void RestoreEdgeList(
Buffer *walkCodes);
54 int32 AddRailNode(int32 x, int32 y,
Buffer *walkCodes,
bool restoreEdges);
55 void MoveRailNode(int32 nodeID, int32 x, int32 y,
Buffer *walkCodes,
bool restoreEdges);
56 bool RemoveRailNode(int32 nodeID,
Buffer *walkCodes,
bool restoreEdges);
57 bool RailNodeExists(int32 nodeID, int32 *nodeX, int32 *nodeY);
58 int16 GetEdgeLength(int32 node1, int32 node2);
59 bool GetShortestPath(int32 origID, int32 destID,
railNode **shortPath);
60 railNode *CreateCustomPath(
int coord, ...);
61 void DisposePath(
railNode *pathStart);
62 bool intr_LineCrossesRect(int32 line_x1, int32 line_y1, int32 line_x2, int32 line_y2,
63 int32 rect_x1, int32 rect_y1, int32 rect_x2, int32 rect_y2);
64 bool intr_LinesCross(int32 line1_x1, int32 line1_y1, int32 line1_x2, int32 line1_y2,
65 int32 line2_x1, int32 line2_y1, int32 line2_x2, int32 line2_y2);
66 bool intr_PathCrossesLine(int32 startX, int32 startY,
railNode *pathStart,
67 int32 line_x1, int32 line_y1, int32 line_x2, int32 line_y2);
Definition: m4_types.h:67
Definition: database.h:28
Definition: ws_machine.h:92
Definition: adv_rails.h:32