-
-
Notifications
You must be signed in to change notification settings - Fork 403
Crazyhouse support 🎉 #2662
New issue
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
Merged
Merged
Crazyhouse support 🎉 #2662
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e93645e
feat: add crazyhouse pockets to GameLayout
tom-anders 247b767
fix analysis board not being centered on small screens
tom-anders 71ac1cd
feat: add crazyhouse pockets to AnalysisLayout
tom-anders 016fad2
fix pawn drop moves in crazyhouse studies
tom-anders 8d47962
support reading crazyhouse games
tom-anders d5704ab
add tests for crazyhouse in analysis and games
tom-anders e78b056
refactor: always use kEmptyFEN from dartchess
tom-anders bc59799
Merge branch 'main' into crazyhouse
veloce File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| import 'package:chessground/chessground.dart'; | ||
| import 'package:dartchess/dartchess.dart'; | ||
| import 'package:freezed_annotation/freezed_annotation.dart'; | ||
| import 'package:lichess_mobile/src/model/common/chess.dart'; | ||
|
|
||
| part 'game_board_params.freezed.dart'; | ||
|
|
||
| @freezed | ||
| sealed class GameBoardParams with _$GameBoardParams { | ||
| const GameBoardParams._(); | ||
|
|
||
| const factory GameBoardParams.readonly({ | ||
| required String fen, | ||
| required Variant variant, | ||
| required Pockets? pockets, | ||
| }) = ReadonlyBoardParams; | ||
|
|
||
| const factory GameBoardParams.interactive({ | ||
| required Variant variant, | ||
| required Position position, | ||
| required PlayerSide playerSide, | ||
| required NormalMove? promotionMove, | ||
| required void Function(Move, {bool? viaDragAndDrop}) onMove, | ||
| required void Function(Role? role) onPromotionSelection, | ||
| required Premovable? premovable, | ||
| }) = InteractiveBoardParams; | ||
|
|
||
| static const emptyBoard = ReadonlyBoardParams( | ||
| fen: kEmptyFEN, | ||
|
tom-anders marked this conversation as resolved.
|
||
| variant: Variant.standard, | ||
| pockets: null, | ||
| ); | ||
|
|
||
| String get fen => switch (this) { | ||
| ReadonlyBoardParams(:final fen) => fen, | ||
| InteractiveBoardParams(:final position) => position.fen, | ||
| }; | ||
|
|
||
| Pockets? get pockets => switch (this) { | ||
| ReadonlyBoardParams(:final pockets) => pockets, | ||
| InteractiveBoardParams(:final position) => position.pockets, | ||
| }; | ||
|
tom-anders marked this conversation as resolved.
|
||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.