This repository has been archived on 2021-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
scriptcraft/example_scripts/dancefloor.js

30 lines
819 B
JavaScript
Raw Normal View History

load($SCRIPT_DIR + "/../drone.js");
Drone.extend('dancefloor',function(width,length)
{
if (typeof width == "undefined")
width = 5;
if (typeof length == "undefined")
length = width;
2013-01-03 21:16:58 +01:00
//
// create a separate Drone object to lay down disco tiles
//
var disco = new Drone(this.x,this.y, this.z, this.dir);
2013-01-03 21:16:58 +01:00
//
// under-floor lighting
2013-01-03 21:16:58 +01:00
//
disco.down().box(89,width,1,length).up();
var floorTiles = [35,35,'35:1','35:2','35:3','35:4','35:4','35:4','35:6',20,20];
//
// strobe gets called in a java thread
//
2013-01-03 21:16:58 +01:00
var strobe = function(){
while(true){
2013-01-03 21:16:58 +01:00
disco.rand(floorTiles,width,1,length);
java.lang.Thread.sleep(1000);
}
2013-01-03 21:16:58 +01:00
};
var thread = new java.lang.Thread(strobe);
thread.start();
return this;
});