-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbattleship.js
212 lines (169 loc) · 4.84 KB
/
battleship.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
var model = {
boardSize: 7,
numShips: 3,
shipLength: 3,
shipsSunk: 0,
ships: [
{ locations: [0, 0, 0], hits: ["", "", ""] },
{ locations: [0, 0, 0], hits: ["", "", ""] },
{ locations: [0, 0, 0], hits: ["", "", ""] }
],
// original hard-coded values for ship locations
/*
ships: [
{ locations: ["06", "16", "26"], hits: ["", "", ""] },
{ locations: ["24", "34", "44"], hits: ["", "", ""] },
{ locations: ["10", "11", "12"], hits: ["", "", ""] }
],
*/
fire: function(guess) {
for (var i = 0; i < this.numShips; i++) {
var ship = this.ships[i];
var index = ship.locations.indexOf(guess);
// here's an improvement! Check to see if the ship
// has already been hit, message the user, and return true.
if (ship.hits[index] === "hit") {
view.displayMessage("Casi, esta posición la tenemos ya!");
return true;
} else if (index >= 0) {
ship.hits[index] = "hit";
view.displayHit(guess);
view.displayMessage("TOCADO!");
if (this.isSunk(ship)) {
view.displayMessage("Barco hundido!");
this.shipsSunk++;
}
return true;
}
}
view.displayMiss(guess);
view.displayMessage("Justo al lado.");
return false;
},
isSunk: function(ship) {
for (var i = 0; i < this.shipLength; i++) {
if (ship.hits[i] !== "hit") {
return false;
}
}
return true;
},
generateShipLocations: function() {
var locations;
for (var i = 0; i < this.numShips; i++) {
do {
locations = this.generateShip();
} while (this.collision(locations));
this.ships[i].locations = locations;
}
console.log("Ships array: ");
console.log(this.ships);
},
generateShip: function() {
var direction = Math.floor(Math.random() * 2);
var row, col;
if (direction === 1) { // horizontal
row = Math.floor(Math.random() * this.boardSize);
col = Math.floor(Math.random() * (this.boardSize - this.shipLength));
} else { // vertical
row = Math.floor(Math.random() * (this.boardSize - this.shipLength));
col = Math.floor(Math.random() * this.boardSize);
}
var newShipLocations = [];
for (var i = 0; i < this.shipLength; i++) {
if (direction === 1) {
newShipLocations.push(row + "" + (col + i));
} else {
newShipLocations.push((row + i) + "" + col);
}
}
return newShipLocations;
},
collision: function(locations) {
for (var i = 0; i < this.numShips; i++) {
var ship = this.ships[i];
for (var j = 0; j < locations.length; j++) {
if (ship.locations.indexOf(locations[j]) >= 0) {
return true;
}
}
}
return false;
}
};
var view = {
displayMessage: function(msg) {
var messageArea = document.getElementById("messageArea");
messageArea.innerHTML = msg;
},
displayHit: function(location) {
var cell = document.getElementById(location);
cell.setAttribute("class", "hit");
},
displayMiss: function(location) {
var cell = document.getElementById(location);
cell.setAttribute("class", "miss");
}
};
var controller = {
guesses: 0,
processGuess: function(guess) {
var location = parseGuess(guess);
if (location) {
this.guesses++;
var hit = model.fire(location);
if (hit && model.shipsSunk === model.numShips) {
view.displayMessage("Usted hizo " + this.guesses + " intentos para hundir todos los barcos.");
}
}
}
}
// helper function to parse a guess from the user
function parseGuess(guess) {
var alphabet = ["A", "B", "C", "D", "E", "F", "G"];
if (guess === null || guess.length !== 2) {
alert("Por favor, introduzca una letra y un número del tablero de juego.");
} else {
var firstChar = guess.charAt(0);
var row = alphabet.indexOf(firstChar);
var column = guess.charAt(1);
if (isNaN(row) || isNaN(column)) {
alert("Casi, este tiro no está en el tablero.");
} else if (row < 0 || row >= model.boardSize ||
column < 0 || column >= model.boardSize) {
alert("Casi, este tiro no está dentro del tablero.");
} else {
return row + column;
}
}
return null;
}
// event handlers
function handleFireButton() {
var guessInput = document.getElementById("guessInput");
var guess = guessInput.value.toUpperCase();
controller.processGuess(guess);
guessInput.value = "";
}
function handleKeyPress(e) {
var fireButton = document.getElementById("fireButton");
// in IE9 and earlier, the event object doesn't get passed
// to the event handler correctly, so we use window.event instead.
e = e || window.event;
if (e.keyCode === 13) {
fireButton.click();
return false;
}
}
// init - called when the page has completed loading
window.onload = init;
function init() {
// Fire! button onclick handler
var fireButton = document.getElementById("fireButton");
fireButton.onclick = handleFireButton;
// handle "return" key press
var guessInput = document.getElementById("guessInput");
guessInput.onkeypress = handleKeyPress;
// place the ships on the game board
model.generateShipLocations();
}