-
Notifications
You must be signed in to change notification settings - Fork 4
/
ui_constants.py
31 lines (25 loc) · 1.02 KB
/
ui_constants.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
NODE_WIDTH = 'width'
NODE_BAHAVIOUR = 'behaviourType'
NODE_ISDEADEND = 'isDeadEnd'
NODE_ISIGNORED = 'isIgnoredNode'
NODE_ISROADBLOCK = 'isRoadBlock'
NODE_ISEMERGENCYVEHICLEONLY = 'isEmergencyVehicleOnly'
NODE_ISRESTRICTEDACCESS = 'isRestrictedAccess'
NODE_ISDONTWANDER = 'isDontWander'
NODE_SPEEDLIMIT = 'speedlimit'
NODE_SPAWNPROBABILITY = 'spawnProbability'
# Can be removed
NODE_AREAID = 'areaID'
NODE_ID = 'nodeID'
NODE_FLOOD = 'floodcolor'
# CarPathLink Related Stuff
#carpathlink or node
NODE_TYPE = 'type'
# can be automatically
# generated
EDGE_TRAFFICLIGHTDIRECTION = 'trafficLightDirection'
EDGE_TRAFFICLIGHTBEHAVIOUR = 'trafficLightBehaviour'
EDGE_NUMLEFTLANES = 'numLeftLanes'
EDGE_NUMRIGHTLANES = 'numRightLanes'
EDGE_ISTRAINCROSSING = 'isTrainCrossing'
EDGE_WIDTH = 'width'