Eclipse SUMO - Simulation of Urban MObility
PCLoaderXML.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
3 // Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials are made available under the
5 // terms of the Eclipse Public License 2.0 which is available at
6 // https://www.eclipse.org/legal/epl-2.0/
7 // This Source Code may also be made available under the following Secondary
8 // Licenses when the conditions for such availability set forth in the Eclipse
9 // Public License 2.0 are satisfied: GNU General Public License, version 2
10 // or later which is available at
11 // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
13 /****************************************************************************/
20 // A reader for polygons and pois stored in XML-format
21 /****************************************************************************/
22 #pragma once
23 #include <config.h>
24 
25 #include <string>
26 #include "PCPolyContainer.h"
27 #include "PCTypeMap.h"
30 
31 
32 // ===========================================================================
33 // class definitions
34 // ===========================================================================
35 class OptionsCont;
36 
37 
38 // ===========================================================================
39 // class declarations
40 // ===========================================================================
48 class PCLoaderXML : public ShapeHandler {
49 public:
61  static void loadIfSet(OptionsCont& oc, PCPolyContainer& toFill,
62  PCTypeMap& tm);
63 
64 
65  Position getLanePos(const std::string& poiID, const std::string& laneID, double lanePos, bool friendlyPos, double lanePosLat);
66 
67 protected:
74  PCTypeMap& tm, OptionsCont& oc);
75 
76 
78  ~PCLoaderXML();
79 
80 
81 protected:
83 
84 
92  virtual void myStartElement(int element, const SUMOSAXAttributes& attrs);
94 
95 
96 private:
99 
102 
103 };
A storage for options typed value containers)
Definition: OptionsCont.h:89
A reader for polygons and pois stored in XML-format.
Definition: PCLoaderXML.h:48
~PCLoaderXML()
Destructor.
Definition: PCLoaderXML.cpp:84
virtual void myStartElement(int element, const SUMOSAXAttributes &attrs)
Called on the opening of a tag;.
Definition: PCLoaderXML.cpp:88
PCTypeMap & myTypeMap
The type map to use.
Definition: PCLoaderXML.h:98
static void loadIfSet(OptionsCont &oc, PCPolyContainer &toFill, PCTypeMap &tm)
Loads pois/polygons assumed to be stored as XML.
Definition: PCLoaderXML.cpp:53
PCLoaderXML(PCPolyContainer &toFill, PCTypeMap &tm, OptionsCont &oc)
Constructor.
Definition: PCLoaderXML.cpp:78
Position getLanePos(const std::string &poiID, const std::string &laneID, double lanePos, bool friendlyPos, double lanePosLat)
get position for a given laneID (Has to be implemented in all child)
OptionsCont & myOptions
Settings to use.
Definition: PCLoaderXML.h:101
A storage for loaded polygons and pois.
A storage for type mappings.
Definition: PCTypeMap.h:42
A point in 2D or 3D with translation and scaling methods.
Definition: Position.h:37
Encapsulated SAX-Attributes.
The XML-Handler for network loading.
Definition: ShapeHandler.h:47