We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After German Open: The members of game_controller::types::Game after sides and before teams should be represented about as follows:
game_controller::types::Game
sides
teams
enum PenaltyShootoutActiveState { Wait, Playing, AfterShot, } enum PenaltyShootoutState { BeforePenaltyShootout, Timeout(Timer), Active { timer: Timer, state: PenaltyShootoutActiveState, for: Side }, } enum Half { First, Second, } enum SetPlayType { KickOff, GoalKick, KickIn, CornerKick, // ... } enum SetPlayPhase { Setup(Timer), // TODO: timeout-rewind-timer Wait, // TODO: timeout-rewind-timer Playing(Timer), } enum BeforeKickOffState { BeforeHalf, Timeout(Timer), } enum NormalState { BeforeKickOff { state: BeforeKickOffState, next_for: Side, }, SetPlay { ty: SetPlayType, phase: SetPlayPhase, for: Side, }, Playing, AfterHalf, } enum State { Normal { half: Half, timer: Timer, state: NormalState, }, PenaltyShootout(PenaltyShootoutState), }
The control message can still be created from this.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After German Open: The members of
game_controller::types::Game
aftersides
and beforeteams
should be represented about as follows:The control message can still be created from this.
The text was updated successfully, but these errors were encountered: