Classic NES Controller & Mini Game

Test your skills with this classic NES controller simulator and mini game.

Info

Created On: April 14, 2023
Created By: @CalculatorTools

AI

Model: gpt-4-0314
Time: 218.73371052742 seconds
Prompt Tokens: 806
Completion Tokens: 1534
Total Token Cost: 2340

Get This App On Your Website

1. Copy the code above with the iframe and link.
2. Paste the code into your website.
3. Resize the iframe to fit your website.

Javascript, HTML, CSS Code

                    <html>
<head>
<script type="text/javascript"> window.addEventListener('error', function(event) { var message = JSON.parse(JSON.stringify(event.message)); var source = event.filename; var lineno = event.lineno; var colno = event.colno; var error = event.error; window.parent.postMessage({ type: 'iframeError', details: { message: message, source: source, lineno: lineno, colno: colno, error: error ? error.stack : '' } }, '*'); }); window.addEventListener('unhandledrejection', function(event) { window.parent.postMessage({ type: 'iframePromiseRejection', details: { reason: event.reason } }, '*'); }); </script>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Classic NES Controller & Mini Game</title>
<meta name="description" content="Test your skills with this classic NES controller simulator and mini game.">
<meta name="keywords" content="NES, controller, classic, game, mini game">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">

<script type="text/javascript">
var localStoragePrefix = "ct-168143532144368";
var lastSave = 0;
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}

function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}
</script>

<script type="text/javascript">
const KEY_UP = 38;
const KEY_DOWN = 40;
const KEY_LEFT = 37;
const KEY_RIGHT = 39;
const KEY_A = 65;
const KEY_B = 66;
const KEY_SELECT = 83;
const KEY_START = 84;

let gameActive = false;

function startGame() {
if (!gameActive) {
gameActive = true;
$("#game-status").text("Game On!");
}
}

function stopGame() {
if (gameActive) {
gameActive = false;
$("#game-status").text("Game Over!");
}
}

function keyPressHandler(e) {
if (gameActive) {
switch (e.which) {
case KEY_UP: $("#up").addClass("pressed"); break;
case KEY_DOWN: $("#down").addClass("pressed"); break;
case KEY_LEFT: $("#left").addClass("pressed"); break;
case KEY_RIGHT: $("#right").addClass("pressed"); break;
case KEY_A: $("#a").addClass("pressed"); break;
case KEY_B: $("#b").addClass("pressed"); break;
case KEY_SELECT: $("#select").addClass("pressed"); break;
case KEY_START: $("#start").addClass("pressed"); break;
}
}
}

function keyReleaseHandler(e) {
if (gameActive) {
switch (e.which) {
case KEY_UP: $("#up").removeClass("pressed"); break;
case KEY_DOWN: $("#down").removeClass("pressed"); break;
case KEY_LEFT: $("#left").removeClass("pressed"); break;
case KEY_RIGHT: $("#right").removeClass("pressed"); break;
case KEY_A: $("#a").removeClass("pressed"); break;
case KEY_B: $("#b").removeClass("pressed"); break;
case KEY_SELECT: $("#select").removeClass("pressed"); break;
case KEY_START: $("#start").removeClass("pressed"); break;
}
}
}

$(document).ready(function() {
$(document).keydown(keyPressHandler);
$(document).keyup(keyReleaseHandler);
$("#start-game").click(startGame);
$("#stop-game").click(stopGame);
});
</script>

<style>
body, button {
font-family: "Press Start 2P", cursive;
}

#nes-controller {
display: flex;
flex-direction: row;
}

.button {
display: flex;
align-items: center;
justify-content: center;
width: 50px;
height: 50px;
border: 3px solid #000;
background-color: #fff;
margin: 5px;
border-radius: 5px;
cursor: pointer;
user-select: none;
}

.pressed {
background-color: #ccc;
}

#d-pad, #buttons {
display: flex;
flex-direction: column;
align-items: center;
}

#d-pad .button-row {
display: flex;
flex-direction: row;
}

#game-status {
font-size: 24px;
margin-top: 10px;
}
</style>

<link rel="canonical" href="https://calculator.tools/prompt/357/">
<meta charset="utf-8">
</head>
<body>
<div id="main-container" class="container">
<h1>Classic NES Controller & Mini Game 🎮</h1>
<div id="nes-controller">
<div id="d-pad">
<div class="button-row">
<div class="button" id="up">⬆️</div>
</div>
<div class="button-row">
<div class="button" id="left">⬅️</div>
<div class="button" id="right">➡️</div>
</div>
<div class="button-row">
<div class="button" id="down">⬇️</div>
</div>
</div>
<div id="buttons">
<div class="button-row">
<div class="button" id="a">A</div>
<div class="button" id="b">B</div>
</div>
<div class="button-row">
<div class="button" id="select">SELECT</div>
<div class="button" id="start">START</div>
</div>
</div>
</div>
<div id="game-controls">
<button id="start-game" class="btn btn-success">Start Game</button>
<button id="stop-game" class="btn btn-danger">Stop Game</button>
</div>
<div id="game-status">Press Start to begin</div>
</div>
<script type="text/javascript"> var localStoragePrefix = "ct-{{ cachebreaker }}"; var lastSave = 0; function saveLocal(data) { if (Date.now() - lastSave < 1000) { return; } let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict"; cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString(); document.cookie = cookie; lastSave = Date.now(); } function loadLocal() { var cookiePrefix = localStoragePrefix + "="; var cookieStart = document.cookie.indexOf(cookiePrefix); if (cookieStart > -1) { let cookieEnd = document.cookie.indexOf(";", cookieStart); if (cookieEnd == -1) { cookieEnd = document.cookie.length; } var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd); return JSON.parse(cookieData); } } </script>

<script type="text/javascript"> window.addEventListener('load', function() { var observer = new MutationObserver(function() { window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); observer.observe(document.body, {attributes: true, childList: true, subtree: true}); window.parent.postMessage({height: document.documentElement.scrollHeight || document.body.scrollHeight},"*"); }); </script>
</body>
</html>

FAQ

What is Calculator Tools?

Calculator Tools allows you to instantly create and generate any simple one page web app for free and immediately have it online to use and share. This means anything! Mini apps, calculators, trackers, tools, games, puzzles, screensavers... anything you can think of that the AI can handle.

The AI uses Javacript, HTML, and CSS programming to code your app up in moments. This currently uses GPT-4 the latest and most powerful version of the OpenAI GPT language model.

What Do You Mean Make An App?

Have you ever just wanted a simple app but didn't want to learn programming or pay someone to make it for you? Calculator Tools is the solution! Just type in your prompt and the AI will generate a simple app for you in seconds. You can then customize it to your liking and share it with your friends.

AI has become so powerful it is that simple these days.

Does This Use ChatGPT?

It uses GPT-4 which is the most powerful model for ChatGPT.

Calculator Tools does not remember things from prompt to prompt, each image is a unique image that does not reference any of the images or prompts previously supplied.