Skip to content

Commit

Permalink
general: Release 0.1.0
Browse files Browse the repository at this point in the history
Short feature list:
* Simulation Loop
* Cars have sensors and effectors (Agent-like programming)
* Cars can have predefined "routes"
* Basic GUI
* Simple physics (needs upgrade to external engine)

Signed-off-by: Joao Goncalves <[email protected]>
  • Loading branch information
jsvgoncalves committed Feb 16, 2015
1 parent a814cdf commit 2a1c708
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions tools/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,20 @@ def load_cars():
},
'angle': 0
}
#params2 = {
# #'position': [10, 10],
# 'angle': 0
# }
params3 = {
'position': [2, 2],
'angle': 6,
'routes': {
'route_size': 2,
'route': [
# timestamp, wheel, accel, brake
[13, 0.02, 0.2, 0],
[18, 0.0, 0.2, 0],
[3, 0.02, 1, 0],
]
},
}
car1 = Car("Carro 1", params1)
car2 = Car("Carro 2", params2)
return [car1, car2]
car3 = Car("Carro 3", params3)
return [car1, car2, car3]

0 comments on commit 2a1c708

Please sign in to comment.