Docs/core_world.md
The client and the world are two of the fundamentals of CARLA, a necessary abstraction to operate the simulation and its actors.
This tutorial goes from defining the basics and creation of these elements, to describing their possibilities. If any doubt or issue arises during the reading, the CARLA forum is there to solve them.
Clients are one of the main elements in the CARLA architecture. They connect to the server, retrieve information, and command changes. That is done via scripts. The client identifies itself, and connects to the world to then operate with the simulation.
Besides that, clients are able to access advanced CARLA modules, features, and apply command batches. Only command batches will be covered in this section. These are useful for basic things such as spawning lots of actors. The rest of features are more complex, and they will be addressed in their respective pages in Advanced steps.
Take a look at carla.Client in the Python API reference to learn on specific methods and variables of the class.
Two things are needed. The IP address identifying it, and two TCP ports to communicate with the server. An optional third parameter sets the amount of working threads. By default this is set to all (0). The carla.Client in the Python API reference contains a snipet that shows how to parse these as arguments when running the script.
client = carla.Client('localhost', 2000)
By default, CARLA uses local host IP, and port 2000 to connect but these can be changed at will. The second port will always be n+1, 2001 in this case.
Once the client is created, set its time-out. This limits all networking operations so that these don't block the client forever. An error will be returned if connection fails.
client.set_timeout(10.0) # seconds
It is possible to have many clients connected, as it is common to have more than one script running at a time. Working in a multiclient scheme with advanced CARLA features, such as the traffic manager, is bound to make communication more complex.
!!! Note
Client and server have different libcarla modules. If the versions differ, issues may arise. This can be checked using the get_client_version() and get_server_version() methods.
A client can connect and retrieve the current world fairly easily.
world = client.get_world()
The client can also get a list of available maps to change the current one. This will destroy the current world and create a new one.
print(client.get_available_maps())
...
world = client.load_world('Town01')
# client.reload_world() creates a new instance of the world with the same map.
Every world object has an id or episode. Everytime the client calls for load_world() or reload_world() the previous one is destroyed. A new one is created from scratch with a new episode. Unreal Engine is not rebooted in the process.
Commands are adaptations of some of the most-common CARLA methods, that can be applied in batches. For instance, the command.SetAutopilot is equivalent to Vehicle.set_autopilot(), enables the autopilot for a vehicle. However, using the methods Client.apply_batch or Client.apply_batch_sync(), a list of commands can be applied in one single simulation step. This becomes extremely useful for methods that are usually applied to even hundreds of elements.
The following example uses a batch to destroy a list of vehicles all at once.
client.apply_batch([carla.command.DestroyActor(x) for x in vehicles_list])
All the commands available are listed in the latest section of the Python API reference.
The main purpose of the client object is to get or change the world, and apply commands. However, it also provides access to some additional features.
The major ruler of the simulation. Its instance should be retrieved by the client. It does not contain the model of the world itself, that is part of the Map class. Instead, most of the information, and general settings can be accessed from this class.
Some of its most important methods are getters, precisely to retrieve information or instances of these elements. Take a look at carla.World to learn more about it.
The world has different methods related with actors that allow for different functionalities.
Spawning will be explained in 2nd. Actors and blueprints. It requires some understanding on the blueprint library, attributes, etc.
The weather is not a class on its own, but a set of parameters accessible from the world. The parametrization includes sun orientation, cloudiness, wind, fog, and much more. The helper class carla.WeatherParameters is used to define a custom weather.
weather = carla.WeatherParameters(
cloudiness=80.0,
precipitation=30.0,
sun_altitude_angle=70.0)
world.set_weather(weather)
print(world.get_weather())
There are some weather presets that can be directly applied to the world. These are listed in carla.WeatherParameters and accessible as an enum.
world.set_weather(carla.WeatherParameters.WetCloudySunset)
The weather can also be customized using two scripts provided by CARLA.
environment.py (in PythonAPI/util) — Provides access to weather and light parameters so that these can be changed in real time. -h, --help show this help message and exit
--host H IP of the host server (default: 127.0.0.1)
-p P, --port P TCP port to listen to (default: 2000)
--sun SUN Sun position presets [sunset | day | night]
--weather WEATHER Weather condition presets [clear | overcast | rain]
--altitude A, -alt A Sun altitude [-90.0, 90.0]
--azimuth A, -azm A Sun azimuth [0.0, 360.0]
--clouds C, -c C Clouds amount [0.0, 100.0]
--rain R, -r R Rain amount [0.0, 100.0]
--puddles Pd, -pd Pd Puddles amount [0.0, 100.0]
--wind W, -w W Wind intensity [0.0, 100.0]
--fog F, -f F Fog intensity [0.0, 100.0]
--fogdist Fd, -fd Fd Fog Distance [0.0, inf)
--wetness Wet, -wet Wet
Wetness intensity [0.0, 100.0]
dynamic_weather.py (in PythonAPI/examples) — Enables a particular weather cycle prepared by developers for each CARLA map. -h, --help show this help message and exit
--host H IP of the host server (default: 127.0.0.1)
-p P, --port P TCP port to listen to (default: 2000)
-s FACTOR, --speed FACTOR
rate at which the weather changes (default: 1.0)
!!! Note Changes in the weather do not affect physics. They are only visuals that can be captured by the camera sensors.
Night mode starts when sun_altitude_angle < 0, which is considered sunset. This is when lights become especially relevant.
# Get the light manager and lights
lmanager = world.get_lightmanager()
mylights = lmanager.get_all_lights()
# Custom a specific light
light01 = mylights[0]
light01.turn_on()
light01.set_intensity(100.0)
state01 = carla.LightState(200.0,red,carla.LightGroup.Building,True)
light01.set_light_state(state01)
# Custom a group of lights
my_lights = lmanager.get_light_group(carla.LightGroup.Building)
lmanager.turn_on(my_lights)
lmanager.set_color(my_lights,carla.Color(255,0,0))
lmanager.set_intensities(my_lights,list_of_intensities)
The lights of a vehicle can be retrieved and updated anytime using the methods carla.Vehicle.get_light_state and carla.Vehicle.set_light_state. These use binary operations to customize the light setting.
# Turn on position lights
current_lights = carla.VehicleLightState.NONE
current_lights |= carla.VehicleLightState.Position
vehicle.set_light_state(current_lights)
!!! Note
Lights can also be set in real time using the environment.py described in the weather section.
World objects have a carla.DebugHelper object as a public attribute. It allows for different shapes to be drawn during the simulation. These are used to trace the events happening. The following example would draw a red box at an actor's location and rotation.
debug = world.debug
debug.draw_box(carla.BoundingBox(actor_snapshot.get_transform().location,carla.Vector3D(0.5,0.5,2)),actor_snapshot.get_transform().rotation, 0.05, carla.Color(255,0,0,0),0)
This example is extended in a snipet in carla.DebugHelper that shows how to draw boxes for every actor in a world snapshot.
Contains the state of every actor in the simulation at a single frame. A sort of still image of the world with a time reference. The information comes from the same simulation step, even in asynchronous mode.
# Retrieve a snapshot of the world at current frame.
world_snapshot = world.get_snapshot()
A carla.WorldSnapshot contains a carla.Timestamp and a list of carla.ActorSnapshot. Actor snapshots can be searched using the id of an actor. A snapshot lists the id of the actors appearing in it.
timestamp = world_snapshot.timestamp # Get the time reference
for actor_snapshot in world_snapshot: # Get the actor and the snapshot information
actual_actor = world.get_actor(actor_snapshot.id)
actor_snapshot.get_transform()
actor_snapshot.get_velocity()
actor_snapshot.get_angular_velocity()
actor_snapshot.get_acceleration()
actor_snapshot = world_snapshot.find(actual_actor.id) # Get an actor's snapshot
The world has access to some advanced configurations for the simulation. These determine rendering conditions, simulation time-steps, and synchrony between clients and server. They are accessible from the helper class carla.WorldSettings.
For the time being, default CARLA runs with the best graphics quality, a variable time-step, and asynchronously. To dive further in this matters take a look at the Advanced steps section. The pages on synchrony and time-step, and rendering options could be a great starting point.
That is a wrap on the world and client objects. The next step takes a closer look into actors and blueprints to give life to the simulation.
Keep reading to learn more. Visit the forum to post any doubts or suggestions that have come to mind during this reading.
<div text-align: center> <div class="build-buttons"> <p> <a href="https://github.com/carla-simulator/carla/discussions/" target="_blank" class="btn btn-neutral" title="CARLA forum"> CARLA forum</a> </p> </div> <div class="build-buttons"> <p> <a href="../core_actors" target="_blank" class="btn btn-neutral" title="2nd. Actors and blueprints"> 2nd. Actors and blueprints</a> </p> </div> </div>