# Two stage example Virtual Machine file
# moves get set in Main
# usb port needs to be set in initInterfaces
# Nadya Peek Dec 2014

#------IMPORTS-------
from pygestalt import nodes
from pygestalt import interfaces
from pygestalt import machines
from pygestalt import functions
from pygestalt.machines import elements
from pygestalt.machines import kinematics
from pygestalt.machines import state
from pygestalt.utilities import notice
from pygestalt.publish import rpc	#remote procedure call dispatcher
import time
import io
import timeit
from timeit import default_timer as timer
E=0
A=9
D=18
G=27
H=36
E2=45
z=5
Delay=3

#------VIRTUAL MACHINE------
class virtualMachine(machines.virtualMachine):
	
	def initInterfaces(self):
		if self.providedInterface: self.fabnet = self.providedInterface		#providedInterface is defined in the virtualMachine class.
		else: self.fabnet = interfaces.gestaltInterface('FABNET', interfaces.serialInterface(baudRate = 115200, interfaceType = 'ftdi', portName = '/dev/ttyUSB0'))
		
	def initControllers(self):
		self.xAxisNode = nodes.networkedGestaltNode('X Axis', self.fabnet, filename = '086-005a.py', persistence = self.persistence)
		self.yAxisNode = nodes.networkedGestaltNode('Y Axis', self.fabnet, filename = '086-005a.py', persistence = self.persistence)

		self.xyNode = nodes.compoundNode(self.xAxisNode, self.yAxisNode)

	def initCoordinates(self):
		self.position = state.coordinate(['mm', 'mm'])
	
	def initKinematics(self):
		self.xAxis = elements.elementChain.forward([elements.microstep.forward(4), elements.stepper.forward(1.8), elements.leadscrew.forward(8), elements.invert.forward(True)])
		self.yAxis = elements.elementChain.forward([elements.microstep.forward(4), elements.stepper.forward(1.8), elements.leadscrew.forward(8), elements.invert.forward(False)])		
		self.stageKinematics = kinematics.direct(2)	#direct drive on all axes
	
	def initFunctions(self):
		self.move = functions.move(virtualMachine = self, virtualNode = self.xyNode, axes = [self.xAxis, self.yAxis], kinematics = self.stageKinematics, machinePosition = self.position,planner = 'null')
		self.jog = functions.jog(self.move)	#an incremental wrapper for the move function
		pass
		
	def initLast(self):
		#self.machineControl.setMotorCurrents(aCurrent = 0.8, bCurrent = 0.8, cCurrent = 0.8)
		#self.xNode.setVelocityRequest(0)	#clear velocity on nodes. Eventually this will be put in the motion planner on initialization to match state.
		pass
	
	def publish(self):
		#self.publisher.addNodes(self.machineControl)
		pass
	
	def getPosition(self):
		return {'position':self.position.future()}
	
	def setPosition(self, position  = [None]):
		self.position.future.set(position)

	def setSpindleSpeed(self, speedFraction):
		#self.machineControl.pwmRequest(speedFraction)
		pass

#------IF RUN DIRECTLY FROM TERMINAL------
if __name__ == '__main__':
	# The persistence file remembers the node you set. It'll generate the first time you run the
	# file. If you are hooking up a new node, delete the previous persistence file.
	stages = virtualMachine(persistenceFile = "test.vmp")

	# You can load a new program onto the nodes if you are so inclined. This is currently set to 
	# the path to the 086-005 repository on Nadya's machine. 
	#stages.xyNode.loadProgram('../../../086-005/086-005a.hex')
	
	# This is a widget for setting the potentiometer to set the motor current limit on the nodes.
	# The A4982 has max 2A of current, running the widget will interactively help you set. 
	#stages.xyNode.setMotorCurrent(0.7)

	# This is for how fast the 
	stages.xyNode.setVelocityRequest(10)	
	
	# Some random moves to test with
	#moves = [[10,10],[20,20],[10,10],[0,0]]
	
	#assumption: [0,0] is in front of E string not able to plug the string with x movement
	
	# going to plug distance is z = 3mm
	
	#Play E string
	#hmoves = [[D,0],[D,z],[D+10,z],[D+10,0],1,[E,0],[E,z],[E+10,z],[E+10,0],1,[E,0],[E,z],[E+10,z],[E+10,0],0] # Play E string and play D string (init pos, init pos down, plug down, plug pos down)

	hmoves = [[E,0],[E,z],[E+10,z],[E+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[E2,0],[E2,z],[E2+10,z],[E2+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],1,[E,0],[E,z],[E+10,z],[E+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[E2,0],[E2,z],[E2+10,z],[E2+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],1,[E,0],[E,z],[E+10,z],[E+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[E2,0],[E2,z],[E2+10,z],[E2+10,0],1,[H,0],[H,z],[H+10,z],[H+10,0],1,[G,0],[G,z],[G+10,z],[G+10,0],0]	

	time_stamp = timer()
	# Move!
	#for moveh in hmoves[::4]
	for x in range(1, 19):
		stages.move(hmoves[5*x-5], 0) # go to start for a pluged string
		status = stages.xAxisNode.spinStatusRequest()


		stages.move(hmoves[(5*x-5)+1], 0) # go down
		status = stages.xAxisNode.spinStatusRequest()
		
		stages.move(hmoves[(5*x-5)+2], 0)	# plug
		status = stages.xAxisNode.spinStatusRequest()
		
		print (timer()-time_stamp)		
		time_stamp = timer()

		stages.move(hmoves[(5*x-5)+3], 0)	# go up
		status = stages.xAxisNode.spinStatusRequest()
		time.sleep(hmoves[(5*x-5)+4])
		# This checks to see if the move is done.
		while status['stepsRemaining'] > 0:
			time.sleep(0)
			status = stages.xAxisNode.spinStatusRequest()	

	
	stages.move([0,0], 0)
	status = stages.xAxisNode.spinStatusRequest()

	stages.move([0,5], 0)
	status = stages.xAxisNode.spinStatusRequest()

	stages.move([E2+20,5], 0)
	status = stages.xAxisNode.spinStatusRequest()

	stages.move([E2+20,0], 0)
	status = stages.xAxisNode.spinStatusRequest()

	stages.move([0,0], 0)
	status = stages.xAxisNode.spinStatusRequest()

	while status['stepsRemaining'] > 0:
		time.sleep(0)
		status = stages.xAxisNode.spinStatusRequest()	
