-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsimulator.py
37 lines (30 loc) · 902 Bytes
/
simulator.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
32
33
34
35
36
37
# Authors : Gastone Pietro Rosati Papini
# Date : 09/08/2022
# License : MIT
import math
import signal
from pydrivingsim import World
from scenarios import BasicSpeedLimit, BasicTrafficLight, OnlyVehicle, AutonomousVehicle, GetTheCoins
class GracefulKiller:
kill_now = False
def __init__(self):
signal.signal(signal.SIGINT, self.exit_gracefully)
signal.signal(signal.SIGTERM, self.exit_gracefully)
def exit_gracefully(self, *args):
self.kill_now = True
def main():
# Enable this to test only single vehicle
#av = OnlyVehicle()
av = AutonomousVehicle()
BasicTrafficLight()
# Enable this to test the coins
#GetTheCoins()
# Enable this to test the speed limit
BasicSpeedLimit()
killer = GracefulKiller()
while not killer.kill_now and World().loop:
av.update()
World().update()
av.terminate()
World().exit()
main()