TDME2 1.9.121
FlowMapCell.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
4#include <tdme/math/Vector3.h>
5
7
8/**
9 * Flow map cell
10 * @author Andreas Drewke
11 * @version $Id$
12 */
14 friend class PathFinding;
15 friend class FlowMap;
16public:
17 /**
18 * Default constructor
19 */
21 }
22
23 /**
24 * Private constructor
25 * @param position position
26 * @param walkable walkable
27 * @param direction direction
28 * @param pathNodeIdx path node index
29 */
35 missingNeighborCell(false) {
36 //
37 }
38
39 /**
40 * @return cell position
41 */
42 inline const Vector3& getPosition() const {
43 return position;
44 }
45
46 /**
47 * @return if cell is walkable
48 */
49 inline bool isWalkable() const {
50 return walkable;
51 }
52
53 /**
54 * @return cell movement direction
55 */
56 inline const Vector3& getDirection() const {
57 return direction;
58 }
59
60 /**
61 * Get path node index
62 * @return path node index
63 */
64 inline int getPathNodeIdx() {
65 return pathNodeIdx;
66 }
67
68 /**
69 * @return has missing neighbor cell
70 */
71 inline bool hasMissingNeighborCell() {
73 }
74
75private:
81
82 /**
83 * Set path node index
84 * @param pathNodeIdx path node index
85 */
86 inline void setPathNodeIdx(int pathNodeIdx) {
87 this->pathNodeIdx = pathNodeIdx;
88 }
89
90 /**
91 * Set movement direction
92 * @param cell movement direction
93 */
94 inline void setDirection(const Vector3& direction) {
95 this->direction = direction;
96 }
97
98 /**
99 * Set has missing neighbor cell
100 * @param missingNeighborCell missing neighbor cell
101 */
103 this->missingNeighborCell = missingNeighborCell;
104 }
105
106};
3D vector 3 class
Definition: Vector3.h:22
void setPathNodeIdx(int pathNodeIdx)
Set path node index.
Definition: FlowMapCell.h:86
const Vector3 & getPosition() const
Definition: FlowMapCell.h:42
void setMissingNeighborCell(bool missingNeighborCell)
Set has missing neighbor cell.
Definition: FlowMapCell.h:102
FlowMapCell(const Vector3 &position, bool walkable, const Vector3 &direction, int pathNodeIdx)
Private constructor.
Definition: FlowMapCell.h:30
void setDirection(const Vector3 &direction)
Set movement direction.
Definition: FlowMapCell.h:94
FlowMapCell()
Default constructor.
Definition: FlowMapCell.h:20
int getPathNodeIdx()
Get path node index.
Definition: FlowMapCell.h:64
const Vector3 & getDirection() const
Definition: FlowMapCell.h:56
Path finding class.
Definition: PathFinding.h:44