Update main.d
This commit is contained in:
parent
dbc4e76e60
commit
ee4f3d3d45
|
@ -36,7 +36,7 @@ void main() {
|
||||||
writeln("Thanks for playing!");
|
writeln("Thanks for playing!");
|
||||||
}
|
}
|
||||||
|
|
||||||
// print 10 empty lines (for formatting)
|
// print 30 empty lines (for formatting)
|
||||||
void clear() {
|
void clear() {
|
||||||
for(int i = 0; i < 30; i++) {
|
for(int i = 0; i < 30; i++) {
|
||||||
writeln();
|
writeln();
|
||||||
|
@ -129,7 +129,7 @@ void gamePlay(ref GameState gameState) {
|
||||||
int iy = to!int(y - '0');
|
int iy = to!int(y - '0');
|
||||||
|
|
||||||
clear(); // clearing the screen by inserting new lines
|
clear(); // clearing the screen by inserting new lines
|
||||||
// if (x, y) coordinates are greater than the bounds of the map or are negative, go to the begining
|
// if (x, y) coordinates are greater than the length of the map or negative, go to the begining
|
||||||
if(ix < 0 || ix > territory.length-1 || iy < 0 || iy > territory.length-1) {
|
if(ix < 0 || ix > territory.length-1 || iy < 0 || iy > territory.length-1) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
@ -249,7 +249,7 @@ void enemyAttack(ref char[5][5] array, ref int ships_destroyed) {
|
||||||
void display(char[5][5] array) {
|
void display(char[5][5] array) {
|
||||||
write(" ");
|
write(" ");
|
||||||
for(int i = 0; i < array.length; i++) {
|
for(int i = 0; i < array.length; i++) {
|
||||||
write(" ", i); // '\t' character means tab
|
write(" ", i);
|
||||||
}
|
}
|
||||||
writeln();
|
writeln();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue