From 63ca7a1de1dacd319abea01f23948a95ec6c2598 Mon Sep 17 00:00:00 2001 From: Andinus Date: Sat, 1 May 2021 16:50:38 +0530 Subject: Print scorecard & end gracefully --- lib/Antlia/CLI.rakumod | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/lib/Antlia/CLI.rakumod b/lib/Antlia/CLI.rakumod index 3bcdfd9..8261e57 100644 --- a/lib/Antlia/CLI.rakumod +++ b/lib/Antlia/CLI.rakumod @@ -1,4 +1,5 @@ use Terminal::Boxer; +use Terminal::ANSIColor; class Player is export { has Str $.name; @@ -16,6 +17,9 @@ class Player is export { } } +my Bool $end-loop = False; +signal(SIGINT).tap({$end-loop = True;}); + #| text based Rock paper scissors game multi sub MAIN( Int :$players where * >= 2 = 2, #= Number of players (default: 2) @@ -27,6 +31,7 @@ multi sub MAIN( for 1 .. $players { push @players, Player.new(name => prompt("[Player $_] Name: ").trim); } + print "\n"; my %score-against = ( rock => "scissor", @@ -36,19 +41,30 @@ multi sub MAIN( my Int $round = 0; loop { - say "[Round {++$round}]"; - for @players -> $player { $player.throw = .pick[0]; } for @players -> $player { for @players -> $player-against { - $player.score += 1 if $player-against.throw eq %score-against{$player.throw}; + $player.score += 1 if $player-against.throw + eq %score-against{$player.throw}; } } + say "[Round {++$round}]"; say ss-box(:4col, :20cw, @players.map(*.throw-art)); + + last if $end-loop; + } + + with @players.sort(*.score).reverse -> @players-sorted { + my @scorecard = ; + for @players-sorted -> $player { + push @scorecard, $player.name, $player.score.Str; + } + say ss-box(:2col, :40cw, @scorecard); + say colored(@players-sorted[0].name, 'cyan') ~ " wins!"; } } -- cgit 1.4.1-2-gfad0 ue='author'>author
blob: 63679c9806199047641ce9d0be2fa5eb4326327c (plain) (blame)
1
2
3
4