Drag the background!

Search JS code (of Worlds)

Search JavaScript code of all Worlds for: keycode


Touch World
457 runs ♦ 1 like
By Starter user  
Created: 6 Jan 2018
Modified: 17 Sep 2023
How to override default touch handling. Mobile: Touch drag moves agent, touch pinch zooms camera...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) moveLogicalAgent ( ACTION_LEFT );
if ( event.keyCode == 38 ) moveLogicalAgent ( ACTION_DOWN );
if ( event.keyCode == 39 ) moveLogicalAgent ( ACTION_RIGHT );
if ( event.keyCode == 40 ) moveLogicalAgent ( ACTION_UP );
Chess
5850 runs ♦ 2 likes
By Eoin Daly  
Created: 19 Oct 2022
Modified: 17 Sep 2023
A game of chess by the beach, on a beautiful day
if (event.keyCode == 37) // If the left arrow is clicked then move the selector left
else if (event.keyCode == 38) // If the up arrow is clicked then move the selector up
else if (event.keyCode == 39) // If the right arrow is clicked then move the selector right
else if (event.keyCode == 40) // If the down arrow is clicked then move the selector down
else if (event.keyCode == 13) // If the Enter key is clicked then check what the user wants
Enhanced Space Pong
1014 runs ♦ 0 likes
By Enhanced  
Created: 18 Jun 2018
Modified: 17 Sep 2023
It's all you want from Pong : smooth controls, different difficulty levels and game modes
if (e.keyCode == 37) player.movement = -1;
if (e.keyCode == 39) player.movement = 1;
if (e.keyCode == 37 && player.movement == -1) player.movement = 0;
else if (e.keyCode == 39 && player.movement == 1) player.movement = 0;
escape...
800 runs ♦ 2 likes
By Jon Bryan Ortiz  
Created: 22 Nov 2022
Modified: 17 Sep 2023
There are 10 pages scattered around the map. First person to find all 10 pages escapes...the res...
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
Don't Move
1323 runs ♦ 2 likes
By Finnian O'Neill  
Created: 6 Dec 2016
Modified: 17 Sep 2023
var code = event.keyCode;
Super Mario Maze
2268 runs ♦ 4 likes
By Cathal Neary  
Created: 19 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) { moveLogicalAgent ( ACTION_LEFT ); e.preventDefault(); }
if (e.keyCode == 38) { moveLogicalAgent ( ACTION_DOWN ); e.preventDefault(); }
if (e.keyCode == 39) { moveLogicalAgent ( ACTION_RIGHT ); e.preventDefault(); }
if (e.keyCode == 40) { moveLogicalAgent ( ACTION_UP ); e.preventDefault(); }
if (e.keyCode == 32) { moveLogicalAgent ( ACTION_JUMP ); e.preventDefault(); }
3D Platform Game
236 runs ♦ 0 likes
By Ronghui  
Created: 5 Dec 2022
Modified: 17 Sep 2023
Race to the End! WASD to move.
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
Competitive Hangman
422 runs ♦ 2 likes
By David Jusev  
Created: 5 Dec 2022
Modified: 17 Sep 2023
Play hangman against friends. Multi-user port of https://codingartistweb.com/2022/05/hangman-gam...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Shooting Range (...
2334 runs ♦ 4 likes
By Adrian Rabbitte  
Created: 16 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
if (e.keyCode == 32) // if the keycode is space.
AIRecipe
60 runs ♦ 0 likes
By Alex Petrash  
Created: 1 Dec 2023
Modified: 5 Feb 2024
User enters the name of a dish. Display list of ingredients, recipe and an image. Uses two API c...
if (event.keyCode == 13) {
Landmark Museum
115 runs ♦ 0 likes
By Christopher Dobey  
Created: 4 Dec 2023
Modified: 4 Feb 2024
A walkthrough tour of the most significant landmarks in any given country. Three.js 3D World wit...
switch ( event.keyCode ) {
switch( event.keyCode ) {
Battleship
4277 runs ♦ 2 likes
By Aaron Crawford  
Created: 30 Oct 2022
Modified: 17 Sep 2023
if (e.keyCode == '38')
else if (e.keyCode == '40')
else if (e.keyCode == '37')
else if (e.keyCode == '39')
else if (e.keyCode == '13')
Cook A Long
269 runs ♦ 1 like
By Joseph Adeosun  
Created: 3 Dec 2022
Modified: 17 Sep 2023
Attempted port of "Chicken Alfredo Cooking Game" by Emily Cerequas and Jenny Kowalski. https://q...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Game of Crowns s...
209 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
Enhanced version of "Game of Crowns" by Niamh Byrne with better graphics and controls
var code = a.keyCode;
if (e.keyCode == 37) { moveLogicalAgent ( ACTION_LEFT ); e.preventDefault(); }
if (e.keyCode == 40) { moveLogicalAgent ( ACTION_DOWN ); e.preventDefault(); }
if (e.keyCode == 39) { moveLogicalAgent ( ACTION_RIGHT ); e.preventDefault(); }
if (e.keyCode == 38) { moveLogicalAgent ( ACTION_UP ); e.preventDefault(); }
AI Art Gallery
55 runs ♦ 0 likes
By Jamie Gorman  
Created: 21 Nov 2023
Modified: 2 Feb 2024
Art Gallery with AI generated images and background music. Calls image generation API from Repli...
switch (event.keyCode) {
switch (event.keyCode) {
Text to 3D Graph...
191 runs ♦ 0 likes
By Antoine Podvin  
Created: 2 Dec 2023
Modified: 4 Feb 2024
Create 3D Graphics scenes from text instructions. Uses text instructions to call OpenAI GPT API ...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Complex World
8196 runs ♦ 5 likes
By Starter user  
Created: 1 Oct 2016
Modified: 17 Sep 2023
World with a Mind-controlled agent, actively-pursuing enemy, random maze, skybox, music.
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) moveLogicalAgent ( ACTION_LEFT );
if ( event.keyCode == 38 ) moveLogicalAgent ( ACTION_DOWN );
if ( event.keyCode == 39 ) moveLogicalAgent ( ACTION_RIGHT );
if ( event.keyCode == 40 ) moveLogicalAgent ( ACTION_UP );
Enhanced Don't Move
161 runs ♦ 0 likes
By Enhanced  
Created: 12 Jun 2018
Modified: 17 Sep 2023
Try to dodge cubes as they fall to the ground, in this simple but efficient game
var code = event.keyCode;
Language Transla...
89 runs ♦ 0 likes
By Darius Beril  
Created: 7 Dec 2023
Modified: 8 Feb 2024
AI Language Translator And Reader. (1) Uses OpenAI GPT API for translation. Need to enter your o...
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Romantic Sunset
219 runs ♦ 0 likes
By Enhanced  
Created: 17 Aug 2018
Modified: 17 Sep 2023
Turn your head and discover a eautiful scenery observable in first person mode.
switch ( event.keyCode ) {
switch( event.keyCode ) {
Interstellar cubes
611 runs ♦ 3 likes
By Thomas Mc Cann  
Created: 16 Oct 2019
Modified: 17 Sep 2023
A journey into Interstellar space. Run and press F12 (in chrome) to view the console. Try left c...
var key = event.which || event.keyCode; // Use either which or keyCode, depending on browser support
First Person Con...
212 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
First person view with mouse controls. Use WASD or Arrows to move, mouse to look around and spac...
switch ( event.keyCode ) {
switch( event.keyCode ) {
Game of Crowns
2256 runs ♦ 2 likes
By Niamh Byrne  
Created: 16 Nov 2016
Modified: 17 Sep 2023
var code = a.keyCode;
if (e.keyCode == 37) { moveLogicalAgent ( ACTION_LEFT ); e.preventDefault(); }
if (e.keyCode == 38) { moveLogicalAgent ( ACTION_DOWN ); e.preventDefault(); }
if (e.keyCode == 39) { moveLogicalAgent ( ACTION_RIGHT ); e.preventDefault(); }
if (e.keyCode == 40) { moveLogicalAgent ( ACTION_UP ); e.preventDefault(); }
Infinite World O...
97 runs ♦ 0 likes
By Enhanced  
Created: 16 Aug 2018
Modified: 17 Sep 2023
Here is a code to get an infinite world that loop without object in it, without the sun
if((e.keyCode == 38) || (e.keyCode == 40))
if(e.keyCode == 37 || e.keyCode == 39)
if(e.keyCode == 37 || e.keyCode == 39)
switch ( event.keyCode ) {
switch( event.keyCode ) {
Websocket chat
884 runs ♦ 0 likes
By Starter user  
Created: 29 Feb 2020
Modified: 17 Sep 2023
Demo of Ancient Brain Websockets functionality. Run on multiple devices. Chat from one to the other.
document.getElementById('me').onkeydown = function(event) { if (event.keyCode == 13) sendchat(); };
Spider Paradise ...
761 runs ♦ 2 likes
By Aisling Casserly  
Created: 8 Dec 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
if (e.keyCode == 65) moveLogicalAgent ( JUMP_LEFT );
Pacman
291 runs ♦ 0 likes
By Enhanced  
Created: 21 Jun 2018
Modified: 17 Sep 2023
Enhanced version of Game Pacman in Space, you need to collect all white bullet to end the game, ...
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT );
if (e.keyCode == 38) moveLogicalAgent ( ACTION_DOWN );
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT );
if (e.keyCode == 40) moveLogicalAgent ( ACTION_UP );
Zombie Escape
4086 runs ♦ 6 likes
By Liam  
Created: 30 Nov 2022
Modified: 17 Sep 2023
Compete with another player to see who can survive the longes against a hoard of zombies!
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == KEY_UP || event.keyCode == KEY_W) // if the Up arrow or W key is pressed.
if ( event.keyCode == KEY_DOWN || event.keyCode == KEY_S) // if the down arrow or S key is pressed.
if ( event.keyCode == KEY_LEFT || event.keyCode == KEY_A) // if the left arrow or A key is pressed.
if ( event.keyCode == KEY_RIGHT || event.keyCode == KEY_D) // if the right arrow or D key is pressed.
Space Plane Shooter
820 runs ♦ 2 likes
By Brian Kilduff  
Created: 26 Nov 2016
Modified: 17 Sep 2023
if (e.keyCode == 37) moveLogicalAgent ( ACTION_LEFT ); //left arrow key
if (e.keyCode == 38 && jump1 == false) //up arrow key
if (e.keyCode == 39) moveLogicalAgent ( ACTION_RIGHT ); //right arrow key
if (e.keyCode == 66) moveLogicalAgent ( ACTION_DOWN ); //"b"key
if (e.keyCode == 32) //speace bar key fires bullets
Gatekeeper
319 runs ♦ 0 likes
By Sam Murphy  
Created: 23 Nov 2023
Modified: 4 Feb 2024
A mysterious wizard is guarding a locked gate. Three.js 3D World with built-in API calls. Naviga...
// All keyboard stuff - Whats important here is the event.keyCode listeners which check for arrow keys for movement -> letter keys fo
// Array with keycodes for arrow keys, so we can quickly check if the input is one of them.
keyboard[event.keyCode] = true;
if (arrowKeys.includes(event.keyCode)) {
} else if (typeFlag === 1 && event.keyCode === 13) {
Run Run Run!
5685 runs ♦ 3 likes
By Duarte Martinho  
Created: 15 Nov 2022
Modified: 17 Sep 2023
CA318 Project by Duarte Martinho and Rion Xheladini. Modified port of "Crossy Road" by Hunor Mar...
if (event.keyCode == '38' || event.keyCode == '87') {
else if (event.keyCode == '40' || event.keyCode == '83') {
else if (event.keyCode == '37' || event.keyCode == '65') {
else if (event.keyCode == '39' || event.keyCode == '68') {
else if (event.keyCode == '77') {
Phaser Chaser
135 runs ♦ 0 likes
By Paul Bashford  
Created: 20 Aug 2023
Modified: 17 Sep 2023
You Have 60 Seconds to collect more stars than your opponent! If you are caught by the Chaser yo...
up: Phaser.Input.Keyboard.KeyCodes.W,
down: Phaser.Input.Keyboard.KeyCodes.S,
left: Phaser.Input.Keyboard.KeyCodes.A,
right: Phaser.Input.Keyboard.KeyCodes.D
Infinite story book
397 runs ♦ 0 likes
By Darragh McG  
Created: 29 Nov 2023
Modified: 16 Feb 2024
Indefinite story book generation. Allows the user to automatically generate an illustrated short...
if (event.keyCode === 13 && !promptSubmitBtn.disabled) {
var code = e.which || e.keyCode;
if (event.keyCode === 13) {
Capture The Egg
133 runs ♦ 0 likes
By tuitef2  
Created: 8 Mar 2019
Modified: 17 Sep 2023
keyboard[event.keyCode] = true;
keyboard[event.keyCode] = false;
User-controlled ...
906 runs ♦ 2 likes
By Starter user  
Created: 12 Feb 2017
Modified: 17 Sep 2023
3d model World. User controlled on desktop. Keyboard arrows to move. Switch to "Move with" camer...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == KEY_UP ) // move a bit along angle we are facing
if ( event.keyCode == KEY_LEFT ) // rotate in place
if ( event.keyCode == KEY_RIGHT )
Final Pool
1164 runs ♦ 2 likes
By Ian Gilligan  
Created: 1 Mar 2019
Modified: 17 Sep 2023
Pool Predictor for CA326
function ourKeys(event) {return(OURKEYS.includes(event.keyCode));}
if ( event.keyCode == 49 ) {selectBall(0);}
else if ( event.keyCode == 50 ) {selectBall(1);}
else if ( event.keyCode == 51 ) {selectBall(2);}
else if ( event.keyCode == 52 ) {selectBall(3);}
Infinite World G...
145 runs ♦ 0 likes
By Enhanced  
Created: 16 Aug 2018
Modified: 17 Sep 2023
Here is a code to get an infinite world that loop without object in it, and with the sun
if((e.keyCode == 38) || (e.keyCode == 40))
if(e.keyCode == 37 || e.keyCode == 39)
if(e.keyCode == 37 || e.keyCode == 39)
switch ( event.keyCode ) {
switch( event.keyCode ) {
Lion Chase
435 runs ♦ 0 likes
By Martin Derwin  
Created: 30 Nov 2022
Modified: 17 Sep 2023
Don't get caught by the lions
return(OURKEYS.includes(event.keyCode));
if(event.keyCode == KEY_A) sendData(KEY_A, 2);
if(event.keyCode == KEY_W) sendData(KEY_W, 2);
if(event.keyCode == KEY_D) sendData(KEY_D, 2);
if(event.keyCode == KEY_LEFT)
MineCraft
1115 runs ♦ 2 likes
By Starter user  
Created: 27 Nov 2016
Modified: 17 Sep 2023
Use keyboard to draw blocks like in MineCraft. Use arrow keys and PgUp, PgDn to draw. Can save w...
function ourKeys ( event ) { return ( OURKEYS.includes ( event.keyCode ) ); }
if ( event.keyCode == 37 ) theobject.position.x = cx - objectsize ; // left
if ( event.keyCode == 39 ) theobject.position.x = cx + objectsize ; // right
if ( event.keyCode == 38 ) theobject.position.z = cz - objectsize ; // forward
if ( event.keyCode == 40 ) theobject.position.z = cz + objectsize ; // back
Complete Infinit...
507 runs ♦ 0 likes
By Enhanced  
Created: 9 Aug 2018
Modified: 17 Sep 2023
This program was made by Nathan Bonnard. In this world, you can generate an infinite world ! Bu...
if((e.keyCode == 38) || (e.keyCode == 40))
if(e.keyCode == 37 || e.keyCode == 39)
if(e.keyCode == 37 || e.keyCode == 39)
switch ( event.keyCode ) {
switch( event.keyCode ) {


The background is a program, showing the JavaScript graphics used on this site.
The globes light up when you log in.
 
Font:

Users retain ownership of user content.

Platforms      Stats      The name      Terms and conditions

Call for partners      Contact

Call for partners!
Ancient Brain is looking for a partner to co-write a JavaScript coding book for schools, to be used worldwide. This would be a course for students in learning to code from scratch. The book and course will be integrated into the Ancient Brain site. This is an opportunity for someone looking to develop a course and textbook to partner with a site to promote it. Read more.