Merge pull request #143 from flixcoo/bug/142-wrong-marked-round-winner
Wrong marked round winner
This commit is contained in:
@@ -294,26 +294,19 @@ class _RoundViewState extends State<RoundView> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Gets the index of the player who won the previous round.
|
/// Gets the index of the player who won the previous round.
|
||||||
|
/// Returns 0 in the first round, as there is no previous round.
|
||||||
int _getPreviousRoundWinnerIndex() {
|
int _getPreviousRoundWinnerIndex() {
|
||||||
if (widget.roundNumber == 1) {
|
if (widget.roundNumber == 1) {
|
||||||
return 0; // If it's the first round, there's no previous round, so return 0.
|
return 0; // If it's the first round, the order should be the same as the players list.
|
||||||
}
|
}
|
||||||
|
|
||||||
final previousRound = widget.gameSession.roundList[widget.roundNumber - 2];
|
final List<int> scores = widget.gameSession.roundList[widget.roundNumber - 2].scoreUpdates;
|
||||||
final scores = previousRound.scoreUpdates;
|
final int winnerIndex = scores.indexOf(0);
|
||||||
|
|
||||||
// Find the index of the player with the minimum score
|
// Fallback if no player has 0 points, which should not happen in a valid game.
|
||||||
int minScore = scores[0];
|
if (winnerIndex == -1) {
|
||||||
int winnerIndex = 0;
|
return 0;
|
||||||
|
|
||||||
// Iterate through the scores to find the player with the minimum score
|
|
||||||
for (int i = 1; i < scores.length; i++) {
|
|
||||||
if (scores[i] < minScore) {
|
|
||||||
minScore = scores[i];
|
|
||||||
winnerIndex = i;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return winnerIndex;
|
return winnerIndex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ name: cabo_counter
|
|||||||
description: "Mobile app for the card game Cabo"
|
description: "Mobile app for the card game Cabo"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.5.3+595
|
version: 0.5.3+596
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.5.4
|
sdk: ^3.5.4
|
||||||
|
|||||||
Reference in New Issue
Block a user