Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LI Qi
Bowling
Commits
a23e6484
Commit
a23e6484
authored
Feb 18, 2016
by
Qi LI
Browse files
put player back on game (new set) after quit
parent
ecdbb3a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/game/Game.java
View file @
a23e6484
...
...
@@ -35,38 +35,38 @@ public class Game {
if
(!
next
.
isOff
())
{
int
point
=
-
1
;
while
(
point
<
0
||
point
>
10
)
{
System
.
out
.
format
(
"%n%s, please enter the point: "
,
next
.
getName
());
if
(!
inputReader
.
hasNextInt
())
{
String
command
=
inputReader
.
next
();
inputReader
.
nextLine
();
if
(
command
.
equals
(
"score"
))
{
for
(
int
i
=
0
;
i
<
players
.
size
();
++
i
)
{
Player
player
=
players
.
get
(
i
);
System
.
out
.
format
(
"%s's score table:%n%s%n"
,
player
.
getName
(),
newSet
.
getScoreTable
(
player
));
int
point
=
-
1
;
while
(
point
<
0
||
point
>
10
)
{
System
.
out
.
format
(
"%n%s, please enter the point: "
,
next
.
getName
());
if
(!
inputReader
.
hasNextInt
())
{
String
command
=
inputReader
.
next
();
inputReader
.
nextLine
();
if
(
command
.
equals
(
"score"
))
{
for
(
int
i
=
0
;
i
<
players
.
size
();
++
i
)
{
Player
player
=
players
.
get
(
i
);
System
.
out
.
format
(
"%s's score table:%n%s%n"
,
player
.
getName
(),
newSet
.
getScoreTable
(
player
));
}
}
else
if
(
command
.
equals
(
"quit"
))
{
next
.
quitNow
();
System
.
out
.
format
(
"%n%s has quit the game !"
,
next
.
getName
());
break
;
}
}
else
if
(
command
.
equals
(
"quit"
))
{
next
.
quitNow
();
System
.
out
.
format
(
"%n%s has quit the game !"
,
next
.
getName
());
break
;
}
else
{
point
=
inputReader
.
nextInt
();
inputReader
.
nextLine
();
try
{
String
info
=
newSet
.
enterPoint
(
point
);
if
(
info
!=
null
)
System
.
out
.
println
(
info
);
System
.
out
.
format
(
"%s's score table:%n%s%n"
,
next
.
getName
(),
newSet
.
getScoreTable
(
next
));
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
e
.
getMessage
());
}
}
}
else
{
point
=
inputReader
.
nextInt
();
inputReader
.
nextLine
();
try
{
String
info
=
newSet
.
enterPoint
(
point
);
if
(
info
!=
null
)
System
.
out
.
println
(
info
);
System
.
out
.
format
(
"%s's score table:%n%s%n"
,
next
.
getName
(),
newSet
.
getScoreTable
(
next
));
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
e
.
getMessage
());
}
}
}
}
else
{
int
point
=
0
;
...
...
@@ -88,10 +88,18 @@ public class Game {
return
inputReader
.
next
().
equals
(
"quit"
);
}
public
void
enrollAllPlayers
()
{
for
(
Player
player
:
players
)
{
if
(
player
.
isOff
())
player
.
onGame
();
}
}
public
static
void
main
(
String
[]
args
)
{
Game
game
=
new
Game
();
while
(
true
)
{
game
.
enterPlayers
();
game
.
enrollAllPlayers
();
Player
winner
=
game
.
startSet
();
System
.
out
.
println
(
"Congratulations "
+
winner
.
getName
()
+
"! You win!"
);
...
...
src/game/Player.java
View file @
a23e6484
...
...
@@ -26,4 +26,8 @@ public class Player {
public
Boolean
isOff
()
{
return
quit
;
}
public
void
onGame
()
{
this
.
quit
=
false
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment