I\'m trying to run a pedestrian simulation from sumo in omnet++. To keep it easy (i am a beginner) I decided to use the Erlangen example provided with veins and ext
You are absolutely right. As of Veins 5a1, Pedestrians (Persons in SUMO parlance) are not supported by Veins out of the box, meaning additional code needs to be written by the user.
For internal projects we have simply cloned the code handling vehicle subscriptions, substituting class and variable names where appropriate
(i.e., CMD_SUBSCRIBE_PERSON_VARIABLE=0xde
for ID_LIST
, then subscribing to VAR_POSITION
, etc. for every new person, and reacting to changes in these variables by calling addModule
and nextPosition
).