Browse Source

script cleaning : DMX and midi

created two scripts to manage separatly midi and DMX
both update script parameters, and are linked through state machine
eLandon 4 years ago
parent
commit
9c6656d14f
4 changed files with 343 additions and 4 deletions
  1. 217 0
      soft/BCF2000.js
  2. 113 0
      soft/DMXlyre.js
  3. 12 3
      soft/keyframes.js
  4. 1 1
      soft/lyreCam.noisette

+ 217 - 0
soft/BCF2000.js

@@ -0,0 +1,217 @@
+/*
+BCF2000 management script with 14bit precision
+midi inputs are stored as MSB ans LSB and update a float parameter
+on float parameter update, midi values are sent back to BCF (to ensure synchronisation of values)
+*/
+
+
+var pan_midi_ch = script.addIntParameter("pan midi channel", "", 0);
+var pan_midi={channel:pan_midi_ch.get(), MSB:0, LSB:0, target:root.customVariables.unitValues.variables.pan.pan, value: script.addFloatParameter("pan", "current pan value", 0., 0, 1) };
+// var pan_value =
+
+var tilt_midi_ch = script.addIntParameter("tilt midi channel", "", 1);
+var tilt_midi={channel:tilt_midi_ch.get(), MSB:0, LSB:0, target:root.customVariables.unitValues.variables.tilt.tilt, value: script.addFloatParameter("tilt", "current tilt value", 0., 0, 1)};
+
+var zoom_midi_ch = script.addIntParameter("zoom midi channel", "", 2);
+var zoom_midi={channel:zoom_midi_ch.get(), MSB:0, LSB:0, target:root.customVariables.unitValues.variables.zoom.zoom, value:script.addFloatParameter("zoom", "current zoom value", 0., 0, 1) };
+
+var focus_midi_ch = script.addIntParameter("focus midi channel", "", 3);
+var focus_midi={channel:focus_midi_ch.get(), MSB:0, LSB:0, target:root.customVariables.unitValues.variables.focus.focus, value: script.addFloatParameter("focus", "current focus value", 0., 0, 1)};
+
+var dimmer_midi_ch = script.addIntParameter("dimmer midi channel", "", 4);
+var dimmer_midi={channel:dimmer_midi_ch.get(), MSB:0, LSB:0, target:root.customVariables.unitValues.variables.dimmer.dimmer, value: script.addFloatParameter("dimmer", "current dimmer value", 0., 0, 1)};
+
+function init()
+{
+	//myFloatParam.set(5); //The .set() function set the parameter to this value.
+	//myColorParam.set([1,.5,1,1]);	//for a color parameter, you need to pass an array with 3 (RGB) or 4 (RGBA) values.
+	//myP2DParam.set([1.5,-5]); // for a Point2D parameter, you need to pass 2 values (XY)
+	//myP3DParam.set([1.5,2,-3]); // for a Point3D parameter, you need to pass 3 values (XYZ)
+}
+
+
+function bits2float(MSB, LSB){
+	Value = param.get()*16383;
+	MSB = Math.floor(ccValue/128);
+	// MSB=Math.round(MSB);
+	LSB = Math.floor(ccValue % 128);
+	// MSB=Math.round(MSB);
+	// LSB=Math.round(LSB);
+	script.log(MSB+ " "+ LSB);
+}
+
+function updateCC(cc, value){
+	if(cc==pan_midi.channel){pan_midi.MSB = value; return pan_midi;}
+	if(cc==pan_midi.channel+32){pan_midi.LSB = value; return pan_midi;}
+	if(cc==tilt_midi.channel){tilt_midi.MSB = value; return tilt_midi;}
+	if(cc==tilt_midi.channel+32){tilt_midi.LSB = value; return tilt_midi;}
+	if(cc==zoom_midi.channel){zoom_midi.MSB = value; return zoom_midi;}
+	if(cc==zoom_midi.channel+32){zoom_midi.LSB = value; return zoom_midi;}
+	if(cc==focus_midi.channel){focus_midi.MSB = value; return focus_midi;}
+	if(cc==focus_midi.channel+32){focus_midi.LSB = value; return focus_midi;}
+	if(cc==dimmer_midi.channel){dimmer_midi.MSB = value; return dimmer_midi;}
+	if(cc==dimmer_midi.channel+32){dimmer_midi.LSB = value; return dimmer_midi;}
+	else return 0;
+}
+
+function updateFloat(channel){
+	channel.value.set((channel.MSB*128+channel.LSB)/16383.);
+}
+
+function feedbackMidi(channel){
+	channel.MSB = Math.round(Math.floor(channel.value.get()*16383. /128));
+	channel.LSB = Math.round(Math.floor(channel.value.get()*16383. %128));
+	script.log(channel.MSB + "  " + channel.LSB);
+	local.sendCC(1, channel.channel, channel.MSB);
+	local.sendCC(1, channel.channel+32, channel.LSB);
+}
+
+// function updateAxe(axe, CC, value){
+// 	if(CC==axe.channel){
+// 		axe.MSB = value;
+// 		// root.customVariables.unitValues.variables.pan.pan.set((128*axe.MSB+axe.LSB)/16383.0);
+// 	}
+// 	if(CC==axe.channel+32){
+// 		axe.LSB = value;
+// 		// myFloatParam.set((128*MSB+LSB)/16383.0);
+// 	}
+// 	axe.target=(128*axe.MSB+axe.LSB)/16383.0;
+// 	script.log(axe.target);
+// }
+
+function scriptParameterChanged(param)
+{
+	if (param.is(pan_midi.value) ){feedbackMidi(pan_midi);}
+	if (param.is(tilt_midi.value) ){feedbackMidi(tilt_midi);}
+	if (param.is(zoom_midi.value) ){feedbackMidi(zoom_midi);}
+	if (param.is(focus_midi.value) ){feedbackMidi(focus_midi);}
+	if (param.is(dimmer_midi.value) ){feedbackMidi(dimmer_midi);}
+	//You can use the script.log() function to show an information inside the logger panel. To be able to actuallt see it in the logger panel, you will have to turn on "Log" on this script.
+	// script.log("Parameter changed : "+param.name); //All parameters have "name" property
+	// if(param.is(myTrigger)) script.log("Trigger !"); //You can check if two variables are the reference to the same parameter or object with the method .is()
+	// else if(param.is(myEnumParam)) script.log("Label = "+param.get()+", data = "+param.getData()); //The enum parameter has a special function getData() to get the data associated to the option
+	// else script.log("Value is "+param.get()); //All parameters have a get() method that will return their value
+	// if (param.name == "myFloatParam"){
+	// 	script.log("sending back");
+	// 	var ccValue = param.get()*16383;
+	// 	MSB = Math.floor(ccValue/128);
+	// 	// MSB=Math.round(MSB);
+	// 	LSB = Math.floor(ccValue % 128);
+	// 	// MSB=Math.round(MSB);
+	// 	// LSB=Math.round(LSB);
+	// 	script.log(MSB+ " "+ LSB);
+	// 	local.sendCC(channel, 0, MSB);
+	// 	local.sendCC(channel, 32, LSB);
+	//
+	// }
+}
+
+/*
+ This function, if you declare it, will launch a timer at 50hz, calling this method on each tick
+*/
+/*
+function update(deltaTime)
+{
+	script.log("Update : "+util.getTime()+", delta = "+deltaTime); //deltaTime is the time between now and last update() call, util.getTime() will give you a timestamp relative to either the launch time of the software, or the start of the computer.
+}
+*/
+
+
+
+/* ********** MODULE SPECIFIC SCRIPTING **********************
+
+	The "local" variable refers to the object containing the scripts. In this case, the local variable refers to the module.
+	It means that you can access any control inside  this module by accessing it through its address.
+	For instance, if the module has a float value named "Density", you can access it via local.values.density
+	Then you can retrieve its value using local.values.density.get() and change its value using local.values.density.set()
+*/
+
+/*
+ This function will be called each time a parameter of this module has changed, meaning a parameter or trigger inside the "Parameters" panel of this module
+ This function only exists because the script is in a module
+*/
+function moduleParameterChanged(param)
+{
+	// if(param.isParameter())
+	// {
+	// 	script.log("Module parameter changed : "+param.name+" > "+param.get());
+	// }else
+	// {
+	// 	script.log("Module parameter triggered : "+value.name);
+	// }
+
+}
+
+/*
+ This function will be called each time a value of this module has changed, meaning a parameter or trigger inside the "Values" panel of this module
+ This function only exists because the script is in a module
+*/
+function moduleValueChanged(value)
+{
+	// if(value.isParameter())
+	// {
+	// 	script.log("Module value changed : "+value.name+" > "+value.get());
+	// }else
+	// {
+	// 	script.log("Module value triggered : "+value.name);
+	// }
+}
+
+/* ********** MIDI MODULE SPECIFIC SCRIPTING ********************* */
+/*
+
+MIDI Modules have specific methods that can be used to send MIDI events such as noteOn, noteOff, controlChange and sysEx messages from Script.
+If you want to send a MIDI event from this script, you can do the following :
+
+local.sendNoteOn(1, 12, 127); //This will send a NoteOn Event on channel 1, pitch 12, velocity 127
+local.sendNoteOff(1, 12); //This will send a NoteOff Event on chanenl 1, pitch 12
+local.sendCC(3, 20, 65); //This will send a ControlChange on channel 3, number 20, value 65
+local.sendSysEx(15,20,115,10); //This will send 4 bytes as a SysEx message
+local.sendSysEx(15,20,115,10); //This will send 4 bytes as a SysEx message
+*/
+
+/*
+You can intercept MIDI Events with the functions below
+*/
+
+function noteOnEvent(channel, pitch, velocity)
+{
+	script.log("Note on received "+channel+", "+pitch+", "+velocity);
+}
+
+
+function noteOffEvent(channel, pitch, velocity)
+{
+	script.log("Note off received "+channel+", "+pitch+", "+velocity);
+}
+
+function ccEvent(channel, number, value)
+{
+
+	var ccChannel = updateCC(number, value); //return axe.MSB or axe.LSB
+	if (ccChannel){updateFloat(ccChannel);}
+	// ccChannel.set(value);
+
+	// script.log("hello");
+
+	// script.log("ControlChange received "+channel+", "+number+", "+value);
+	// //feedback to BCF
+	// // local.sendCC(channel, number, value);
+	// if(number==pan_midi_ch){
+	// 	MSB = value;
+	// 	myFloatParam.set((128*MSB+LSB)/16384.0);
+	// }
+	// if(number==32){
+	// 	LSB = value;
+	// 	myFloatParam.set((128*MSB+LSB)/16384.0);
+	// }
+}
+
+function sysExEvent(data)
+{
+	script.log("Sysex Message received, "+data.length+" bytes :");
+	for(var i=0; i < data.length; i++)
+	{
+		script.log(" > "+data[i]);
+	}
+}

+ 113 - 0
soft/DMXlyre.js

@@ -0,0 +1,113 @@
+
+var defaultTrigger = script.addTrigger("default","set DMX channels to default values");
+var pan_DMX = script.addFloatParameter("pan_DMX","pan position",.1,0,1); 		//This will add a float number parameter (slider), default value of 0.1, with a range between 0 and 1
+var tilt_DMX = script.addFloatParameter("tilt_DMX","tilt position",.1,0,1);
+var zoom_DMX = script.addFloatParameter("zoom_DMX","zoom position",.1,0,1);
+var focus_DMX = script.addFloatParameter("focus_DMX","pan position",.1,0,1);
+var dimmer_DMX = script.addFloatParameter("dimmer_DMX","light level",.1,0,1);
+
+function init()
+{
+	//myFloatParam.set(5); //The .set() function set the parameter to this value.
+	//myColorParam.set([1,.5,1,1]);	//for a color parameter, you need to pass an array with 3 (RGB) or 4 (RGBA) values.
+	//myP2DParam.set([1.5,-5]); // for a Point2D parameter, you need to pass 2 values (XY)
+	//myP3DParam.set([1.5,2,-3]); // for a Point3D parameter, you need to pass 3 values (XYZ)
+}
+
+/*
+ This function will be called each time a parameter of your script has changed
+*/
+
+function defaultState(){
+	local.send(7, 8); // STROBE
+	local.send(12, 0); // PRISM
+	local.send(8, 0); // COLOR
+	local.send(11, 0); // STATIC GOBO
+	local.send(9, 41); // ROTATING GOBO
+	local.send(10,13); // GOBO ROTATION
+
+}
+
+function float2DMX(value){
+	value = Math.floor(value * 65535);
+	var MSB = value / 256;
+	var LSB = value % 256;
+	return [ MSB , LSB];
+}
+
+function scriptParameterChanged(param)
+{
+
+	if(param.is(pan_DMX)){
+		var  values = float2DMX(param.get());
+		local.send(1, values[0]);
+		local.send(3, values[1]);
+	}
+	if(param.is(tilt_DMX)){
+		var  values = float2DMX(param.get());
+		local.send(2, values[0]);
+		local.send(4, values[1]);
+	}
+	if(param.is(zoom_DMX)){local.send(14, param.get()*255);}
+	if(param.is(focus_DMX)){local.send(13, param.get()*255);}
+	if(param.is(dimmer_DMX)){local.send(6, param.get()*255);}
+
+	if(param.is(defaultTrigger)){defaultState();}
+
+
+	//You can use the script.log() function to show an information inside the logger panel. To be able to actuallt see it in the logger panel, you will have to turn on "Log" on this script.
+	script.log("Parameter changed : "+param.name); //All parameters have "name" property
+	if(param.is(myTrigger)) script.log("Trigger !"); //You can check if two variables are the reference to the same parameter or object with the method .is()
+	else if(param.is(myEnumParam)) script.log("Key = "+param.getKey()+", data = "+param.get()); //The enum parameter has a special function getKey() to get the key associated to the option. .get() will give you the data associated
+	else script.log("Value is "+param.get()); //All parameters have a get() method that will return their value
+}
+
+/*
+ This function, if you declare it, will launch a timer at 50hz, calling this method on each tick
+*/
+/*
+function update(deltaTime)
+{
+	script.log("Update : "+util.getTime()+", delta = "+deltaTime); //deltaTime is the time between now and last update() call, util.getTime() will give you a timestamp relative to either the launch time of the software, or the start of the computer.
+}
+*/
+
+
+
+/* ********** MODULE SPECIFIC SCRIPTING **********************
+
+	The "local" variable refers to the object containing the scripts. In this case, the local variable refers to the module.
+	It means that you can access any control inside  this module by accessing it through its address.
+	For instance, if the module has a float value named "Density", you can access it via local.values.density
+	Then you can retrieve its value using local.values.density.get() and change its value using local.values.density.set()
+*/
+
+/*
+ This function will be called each time a parameter of this module has changed, meaning a parameter or trigger inside the "Parameters" panel of this module
+ This function only exists because the script is in a module
+*/
+function moduleParameterChanged(param)
+{
+	if(param.isParameter())
+	{
+		script.log("Module parameter changed : "+param.name+" > "+param.get());
+	}else
+	{
+		script.log("Module parameter triggered : "+param.name);
+	}
+}
+
+/*
+ This function will be called each time a value of this module has changed, meaning a parameter or trigger inside the "Values" panel of this module
+ This function only exists because the script is in a module
+*/
+function moduleValueChanged(value)
+{
+	if(value.isParameter())
+	{
+		script.log("Module value changed : "+value.name+" > "+value.get());
+	}else
+	{
+		script.log("Module value triggered : "+value.name);
+	}
+}

+ 12 - 3
soft/keyframes.js

@@ -11,7 +11,9 @@ var createKeyGroup_Trigger = script.addTrigger("create group","create key group
 var createKeyGroupInOut_Trigger = script.addTrigger("create InOut group","create key group @ current time and key group ten seconds later, with constant  values inbetween");
 
 var myFile = script.addFileParameter("textFile", "this is a text file");
-var myTrigger = script.addTrigger("My Trigger", "Trigger description"); 									//This will add a trigger (button)
+var myTrigger = script.addTrigger("Print pan keys", "Trigger description");
+var myTrigger2 = script.addTrigger("test", "Trigger description");
+								//This will add a trigger (button)
 
 var tl_keyframes = {cues : {}, keys : {}} ; //holds timeline keys, is updated at fixed rate
 //variable to hold group logic
@@ -110,7 +112,7 @@ function refresh_tl_keys_list(){
 function reorderLayers(){
 	if(root.sequences.keys.layers.getItems().length){
 		for (var i = 0 ; i < root.sequences.keys.layers.getItems().length ; i++){
-			root.sequences.keys.layers.getItems()[i].automation.reorderItems(10);
+			root.sequences.keys.layers.getItems()[i].automation.reorderItems(1);
 		}
 	}
 }
@@ -292,6 +294,13 @@ function scriptParameterChanged(param)
 	 	// }
 		 // myFile.writeFile(JSON.stringify(testJSON), 1);
 	}
+	else if(param.is(myTrigger2)){
+		// var props = util.getObjectMethods(root.sequences.keys.layers.getItems()[0].automation, true, true);
+		// for (var j = 0 ; j<props.length ; j++){
+		// 	script.log(props[i].name);
+		// }
+		reorderLayers();
+	}
 	else if (param.is(delCue_Trigger)){clear_tl_cues();}
 	else if (param.is(clearTL_Trigger)){clear_tl_full();}
 	else if (param.is(createKeyGroup_Trigger)){create_keyGroup(0);}
@@ -318,7 +327,7 @@ function update(deltaTime)
 			tl_refresh_delta = 0. ;
 			refresh_tl_keys_list();
 			apply_tl_groups();
-			reorderLayers();
+			//reorderLayers();
 			// script.log("Update : "+util.getTime()+", delta = "+deltaTime); //deltaTime is the time between now and last update() call, util.getTime() will give you a timestamp relative to either the launch time of the software, or the start of the computer.
 	}
 

File diff suppressed because it is too large
+ 1 - 1
soft/lyreCam.noisette