mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-09-21 09:05:10 -07:00
* [Game] Playmats Took 19 seconds Took 1 minute * [Playmats] Add fixed override and configurable fallbacks to settings. Took 29 minutes Took 43 seconds * Add main to test. Took 1 minute Took 29 seconds * Move settings to own group Took 11 minutes * Some attempts to refresh macOS compositor Took 2 minutes * Try something else Took 17 minutes * Don't manipulate live list Took 11 minutes * Change things about resolution, address comments. Took 45 minutes Took 12 minutes * Comments. Took 14 minutes Took 8 seconds * Re-order settings menu location Took 2 minutes * Rename PlaymatResolution to Info and add enums Took 8 minutes --------- Co-authored-by: Lukas Brübach <Bruebach.Lukas@bdosecurity.de>
24 lines
811 B
Protocol Buffer
24 lines
811 B
Protocol Buffer
syntax = "proto2";
|
|
import "serverinfo_user.proto";
|
|
|
|
message ServerInfo_PlayerProperties {
|
|
message PlaymatParams {
|
|
optional string card_name = 1;
|
|
optional string card_provider_id = 2;
|
|
optional double margin_pct_l = 3 [default = 0.07];
|
|
optional double margin_pct_r = 4 [default = 0.07];
|
|
optional double vertical_offset = 5 [default = 0.33];
|
|
optional double zoom = 6 [default = 1.0];
|
|
}
|
|
|
|
optional sint32 player_id = 1;
|
|
optional ServerInfo_User user_info = 2;
|
|
optional bool spectator = 3;
|
|
optional bool conceded = 4;
|
|
optional bool ready_start = 5;
|
|
optional string deck_hash = 6;
|
|
optional sint32 ping_seconds = 7;
|
|
optional bool sideboard_locked = 8;
|
|
optional bool judge = 9;
|
|
optional PlaymatParams playmat_params = 10;
|
|
}
|