2018-07-30 05:52:13 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
# Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de
|
|
|
|
# Barcelona (UAB).
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the MIT license.
|
|
|
|
# For a copy, see <https://opensource.org/licenses/MIT>.
|
|
|
|
|
2018-10-28 18:23:59 +08:00
|
|
|
# Allows controlling a vehicle with a keyboard. For a simpler and more
|
|
|
|
# documented example, please take a look at tutorial.py.
|
2018-07-30 05:52:13 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
Welcome to CARLA manual control.
|
|
|
|
|
|
|
|
Use ARROWS or WASD keys for control.
|
|
|
|
|
|
|
|
W : throttle
|
|
|
|
S : brake
|
|
|
|
AD : steer
|
|
|
|
Q : toggle reverse
|
|
|
|
Space : hand-brake
|
|
|
|
P : toggle autopilot
|
|
|
|
|
2018-10-30 03:23:50 +08:00
|
|
|
TAB : change sensor position
|
|
|
|
` : next sensor
|
|
|
|
[1-9] : change to sensor [1-9]
|
2018-10-18 06:16:59 +08:00
|
|
|
C : change weather (Shift+C reverse)
|
2018-10-22 06:30:35 +08:00
|
|
|
Backspace : change vehicle
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
R : toggle recording images to disk
|
2018-07-30 05:52:13 +08:00
|
|
|
|
2018-11-09 00:12:55 +08:00
|
|
|
F1 : toggle HUD
|
2018-10-10 00:04:50 +08:00
|
|
|
H/? : toggle help
|
|
|
|
ESC : quit
|
|
|
|
"""
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- find carla module ---------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
import glob
|
2018-10-02 22:11:21 +08:00
|
|
|
import os
|
2018-10-10 00:04:50 +08:00
|
|
|
import sys
|
|
|
|
|
|
|
|
try:
|
|
|
|
sys.path.append(glob.glob('**/carla-*%d.%d-%s.egg' % (
|
|
|
|
sys.version_info.major,
|
|
|
|
sys.version_info.minor,
|
|
|
|
'win-amd64' if os.name == 'nt' else 'linux-x86_64'))[0])
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- imports -------------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
|
|
|
|
import carla
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
from carla import ColorConverter as cc
|
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
import argparse
|
2018-11-09 00:12:55 +08:00
|
|
|
import collections
|
|
|
|
import datetime
|
2018-07-30 05:52:13 +08:00
|
|
|
import logging
|
2018-11-09 00:12:55 +08:00
|
|
|
import math
|
2018-07-30 05:52:13 +08:00
|
|
|
import random
|
2018-10-18 06:16:59 +08:00
|
|
|
import re
|
2018-10-10 00:04:50 +08:00
|
|
|
import weakref
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
try:
|
|
|
|
import pygame
|
2018-10-10 00:04:50 +08:00
|
|
|
from pygame.locals import KMOD_CTRL
|
|
|
|
from pygame.locals import KMOD_SHIFT
|
|
|
|
from pygame.locals import K_0
|
|
|
|
from pygame.locals import K_9
|
|
|
|
from pygame.locals import K_BACKQUOTE
|
2018-10-22 06:30:35 +08:00
|
|
|
from pygame.locals import K_BACKSPACE
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_DOWN
|
2018-10-10 00:04:50 +08:00
|
|
|
from pygame.locals import K_ESCAPE
|
2018-11-09 00:12:55 +08:00
|
|
|
from pygame.locals import K_F1
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_LEFT
|
|
|
|
from pygame.locals import K_RIGHT
|
2018-10-10 00:04:50 +08:00
|
|
|
from pygame.locals import K_SLASH
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_SPACE
|
2018-10-10 00:04:50 +08:00
|
|
|
from pygame.locals import K_TAB
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_UP
|
|
|
|
from pygame.locals import K_a
|
2018-10-15 18:01:31 +08:00
|
|
|
from pygame.locals import K_c
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_d
|
2018-10-10 00:04:50 +08:00
|
|
|
from pygame.locals import K_h
|
2018-07-30 05:52:13 +08:00
|
|
|
from pygame.locals import K_p
|
|
|
|
from pygame.locals import K_q
|
|
|
|
from pygame.locals import K_r
|
|
|
|
from pygame.locals import K_s
|
|
|
|
from pygame.locals import K_w
|
|
|
|
except ImportError:
|
|
|
|
raise RuntimeError('cannot import pygame, make sure pygame package is installed')
|
|
|
|
|
|
|
|
try:
|
|
|
|
import numpy as np
|
|
|
|
except ImportError:
|
|
|
|
raise RuntimeError('cannot import numpy, make sure numpy package is installed')
|
|
|
|
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- World ---------------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
2018-07-30 05:52:13 +08:00
|
|
|
|
|
|
|
|
2018-10-18 06:16:59 +08:00
|
|
|
def find_weather_presets():
|
|
|
|
rgx = re.compile('.+?(?:(?<=[a-z])(?=[A-Z])|(?<=[A-Z])(?=[A-Z][a-z])|$)')
|
|
|
|
name = lambda x: ' '.join(m.group(0) for m in rgx.finditer(x))
|
|
|
|
presets = [x for x in dir(carla.WeatherParameters) if re.match('[A-Z].+', x)]
|
|
|
|
return [(getattr(carla.WeatherParameters, x), name(x)) for x in presets]
|
|
|
|
|
|
|
|
|
2018-11-09 00:12:55 +08:00
|
|
|
def get_actor_display_name(actor, truncate=250):
|
|
|
|
name = ' '.join(actor.type_id.replace('_', '.').title().split('.')[1:])
|
|
|
|
return (name[:truncate-1] + u'\u2026') if len(name) > truncate else name
|
|
|
|
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
class World(object):
|
|
|
|
def __init__(self, carla_world, hud):
|
2018-10-22 06:30:35 +08:00
|
|
|
self.world = carla_world
|
2018-10-10 00:04:50 +08:00
|
|
|
self.hud = hud
|
2018-11-09 00:12:55 +08:00
|
|
|
self.world.on_tick(hud.on_world_tick)
|
2018-10-22 06:30:35 +08:00
|
|
|
blueprint = self._get_random_blueprint()
|
2018-10-25 19:59:26 +08:00
|
|
|
spawn_points = self.world.get_map().get_spawn_points()
|
|
|
|
spawn_point = random.choice(spawn_points) if spawn_points else carla.Transform()
|
|
|
|
self.vehicle = self.world.spawn_actor(blueprint, spawn_point)
|
2018-10-21 02:33:37 +08:00
|
|
|
self.collision_sensor = CollisionSensor(self.vehicle, self.hud)
|
2018-11-13 22:54:11 +08:00
|
|
|
self.lane_invasion_sensor = LaneInvasionSensor(self.vehicle, self.hud)
|
2018-10-10 00:04:50 +08:00
|
|
|
self.camera_manager = CameraManager(self.vehicle, self.hud)
|
2018-10-22 06:30:35 +08:00
|
|
|
self.camera_manager.set_sensor(0, notify=False)
|
2018-10-10 00:04:50 +08:00
|
|
|
self.controller = None
|
2018-10-18 06:16:59 +08:00
|
|
|
self._weather_presets = find_weather_presets()
|
|
|
|
self._weather_index = 0
|
2018-10-15 18:01:31 +08:00
|
|
|
|
2018-10-22 06:30:35 +08:00
|
|
|
def restart(self):
|
|
|
|
cam_index = self.camera_manager._index
|
|
|
|
cam_pos_index = self.camera_manager._transform_index
|
|
|
|
start_pose = self.vehicle.get_transform()
|
|
|
|
start_pose.location.z += 2.0
|
|
|
|
start_pose.rotation.roll = 0.0
|
|
|
|
start_pose.rotation.pitch = 0.0
|
|
|
|
blueprint = self._get_random_blueprint()
|
|
|
|
self.destroy()
|
|
|
|
self.vehicle = self.world.spawn_actor(blueprint, start_pose)
|
|
|
|
self.collision_sensor = CollisionSensor(self.vehicle, self.hud)
|
2018-11-13 22:54:11 +08:00
|
|
|
self.lane_invasion_sensor = LaneInvasionSensor(self.vehicle, self.hud)
|
2018-10-22 06:30:35 +08:00
|
|
|
self.camera_manager = CameraManager(self.vehicle, self.hud)
|
|
|
|
self.camera_manager._transform_index = cam_pos_index
|
|
|
|
self.camera_manager.set_sensor(cam_index, notify=False)
|
2018-11-13 22:54:43 +08:00
|
|
|
actor_type = get_actor_display_name(self.vehicle)
|
2018-10-22 06:30:35 +08:00
|
|
|
self.hud.notification(actor_type)
|
|
|
|
|
2018-10-18 06:16:59 +08:00
|
|
|
def next_weather(self, reverse=False):
|
|
|
|
self._weather_index += -1 if reverse else 1
|
|
|
|
self._weather_index %= len(self._weather_presets)
|
|
|
|
preset = self._weather_presets[self._weather_index]
|
|
|
|
self.hud.notification('Weather: %s' % preset[1])
|
|
|
|
self.vehicle.get_world().set_weather(preset[0])
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
def tick(self, clock):
|
|
|
|
self.hud.tick(self, clock)
|
|
|
|
|
|
|
|
def render(self, display):
|
|
|
|
self.camera_manager.render(display)
|
|
|
|
self.hud.render(display)
|
|
|
|
|
|
|
|
def destroy(self):
|
2018-10-21 02:33:37 +08:00
|
|
|
for actor in [self.camera_manager.sensor, self.collision_sensor.sensor, self.vehicle]:
|
2018-10-10 00:04:50 +08:00
|
|
|
if actor is not None:
|
|
|
|
actor.destroy()
|
|
|
|
|
2018-10-22 06:30:35 +08:00
|
|
|
def _get_random_blueprint(self):
|
|
|
|
bp = random.choice(self.world.get_blueprint_library().filter('vehicle'))
|
2018-10-22 20:35:48 +08:00
|
|
|
if bp.has_attribute('color'):
|
2018-10-22 06:30:35 +08:00
|
|
|
color = random.choice(bp.get_attribute('color').recommended_values)
|
|
|
|
bp.set_attribute('color', color)
|
|
|
|
return bp
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- KeyboardControl -----------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class KeyboardControl(object):
|
|
|
|
def __init__(self, world, start_in_autopilot):
|
|
|
|
self._autopilot_enabled = start_in_autopilot
|
|
|
|
self._control = carla.VehicleControl()
|
|
|
|
self._steer_cache = 0.0
|
|
|
|
world.vehicle.set_autopilot(self._autopilot_enabled)
|
|
|
|
world.hud.notification("Press 'H' or '?' for help.", seconds=4.0)
|
|
|
|
|
|
|
|
def parse_events(self, world, clock):
|
|
|
|
for event in pygame.event.get():
|
|
|
|
if event.type == pygame.QUIT:
|
|
|
|
return True
|
|
|
|
elif event.type == pygame.KEYUP:
|
|
|
|
if self._is_quit_shortcut(event.key):
|
|
|
|
return True
|
2018-10-22 06:30:35 +08:00
|
|
|
elif event.key == K_BACKSPACE:
|
|
|
|
world.restart()
|
2018-11-09 00:12:55 +08:00
|
|
|
elif event.key == K_F1:
|
|
|
|
world.hud.toggle_info()
|
2018-10-10 00:04:50 +08:00
|
|
|
elif event.key == K_h or (event.key == K_SLASH and pygame.key.get_mods() & KMOD_SHIFT):
|
|
|
|
world.hud.help.toggle()
|
|
|
|
elif event.key == K_TAB:
|
|
|
|
world.camera_manager.toggle_camera()
|
2018-10-18 06:16:59 +08:00
|
|
|
elif event.key == K_c and pygame.key.get_mods() & KMOD_SHIFT:
|
|
|
|
world.next_weather(reverse=True)
|
2018-10-15 18:01:31 +08:00
|
|
|
elif event.key == K_c:
|
|
|
|
world.next_weather()
|
2018-10-10 00:04:50 +08:00
|
|
|
elif event.key == K_BACKQUOTE:
|
|
|
|
world.camera_manager.next_sensor()
|
|
|
|
elif event.key > K_0 and event.key <= K_9:
|
2018-10-30 03:23:50 +08:00
|
|
|
world.camera_manager.set_sensor(event.key - 1 - K_0)
|
2018-10-10 00:04:50 +08:00
|
|
|
elif event.key == K_r:
|
|
|
|
world.camera_manager.toggle_recording()
|
|
|
|
elif event.key == K_q:
|
|
|
|
self._control.reverse = not self._control.reverse
|
|
|
|
elif event.key == K_p:
|
|
|
|
self._autopilot_enabled = not self._autopilot_enabled
|
|
|
|
world.vehicle.set_autopilot(self._autopilot_enabled)
|
|
|
|
world.hud.notification('Autopilot %s' % ('On' if self._autopilot_enabled else 'Off'))
|
|
|
|
if not self._autopilot_enabled:
|
|
|
|
self._parse_keys(pygame.key.get_pressed(), clock.get_time())
|
|
|
|
world.vehicle.apply_control(self._control)
|
2018-07-30 05:52:13 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
def _parse_keys(self, keys, milliseconds):
|
|
|
|
self._control.throttle = 1.0 if keys[K_UP] or keys[K_w] else 0.0
|
|
|
|
steer_increment = 5e-4 * milliseconds
|
|
|
|
if keys[K_LEFT] or keys[K_a]:
|
|
|
|
self._steer_cache -= steer_increment
|
|
|
|
elif keys[K_RIGHT] or keys[K_d]:
|
|
|
|
self._steer_cache += steer_increment
|
|
|
|
else:
|
|
|
|
self._steer_cache = 0.0
|
|
|
|
self._steer_cache = min(0.7, max(-0.7, self._steer_cache))
|
|
|
|
self._control.steer = round(self._steer_cache, 1)
|
|
|
|
self._control.brake = 1.0 if keys[K_DOWN] or keys[K_s] else 0.0
|
|
|
|
self._control.hand_brake = keys[K_SPACE]
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _is_quit_shortcut(key):
|
|
|
|
return (key == K_ESCAPE) or (key == K_q and pygame.key.get_mods() & KMOD_CTRL)
|
|
|
|
|
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- HUD -----------------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class HUD(object):
|
|
|
|
def __init__(self, width, height):
|
|
|
|
self.dim = (width, height)
|
|
|
|
font = pygame.font.Font(pygame.font.get_default_font(), 20)
|
|
|
|
mono = next(x for x in pygame.font.get_fonts() if 'mono' in x) # hope for the best...
|
|
|
|
mono = pygame.font.match_font(mono, bold=True)
|
|
|
|
self._font_mono = pygame.font.Font(mono, 14)
|
|
|
|
self._notifications = FadingText(font, (width, 40), (0, height - 40))
|
|
|
|
self.help = HelpText(pygame.font.Font(mono, 24), width, height)
|
|
|
|
self.server_fps = 0
|
2018-11-09 00:12:55 +08:00
|
|
|
self.frame_number = 0
|
|
|
|
self.simulation_time = 0
|
|
|
|
self._show_info = True
|
|
|
|
self._info_text = []
|
|
|
|
self._server_clock = pygame.time.Clock()
|
|
|
|
|
|
|
|
def on_world_tick(self, timestamp):
|
|
|
|
self._server_clock.tick()
|
|
|
|
self.server_fps = self._server_clock.get_fps()
|
|
|
|
self.frame_number = timestamp.frame_count
|
|
|
|
self.simulation_time = timestamp.elapsed_seconds
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
def tick(self, world, clock):
|
2018-11-09 00:12:55 +08:00
|
|
|
if not self._show_info:
|
|
|
|
return
|
|
|
|
t = world.vehicle.get_transform()
|
|
|
|
v = world.vehicle.get_velocity()
|
|
|
|
c = world.vehicle.get_vehicle_control()
|
|
|
|
heading = 'N' if abs(t.rotation.yaw) < 89.5 else ''
|
|
|
|
heading += 'S' if abs(t.rotation.yaw) > 90.5 else ''
|
|
|
|
heading += 'E' if 179.5 > t.rotation.yaw > 0.5 else ''
|
|
|
|
heading += 'W' if -0.5 > t.rotation.yaw > -179.5 else ''
|
|
|
|
colhist = world.collision_sensor.get_collision_history()
|
|
|
|
collision = [colhist[x + self.frame_number - 200] for x in range(0, 200)]
|
|
|
|
max_col = max(1.0, max(collision))
|
|
|
|
collision = [x / max_col for x in collision]
|
|
|
|
self._info_text = [
|
|
|
|
'server: % 16d FPS' % self.server_fps,
|
|
|
|
'client: % 16d FPS' % clock.get_fps(),
|
|
|
|
'',
|
|
|
|
'vehicle: % 20s' % get_actor_display_name(world.vehicle, truncate=20),
|
|
|
|
'map: % 20s' % world.world.map_name,
|
|
|
|
'simulation time: % 12s' % datetime.timedelta(seconds=int(self.simulation_time)),
|
|
|
|
'',
|
|
|
|
'speed: % 15.0f km/h' % (3.6 * math.sqrt(v.x**2 + v.y**2 + v.z**2)),
|
|
|
|
u'heading:% 16.0f\N{DEGREE SIGN} % 2s' % (t.rotation.yaw, heading),
|
|
|
|
'location:% 20s' % ('(% 5.1f, % 5.1f)' % (t.location.x, t.location.y)),
|
|
|
|
'height: % 18.0f m' % t.location.z,
|
|
|
|
'',
|
|
|
|
('throttle:', c.throttle, 0.0, 1.0),
|
|
|
|
('steer:', c.steer, -1.0, 1.0),
|
|
|
|
('brake:', c.brake, 0.0, 1.0),
|
|
|
|
('reverse:', c.reverse),
|
|
|
|
('hand brake:', c.hand_brake),
|
|
|
|
'',
|
|
|
|
'collision:',
|
|
|
|
collision
|
|
|
|
]
|
|
|
|
vehicles = world.world.get_actors().filter('vehicle.*')
|
|
|
|
if len(vehicles) > 1:
|
|
|
|
self._info_text += ['', 'nearby vehicles:']
|
|
|
|
distance = lambda l: math.sqrt((l.x - t.location.x)**2 + (l.y - t.location.y)**2 + (l.z - t.location.z)**2)
|
|
|
|
vehicles = [(distance(x.get_location()), x) for x in vehicles if x.id != world.vehicle.id]
|
|
|
|
for d, vehicle in sorted(vehicles):
|
|
|
|
if d > 200.0:
|
|
|
|
break
|
|
|
|
vehicle_type = get_actor_display_name(vehicle, truncate=22)
|
|
|
|
self._info_text.append('% 4dm %s' % (d, vehicle_type))
|
2018-10-10 00:04:50 +08:00
|
|
|
self._notifications.tick(world, clock)
|
|
|
|
|
2018-11-09 00:12:55 +08:00
|
|
|
def toggle_info(self):
|
|
|
|
self._show_info = not self._show_info
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
def notification(self, text, seconds=2.0):
|
|
|
|
self._notifications.set_text(text, seconds=seconds)
|
|
|
|
|
|
|
|
def error(self, text):
|
|
|
|
self._notifications.set_text('Error: %s' % text, (255, 0, 0))
|
|
|
|
|
|
|
|
def render(self, display):
|
2018-11-09 00:12:55 +08:00
|
|
|
if self._show_info:
|
|
|
|
info_surface = pygame.Surface((220, self.dim[1]))
|
|
|
|
info_surface.set_alpha(100)
|
|
|
|
display.blit(info_surface, (0, 0))
|
|
|
|
v_offset = 4
|
|
|
|
bar_h_offset = 100
|
|
|
|
bar_width = 106
|
|
|
|
for item in self._info_text:
|
|
|
|
if v_offset + 18 > self.dim[1]:
|
|
|
|
break
|
|
|
|
if isinstance(item, list):
|
|
|
|
if len(item) > 1:
|
|
|
|
points = [(x + 8, v_offset + 8 + (1.0 - y) * 30) for x, y in enumerate(item)]
|
|
|
|
pygame.draw.lines(display, (255, 136, 0), False, points, 2)
|
|
|
|
item = None
|
|
|
|
v_offset += 18
|
|
|
|
elif isinstance(item, tuple):
|
|
|
|
if isinstance(item[1], bool):
|
|
|
|
rect = pygame.Rect((bar_h_offset, v_offset + 8), (6, 6))
|
|
|
|
pygame.draw.rect(display, (255, 255, 255), rect, 0 if item[1] else 1)
|
|
|
|
else:
|
|
|
|
rect_border = pygame.Rect((bar_h_offset, v_offset + 8), (bar_width, 6))
|
|
|
|
pygame.draw.rect(display, (255, 255, 255), rect_border, 1)
|
|
|
|
f = (item[1] - item[2]) / (item[3] - item[2])
|
|
|
|
if item[2] < 0.0:
|
|
|
|
rect = pygame.Rect((bar_h_offset + f * (bar_width - 6), v_offset + 8), (6, 6))
|
|
|
|
else:
|
|
|
|
rect = pygame.Rect((bar_h_offset, v_offset + 8), (f * bar_width, 6))
|
|
|
|
pygame.draw.rect(display, (255, 255, 255), rect)
|
|
|
|
item = item[0]
|
|
|
|
if item: # At this point has to be a str.
|
|
|
|
surface = self._font_mono.render(item, True, (255, 255, 255))
|
|
|
|
display.blit(surface, (8, v_offset))
|
|
|
|
v_offset += 18
|
2018-10-10 00:04:50 +08:00
|
|
|
self._notifications.render(display)
|
|
|
|
self.help.render(display)
|
|
|
|
|
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- FadingText ----------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class FadingText(object):
|
|
|
|
def __init__(self, font, dim, pos):
|
|
|
|
self.font = font
|
|
|
|
self.dim = dim
|
|
|
|
self.pos = pos
|
|
|
|
self.seconds_left = 0
|
|
|
|
self.surface = pygame.Surface(self.dim)
|
|
|
|
|
|
|
|
def set_text(self, text, color=(255, 255, 255), seconds=2.0):
|
|
|
|
text_texture = self.font.render(text, True, color)
|
|
|
|
self.surface = pygame.Surface(self.dim)
|
|
|
|
self.seconds_left = seconds
|
|
|
|
self.surface.fill((0, 0, 0, 0))
|
|
|
|
self.surface.blit(text_texture, (10, 11))
|
|
|
|
|
|
|
|
def tick(self, _, clock):
|
|
|
|
delta_seconds = 1e-3 * clock.get_time()
|
|
|
|
self.seconds_left = max(0.0, self.seconds_left - delta_seconds)
|
|
|
|
self.surface.set_alpha(500.0 * self.seconds_left)
|
|
|
|
|
|
|
|
def render(self, display):
|
|
|
|
display.blit(self.surface, self.pos)
|
|
|
|
|
|
|
|
|
|
|
|
# ==============================================================================
|
|
|
|
# -- HelpText ------------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class HelpText(object):
|
|
|
|
def __init__(self, font, width, height):
|
2018-10-22 06:30:35 +08:00
|
|
|
lines = __doc__.split('\n')
|
2018-10-10 00:04:50 +08:00
|
|
|
self.font = font
|
2018-10-22 06:30:35 +08:00
|
|
|
self.dim = (680, len(lines) * 22 + 12)
|
2018-10-10 00:04:50 +08:00
|
|
|
self.pos = (0.5 * width - 0.5 * self.dim[0], 0.5 * height - 0.5 * self.dim[1])
|
|
|
|
self.seconds_left = 0
|
|
|
|
self.surface = pygame.Surface(self.dim)
|
|
|
|
self.surface.fill((0, 0, 0, 0))
|
2018-10-22 06:30:35 +08:00
|
|
|
for n, line in enumerate(lines):
|
2018-10-10 00:04:50 +08:00
|
|
|
text_texture = self.font.render(line, True, (255, 255, 255))
|
2018-10-22 06:30:35 +08:00
|
|
|
self.surface.blit(text_texture, (22, n * 22))
|
2018-10-10 00:04:50 +08:00
|
|
|
self._render = False
|
|
|
|
self.surface.set_alpha(220)
|
|
|
|
|
|
|
|
def toggle(self):
|
|
|
|
self._render = not self._render
|
|
|
|
|
|
|
|
def render(self, display):
|
|
|
|
if self._render:
|
|
|
|
display.blit(self.surface, self.pos)
|
|
|
|
|
|
|
|
|
2018-10-21 02:33:37 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- CollisionSensor -----------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class CollisionSensor(object):
|
|
|
|
def __init__(self, parent_actor, hud):
|
|
|
|
self.sensor = None
|
2018-11-09 00:12:55 +08:00
|
|
|
self._history = []
|
2018-10-21 02:33:37 +08:00
|
|
|
self._parent = parent_actor
|
|
|
|
self._hud = hud
|
|
|
|
world = self._parent.get_world()
|
|
|
|
bp = world.get_blueprint_library().find('sensor.other.collision')
|
|
|
|
self.sensor = world.spawn_actor(bp, carla.Transform(), attach_to=self._parent)
|
|
|
|
# We need to pass the lambda a weak reference to self to avoid circular
|
|
|
|
# reference.
|
|
|
|
weak_self = weakref.ref(self)
|
|
|
|
self.sensor.listen(lambda event: CollisionSensor._on_collision(weak_self, event))
|
|
|
|
|
2018-11-09 00:12:55 +08:00
|
|
|
def get_collision_history(self):
|
|
|
|
history = collections.defaultdict(int)
|
|
|
|
for frame, intensity in self._history:
|
|
|
|
history[frame] += intensity
|
|
|
|
return history
|
|
|
|
|
2018-10-21 02:33:37 +08:00
|
|
|
@staticmethod
|
|
|
|
def _on_collision(weak_self, event):
|
|
|
|
self = weak_self()
|
|
|
|
if not self:
|
|
|
|
return
|
2018-11-13 22:54:43 +08:00
|
|
|
actor_type = get_actor_display_name(event.other_actor)
|
2018-10-22 06:30:35 +08:00
|
|
|
self._hud.notification('Collision with %r' % actor_type)
|
2018-11-09 00:12:55 +08:00
|
|
|
impulse = event.normal_impulse
|
|
|
|
intensity = math.sqrt(impulse.x**2 + impulse.y**2 + impulse.z**2)
|
|
|
|
self._history.append((event.frame_number, intensity))
|
|
|
|
if len(self._history) > 2000:
|
|
|
|
self._history.pop(0)
|
2018-10-21 02:33:37 +08:00
|
|
|
|
|
|
|
|
2018-11-13 22:54:11 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- LaneInvasionSensor --------------------------------------------------------
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
|
|
|
|
class LaneInvasionSensor(object):
|
|
|
|
def __init__(self, parent_actor, hud):
|
|
|
|
self.sensor = None
|
|
|
|
self._parent = parent_actor
|
|
|
|
self._hud = hud
|
|
|
|
world = self._parent.get_world()
|
|
|
|
bp = world.get_blueprint_library().find('sensor.other.lane_detector')
|
|
|
|
self.sensor = world.spawn_actor(bp, carla.Transform(), attach_to=self._parent)
|
|
|
|
# We need to pass the lambda a weak reference to self to avoid circular
|
|
|
|
# reference.
|
|
|
|
weak_self = weakref.ref(self)
|
|
|
|
self.sensor.listen(lambda event: LaneInvasionSensor._on_invasion(weak_self, event))
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _on_invasion(weak_self, event):
|
|
|
|
self = weak_self()
|
|
|
|
if not self:
|
|
|
|
return
|
|
|
|
text = ', '.join('%r' % x for x in event.crossed_lane_markings)
|
|
|
|
self._hud.notification('Crossed lane(s) %s' % text)
|
|
|
|
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- CameraManager -------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
|
|
|
|
class CameraManager(object):
|
|
|
|
def __init__(self, parent_actor, hud):
|
|
|
|
self.sensor = None
|
|
|
|
self._surface = None
|
|
|
|
self._parent = parent_actor
|
|
|
|
self._hud = hud
|
|
|
|
self._recording = False
|
|
|
|
self._camera_transforms = [
|
|
|
|
carla.Transform(carla.Location(x=1.6, z=1.7)),
|
2018-10-22 05:29:12 +08:00
|
|
|
carla.Transform(carla.Location(x=-5.5, z=2.8), carla.Rotation(pitch=-15))]
|
2018-10-22 06:30:35 +08:00
|
|
|
self._transform_index = 1
|
2018-10-10 00:04:50 +08:00
|
|
|
self._sensors = [
|
2018-10-22 18:44:13 +08:00
|
|
|
['sensor.camera.rgb', cc.Raw, 'Camera RGB'],
|
|
|
|
['sensor.camera.depth', cc.Raw, 'Camera Depth (Raw)'],
|
2018-10-10 00:04:50 +08:00
|
|
|
['sensor.camera.depth', cc.Depth, 'Camera Depth (Gray Scale)'],
|
|
|
|
['sensor.camera.depth', cc.LogarithmicDepth, 'Camera Depth (Logarithmic Gray Scale)'],
|
2018-10-22 18:44:13 +08:00
|
|
|
['sensor.camera.semantic_segmentation', cc.Raw, 'Camera Semantic Segmentation (Raw)'],
|
2018-10-30 03:23:50 +08:00
|
|
|
['sensor.camera.semantic_segmentation', cc.CityScapesPalette, 'Camera Semantic Segmentation (CityScapes Palette)'],
|
|
|
|
['sensor.lidar.ray_cast', None, 'Lidar (Ray-Cast)']]
|
2018-10-10 00:04:50 +08:00
|
|
|
world = self._parent.get_world()
|
|
|
|
bp_library = world.get_blueprint_library()
|
|
|
|
for item in self._sensors:
|
|
|
|
bp = bp_library.find(item[0])
|
2018-10-30 03:23:50 +08:00
|
|
|
if item[0].startswith('sensor.camera'):
|
|
|
|
bp.set_attribute('image_size_x', str(hud.dim[0]))
|
|
|
|
bp.set_attribute('image_size_y', str(hud.dim[1]))
|
2018-10-10 00:04:50 +08:00
|
|
|
item.append(bp)
|
|
|
|
self._index = None
|
|
|
|
|
|
|
|
def toggle_camera(self):
|
2018-10-22 05:29:12 +08:00
|
|
|
self._transform_index = (self._transform_index + 1) % len(self._camera_transforms)
|
|
|
|
self.sensor.set_transform(self._camera_transforms[self._transform_index])
|
2018-10-10 00:04:50 +08:00
|
|
|
|
2018-10-22 06:30:35 +08:00
|
|
|
def set_sensor(self, index, notify=True):
|
2018-10-10 00:04:50 +08:00
|
|
|
index = index % len(self._sensors)
|
|
|
|
needs_respawn = True if self._index is None \
|
|
|
|
else self._sensors[index][0] != self._sensors[self._index][0]
|
|
|
|
if needs_respawn:
|
|
|
|
if self.sensor is not None:
|
|
|
|
self.sensor.destroy()
|
|
|
|
self._surface = None
|
|
|
|
self.sensor = self._parent.get_world().spawn_actor(
|
|
|
|
self._sensors[index][-1],
|
2018-10-22 05:29:12 +08:00
|
|
|
self._camera_transforms[self._transform_index],
|
2018-10-10 00:04:50 +08:00
|
|
|
attach_to=self._parent)
|
|
|
|
# We need to pass the lambda a weak reference to self to avoid
|
|
|
|
# circular reference.
|
|
|
|
weak_self = weakref.ref(self)
|
|
|
|
self.sensor.listen(lambda image: CameraManager._parse_image(weak_self, image))
|
2018-10-22 06:30:35 +08:00
|
|
|
if notify:
|
|
|
|
self._hud.notification(self._sensors[index][2])
|
2018-10-10 00:04:50 +08:00
|
|
|
self._index = index
|
|
|
|
|
|
|
|
def next_sensor(self):
|
|
|
|
self.set_sensor(self._index + 1)
|
|
|
|
|
|
|
|
def toggle_recording(self):
|
|
|
|
self._recording = not self._recording
|
|
|
|
self._hud.notification('Recording %s' % ('On' if self._recording else 'Off'))
|
|
|
|
|
|
|
|
def render(self, display):
|
|
|
|
if self._surface is not None:
|
|
|
|
display.blit(self._surface, (0, 0))
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _parse_image(weak_self, image):
|
|
|
|
self = weak_self()
|
|
|
|
if not self:
|
|
|
|
return
|
2018-10-30 03:23:50 +08:00
|
|
|
if self._sensors[self._index][0].startswith('sensor.lidar'):
|
|
|
|
points = np.frombuffer(image.raw_data, dtype=np.dtype('f4'))
|
|
|
|
points = np.reshape(points, (int(points.shape[0]/3), 3))
|
|
|
|
lidar_data = np.array(points[:, :2])
|
|
|
|
lidar_data *= min(self._hud.dim) / 100.0
|
|
|
|
lidar_data += (0.5 * self._hud.dim[0], 0.5 * self._hud.dim[1])
|
|
|
|
lidar_data = np.fabs(lidar_data)
|
|
|
|
lidar_data = lidar_data.astype(np.int32)
|
|
|
|
lidar_data = np.reshape(lidar_data, (-1, 2))
|
|
|
|
lidar_img_size = (self._hud.dim[0], self._hud.dim[1], 3)
|
|
|
|
lidar_img = np.zeros(lidar_img_size)
|
|
|
|
lidar_img[tuple(lidar_data.T)] = (255, 255, 255)
|
|
|
|
self._surface = pygame.surfarray.make_surface(lidar_img)
|
|
|
|
else:
|
|
|
|
image.convert(self._sensors[self._index][1])
|
|
|
|
array = np.frombuffer(image.raw_data, dtype=np.dtype("uint8"))
|
|
|
|
array = np.reshape(array, (image.height, image.width, 4))
|
|
|
|
array = array[:, :, :3]
|
|
|
|
array = array[:, :, ::-1]
|
|
|
|
self._surface = pygame.surfarray.make_surface(array.swapaxes(0, 1))
|
2018-10-10 00:04:50 +08:00
|
|
|
if self._recording:
|
|
|
|
image.save_to_disk('_out/%08d' % image.frame_number)
|
2018-07-30 05:52:13 +08:00
|
|
|
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- game_loop() ---------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
2018-10-02 22:11:21 +08:00
|
|
|
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
def game_loop(args):
|
|
|
|
pygame.init()
|
|
|
|
pygame.font.init()
|
|
|
|
world = None
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
try:
|
|
|
|
client = carla.Client(args.host, args.port)
|
|
|
|
client.set_timeout(2.0)
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
display = pygame.display.set_mode(
|
|
|
|
(args.width, args.height),
|
|
|
|
pygame.HWSURFACE | pygame.DOUBLEBUF)
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
hud = HUD(args.width, args.height)
|
|
|
|
world = World(client.get_world(), hud)
|
|
|
|
controller = KeyboardControl(world, args.autopilot)
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
clock = pygame.time.Clock()
|
|
|
|
while True:
|
|
|
|
clock.tick_busy_loop(60)
|
|
|
|
if controller.parse_events(world, clock):
|
|
|
|
return
|
|
|
|
world.tick(clock)
|
|
|
|
world.render(display)
|
|
|
|
pygame.display.flip()
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
finally:
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
if world is not None:
|
|
|
|
world.destroy()
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
pygame.quit()
|
2018-07-30 05:52:13 +08:00
|
|
|
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
# ==============================================================================
|
|
|
|
# -- main() --------------------------------------------------------------------
|
|
|
|
# ==============================================================================
|
2018-07-30 05:52:13 +08:00
|
|
|
|
2018-10-02 22:11:21 +08:00
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
def main():
|
|
|
|
argparser = argparse.ArgumentParser(
|
|
|
|
description='CARLA Manual Control Client')
|
|
|
|
argparser.add_argument(
|
|
|
|
'-v', '--verbose',
|
|
|
|
action='store_true',
|
|
|
|
dest='debug',
|
|
|
|
help='print debug information')
|
|
|
|
argparser.add_argument(
|
|
|
|
'--host',
|
|
|
|
metavar='H',
|
2018-10-02 22:11:21 +08:00
|
|
|
default='127.0.0.1',
|
2018-10-10 00:04:50 +08:00
|
|
|
help='IP of the host server (default: 127.0.0.1)')
|
2018-07-30 05:52:13 +08:00
|
|
|
argparser.add_argument(
|
|
|
|
'-p', '--port',
|
|
|
|
metavar='P',
|
|
|
|
default=2000,
|
|
|
|
type=int,
|
|
|
|
help='TCP port to listen to (default: 2000)')
|
|
|
|
argparser.add_argument(
|
|
|
|
'-a', '--autopilot',
|
|
|
|
action='store_true',
|
|
|
|
help='enable autopilot')
|
2018-10-10 00:04:50 +08:00
|
|
|
argparser.add_argument(
|
|
|
|
'--res',
|
|
|
|
metavar='WIDTHxHEIGHT',
|
|
|
|
default='1280x720',
|
|
|
|
help='window resolution (default: 1280x720)')
|
2018-07-30 05:52:13 +08:00
|
|
|
args = argparser.parse_args()
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
args.width, args.height = [int(x) for x in args.res.split('x')]
|
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
log_level = logging.DEBUG if args.debug else logging.INFO
|
|
|
|
logging.basicConfig(format='%(levelname)s: %(message)s', level=log_level)
|
|
|
|
|
|
|
|
logging.info('listening to server %s:%s', args.host, args.port)
|
2018-10-10 00:04:50 +08:00
|
|
|
|
2018-07-30 05:52:13 +08:00
|
|
|
print(__doc__)
|
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
try:
|
2018-07-30 05:52:13 +08:00
|
|
|
|
2018-10-10 00:04:50 +08:00
|
|
|
game_loop(args)
|
2018-07-30 05:52:13 +08:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print('\nCancelled by user. Bye!')
|
2018-10-10 00:04:50 +08:00
|
|
|
except Exception as error:
|
|
|
|
logging.exception(error)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
main()
|