mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 07:10:42 -08:00
Removed spaces from top-level directory names.
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
This commit is contained in:
3
31_Depth_Charge/javascript/README.md
Normal file
3
31_Depth_Charge/javascript/README.md
Normal file
@@ -0,0 +1,3 @@
|
||||
Original source downloaded [from Vintage Basic](http://www.vintage-basic.net/games.html)
|
||||
|
||||
Conversion to [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Shells)
|
||||
9
31_Depth_Charge/javascript/depthcharge.html
Normal file
9
31_Depth_Charge/javascript/depthcharge.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>DEPTH CHARGE</title>
|
||||
</head>
|
||||
<body>
|
||||
<pre id="output" style="font-size: 12pt;"></pre>
|
||||
<script src="depthcharge.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
112
31_Depth_Charge/javascript/depthcharge.js
Normal file
112
31_Depth_Charge/javascript/depthcharge.js
Normal file
@@ -0,0 +1,112 @@
|
||||
// DEPTH CHARGE
|
||||
//
|
||||
// Converted from BASIC to Javascript by Oscar Toledo G. (nanochess)
|
||||
//
|
||||
|
||||
function print(str)
|
||||
{
|
||||
document.getElementById("output").appendChild(document.createTextNode(str));
|
||||
}
|
||||
|
||||
function input()
|
||||
{
|
||||
var input_element;
|
||||
var input_str;
|
||||
|
||||
return new Promise(function (resolve) {
|
||||
input_element = document.createElement("INPUT");
|
||||
|
||||
print("? ");
|
||||
input_element.setAttribute("type", "text");
|
||||
input_element.setAttribute("length", "50");
|
||||
document.getElementById("output").appendChild(input_element);
|
||||
input_element.focus();
|
||||
input_str = undefined;
|
||||
input_element.addEventListener("keydown", function (event) {
|
||||
if (event.keyCode == 13) {
|
||||
input_str = input_element.value;
|
||||
document.getElementById("output").removeChild(input_element);
|
||||
print(input_str);
|
||||
print("\n");
|
||||
resolve(input_str);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function tab(space)
|
||||
{
|
||||
var str = "";
|
||||
while (space-- > 0)
|
||||
str += " ";
|
||||
return str;
|
||||
}
|
||||
|
||||
// Main program
|
||||
async function main()
|
||||
{
|
||||
print(tab(30) + "DEPTH CHARGE\n");
|
||||
print(tab(15) + "CREATIVE COMPUTING MORRISTOWN, NEW JERSEY\n");
|
||||
print("\n");
|
||||
print("\n");
|
||||
print("\n");
|
||||
print("DIMENSION OF THE SEARCH AREA");
|
||||
g = Math.floor(await input());
|
||||
n = Math.floor(Math.log(g) / Math.log(2)) + 1;
|
||||
print("YOU ARE THE CAPTAIN OF THE DESTROYER USS COMPUTER\n");
|
||||
print("AN ENEMY SUB HAS BEEN CAUSING YOU TROUBLE. YOUR\n");
|
||||
print("MISSION IS TO DESTROY IT. YOU HAVE " + n + " SHOTS.\n");
|
||||
print("SPECIFY DEPTH CHARGE EXPLOSION POINT WITH A\n");
|
||||
print("TRIO OF NUMBERS -- THE FIRST TWO ARE THE\n");
|
||||
print("SURFACE COORDINATES; THE THIRD IS THE DEPTH.\n");
|
||||
do {
|
||||
print("\n");
|
||||
print("GOOD LUCK !\n");
|
||||
print("\n");
|
||||
a = Math.floor(Math.random() * g);
|
||||
b = Math.floor(Math.random() * g);
|
||||
c = Math.floor(Math.random() * g);
|
||||
for (d = 1; d <= n; d++) {
|
||||
print("\n");
|
||||
print("TRIAL #" + d + " ");
|
||||
str = await input();
|
||||
x = parseInt(str);
|
||||
y = parseInt(str.substr(str.indexOf(",") + 1));
|
||||
z = parseInt(str.substr(str.lastIndexOf(",") + 1));
|
||||
if (Math.abs(x - a) + Math.abs(y - b) + Math.abs(z - c) == 0)
|
||||
break;
|
||||
if (y > b)
|
||||
print("NORTH");
|
||||
if (y < b)
|
||||
print("SOUTH");
|
||||
if (x > a)
|
||||
print("EAST");
|
||||
if (x < a)
|
||||
print("WEST");
|
||||
if (y != b || x != a)
|
||||
print(" AND");
|
||||
if (z > c)
|
||||
print(" TOO LOW.\n");
|
||||
if (z < c)
|
||||
print(" TOO HIGH.\n");
|
||||
if (z == c)
|
||||
print(" DEPTH OK.\n");
|
||||
print("\n");
|
||||
}
|
||||
if (d <= n) {
|
||||
print("\n");
|
||||
print("B O O M ! ! YOU FOUND IT IN " + d + " TRIES!\n");
|
||||
} else {
|
||||
print("\n");
|
||||
print("YOU HAVE BEEN TORPEDOED! ABANDON SHIP!\n");
|
||||
print("THE SUBMARINE WAS AT " + a + "," + b + "," + c + "\n");
|
||||
}
|
||||
print("\n");
|
||||
print("\n");
|
||||
print("ANOTHER GAME (Y OR N)");
|
||||
str = await input();
|
||||
} while (str.substr(0, 1) == "Y") ;
|
||||
print("OK. HOPE YOU ENJOYED YOURSELF.\n");
|
||||
}
|
||||
|
||||
main();
|
||||
Reference in New Issue
Block a user