Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
battleships
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
patrick.gustard-sm
battleships
Commits
a4943fa3
Commit
a4943fa3
authored
Aug 08, 2019
by
patrick.gustard-sm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started working on cell shot recognition
parent
bc035332
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
6 deletions
+17
-6
Board.java
src/battleship/Board.java
+17
-6
No files found.
src/battleship/Board.java
View file @
a4943fa3
...
...
@@ -38,7 +38,8 @@ Cell cell = new Cell(x,y);
cell
.
setOnMouseClicked
(
handler
);
row
.
getChildren
().
add
(
cell
);
cell
.
isShot
=
false
;
cell
.
isShotEnemy
=
false
;
}
...
...
@@ -59,6 +60,10 @@ public int xAxis;
public
int
yAxis
;
public
boolean
isShotEnemy
=
false
;
public
boolean
isShot
=
false
;
public
boolean
isShip
=
false
;
public
boolean
shoot
=
false
;
...
...
@@ -87,11 +92,13 @@ if (isShip == true) {
//if cell contains a ship
setFill
(
Color
.
ORANGE
);
if
(
isShot
=
true
)
{
shoot
();
}
isShot
=
true
;
Main
.
HealthEnemy
--;
System
.
out
.
println
(
"Enemy Health is "
+
Main
.
HealthEnemy
);
if
(
Main
.
HealthEnemy
<
1
)
{
System
.
out
.
println
(
"You Win!"
);
// Once the player reduces the enemy ships or health (same thing) to zero then they win
System
.
exit
(
0
);
...
...
@@ -106,7 +113,10 @@ enemyTurn();
setFill
(
Color
.
BLUE
);
//Orange shows a hit, whereas Blue represents a miss
if
(
isShot
=
true
)
{
shoot
();
}
isShot
=
true
;
enemyTurn
();
}
...
...
@@ -301,9 +311,10 @@ enemyTarget = Main.BoardPlayer.getCell(ComputerX, ComputerY); //Sets the compute
if
(
enemyTarget
.
isShip
)
{
enemyTarget
.
setFill
(
Color
.
ORANGE
);
if
(
Cell
.
isShotEnemy
=
true
)
{
enemyTurn
();
}
Main
.
HealthPlayer
--;
System
.
out
.
println
(
"Player Health is "
+
Main
.
HealthPlayer
);
...
...
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