var canvas ;
const WAITING = 0 ;
const RUNNING = 1 ;
const REVIEWING = 2 ;
const TESTING = 3 ;
const FINISH = 4 ;
const UP = 0 ;
const RIGHT = 1 ;
const DOWN = 2 ;
const LEFT = 3 ;
const RED = "R" ;
const BLUE = "B" ;
const GREEN = "G" ;
const YELLOW = "Y" ;
const PURPLE = "P" ;
const PINK = "PI" ;
const BLACK = "BL" ;
const GRAY = "GR" ;
const ALIVE = 0 ;
const DEAD = 1 ;
const DONE = 2 ;
var BOT _X = - 1
var BOT _Y = - 1
var BOT _DIR = RIGHT
var BOT _STATE = ALIVE
var BOT _TAPE = "RB"
var BOT _QUEUE = [ ]
var BELTDOWN = { type : "BELT" , direction : DOWN /*,direction2 - defines a secondary direction. For two belts at once.*/ }
var BELTRIGHT = { type : "BELT" , direction : RIGHT }
var BELTUP = { type : "BELT" , direction : UP }
var BELTLEFT = { type : "BELT" , direction : LEFT }
var BRANCHDOWN = { type : "BRANCH" , direction : DOWN , color1 : RED , color2 : BLUE } //color 1 points clockwise(right), color 2 points counter-clockwise(left)
var BRANCHLEFT = { type : "BRANCH" , direction : LEFT , color1 : RED , color2 : BLUE }
var BRANCHRIGHT = { type : "BRANCH" , direction : RIGHT , color1 : RED , color2 : BLUE }
var BRANCHUP = { type : "BRANCH" , direction : UP , color1 : RED , color2 : BLUE }
var WRITERDOWN = { type : "WRITER" , direction : DOWN , color : RED /*overwrite - if turned on, the writer overwrites the current tape position instead of appending.*/ }
var WRITERLEFT = { type : "WRITER" , direction : LEFT , color : RED }
var WRITERRIGHT = { type : "WRITER" , direction : RIGHT , color : RED }
var WRITERUP = { type : "WRITER" , direction : UP , color : RED }
var DEF _BRANCHUP _RB = { img : IMAGE _BRANCH , color1 : RED , color2 : BLUE , type : "BRANCH" }
var DEF _BRANCHUP _BR = { img : IMAGE _BRANCH , color1 : BLUE , color2 : RED , type : "BRANCH" }
var DEF _BRANCHUP _GY = { img : IMAGE _BRANCH , color1 : GREEN , color2 : YELLOW , type : "BRANCH" }
var DEF _BRANCHUP _YG = { img : IMAGE _BRANCH , color1 : YELLOW , color2 : GREEN , type : "BRANCH" }
var DEF _BRANCHUP _PPI = { img : IMAGE _BRANCH , color1 : PURPLE , color2 : PINK , type : "BRANCH" }
var DEF _BRANCHUP _PIP = { img : IMAGE _BRANCH , color1 : PINK , color2 : PURPLE , type : "BRANCH" }
var DEF _BRANCHUP _BLGR = { img : IMAGE _BRANCH , color1 : BLACK , color2 : GRAY , type : "BRANCH" }
var DEF _BRANCHUP _GRBL = { img : IMAGE _BRANCH , color1 : GRAY , color2 : BLACK , type : "BRANCH" }
var DEF _WRITERRIGHT _R = { img : IMAGE _WRITER , color1 : RED , type : "WRITER" }
var DEF _WRITERRIGHT _B = { img : IMAGE _WRITER , color1 : BLUE , type : "WRITER" }
var DEF _WRITERRIGHT _G = { img : IMAGE _WRITER , color1 : GREEN , type : "WRITER" }
var DEF _WRITERRIGHT _Y = { img : IMAGE _WRITER , color1 : YELLOW , type : "WRITER" }
var DEF _WRITERRIGHT _P = { img : IMAGE _WRITER , color1 : PURPLE , type : "WRITER" }
var DEF _WRITERRIGHT _PI = { img : IMAGE _WRITER , color1 : PINK , type : "WRITER" }
var DEF _WRITERRIGHT _BL = { img : IMAGE _WRITER , color1 : BLACK , type : "WRITER" }
var DEF _WRITERRIGHT _GR = { img : IMAGE _WRITER , color1 : GRAY , type : "WRITER" }
var DEF _CONVEYOR = { img : IMAGE _CONVEYOR , type : "BELT" }
var GRID _W = 32
var GRID _H = 32
var GRID _X = 20
var GRID _Y = 20
var LAST _MOUSE _X = 0 ;
var LAST _MOUSE _Y = 0 ;
var ITEM _DIRECTION = RIGHT ;
var SUBMENU = {
visible : false ,
width : 0 ,
height : 0 ,
buttons : [ ]
}
var BUTTON _SELECTED = undefined
var ITEM _SELECTED = undefined
var CONVEYOR _BUILD _BUTTON = { img : IMAGE _CONVEYOR , x : - 1 , y : - 1 , w : - 1 , h : - 1 , lastselected : DEF _CONVEYOR }
var BRANCH _BUILD _BUTTON = { img : IMAGE _BRANCH , x : - 1 , y : - 1 , w : - 1 , h : - 1 , submenu _buttons : [ DEF _BRANCHUP _RB , DEF _BRANCHUP _BR , DEF _BRANCHUP _GY , DEF _BRANCHUP _YG , DEF _BRANCHUP _PPI , DEF _BRANCHUP _PIP , DEF _BRANCHUP _BLGR , DEF _BRANCHUP _GRBL ] , lastselected : undefined }
var WRITER _BUILD _BUTTON = { img : IMAGE _WRITER , x : - 1 , y : - 1 , w : - 1 , h : - 1 , submenu _buttons : [ DEF _WRITERRIGHT _R , DEF _WRITERRIGHT _B , DEF _WRITERRIGHT _G , DEF _WRITERRIGHT _Y , DEF _WRITERRIGHT _P , DEF _WRITERRIGHT _PI , DEF _WRITERRIGHT _BL , DEF _WRITERRIGHT _GR ] , lastselected : undefined }
var MENU = {
visible : true ,
buttons : [ CONVEYOR _BUILD _BUTTON , BRANCH _BUILD _BUTTON , WRITER _BUILD _BUTTON ]
}
var lastGameUpdate = 0 ;
var gameSpeed = 1000 / 1 ;
var gameState = RUNNING ;
var gameStage = 0 ;
var LEVEL0 = [
[ { } , { } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] , ]
var LEVEL1 = [
[ { } , { } , { ... BELTDOWN } , { ... BELTLEFT } , { ... BELTLEFT } , ] ,
[ { } , { } , { } , { } , { ... BELTUP } , ] ,
[ { } , { ... BELTDOWN } , { } , { } , { ... BELTUP } , ] ,
[ { } , { ... BELTRIGHT } , { ... BELTRIGHT } , { ... BELTRIGHT } , { ... BELTUP } , ] ,
[ { } , { } , { } , { } , { } , ] , ]
var LEVEL2 = [
[ { } , { } , { } , { } , { } , ] ,
[ { } , { ... BELTRIGHT } , { } , { } , { } , ] , //BLUE
[ { } , { ... BRANCHRIGHT } , { } , { } , { } , ] ,
[ { } , { ... BELTRIGHT } , { } , { } , { } , ] , //RED
[ { } , { } , { } , { } , { } , ] , ]
var LEVEL3 = [
[ { } , { } , { } , { } , { } , ] ,
[ { } , { ... WRITERUP , overwrite : true } , { } , { } , { } , ] ,
[ { } , { ... WRITERDOWN } , { } , { } , { } , ] ,
[ { } , { ... BELTRIGHT } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] , ]
var LEVEL4 = [
[ { } , { } , { } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] ,
[ { } , { ... BELTRIGHT , direction2 : DOWN } , { } , { } , { } , ] ,
[ { } , { } , { ... BELTUP , direction2 : LEFT } , { } , { } , ] ,
[ { } , { } , { } , { } , { } , ] , ]
var STAGE1 = {
name : "The First Stage!" ,
objective : "Accept all bots" ,
level : createGrid ( 5 , 5 , 4 , 2 ) ,
start : { x : 0 , y : 2 } ,
accept : ( tape ) => true }
var STAGE2 = {
name : "Blue Blue" ,
objective : "Accept only Blue Bots" ,
level : createGrid ( 5 , 5 , 4 , 2 ) ,
start : { x : 0 , y : 2 } ,
accept : ( tape ) => {
for ( var i = 0 ; i < tape . length ; i ++ ) {
if ( tape [ i ] !== "B" ) {
return false ;
}
}
return true ;
}
}
var gameGrid = [ ]
function createGrid ( width = 5 , height = 5 , exitX = 4 , exitY = 2 ) {
var grid = [ ]
for ( var i = 0 ; i < width ; i ++ ) {
var row = [ ]
for ( var j = 0 ; j < height ; j ++ ) {
row . push ( { } )
}
grid . push ( row )
}
grid [ exitY ] [ exitX ] = { type : "EXIT" }
return grid
}
function resetGame ( ) {
gameGrid = [ ]
gameState = WAITING
BOT _X = - 1
BOT _Y = - 1
BOT _DIR = RIGHT
BOT _STATE = ALIVE
BOT _TAPE = "RB"
BOT _QUEUE = [ ]
lastGameUpdate = 0
}
function generateBotQueue ( ) {
if ( gameState === TESTING ) {
//Iterate up to...15 RED/BLUE combinations.
var MAX _VALUE = 1000
var startingValue = 0
while ( startingValue < MAX _VALUE ) {
var tape = ConvertNumberToTape ( startingValue ++ )
//console.log(tape)
var wrongBot = false //Set to true if a bot that's supposed to pass fails, or a bot that's supposed to fail passes.
var isSupposedToBeAccepted = gameStage . accept ( tape )
var result = getSimulatedBotResult ( tape )
if ( result === isSupposedToBeAccepted ) {
wrongBot = false ;
} else {
wrongBot = true ;
}
if ( wrongBot ) {
BOT _QUEUE . push ( tape )
}
if ( BOT _QUEUE . length === 3 ) {
break ;
}
}
}
}
function getSimulatedBotResult ( tape ) {
var simulatedBoard = deepCopy ( gameGrid )
resetBot ( gameStage . start . x , gameStage . start . y , TESTING , tape )
const MAX _ITERATIONS = 10000
var iterations = 0
while ( iterations < MAX _ITERATIONS ) {
runBot ( true )
//renderGame()
if ( gameState === REVIEWING ) {
//console.log("Rejected")
return false
}
if ( gameState === FINISH ) {
//console.log("Accepted")
return true
}
iterations ++
}
return false
}
function ConvertNumberToTape ( val ) {
var remainingVal = val
var tape = ""
while ( remainingVal > 0 ) {
var mask = remainingVal & 1
if ( mask === 1 ) {
tape = "B" + tape
} else {
tape = "R" + tape
}
remainingVal = remainingVal >>> 1
}
return tape ;
}
function runBot ( testing ) {
//console.log(new Date().getTime())
if ( lastGameUpdate < new Date ( ) . getTime ( ) || testing ) {
lastGameUpdate = new Date ( ) . getTime ( ) + gameSpeed
//console.log("Update")
var nextSquare = { }
switch ( BOT _DIR ) {
case UP : {
nextSquare = gameGrid [ -- BOT _Y ] [ BOT _X ] ;
BOT _DIR = ( nextSquare . direction2 &&
( nextSquare . direction2 === UP || nextSquare . direction2 === DOWN ) ) ? nextSquare . direction2 : nextSquare . direction
} break ;
case LEFT : {
nextSquare = gameGrid [ BOT _Y ] [ -- BOT _X ] ;
BOT _DIR = ( nextSquare . direction2 &&
( nextSquare . direction2 === RIGHT || nextSquare . direction2 === LEFT ) ) ? nextSquare . direction2 : nextSquare . direction
} break ;
case RIGHT : {
nextSquare = gameGrid [ BOT _Y ] [ ++ BOT _X ] ;
BOT _DIR = ( nextSquare . direction2 &&
( nextSquare . direction2 === RIGHT || nextSquare . direction2 === LEFT ) ) ? nextSquare . direction2 : nextSquare . direction
} break ;
case DOWN : {
nextSquare = gameGrid [ ++ BOT _Y ] [ BOT _X ] ;
BOT _DIR = ( nextSquare . direction2 &&
( nextSquare . direction2 === UP || nextSquare . direction2 === DOWN ) ) ? nextSquare . direction2 : nextSquare . direction
} break ;
}
if ( nextSquare . direction !== undefined || nextSquare . type === "EXIT" ) {
switch ( nextSquare . type ) {
case "BRANCH" : {
//console.log("Branch found")
if ( BOT _TAPE [ 0 ] === nextSquare . color1 ) {
//console.log("Matches color1")
//Move towards left side of the branch.
BOT _DIR = LeftOf ( nextSquare . direction )
ConsumeTape ( )
} else
if ( BOT _TAPE [ 0 ] === nextSquare . color2 ) {
//console.log("Matches color2")
//Move towards left side of the branch.
BOT _DIR = RightOf ( nextSquare . direction )
ConsumeTape ( )
}
} break ;
case "WRITER" : {
if ( nextSquare . overwrite ) {
OverwriteTape ( nextSquare . color )
} else {
AppendTape ( nextSquare . color )
}
BOT _DIR = nextSquare . direction
} break ;
case "EXIT" : {
gameState = FINISH
BOT _STATE = DONE
} break ;
}
//console.log("Direction is now "+BOT_DIR)
} else {
gameState = REVIEWING
BOT _STATE = DEAD
}
//if (!testing){renderGame()}
}
}
function resetBot ( x , y , state , tape ) {
gameState = state
BOT _STATE = ALIVE
BOT _DIR = RIGHT
BOT _TAPE = tape
placeBot ( x , y )
}
function placeBot ( x , y ) {
BOT _X = x
BOT _Y = y
}
function setupGame ( ) {
canvas = document . createElement ( "canvas" ) ;
canvas . width = 568
canvas . height = 320
document . getElementById ( "game" ) . appendChild ( canvas )
canvas . addEventListener ( "mousemove" , updateMouse )
canvas . addEventListener ( "mousedown" , clickEvent )
canvas . addEventListener ( "mouseup" , releaseEvent )
canvas . addEventListener ( "touchmove" , updateMouse )
canvas . addEventListener ( "touchstart" , clickEvent )
canvas . addEventListener ( "touchend" , releaseEvent )
//gameGrid = [...createGrid(5,5)]
}
function mouseOverButton ( canvas , e , button ) {
return ( getMousePos ( e ) . x >= button . x &&
getMousePos ( e ) . x <= button . x + button . w &&
getMousePos ( e ) . y >= button . y &&
getMousePos ( e ) . y <= button . y + button . h )
}
function clickEvent ( e ) {
//console.log(MENU.buttons)
if ( MENU . visible ) {
for ( var button of MENU . buttons ) {
if ( mouseOverButton ( canvas , e , button ) ) {
if ( button . submenu _buttons && button . submenu _buttons . length > 0 ) {
BUTTON _SELECTED = button ;
SUBMENU . visible = true ;
SUBMENU . buttons = [ ]
var index = 0 ;
for ( var button2 of BUTTON _SELECTED . submenu _buttons ) {
var buttonX = ( ( index % 3 ) * 48 ) + 16
var buttonY = canvas . height * 0.8 - ( Math . floor ( index / 3 ) * 48 ) - 40
SUBMENU . buttons . push ( { def : button2 , img : button2 . img , x : buttonX , y : buttonY , w : 32 , h : 32 } )
index ++ ;
}
}
ITEM _SELECTED = button . lastselected
//console.log(button)
return
}
}
}
//console.log(getGridCoords(getMousePos(e)))
if ( ITEM _SELECTED !== undefined ) {
var clickCoords = getGridCoords ( getMousePos ( e ) )
if ( clickCoords . x >= 0 && clickCoords . y >= 0 && clickCoords . y < gameGrid . length && clickCoords . x < gameGrid [ clickCoords . y ] . length ) {
placeObject ( clickCoords , ITEM _SELECTED )
//console.log(gameGrid)
}
}
}
function placeObject ( coords , def ) {
var newObj = { ... def , direction : ITEM _DIRECTION }
gameGrid [ coords . y ] [ coords . x ] = newObj
}
function getGridCoords ( pos ) {
var x = Math . round ( ( pos . x - GRID _X ) / GRID _W - 1 )
var y = Math . round ( ( pos . y - GRID _Y ) / GRID _H - 1 )
return { x : x , y : y }
}
function releaseEvent ( e ) {
if ( SUBMENU . visible ) {
for ( var button of SUBMENU . buttons ) {
if ( mouseOverButton ( canvas , e , button ) ) {
ITEM _SELECTED = button . def
BUTTON _SELECTED . lastselected = button . def
SUBMENU . visible = false
return
}
}
}
}
function loadLevel ( level , botx , boty ) {
placeBot ( botx , boty )
gameGrid = deepCopy ( level )
}
function loadStage ( stage ) {
//gameGrid=deepCopy(stage.level)
loadLevel ( stage . level , stage . start . x , stage . start . y )
gameStage = stage
}
function deepCopy ( arr ) {
var newarr = [ ]
for ( var i = 0 ; i < arr . length ; i ++ ) {
newarr [ i ] = [ ]
for ( var j = 0 ; j < arr [ i ] . length ; j ++ ) {
newarr [ i ] [ j ] = { ... arr [ i ] [ j ] }
}
}
return newarr
}
function step ( ) {
if ( gameState === RUNNING ) {
runBot ( )
}
}
function updateMouse ( e ) {
//console.log(getMousePos(e))
e . preventDefault ( )
var mousepos = getMousePos ( e )
LAST _MOUSE _X = mousepos . x
LAST _MOUSE _Y = mousepos . y
}
function getMousePos ( e ) {
var rect = canvas . getBoundingClientRect ( ) ;
if ( e . changedTouches ) {
return {
x : e . changedTouches [ 0 ] . clientX - rect . left ,
y : e . changedTouches [ 0 ] . clientY - rect . top
} ;
} else {
return {
x : e . clientX - rect . left ,
y : e . clientY - rect . top
} ;
}
}
function renderGame ( ctx ) {
var displayGrid = [ ]
for ( var y = 0 ; y <= gameGrid . length ; y ++ ) {
ctx . moveTo ( GRID _X , GRID _Y + GRID _H * y ) ;
ctx . lineTo ( GRID _X + GRID _W * gameGrid . length , GRID _Y + GRID _H * y ) ;
}
for ( var x = 0 ; x <= gameGrid . length ; x ++ ) {
ctx . moveTo ( GRID _X + GRID _W * x , GRID _Y ) ;
ctx . lineTo ( GRID _X + GRID _W * x , GRID _Y + GRID _H * gameGrid . length ) ;
}
ctx . fillStyle = "#000000"
ctx . stroke ( ) ;
for ( var y = 0 ; y < gameGrid . length ; y ++ ) {
for ( var x = 0 ; x < gameGrid [ y ] . length ; x ++ ) {
if ( gameGrid [ y ] [ x ] . img !== undefined ) {
RenderIcon ( GRID _X + GRID _W * x + 16 , GRID _Y + GRID _H * y + 16 , ctx , gameGrid [ y ] [ x ] , gameGrid [ y ] [ x ] . direction )
}
}
}
/ * c o n s o l e . l o g ( " T a p e : " + B O T _ T A P E )
console . log ( displayGrid ) * /
}
function colorToHex ( r , g , b ) {
function hex ( col ) {
function toHex ( val ) {
switch ( Math . floor ( val ) ) {
case 10 : {
return "a" ;
} break ;
case 11 : {
return "b" ;
} break ;
case 12 : {
return "c" ;
} break ;
case 13 : {
return "d" ;
} break ;
case 14 : {
return "e" ;
} break ;
case 15 : {
return "f" ;
} break ;
default : {
return String ( Math . floor ( val ) ) ;
}
}
}
var placeValue1 = col % 16 ;
var placeValue2 = col / 16 ;
return toHex ( placeValue2 ) + toHex ( placeValue1 )
}
return "#" + hex ( r ) + hex ( g ) + hex ( b ) ;
}
function drawImage ( x , y , img , ctx , degrees ) {
//context.clearRect(0,0,canvas.width,canvas.height);
ctx . save ( ) ;
ctx . translate ( x , y ) ;
ctx . rotate ( degrees * Math . PI / 180 ) ;
ctx . drawImage ( img , - img . width / 2 , - img . height / 2 ) ;
ctx . restore ( ) ;
}
function draw ( ) {
var ctx = canvas . getContext ( "2d" )
if ( Math . random ( ) < 0.01 ) {
ctx . fillStyle = "rgba(63, 73, 71, 0.5)"
ctx . globalAlpha = 0.5
ctx . fillRect ( 0 , 0 , canvas . width , canvas . height )
} else {
ctx . fillStyle = "#b5c4c1"
ctx . globalAlpha = 1.0
ctx . fillRect ( 0 , 0 , canvas . width , canvas . height )
renderGame ( ctx )
if ( ITEM _SELECTED ) {
RenderIcon ( LAST _MOUSE _X - 16 , LAST _MOUSE _Y - 16 , ctx , ITEM _SELECTED , 0 )
}
//drawImage(0,0,IMAGE_CONVEYOR,ctx,0)
//drawImage(LAST_MOUSE_X,LAST_MOUSE_Y,IMAGE_ARROW,ctx,0)
RenderSubmenu ( ctx )
RenderMenu ( ctx )
}
}
function RenderIcon ( x , y , ctx , icon _definition , rot = 0 , background = undefined ) {
if ( background !== undefined ) {
ctx . fillStyle = background
ctx . fillRect ( x , y , 32 , 32 )
}
if ( icon _definition . img === IMAGE _BRANCH ) {
drawImage (
x + 16 ,
y + 16 ,
icon _definition . img , ctx , rot + 90 )
} else {
drawImage (
x + 16 ,
y + 16 ,
icon _definition . img , ctx , rot )
}
switch ( icon _definition . img ) {
case IMAGE _BRANCH : {
drawImage (
x + 16 ,
y + 16 ,
GetArrowImage ( icon _definition . color1 ) , ctx , rot + 270 )
drawImage (
x + 16 ,
y + 16 ,
GetArrowImage ( icon _definition . color2 ) , ctx , rot + 90 )
} break ;
case IMAGE _WRITER : {
drawImage (
x + 16 ,
y + 16 ,
GetDotImage ( icon _definition . color1 ) , ctx , rot )
} break ;
}
}
function GetArrowImage ( col ) {
switch ( col ) {
case RED : {
return IMAGE _ARROW _R
} break ;
case BLUE : {
return IMAGE _ARROW _B
} break ;
case GREEN : {
return IMAGE _ARROW _G
} break ;
case YELLOW : {
return IMAGE _ARROW _Y
} break ;
case PURPLE : {
return IMAGE _ARROW _P
} break ;
case PINK : {
return IMAGE _ARROW _PI
} break ;
case BLACK : {
return IMAGE _ARROW _BL
} break ;
case GRAY : {
return IMAGE _ARROW _GR
} break ;
}
}
function GetDotImage ( col ) {
switch ( col ) {
case RED : {
return IMAGE _DOT _R
} break ;
case BLUE : {
return IMAGE _DOT _B
} break ;
case GREEN : {
return IMAGE _DOT _G
} break ;
case YELLOW : {
return IMAGE _DOT _Y
} break ;
case PURPLE : {
return IMAGE _DOT _P
} break ;
case PINK : {
return IMAGE _DOT _PI
} break ;
case BLACK : {
return IMAGE _DOT _BL
} break ;
case GRAY : {
return IMAGE _DOT _GR
} break ;
}
}
function RenderSubmenu ( ctx ) {
if ( SUBMENU . visible ) {
ctx . fillStyle = "#76abab"
var submenuRows = BUTTON _SELECTED . submenu _buttons . length / 3
var submenuCols = 3
ctx . fillRect ( 0 , canvas . height * 0.8 - submenuRows * 48 - 16 , submenuCols * 48 + 16 , submenuRows * 48 + 16 )
var index = 0 ;
for ( var button of BUTTON _SELECTED . submenu _buttons ) {
var buttonX = ( ( index % 3 ) * 48 ) + 16
var buttonY = canvas . height * 0.8 - ( Math . floor ( index / 3 ) * 48 ) - 40
RenderIcon ( buttonX , buttonY , ctx , button , 0 , ( LAST _MOUSE _X >= buttonX && LAST _MOUSE _X <= buttonX + 32 && LAST _MOUSE _Y >= buttonY && LAST _MOUSE _Y <= buttonY + 32 ) ? "#555555" : "#b5b5b5" )
index ++ ;
}
}
}
function RenderMenu ( ctx ) {
if ( MENU . visible ) {
ctx . fillStyle = "#20424a"
ctx . fillRect ( 0 , canvas . height * 0.8 , canvas . width , canvas . height * 0.2 )
var buttonX = 16
var buttonY = canvas . height * 0.8 + 16
for ( var button of MENU . buttons ) {
if ( button . lastselected ) {
RenderIcon ( buttonX , buttonY , ctx , button . lastselected , 0 , "#b5b5b5" )
} else {
AddButton ( button . img , buttonX , buttonY , ctx , button , 0 )
}
button . x = buttonX
button . y = buttonY
button . w = 32
button . h = 32
buttonX += 48
}
}
}
function AddButton ( img , x , y , ctx , button , rot = 0 ) {
ctx . fillStyle = "#b5b5b5"
ctx . fillRect ( x , y , 32 , 32 )
drawImage ( x + 16 , y + 16 , img , ctx , rot )
}
function ConsumeTape ( ) {
BOT _TAPE = BOT _TAPE . substring ( 1 )
}
function AppendTape ( col ) {
BOT _TAPE += col
}
function OverwriteTape ( col ) {
BOT _TAPE = col + BOT _TAPE . substring ( 1 )
}
function LeftOf ( dir ) {
return ( dir + 1 ) % 4
}
function RightOf ( dir ) {
if ( dir === 0 ) { dir = 4 }
return ( dir - 1 ) % 4
}