forked from volkhin/RoadTrafficSimulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
David Guzmán edited this page Jun 1, 2021
·
9 revisions
- Collisions and deadlocks.
- Not enough time to turn error.
- Lanes being appended to road.lanes on the wrong side. ✓
- If a car wants to turn left of right, the car will go to said leftmost or rightmost lane even if it is closed. This is undefined behavior (should the car go to the second-to-last lane or still go into the closed lane?) ✓
- Adding to the last point. Something is causing cars that do not want to turn to go to the leftmost or rightmost lane. This causes a very long line of cars that both want and do not want to turn to halt traffic. ✓
- Apparently changing lane direction sometimes causes cars that are turning in an intersection to halt completely and permanently. This seems to happen if the curve they generated targets the changed lane and/or (not sure) the road to which the lane changes to (this might be caused by the wrong side append bug). ✓