It would require some code for pathfinding in the city and a network of nodes and edges from the generated cityscape
YES say me what inputs the behavioural sim. needs for the network 
I’m just doing something about that - a nodal crossroads/streets parser -
It would be great if the internal sce street network was compatible with the behavioural sim. pathfinding.
here’s the list formats it outputs so far :
. a list of xyz 3d coords for significative (I mean a new angle, a new width) road segments (blender units)
coordsList
coordsList=[ [101,56,0,[some metas]], [56,17,0,[some metas]] ...]
. a list of roads. each road is a link between two crossroads or a dead-end and a crossroad.
roadsList. it’s a list of coords id’s.
roadsList=[ [ coordsList[0] ], [ coordsList[5] ], [ coordsList[3] ], ...]
roadsList[2]=[0,5,3]
means the road id2 is made with coordsList[0], coordsList[5] then coordsList[3].
each end (0 and 3 above) correspond to a node coordinates*
*maybe I could add a node id field in this list, maybe faster to parse after but redundant, I don’t know yet
. a list of nodes : node are crossroads or deadends
nodesList
nodesList=[ [ node0 coordsList[n] of crossroad , [list of neighbour nodes],[list of neighbours roads] ] [ node1,.... ]
example :
nodesList[0]=[3,[17,8,5],[89,50,60]]
means
node id 0 is located at coordsList[3].
it has 3 nodes as neighbours, with id 17,8 and 5.
it has 3 roads 89,50 and 60.
take road id 89 to go to node id 17
road id 50 to go to node id 8
road id 60 to to node id 5
len(nodesList[0][1]) always equal to len(nodesList[0][2])
a node can have itself as a neighbour :
nodesList[0]=[3,[17,3],[89,45]]
road 45 has the same crossroad at both end, node 0
a node can have several path to the same neighbour road:
nodesList[0]=[3,[17,17,5],[89,45,67]]
. a list of sidewalk blocks (building areas). blocks are shapes closed by roads and nodes.
blocksList
blocksList=[ [nodesList[5],nodesList[3],...]
blocksList[2]=[5,6,7]
this block is surrounded by 3 nodes with id 5,6 and 7
blocksList[2]=[8]
this one has just one neighbour node, one of its road surrounds the block.
I could add a road metric, or some properties (one or two ways)…
please let me know, I’ve no background about nodes (but my former job was network engineer/consultant !). my need until now
was only a best way to draw non-squared city map.