本文整理汇总了C++中GNEEdge::getSource方法的典型用法代码示例。如果您正苦于以下问题:C++ GNEEdge::getSource方法的具体用法?C++ GNEEdge::getSource怎么用?C++ GNEEdge::getSource使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GNEEdge
的用法示例。
在下文中一共展示了GNEEdge::getSource方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: deleteEdge
void
GNENet::deleteLane(GNELane* lane, GNEUndoList* undoList) {
GNEEdge* edge = &lane->getParentEdge();
if (edge->getNBEdge()->getNumLanes() == 1) {
// remove the whole edge instead
deleteEdge(edge, undoList);
} else {
undoList->p_begin("delete lane");
const NBEdge::Lane& laneAttrs = edge->getNBEdge()->getLaneStruct(lane->getIndex());
const bool sidewalk = laneAttrs.permissions == SVC_PEDESTRIAN;
undoList->add(new GNEChange_Lane(edge, lane, laneAttrs, false), true);
if (gSelected.isSelected(GLO_LANE, lane->getGlID())) {
std::set<GUIGlID> deselected;
deselected.insert(lane->getGlID());
undoList->add(new GNEChange_Selection(std::set<GUIGlID>(), deselected, true), true);
}
if (sidewalk) {
edge->getSource()->removeFromCrossings(edge, undoList);
edge->getDest()->removeFromCrossings(edge, undoList);
edge->getSource()->setLogicValid(false, undoList);
edge->getDest()->setLogicValid(false, undoList);
}
requireRecompute();
undoList->p_end();
}
}
示例2: retrieveJunctions
void
GNENet::moveSelection(const Position& moveSrc, const Position& moveDest) {
Position delta = moveDest - moveSrc;
// move junctions
std::set<GNEJunction*> junctionSet;
std::vector<GNEJunction*> junctions = retrieveJunctions(true);
for (std::vector<GNEJunction*>::iterator it = junctions.begin(); it != junctions.end(); it++) {
Position newPos = (*it)->getNBNode()->getPosition() + delta;
(*it)->move(newPos);
junctionSet.insert(*it);
}
// move edge geometry (endpoints are already moved)
std::vector<GNEEdge*> edges = retrieveEdges(true);
for (std::vector<GNEEdge*>::iterator it = edges.begin(); it != edges.end(); it++) {
GNEEdge* edge = *it;
if (edge) {
if (junctionSet.count(edge->getSource()) > 0 &&
junctionSet.count(edge->getDest()) > 0) {
// edge and its endpoints are selected, move all the inner points as well
edge->moveGeometry(delta);
} else {
// move only geometry near mouse
edge->moveGeometry(moveSrc, delta, true);
}
}
}
}
示例3: assert
void
GNENet::replaceJunctionByGeometry(GNEJunction* junction, GNEUndoList* undoList) {
undoList->p_begin("Replace junction by geometry");
assert(junction->getNBNode()->checkIsRemovable());
std::vector<std::pair<NBEdge*, NBEdge*> > toJoin = junction->getNBNode()->getEdgesToJoin();
for (std::vector<std::pair<NBEdge*, NBEdge*> >::iterator j = toJoin.begin(); j != toJoin.end(); j++) {
GNEEdge* begin = myEdges[(*j).first->getID()];
GNEEdge* continuation = myEdges[(*j).second->getID()];
deleteEdge(begin, undoList);
deleteEdge(continuation, undoList);
GNEEdge* newEdge = createEdge(begin->getSource(), continuation->getDest(), begin, undoList, begin->getMicrosimID(), false, true);
PositionVector newShape = begin->getNBEdge()->getInnerGeometry();
newShape.push_back(junction->getNBNode()->getPosition());
newShape.append(continuation->getNBEdge()->getInnerGeometry());
newEdge->setAttribute(SUMO_ATTR_SHAPE, toString(newShape), undoList);
// @todo what about trafficlights at the end of oontinuation?
}
deleteJunction(junction, undoList);
undoList->p_end();
}
示例4: remapEdge
void
GNENet::mergeJunctions(GNEJunction* moved, GNEJunction* target, GNEUndoList* undoList) {
undoList->p_begin("merge junctions");
// position of moved and target are probably a bit different (snap radius)
moved->move(target->getNBNode()->getPosition());
// register the move with undolist (must happend within the undo group)
moved->registerMove(undoList);
// deleting edges changes in the underlying EdgeVector so we have to make a copy
const EdgeVector incoming = moved->getNBNode()->getIncomingEdges();
for (EdgeVector::const_iterator it = incoming.begin(); it != incoming.end(); it++) {
GNEEdge* oldEdge = myEdges[(*it)->getID()];
remapEdge(oldEdge, oldEdge->getSource(), target, undoList);
}
// deleting edges changes in the underlying EdgeVector so we have to make a copy
const EdgeVector outgoing = moved->getNBNode()->getOutgoingEdges();
for (EdgeVector::const_iterator it = outgoing.begin(); it != outgoing.end(); it++) {
GNEEdge* oldEdge = myEdges[(*it)->getID()];
remapEdge(oldEdge, target, oldEdge->getDest(), undoList);
}
deleteJunction(moved, undoList);
undoList->p_end();
}