Skip to content

Instantly share code, notes, and snippets.

@alandownie
Forked from CodyWalker/TwentyBot
Last active June 3, 2016 06:32
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save alandownie/8e2fe28e9edf356ac966 to your computer and use it in GitHub Desktop.
Save alandownie/8e2fe28e9edf356ac966 to your computer and use it in GitHub Desktop.
function countPieces() {
it = b.pieces();
var i = 0;
while (it.current()){ i++; it.next() }
return i;
}
function getRandPiece() {
var it = b.pieces();
var n = Math.floor(Math.random()*countPieces());
for (var i = 0; i < n; i++){ it.next(); }
return it.current();
}
function stackRandPiece(){
if (b.isBusy()) { return; }
if (b.isGameOver()) { clearInterval(randInterval); return; }
var p = getRandPiece();
b.setTarget({x: p.pos.x + 100, y: 1500});
b.grab(p);
window.setTimeout(function(){
var val = p.value ;
if (val>17) val=17;
b.setTarget({x: (((val%7) + Math.floor(Math.random()*2) - Math.floor(Math.random()*2))*200)+100, y: 1500});
window.setTimeout(function(){b.release();}, 15);
}, 15);
}
randInterval = window.setInterval(stackRandPiece, 40);
@popey456963
Copy link

👍

@jayceekay
Copy link

:shipit:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment