-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleNode.cpp
267 lines (234 loc) · 8.02 KB
/
SimpleNode.cpp
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include "stdafx.h"
#include "SimpleNode.h"
#include "WorldFrame.h"
#include "WorldRoad.h"
#include "RoadGraph.h"
#include "Triangulate.h"
#include "RoadInterface.h"
#include "MeshBuilder.h"
#include "Geometry.h"
#include <OgreManualObject.h>
using namespace Ogre;
using namespace std;
SimpleNode::SimpleNode(RoadGraph &g)
: NodeInterface(g)
{ }
SimpleNode::SimpleNode(RoadGraph &g, Ogre::Real x, Ogre::Real z)
: NodeInterface(g)
{
setPosition2D(x, z);
}
SimpleNode::SimpleNode(RoadGraph &g, const Ogre::Vector2 &pos)
: NodeInterface(g)
{
setPosition2D(pos.x, pos.y);
}
SimpleNode::SimpleNode(RoadGraph &g, const Ogre::Vector3 &pos)
: NodeInterface(g)
{
setPosition3D(pos.x, pos.y, pos.z);
}
bool SimpleNode::setPosition2D(Ogre::Real x, Ogre::Real z)
{
Ogre::Real y;
if(WorldFrame::getSingleton().plotPointOnTerrain(x, y, z))
{
setPosition3D(x, y+GROUNDCLEARANCE, z);
return true;
}
return false;
}
void SimpleNode::prebuild()
{
// how many roads connect here
size_t degree = _roadGraph.getDegree(_nodeId);
switch(degree)
{
case 0:
return;
case 1:
createTerminus();
return;
case 2:
// use generic
break;
case 3:
if(createTJunction()) return;
break;
default:
//maybe should try
break;
}
// get a clockwise list of road intersections
vector<Vector3> pointlist;
vector<RoadId> roadCWVec;
pointlist.reserve(degree);
roadCWVec.reserve(degree);
// initial vars
bool isConnectedToWorldRoad = false;
NodeId lastNodeId = _roadGraph.getFirstAdjacent(_nodeId);
Real lastRoadInset = _roadGraph.getRoad(_roadGraph.getRoadId(_nodeId, lastNodeId))->getWidth();
Vector3 lastRoadVec = _roadGraph.getNode(lastNodeId)->getPosition3D() - getPosition3D();
for(size_t i=0; i < degree; i++)
{
NodeId currNodeId;
_roadGraph.getAntiClockwiseMostFromPrev(lastNodeId, _nodeId, currNodeId);
Vector3 curRoadVec = _roadGraph.getNode(currNodeId)->getPosition3D() - getPosition3D();
RoadId curRoadId = _roadGraph.getRoadId(_nodeId, currNodeId);
isConnectedToWorldRoad |= typeid(*(_roadGraph.getRoad(curRoadId))) == typeid(WorldRoad);
Real curRoadInset = _roadGraph.getRoad(curRoadId)->getWidth();
Vector3 intersectionPoint = Geometry::calcBoundedBisector(lastRoadVec,curRoadVec,lastRoadInset,curRoadInset);
pointlist.push_back(intersectionPoint + getPosition3D());
roadCWVec.push_back(curRoadId);
lastNodeId = currNodeId;
lastRoadVec = curRoadVec;
lastRoadInset = curRoadInset;
}
// fill the junction data for use by roads
_roadJunction.clear();
_vertexData.clear();
_indexData.clear();
_vertexData.reserve(degree * 8 * 3);
_indexData.reserve(degree * 3);
for(size_t i=0; i < degree; i++)
{
size_t j = (i + 1) % degree;
//
pair<Vector3, Vector3> roadPair(pointlist[i],pointlist[j]);
// create a junction -> road join pair
_roadJunction[roadCWVec[i]] = roadPair;
// no junction plate if we are an intermediate node on a WorldRoad
if(!isConnectedToWorldRoad)
{
uint16 offset = static_cast<uint16>(_vertexData.size()>>3);
MeshBuilder::addVData3(_vertexData, roadPair.first);
MeshBuilder::addVData3(_vertexData, Vector3::UNIT_Y);
MeshBuilder::addVData2(_vertexData, 1, 0);
MeshBuilder::addVData3(_vertexData, roadPair.second);
MeshBuilder::addVData3(_vertexData, Vector3::UNIT_Y);
MeshBuilder::addVData2(_vertexData, 0, 0);
MeshBuilder::addVData3(_vertexData, getPosition3D());
MeshBuilder::addVData3(_vertexData, Vector3::UNIT_Y);
// this is a little costly but such is life
Real v = (((pointlist[i] + pointlist[j])/2)-getPosition3D()).length()
/ _roadGraph.getRoad(roadCWVec[i])->getWidth();
MeshBuilder::addVData2(_vertexData, 0.5, std::min(1.0f,v/4));
MeshBuilder::addIData3(_indexData, offset, offset + 1, offset + 2);
}
}
}
void SimpleNode::build(MeshBuilder& meshBuilder, Material* mat)
{
meshBuilder.registerData(mat, _vertexData, _indexData);
}
pair<Vector3, Vector3> SimpleNode::getRoadJunction(RoadId rd)
{
map<RoadId, pair<Vector3, Vector3>, road_less_than >::iterator rIt;
rIt = _roadJunction.find(rd);
if(rIt == _roadJunction.end())
{
//size_t degree = _roadGraph.getDegree(mNodeId);
//throw Exception(Exception::ERR_ITEM_NOT_FOUND, "Road not found", "SimpleNode::getRoadJunction");
LogManager::getSingleton().logMessage("Error: SimpleNode road not found.", LML_CRITICAL);
return make_pair(getPosition3D(), getPosition3D());
}
return rIt->second;
}
bool SimpleNode::createTJunction()
{
assert(_roadGraph.getDegree(_nodeId) == 3);
_roadJunction.clear();
bool roadsAreEqualSize = false;
vector<RoadId> throughRoads(2);
size_t joiningRoadInd;
vector<RoadId> roadCWVec;
vector<Vector3> roadVec;
vector<Real> roadWidthVec;
// init
{
roadCWVec.reserve(3);
roadVec.reserve(3);
roadWidthVec.reserve(3);
NodeId currNodeId = _roadGraph.getFirstAdjacent(_nodeId);
RoadId currRoadId = _roadGraph.getRoadId(_nodeId, currNodeId);
roadCWVec.push_back(currRoadId);
roadVec.push_back((_roadGraph.getNode(currNodeId)->getPosition3D() - getPosition3D()).normalisedCopy());
roadWidthVec.push_back(_roadGraph.getRoad(currRoadId)->getWidth());
for(size_t i=1; i < 3; i++)
{
_roadGraph.getAntiClockwiseMostFromPrev(currNodeId, _nodeId, currNodeId);
currRoadId = _roadGraph.getRoadId(_nodeId, currNodeId);
roadCWVec.push_back(currRoadId);
roadVec.push_back((_roadGraph.getNode(currNodeId)->getPosition3D() - getPosition3D()).normalisedCopy());
roadWidthVec.push_back(_roadGraph.getRoad(currRoadId)->getWidth());
}
}
if(roadWidthVec[0] == roadWidthVec[1])
{
if(roadWidthVec[2] != roadWidthVec[0]) joiningRoadInd = 2;
else roadsAreEqualSize = true;
}
else
{
if(roadWidthVec[2] == roadWidthVec[0]) joiningRoadInd = 1;
else if(roadWidthVec[2] == roadWidthVec[1]) joiningRoadInd = 0;
else return false;
}
// distinction cannot be made by road width
if(roadsAreEqualSize)
{
// get the angles between the other two roads
Real cos0 = roadVec[1].x * roadVec[2].x + roadVec[1].z * roadVec[2].z;
Real cos1 = roadVec[0].x * roadVec[2].x + roadVec[0].z * roadVec[2].z;
Real cos2 = roadVec[0].x * roadVec[1].x + roadVec[0].z * roadVec[1].z;
// choose the road with the least open angle to the others
if(cos0 < cos1)
{
if(cos0 < cos2) joiningRoadInd = 0;
else joiningRoadInd = 2;
}
else
{
if(cos1 < cos2) joiningRoadInd = 1;
else joiningRoadInd = 2;
}
}
// get height
Real h = getPosition3D().y;
Vector3 p1,p2;
for(size_t k,j,i=0; i<3; i++)
{
j = (i+1)%3;
k = (i+2)%3;
if(j == joiningRoadInd)
{
p1 = getPosition3D() + Geometry::calcBoundedBisector(roadVec[i], roadVec[j], roadWidthVec[i], roadWidthVec[j]);
p2 = getPosition3D() + Geometry::calcBoundedBisector(roadVec[j], roadVec[k], roadWidthVec[j], roadWidthVec[k]);
_roadJunction[roadCWVec[j]] = make_pair(Vector3(p1.x, h, p1.z), Vector3(p2.x, h, p2.z));
}
else
{
if(k == joiningRoadInd) k = i;
p1 = getPosition3D() - Geometry::calcBoundedBisector(roadVec[j], roadVec[k], roadWidthVec[j], roadWidthVec[k]);
p2 = getPosition3D() - Geometry::calcBoundedBisector(roadVec[k], roadVec[j], roadWidthVec[k], roadWidthVec[j]);
_roadJunction[roadCWVec[j]] = make_pair(Vector3(p1.x, h, p1.z), Vector3(p2.x, h, p2.z));
}
}
return true;
}
void SimpleNode::createTerminus()
{
_roadJunction.clear();
Vector2 pos(getPosition2D());
NodeId connectedNodeId = _roadGraph.getFirstAdjacent(_nodeId);
RoadId roadId = _roadGraph.getRoadId(_nodeId, connectedNodeId);
Real roadInset = _roadGraph.getRoad(roadId)->getWidth();
Vector2 roadVec = _roadGraph.getNode(connectedNodeId)->getPosition2D() - pos;
roadVec.normalise();
Real h = getPosition3D().y;
Vector2 offset = roadVec.perpendicular();
offset *= roadInset;
roadVec *= roadInset;
_roadJunction[roadId] = make_pair(Vector3(pos.x + offset.x - roadVec.x, h, pos.y + offset.y - roadVec.y),
Vector3(pos.x - offset.x - roadVec.x, h, pos.y - offset.y - roadVec.y));
}