xxxxxxxxxx
736
// This is a level editor
// You can click through various cell states
// "Air, Chip, wall, and crate"
var img=[];
var row=0;
var col=0;
var numTiles=100;
var tileWidth=40;
var tileHeight=40;
var board=[]; // Array of board tile types
var chipLoc; // Location of Chip;
var numLevels;
var currentLevel=0;
var trickLevel=17;
var resetButt;
var undoButt;
var restarts=0;
var totRestarts=0;
var boardStates=[];
var chipHistory=[];
//var levels=["0000000000000000000000222220000020102000002030200000204020000022222000000000000000000000000000000000", "0000000000002222220000200002000020221200002003020000202242000022222200000000000000000000000000000000","0000000000002222220000200002000020321220002030042000200042200022222200000000000000000000000000000000","2222222222200022200220000420022022032222203431342220224322222000242002200022200220000000022222222222","2222222222222400301222223222322002034202200202020220020202022002020202200202020220024202422222222222","2222222222222000341222220222322002004202200230320220020202022002020202200202000220024202422222222222","2222222222222430042222220200222220020022222024312222203042022220202002222023200222200020022222222222","2222222222200040034220232302122020200202202024020220202202022020000202202022220220000000022222222222","2222222222202004000220223302022020400202203410034224300043022020040202202033220220004002022222222222","2222222222224240302222122200222030205022200334342220040030222222224022222222222222222222222222222222","2222222222200400040224334043022043340342200433300220433134022433433342203404430220400004022222222222","2222222222244300001223222230022024240302202303000220000430022022220002230342434224222243422222222222","2222222222202222004220200233022020320002200000004220222200122002403302202024003220000244022222222222","2222222222204200021224020202022042020002240200222223323430022400400302233043000220002200022222222222","2222222222200000400224322230022040000302200422230220024003122000242302200000342220000003422222222222","2222222222204444400224333333422430000342243303334224300103422430000342243333433220444442422222222222","2222222222222222222222000000222202222022220200202222020003222200000002222230340220134443422222222222","2222222222243444310220430322222000000022223000202222020020222202222022220000002222222222222222222222","2222222222200022244220302245022000005442223022004222022022222000300002203330000220000000122222222222","2222222222240000002222000010422002220202203243020220000202022303323232240240424220000202022222222222","2222222222240300424220200202022020033302202002021220004240022022222222200003002220022000222222222222","2222222222200000000220303030022400220302220204200224000442022022002002203122000220000000022222222222","2222222222203000004224000000022003232202242031224222002322222000000042200000000220300400022222222222","2222222222244200000224333333022000000002220222220224024002022002030202200000020224420002122222222222","2222222222204343434220020212022343434342200202020223434343422403020222240303030224000300422222222222","2222222222202222004220000004022002222442220200000222020000022202222222223303030222000000122222222222"];
// FOr testing :\
var levels =["2222222222244003000222322200022003404002200232002220021222222232322222204002222220224222222222222222"];
// var recovered=["2222222222240300424220200202022020033302202002021220004240022022222222200003002220022000222222222222","2222222222200000000220303030022400220302220204200224000442022022002002203122000220000000022222222222","2222222222203000004224000000022003232202242031224222002322222000000042200000000220300400022222222222","2222222222244200000224333333022000000002220222220224024002022002030202200000020224420002122222222222","2222222222204343434220020212022343434342200202020223434343422403020222240303030224000300422222222222","2222222222202222004220000004022002222442220200000222020000022202222222223303030222000000122222222222"]
//levels =levels[18]
function preload()
{
//img = loadImage('./Textures/wall.webp');
img[0]= loadImage('./Textures/air.webp');
img[1]= loadImage('./Sprites/fwd.webp');
img[2]= loadImage('./Textures/wall.webp');
img[3]= loadImage('./Textures/crate.webp');
img[4]= loadImage('./Textures/air.webp');
img[5]= loadImage('./Textures/placed.webp');
}
function setup() {
createCanvas(400, 400);
numLevels=levels.length;
resetButt=createButton("RESET LEVEL");
resetButt.mousePressed(resetLevel);
undoButt=createButton("UNDO");
undoButt.mousePressed(undoMove);
for(var i=0; i<100; i++)
{
board.push(int(levels[currentLevel][i]));
if(levels[currentLevel][i]==1)
{
board[i]=0;
chipLoc=indexToCoord(i);
}
}
var temp="";
for(var i=0; i<board.length; i++)
{
temp=temp+board[i];
}
boardStates.push(temp);
//chipHistory.push(createVector(chipLoc.x,chipLoc.y));
chipHistory.push(createVector(chipLoc.x,chipLoc.y));
}
function draw() {
//background('skyblue');
var indx=0;
for(var i=0; i<10; i++)
{
row=i;
for(var j=0; j<10; j++)
{
col=j;
image(img[0], row*40,col*40, tileWidth, tileHeight);
image(img[board[indx]], row*40,col*40, tileWidth, tileHeight);
if(board[indx]==4)
{
stroke('pink');
fill('pink');
ellipseMode(CENTER);
circle(20+row*40, 20+col*40, 20);
}
indx++;
}
}
// Show Chip on the board
{
image(img[1], chipLoc.x*40, chipLoc.y*40, tileWidth, tileHeight);
}
// Show title and Score (in the future)
textSize(20);
stroke('white');
fill('white');
text("LEVEL: " + (currentLevel+1), 10, 25);
textSize(15);
text("RESTARTS THIS LEVEL: " + restarts,200, 25);
text("TOTAL RESTARTS: " + totRestarts, 10, 390);
// Check for win
// If win and have another level. advance level.
if( checkWin())
{
// console.log("NumLevels: " +numLevels)
if(currentLevel<numLevels-1)
{
undoButt.show();
currentLevel++;
restarts=0;
board.length=0;
chipHistory.length=0;
boardStates.length=0;
for(var i=0; i<100; i++)
{
board.push(int(levels[currentLevel][i]));
if(levels[currentLevel][i]==1)
{
board[i]=0;
chipLoc=indexToCoord(i);
}
}
addMove();
}
else
{
console.log("NO MORE LEVELS")
noLoop();
}
}
}
function ind(r, c) // Returns Array index given a row/ col
{
var arrind=0;
arrind=r * (10) + c;
return arrind;
}
function keyPressed()
{
// UP: 38
// RIGHT:39
// DOWN:40
// LEFT:37
//console.log(keyCode);
// This is where we move chip around based on
// board states.
// If desired direction is wall, don't move.
// If desired direction is a crate (check desired
// direction plus 1 and verify if it is not a wall.
// if Desired direction is a placed crate
// Do some other stuff.
if(currentLevel!=trickLevel)
{
switch(keyCode)
{
case 38:
if(board[ind(chipLoc.x, chipLoc.y-1)]!=2)
{
if(board[ind(chipLoc.x, chipLoc.y-1)]==3)
{
switch(board[ind(chipLoc.x, chipLoc.y-2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y-1)]=0;
board[ind(chipLoc.x, chipLoc.y-2)]=3;
chipLoc.y--;
addMove();
break;
case 4:
//console.log("HERE?");
board[ind(chipLoc.x, chipLoc.y-1)]=0;
board[ind(chipLoc.x, chipLoc.y-2)]=5;
chipLoc.y--;
addMove();
//chipHistory.push(createVector(chipLoc.x, chipLoc.y));
break;
}
}
else if(board[ind(chipLoc.x, chipLoc.y-1)]==5)
{
switch(board[ind(chipLoc.x, chipLoc.y-2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y-1)]=4;
board[ind(chipLoc.x, chipLoc.y-2)]=3;
chipLoc.y--;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y-1)]=4;
board[ind(chipLoc.x, chipLoc.y-2)]=5;
chipLoc.y--;
addMove();
}
}
else
{
chipLoc.y--;
addMove();
}
}
break;
case 39:
if(board[ind(chipLoc.x+1, chipLoc.y)]!=2)
{
if(board[ind(chipLoc.x+1, chipLoc.y)]==3)
{
switch(board[ind(chipLoc.x+2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x+1, chipLoc.y)]=0;
board[ind(chipLoc.x+2, chipLoc.y)]=3;
chipLoc.x++;
addMove();
break;
case 4:
board[ind(chipLoc.x+1, chipLoc.y)]=0;
board[ind(chipLoc.x+2, chipLoc.y)]=5;
chipLoc.x++;
addMove();
break
}
}
else if(board[ind(chipLoc.x+1, chipLoc.y)]==5)
{
switch(board[ind(chipLoc.x+2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x+1, chipLoc.y)]=4;
board[ind(chipLoc.x+2, chipLoc.y)]=3;
chipLoc.x++;
addMove();
break;
case 4:
board[ind(chipLoc.x+1, chipLoc.y)]=4;
board[ind(chipLoc.x+2, chipLoc.y)]=5;
chipLoc.x++
addMove();
}
}
else
{
chipLoc.x++;
addMove();
}
}
break;
case 40:
if(board[ind(chipLoc.x, chipLoc.y+1)]!=2)
{
if(board[ind(chipLoc.x, chipLoc.y+1)]==3)
{
switch(board[ind(chipLoc.x, chipLoc.y+2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y+1)]=0;
board[ind(chipLoc.x, chipLoc.y+2)]=3;
chipLoc.y++;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y+1)]=0;
board[ind(chipLoc.x, chipLoc.y+2)]=5;
chipLoc.y++;
addMove();
break
}
}
else if(board[ind(chipLoc.x, chipLoc.y+1)]==5)
{
switch(board[ind(chipLoc.x, chipLoc.y+2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y+1)]=4;
board[ind(chipLoc.x, chipLoc.y+2)]=3;
chipLoc.y++;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y+1)]=4;
board[ind(chipLoc.x, chipLoc.y+2)]=5;
chipLoc.y++;
addMove();
}
}
else
{
chipLoc.y++;
addMove();
}
}
break;
case 37:
if(board[ind(chipLoc.x-1, chipLoc.y)]!=2)
{
if(board[ind(chipLoc.x-1, chipLoc.y)]==3)
{
switch(board[ind(chipLoc.x-2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x-1, chipLoc.y)]=0;
board[ind(chipLoc.x-2, chipLoc.y)]=3;
chipLoc.x--;
addMove();
break;
case 4:
board[ind(chipLoc.x-1, chipLoc.y)]=0;
board[ind(chipLoc.x-2, chipLoc.y)]=5;
chipLoc.x--;
addMove();
break
}
}
else if(board[ind(chipLoc.x-1, chipLoc.y)]==5)
{
switch(board[ind(chipLoc.x-2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x-1, chipLoc.y)]=4;
board[ind(chipLoc.x-2, chipLoc.y)]=3;
chipLoc.x--;
addMove();
break;
case 4:
board[ind(chipLoc.x-1, chipLoc.y)]=4;
board[ind(chipLoc.x-2, chipLoc.y)]=5;
chipLoc.x--;
addMove();
}
}
else
{
chipLoc.x--;
addMove();
}
}
break;
}
}
// Reverse Keys for trick level
// UP: 38
// RIGHT:39
// DOWN:40
// LEFT:37
else
{
switch(keyCode)
{
case 40:
if(board[ind(chipLoc.x, chipLoc.y-1)]!=2)
{
if(board[ind(chipLoc.x, chipLoc.y-1)]==3)
{
switch(board[ind(chipLoc.x, chipLoc.y-2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y-1)]=0;
board[ind(chipLoc.x, chipLoc.y-2)]=3;
chipLoc.y--;
addMove();
break;
case 4:
//console.log("HERE?");
board[ind(chipLoc.x, chipLoc.y-1)]=0;
board[ind(chipLoc.x, chipLoc.y-2)]=5;
chipLoc.y--;
addMove();
//chipHistory.push(createVector(chipLoc.x, chipLoc.y));
break;
}
}
else if(board[ind(chipLoc.x, chipLoc.y-1)]==5)
{
switch(board[ind(chipLoc.x, chipLoc.y-2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y-1)]=4;
board[ind(chipLoc.x, chipLoc.y-2)]=3;
chipLoc.y--;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y-1)]=4;
board[ind(chipLoc.x, chipLoc.y-2)]=5;
chipLoc.y--;
addMove();
}
}
else
{
chipLoc.y--;
addMove();
}
}
break;
case 37:
if(board[ind(chipLoc.x+1, chipLoc.y)]!=2)
{
if(board[ind(chipLoc.x+1, chipLoc.y)]==3)
{
switch(board[ind(chipLoc.x+2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x+1, chipLoc.y)]=0;
board[ind(chipLoc.x+2, chipLoc.y)]=3;
chipLoc.x++;
addMove();
break;
case 4:
board[ind(chipLoc.x+1, chipLoc.y)]=0;
board[ind(chipLoc.x+2, chipLoc.y)]=5;
chipLoc.x++;
addMove();
break
}
}
else if(board[ind(chipLoc.x+1, chipLoc.y)]==5)
{
switch(board[ind(chipLoc.x+2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x+1, chipLoc.y)]=4;
board[ind(chipLoc.x+2, chipLoc.y)]=3;
chipLoc.x++;
addMove();
break;
case 4:
board[ind(chipLoc.x+1, chipLoc.y)]=4;
board[ind(chipLoc.x+2, chipLoc.y)]=5;
chipLoc.x++
addMove();
}
}
else
{
chipLoc.x++;
addMove();
}
}
break;
case 38:
if(board[ind(chipLoc.x, chipLoc.y+1)]!=2)
{
if(board[ind(chipLoc.x, chipLoc.y+1)]==3)
{
switch(board[ind(chipLoc.x, chipLoc.y+2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y+1)]=0;
board[ind(chipLoc.x, chipLoc.y+2)]=3;
chipLoc.y++;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y+1)]=0;
board[ind(chipLoc.x, chipLoc.y+2)]=5;
chipLoc.y++;
addMove();
break
}
}
else if(board[ind(chipLoc.x, chipLoc.y+1)]==5)
{
switch(board[ind(chipLoc.x, chipLoc.y+2)])
{
case 0:
board[ind(chipLoc.x, chipLoc.y+1)]=4;
board[ind(chipLoc.x, chipLoc.y+2)]=3;
chipLoc.y++;
addMove();
break;
case 4:
board[ind(chipLoc.x, chipLoc.y+1)]=4;
board[ind(chipLoc.x, chipLoc.y+2)]=5;
chipLoc.y++;
addMove();
}
}
else
{
chipLoc.y++;
addMove();
}
}
break;
case 39:
if(board[ind(chipLoc.x-1, chipLoc.y)]!=2)
{
if(board[ind(chipLoc.x-1, chipLoc.y)]==3)
{
switch(board[ind(chipLoc.x-2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x-1, chipLoc.y)]=0;
board[ind(chipLoc.x-2, chipLoc.y)]=3;
chipLoc.x--;
addMove();
break;
case 4:
board[ind(chipLoc.x-1, chipLoc.y)]=0;
board[ind(chipLoc.x-2, chipLoc.y)]=5;
chipLoc.x--;
addMove();
break
}
}
else if(board[ind(chipLoc.x-1, chipLoc.y)]==5)
{
switch(board[ind(chipLoc.x-2, chipLoc.y)])
{
case 0:
board[ind(chipLoc.x-1, chipLoc.y)]=4;
board[ind(chipLoc.x-2, chipLoc.y)]=3;
chipLoc.x--;
addMove();
break;
case 4:
board[ind(chipLoc.x-1, chipLoc.y)]=4;
board[ind(chipLoc.x-2, chipLoc.y)]=5;
chipLoc.x--;
addMove();
}
}
else
{
chipLoc.x--;
addMove();
}
}
break;
}
}
}
function indexToCoord(indx)
{
//ind=r * (10) + c;
//console.log(indx);
var c= indx%10;
var r= floor(indx/10);
//console.log(r, c);
pos=createVector(r,c)
return pos;
}
function checkWin()
{
var win=true;
for(var i=0; i<board.length && win; i++)
{
if(board[i]==4)
{
win=false;
}
}
return win;
}
function resetLevel()
{
restarts++;
totRestarts++;
board.length=0;
chipHistory.length=0;
boardStates.length=0;
for(var i=0; i<100; i++)
{
board.push(int(levels[currentLevel][i]));
if(levels[currentLevel][i]==1)
{
board[i]=0;
chipLoc=indexToCoord(i);
}
}
addMove()
loop();
}
function undoMove()
{
if((chipHistory.length>1) && (currentLevel!=trickLevel))
{
//console.log("HERE");
//console.log(chipHistory);
chipHistory.pop();
chipLoc.x=chipHistory[chipHistory.length-1].x;
chipLoc.y=chipHistory[chipHistory.length-1].y;
boardStates.pop();
var temp=boardStates[boardStates.length-1];
for(var i=0; i<board.length; i++)
{
board[i]=int(temp[i]);
}
}
if(currentLevel==trickLevel)
{
window.alert("SORRY! NO UNDO FOR THIS LEVEL");
undoButt.hide();
}
}
function addMove()
{
chipHistory.push(createVector(chipLoc.x,chipLoc.y));
var temp="";
for(var i=0; i<board.length; i++)
{
temp=temp+board[i];
}
boardStates.push(temp);
}