Skip to content
Snippets Groups Projects
Commit 66c59ee8 authored by Amanda Ghassaei's avatar Amanda Ghassaei
Browse files

pass move commands to cell

parent b21c6dac
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ Machine.prototype._reorganizeSpeed = function(speed){ ...@@ -70,7 +70,7 @@ Machine.prototype._reorganizeSpeed = function(speed){
return newSpeed; return newSpeed;
} }
Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){ Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){//xy moves need speed normalization
var normSpeed = {}; var normSpeed = {};
if (x == "" || y == "") return speed; if (x == "" || y == "") return speed;
var deltaX = x-startingPos.x; var deltaX = x-startingPos.x;
...@@ -83,29 +83,37 @@ Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){ ...@@ -83,29 +83,37 @@ Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){
return normSpeed; return normSpeed;
}; };
Machine.prototype._animateMesh = function(mesh, axis, speed, target, callback){ Machine.prototype._animateObjects = function(objects, axis, speed, target, callback){
var increment = speed/10;//based on 1/10th of sec var increment = speed/5;//based on 1/10th of sec
if (increment == 0) { if (increment == 0) {
if (callback) callback(); if (callback) callback();
return; return;
} }
var direction = 1; var direction = 1;
if (target-mesh.position[axis] < 0) direction = -1; if (target-objects[0].position[axis] < 0) direction = -1;
increment = Math.max(Math.abs(increment), 0.00001)*direction;//need to put a min on the increment - other wise this stall out with floating pt tol increment = Math.max(increment, 0.00001)*direction;//need to put a min on the increment - other wise this stall out with floating pt tol
var simSpeed = 100/dmaGlobals.assembler.get("simSpeed");//1/10th of sec var simSpeed = 50/dmaGlobals.assembler.get("simSpeed");//1/10th of sec
this._incrementalMove(mesh, axis, increment, target, direction, callback, simSpeed); this._incrementalMove(objects, axis, increment, target, direction, callback, simSpeed);
}; };
Machine.prototype._incrementalMove = function(mesh, axis, increment, target, direction, callback, simSpeed){ Machine.prototype._incrementalMove = function(objects, axis, increment, target, direction, callback, simSpeed){
var self = this; var self = this;
setTimeout(function(){ setTimeout(function(){
if ((target-mesh.position[axis])*direction <= 0) { if ((target-objects[0].position[axis])*direction <= 0) {
if (callback) callback(); if (callback) callback();
return; return;
} }
if (Math.abs(target-mesh.position[axis]) < Math.abs(increment)) mesh.position[axis] = target;//don't overshoot _.each(objects, function(object){
else mesh.position[axis] += increment; if (object instanceof DMACell){
self._incrementalMove(mesh, axis, increment, target, direction, callback, simSpeed) var currentPosition = object.currentPosition();
if (Math.abs(target-currentPosition[axis]) < Math.abs(increment)) object.moveTo(target, axis);//don't overshoot
else object.moveTo(currentPosition[axis]+increment, axis);
} else {
if (Math.abs(target-object.position[axis]) < Math.abs(increment)) object.position[axis] = target;//don't overshoot
else object.position[axis] += increment;
}
});
self._incrementalMove(objects, axis, increment, target, direction, callback, simSpeed)
},simSpeed); },simSpeed);
}; };
...@@ -144,7 +152,6 @@ Shopbot.prototype._buildMeshes = function(callback){ ...@@ -144,7 +152,6 @@ Shopbot.prototype._buildMeshes = function(callback){
}; };
Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){ Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){
var endEffector = this.meshes[0];
var totalThreads = 3; var totalThreads = 3;
function sketchyCallback(){ function sketchyCallback(){
totalThreads -= 1; totalThreads -= 1;
...@@ -154,10 +161,10 @@ Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){ ...@@ -154,10 +161,10 @@ Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){
x = this._makeAbsPosition(x, wcs.x); x = this._makeAbsPosition(x, wcs.x);
y = this._makeAbsPosition(y, wcs.y); y = this._makeAbsPosition(y, wcs.y);
z = this._makeAbsPosition(z, wcs.z); z = this._makeAbsPosition(z, wcs.z);
speed = this._normalizeSpeed(endEffector.position, x, y, this._reorganizeSpeed(speed)); speed = this._normalizeSpeed(this.meshes[0].position, x, y, this._reorganizeSpeed(speed));
this._moveAxis(endEffector, x, "x", speed.x, sketchyCallback); this._moveAxis(x, "x", speed.x, sketchyCallback);
this._moveAxis(endEffector, y, "y", speed.y, sketchyCallback); this._moveAxis(y, "y", speed.y, sketchyCallback);
this._moveAxis(endEffector, z, "z", speed.z, sketchyCallback); this._moveAxis(z, "z", speed.z, sketchyCallback);
this.cell.updateForScale();//todo why is this here? this.cell.updateForScale();//todo why is this here?
}; };
...@@ -166,17 +173,14 @@ Shopbot.prototype._makeAbsPosition = function(target, wcs){ ...@@ -166,17 +173,14 @@ Shopbot.prototype._makeAbsPosition = function(target, wcs){
return parseFloat(target)+wcs; return parseFloat(target)+wcs;
}; };
Shopbot.prototype._moveAxis = function(mesh, target, axis, speed, callback){ Shopbot.prototype._moveAxis = function(target, axis, speed, callback){
if (target == null || target === undefined) { if (target == null || target === undefined) {
callback(); callback();
return; return;
} }
this._animateMesh(mesh, axis, speed, target, callback); this._animateObjects(this.meshes.concat(this.cell), axis, speed, target, callback);
this._animateMesh(this.cell.cellMesh, axis, speed, target, null);//todo reaching a little deep here, might want to find a better solution
}; };
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////ONE BIT/////////////////////////////////////////////////// /////////////////////////////////////ONE BIT///////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////////////////
......
...@@ -96,6 +96,15 @@ DMACell.prototype._setMeshPosition = function(mesh, position){ ...@@ -96,6 +96,15 @@ DMACell.prototype._setMeshPosition = function(mesh, position){
mesh.position.z = position.z; mesh.position.z = position.z;
}; };
DMACell.prototype.moveTo = function(position, axis){//used for stock simulations
this.cellMesh.position[axis] = position;
//todo update parts too
};
DMACell.prototype.currentPosition = function(){//used for stock simulations
return this.cellMesh.position.clone();
};
DMACell.prototype.getType = function(){ DMACell.prototype.getType = function(){
return null;//only used in freeform layout return null;//only used in freeform layout
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment