Skip to content

Commit

Permalink
Various updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shmocz committed Sep 11, 2024
1 parent b6046d9 commit 5cedbbf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ra2yrproto/commands_yr.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,12 @@ message MissionClicked {
message Configuration {
bool debug_log = 1;
string record_filename = 2;
string traffic_filename = 3;
// How many frames to pass before parsing map data again. Default is 1 (every
// frame). Increase this if you are experiencing performance problems. Set 0
// to disable.
uint32 parse_map_data_interval = 3;
bool single_step = 4;
uint32 parse_map_data_interval = 4;
bool single_step = 5;
}

message InspectConfiguration {
Expand Down
12 changes: 11 additions & 1 deletion ra2yrproto/ra2yr.proto
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,10 @@ message Event {
uint32 delay = 3;
}

message Deploy {
TargetClass whom = 1;
}

message Target {
TargetClass whom = 1;
}
Expand Down Expand Up @@ -507,6 +511,10 @@ message Event {
int32 id = 2;
}

message Sell {
TargetClass whom = 1;
}

message SellCell {
Coordinates cell = 1;
}
Expand All @@ -528,8 +536,10 @@ message Event {
SpecialPlace special_place = 14;
Specific specific = 15;
SellCell sell_cell = 16;
Deploy deploy = 17;
Sell sell = 18;
}
uint32 timing = 17;
uint32 timing = 19;
}

message EventLists {
Expand Down

0 comments on commit 5cedbbf

Please sign in to comment.