SUMO - Simulation of Urban MObility
NIVissimSingleTypeParser_Verkehrszusammensetzungsdefinition.cpp
Go to the documentation of this file.
1 /****************************************************************************/
8 //
9 /****************************************************************************/
10 // SUMO, Simulation of Urban MObility; see http://sumo.dlr.de/
11 // Copyright (C) 2001-2017 DLR (http://www.dlr.de/) and contributors
12 /****************************************************************************/
13 //
14 // This file is part of SUMO.
15 // SUMO is free software: you can redistribute it and/or modify
16 // it under the terms of the GNU General Public License as published by
17 // the Free Software Foundation, either version 3 of the License, or
18 // (at your option) any later version.
19 //
20 /****************************************************************************/
21 
22 
23 // ===========================================================================
24 // included modules
25 // ===========================================================================
26 #ifdef _MSC_VER
27 #include <windows_config.h>
28 #else
29 #include <config.h>
30 #endif
31 
32 #include <iostream>
34 #include "../NIImporter_Vissim.h"
35 #include "../tempstructs/NIVissimVehicleClass.h"
36 #include "../tempstructs/NIVissimVehicleClassVector.h"
37 #include "../tempstructs/NIVissimTrafficDescription.h"
39 
40 
41 // ===========================================================================
42 // method definitions
43 // ===========================================================================
45  : NIImporter_Vissim::VissimSingleTypeParser(parent) {}
46 
47 
49 
50 
51 bool
53  // id
54  int id;
55  from >> id; // type-checking is missing!
56  // name
57  std::string tag;
58  from >> tag;
59  std::string name = readName(from);
60  // assigned vehicle classes
61  tag = myRead(from);
62  if (tag == "temperatur") {
63  tag = myRead(from);
64  tag = myRead(from);
65  }
66  NIVissimVehicleClassVector assignedTypes;
67  while (tag != "DATAEND") {
68  int type;
69  from >> type;
70  double percentage;
71  from >> tag;
72  from >> percentage;
73  int vwish;
74  from >> tag;
75  from >> vwish;
76  assignedTypes.push_back(new NIVissimVehicleClass(vwish));
77  tag = readEndSecure(from, "Fahrzeugtyp");
78  }
79  //
80  return NIVissimTrafficDescription::dictionary(id, name, assignedTypes);
81 }
82 
83 
84 
85 /****************************************************************************/
86 
std::string myRead(std::istream &from)
reads from the stream and returns the lower case version of the read value
std::string readEndSecure(std::istream &from, const std::string &excl="")
as myRead, but returns "DATAEND" when the current field has ended
Importer for networks stored in Vissim format.
std::vector< NIVissimVehicleClass * > NIVissimVehicleClassVector
std::string readName(std::istream &from)
Reads the structures name We cannot use the "<<" operator, as names may contain more than one word wh...
static bool dictionary(int id, const std::string &name, const NIVissimVehicleClassVector &vehicleTypes)