Skip to content

Commit e13cc4b

Browse files
author
Bernd Gassmann
committed
Rename synchronous_mode_running -> game_running
make time entries double to be able to express exact game times
1 parent b5c8557 commit e13cc4b

6 files changed

Lines changed: 8 additions & 8 deletions

msg/CarlaEpisodeSettings.idl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ module carla_msgs {
1717
@default (value=FALSE)
1818
boolean no_rendering_mode;
1919

20-
float fixed_delta_seconds;
20+
double fixed_delta_seconds;
2121

2222
@default (value=TRUE)
2323
boolean substepping;
2424

2525
@default (value=0.01)
26-
float max_substep_delta_time;
26+
double max_substep_delta_time;
2727

2828
@default (value=10)
2929
int32 max_substeps;

msg/CarlaEpisodeSettings.msg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
bool synchronous_mode false
99
bool no_rendering_mode false
10-
float32 fixed_delta_seconds
10+
float64 fixed_delta_seconds
1111
bool substepping true
12-
float32 max_substep_delta_time 0.01
12+
float64 max_substep_delta_time 0.01
1313
int32 max_substeps 10
1414
float32 max_culling_distance 0.0
1515
bool deterministic_ragdolls false

msg/CarlaStatus.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module carla_msgs {
2727

2828
@verbatim (language="comment", text=
2929
"true: running, false: paused")
30-
boolean synchronous_mode_running;
30+
boolean game_running;
3131
};
3232
};
3333
};

msg/CarlaStatus.msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ carla_msgs/CarlaEpisodeSettings episode_settings
1212
uint64 frame # frame number
1313

1414
carla_msgs/CarlaSynchronizationWindowParticipantState[] synchronous_mode_participant_states
15-
bool synchronous_mode_running # true: running, false: paused
15+
bool game_running # true: running, false: paused
1616

msg/CarlaSynchronizationWindowParticipantState.idl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module carla_msgs {
1515

1616
uint32 participant_id;
1717

18-
float target_game_time;
18+
double target_game_time;
1919
};
2020
};
2121
};

msg/CarlaSynchronizationWindowParticipantState.msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77

88
string client_id
99
uint32 participant_id
10-
float32 target_game_time
10+
float64 target_game_time

0 commit comments

Comments
 (0)