-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorldNode.h
117 lines (87 loc) · 2.94 KB
/
WorldNode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#ifndef WORLDNODE_H
#define WORLDNODE_H
#include "stdafx.h"
#include "WorldObject.h"
#include "NodeInterface.h"
#include "RoadGraph.h"
#include "WorldRoad.h"
#include "ExportDoc.h"
class Ogre::MovableText;
class TiXmlHandle;
class WorldNode : public WorldObject, public NodeInterface, public Ogre::ManualResourceLoader
{
private:
std::vector<Ogre::Real> _vertexData;
std::vector<Ogre::uint16> _indexData;
size_t _degree;
RoadGraph& _simpleRoadGraph;
static int _instanceCount;
Ogre::Entity* _junctionEntity;
Ogre::Entity* _mesh;
Ogre::MovableText* _label;
Ogre::SceneManager* _creator;
Ogre::ManualObject* _mo;
Ogre::String _name;
bool _selected;
//std::vector<WorldRoad*> mRoads;
std::map<RoadId, std::pair<Ogre::Vector3, Ogre::Vector3>, road_less_than > _roadJunction;
void onMove();
public:
NodeId mSimpleNodeId;
WorldNode(RoadGraph& g, RoadGraph& s, Ogre::SceneManager *creator);
~WorldNode();
void setLabel(const Ogre::String& label);
const Ogre::String& getLabel() const;
void setHighlighted(bool highlighted);
void setSelected(bool selected);
Ogre::Vector3 getPosition3D() const;
void setPosition(const Ogre::Vector3 &pos);
bool setPosition2D(Ogre::Real x, Ogre::Real z);
bool setPosition2D(const Ogre::Vector2& pos);
void setPosition3D(Ogre::Real x, Ogre::Real y, Ogre::Real z);
void setPosition3D(const Ogre::Vector3& pos);
void setPosition(Ogre::Real x, Ogre::Real y, Ogre::Real z);
Ogre::Vector2 getPosition2D() const;
const Ogre::Vector3& getPosition() const { return WorldObject::getPosition(); }
//void attach(WorldObject* wo);
//void detach(WorldObject* wo);
void invalidate();
bool move(Ogre::Vector2 pos);
void notify();
bool loadXML(const TiXmlHandle& nodeRoot);
bool hasRoadIntersection();
void build();
std::pair<Ogre::Vector3, Ogre::Vector3> getRoadJunction(RoadId rd);
void createTerminus();
void onAddRoad();
void onRemoveRoad();
bool createTJunction();
inline static Ogre::Vector2 madnessCheck(const Ogre::Vector2& nodePos, const Ogre::Vector2& pos,
const Ogre::Real limitSq, const Ogre::Real limit)
{
Ogre::Vector2 dir = pos - nodePos;
Ogre::Real len = dir.squaredLength();
if(len < limitSq)
{
return pos;
}
else
{
dir.normalise();
return (nodePos + (dir * limit));
}
}
int snapInfo(const Ogre::Real snapSz, Ogre::Vector2& pos, WorldNode*& wn, WorldRoad*& wr) const;
friend WorldRoad* getWorldRoad(const WorldNode* wn1, const WorldNode* wn2)
{
RoadGraph& g(wn1->_simpleRoadGraph);
RoadInterface* ri = g.getRoad(g.getRoadId(wn1->mSimpleNodeId, wn2->mSimpleNodeId));
assert(typeid(*ri) == typeid(WorldRoad));
return static_cast<WorldRoad*>(ri);
}
std::vector<WorldRoad*> getWorldRoads() const;
static void resetInstanceCount() { _instanceCount = 0; }
void exportObject(ExportDoc &doc);
void loadResource(Ogre::Resource* r) {}
};
#endif