Skip to content

Commit 8eae53c

Browse files
committed
Init commit
0 parents  commit 8eae53c

File tree

5 files changed

+258
-0
lines changed

5 files changed

+258
-0
lines changed

battleship.html

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<title>Battleship</title>
6+
<style>
7+
body {
8+
background-color: black;
9+
}
10+
11+
div#board {
12+
position: relative;
13+
width: 1024px;
14+
height: 863px;
15+
margin: auto;
16+
background: url("board.jpg") no-repeat;
17+
}
18+
19+
div#messageArea {
20+
position: absolute;
21+
top: 0px;
22+
left: 0px;
23+
color: rgb(83, 175, 19);
24+
}
25+
26+
table {
27+
position: absolute;
28+
left: 173px;
29+
top: 98px;
30+
border-spacing: 0px;
31+
}
32+
33+
td {
34+
width: 94px;
35+
height: 94px;
36+
}
37+
38+
form {
39+
position: absolute;
40+
bottom: 0px;
41+
right: 0px;
42+
padding: 15px;
43+
background-color: rgb(83, 175, 19);
44+
}
45+
46+
form input {
47+
background-color: rgb(152, 207, 113);
48+
border-color: rgb(83, 175, 19);
49+
font-size: 1em;
50+
}
51+
52+
.hit {
53+
background: url("ship.png") no-repeat center center;
54+
}
55+
56+
.miss {
57+
background: url("miss.png") no-repeat center center;
58+
}
59+
</style>
60+
</head>
61+
<body>
62+
<div id="board">
63+
<div id="messageArea"></div>
64+
<table>
65+
<tr>
66+
<td id="00"></td><td id="01"></td><td id="02"></td><td id="03"></td><td id="04"></td><td id="05"></td><td id="06"></td>
67+
</tr>
68+
<tr>
69+
<td id="10"></td><td id="11"></td><td id="12"></td><td id="13"></td><td id="14"></td><td id="15"></td><td id="16"></td>
70+
</tr>
71+
<tr>
72+
<td id="20"></td><td id="21"></td><td id="22"></td><td id="23"></td><td id="24"></td><td id="25"></td><td id="26"></td>
73+
</tr>
74+
<tr>
75+
<td id="30"></td><td id="31"></td><td id="32"></td><td id="33"></td><td id="34"></td><td id="35"></td><td id="36"></td>
76+
</tr>
77+
<tr>
78+
<td id="40"></td><td id="41"></td><td id="42"></td><td id="43"></td><td id="44"></td><td id="45"></td><td id="46"></td>
79+
</tr>
80+
<tr>
81+
<td id="50"></td><td id="51"></td><td id="52"></td><td id="53"></td><td id="54"></td><td id="55"></td><td id="56"></td>
82+
</tr>
83+
<tr>
84+
<td id="60"></td><td id="61"></td><td id="62"></td><td id="63"></td><td id="64"></td><td id="65"></td><td id="66"></td>
85+
</tr>
86+
</table>
87+
<form>
88+
<input type="text" id="guessInput" placeholder="A0">
89+
<input type="button" id="fireButton" value="Fire!">
90+
</form>
91+
</div>
92+
<script src="battleship.js"></script>
93+
</body>
94+
</html>

battleship.js

+164
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
var view = {
2+
displayMessage: function(msg) {
3+
var messageArea = document.getElementById("messageArea");
4+
messageArea.innerHTML = msg;
5+
},
6+
displayHit: function(location) {
7+
var cell = document.getElementById(location);
8+
cell.setAttribute("class", "hit");
9+
},
10+
displayMiss: function(location) {
11+
var cell = document.getElementById(location);
12+
cell.setAttribute("class", "miss");
13+
}
14+
};
15+
16+
var model = {
17+
boardSize: 7,
18+
numShips: 3,
19+
shipLength: 3,
20+
shipsSunk: 0,
21+
22+
ships: [ { locations: [0, 0, 0], hits: ["", "", ""] },
23+
{ locations: [0, 0, 0], hits: ["", "", ""] },
24+
{ locations: [0, 0, 0], hits: ["", "", ""] } ],
25+
26+
fire: function(guess) {
27+
for (var i = 0; i < this.numShips; i++) {
28+
var ship = this.ships[i];
29+
var index = ship.locations.indexOf(guess);
30+
if (index >= 0) {
31+
ship.hits[index] = "hit";
32+
view.displayHit(guess);
33+
view.displayMessage("HIT!");
34+
if (this.isSunk(ship)) {
35+
view.displayMessage("You sank my battleship!");
36+
this.shipsSunk++;
37+
}
38+
return true;
39+
}
40+
}
41+
view.displayMiss(guess);
42+
view.displayMessage("You missed.");
43+
return false;
44+
},
45+
46+
isSunk: function(ship) {
47+
for (var i = 0; i < this.shipLength; i++) {
48+
if (ship.hits[i] !== "hit") {
49+
return false;
50+
}
51+
}
52+
return true;
53+
},
54+
55+
generateShipLocations: function() {
56+
var locations;
57+
for (var i = 0; i < this.numShips; i++) {
58+
do {
59+
locations = this.generateShip();
60+
} while (this.collision(locations));
61+
this.ships[i].locations = locations;
62+
}
63+
},
64+
65+
generateShip: function() {
66+
var direction = Math.floor(Math.random() * 2);
67+
var row, col;
68+
69+
if (direction === 1) {
70+
row = Math.floor(Math.random() * this.boardSize);
71+
col = Math.floor(Math.random() * (this.boardSize - this.shipLength));
72+
} else {
73+
row = Math.floor(Math.random() * (this.boardSize - this.shipLength));
74+
col = Math.floor(Math.random() * this.boardSize);
75+
}
76+
77+
var newShipLocations = [];
78+
for (var i = 0; i < this.shipLength; i++) {
79+
if (direction === 1) {
80+
newShipLocations.push(row + "" + (col + i));
81+
} else {
82+
newShipLocations.push((row + i) + "" + col);
83+
}
84+
}
85+
return newShipLocations;
86+
},
87+
88+
collision: function(locations) {
89+
for (var i = 0; i < this.numShips; i++) {
90+
var ship = model.ships[i];
91+
for (var j = 0; j < locations.length; j++) {
92+
if (ship.locations.indexOf(locations[j]) >= 0) {
93+
return true;
94+
}
95+
}
96+
}
97+
return false;
98+
}
99+
100+
};
101+
102+
var controller = {
103+
guesses: 0,
104+
105+
processGuess: function(guess) {
106+
var location = parseGuess(guess);
107+
if (location) {
108+
this.guesses++;
109+
var hit = model.fire(location);
110+
if (hit && model.shipsSunk === model.numShips) {
111+
view.displayMessage("You sank all my battleships, in " + this.guesses + " guesses");
112+
}
113+
}
114+
}
115+
};
116+
117+
118+
function parseGuess(guess) {
119+
var alphabet = ["A", "B", "C", "D", "E", "F", "G"];
120+
121+
if (guess === null || guess.length !== 2) {
122+
alert("Oops, please enter a letter and a number on the board.");
123+
} else {
124+
firstChar = guess.charAt(0);
125+
var row = alphabet.indexOf(firstChar);
126+
var column = guess.charAt(1);
127+
128+
if (isNaN(row) || isNaN(column)) {
129+
alert("Oops, that isn't on the board.");
130+
} else if (row < 0 || row >= model.boardSize || column < 0 || column >= model.boardSize) {
131+
alert("Oops, that's off the board!");
132+
} else {
133+
return row + column;
134+
}
135+
}
136+
return null;
137+
}
138+
139+
function init() {
140+
var fireButton = document.getElementById("fireButton");
141+
fireButton.onclick = handleFireButton;
142+
var guessInput = document.getElementById("guessInput");
143+
guessInput.onkeypress = handleKeyPress;
144+
145+
model.generateShipLocations();
146+
}
147+
148+
function handleKeyPress(e) {
149+
var fireButton = document.getElementById("fireButton");
150+
if (e.keyCode === 13) {
151+
fireButton.click();
152+
return false;
153+
}
154+
}
155+
156+
function handleFireButton() {
157+
var guessInput = document.getElementById("guessInput");
158+
var guess = guessInput.value;
159+
controller.processGuess(guess);
160+
161+
guessInput.value = "";
162+
}
163+
164+
window.onload = init

board.jpg

85.7 KB
Loading

miss.png

3.39 KB
Loading

ship.png

3.87 KB
Loading

0 commit comments

Comments
 (0)