1- // version 1.4
1+ // version 1.6
22
33syntax = "proto3" ;
44
@@ -313,7 +313,7 @@ message WorldModel {
313313 repeated Player unknowns = 10 ;
314314 map <int32 , Player > our_players_dict = 11 ;
315315 map <int32 , Player > their_players_dict = 12 ;
316- int32 our_goalie_uniform_number = 13 ; // The uniform number of our goalie.
316+ int32 our_goalie_uniform_number = 13 ; // The uniform number of our goalie.
317317 int32 their_goalie_uniform_number = 14 ; // The uniform number of their goalie.
318318 float offside_line_x = 15 ; // The x-coordinate of the offside line of opponent team.
319319 int32 ofside_line_x_count = 16 ; // How many cycles ago the agent has seen (calculated) the offside line.
@@ -340,6 +340,9 @@ message WorldModel {
340340 bool kickable_opponent_existance = 37 ; // Whether the kickable opponent exists or not.
341341 PenaltyKickState penalty_kick_state = 38 ; // The penalty kick state.
342342 int32 see_time = 39 ; // The time that the agent has seen the world model.
343+ int32 time_stopped = 40 ;
344+ int32 set_play_count = 41 ;
345+ Side game_mode_side = 42 ;
343346}
344347
345348/**
@@ -1249,6 +1252,10 @@ message ServerParam {
12491252 float penalty_area_half_width = 220 ;
12501253 float penalty_area_length = 221 ;
12511254 float goal_width = 222 ;
1255+ float goal_area_width = 223 ;
1256+ float goal_area_length = 224 ;
1257+ float center_circle_r = 225 ;
1258+ float goal_post_radius = 226 ;
12521259}
12531260
12541261message PlayerParam {
0 commit comments