Visca.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. //implementation following this protocol : https://www.epiphan.com/userguides/LUMiO12x/Content/UserGuides/PTZ/3-operation/VISCAcommands.htm#InquiryCommands
  2. // var parameterPath = local.parameters;
  3. // var valuesPath = local.values;
  4. var ZoomPos = script.addFloatParameter("Zoom Position", "", 0., 0., 1.);
  5. var ZoomPosLastUpdate = script.addFloatParameter("Zoom update", "", 0.);
  6. // var state =
  7. var inquiry = ['CAM_ZoomPosInq', 'CAM_FocusModeInq', 'CAM_FocusPosInq', 'CAM_ReplyIntervalTimeInq'];
  8. var camID = 1;
  9. var waitTaskComplete = 0 ;
  10. var currentInquiry = '';
  11. var ZoomAuto = false ;
  12. var ZoomPos_target ;
  13. var ZoomTime_target ;
  14. //////////////////////// HELPERS FUNCTIONS ////////////////////////////
  15. function printArray(name, array){
  16. var printHeader = ' '+name+' : ';
  17. if (array.length){for(var i=0; i<array.length; i++){printHeader+=array[i] + ' ';}}
  18. script.log(printHeader);
  19. }
  20. //////////////////////// VISCA FUNCTIONS ////////////////////////////////
  21. function setZoomPos(ID, position){
  22. var header = [1, 4, 71];
  23. var posCmd = [];
  24. var pos = Math.round(Math.floor(16384 * position));
  25. // script.log(pos);
  26. posCmd[3]=pos%16;
  27. pos = Math.round(Math.floor(pos/16));
  28. posCmd[2]=pos%16;
  29. pos=Math.round(Math.floor(pos/16));
  30. posCmd[1]=pos%16;
  31. posCmd[0]=Math.round(Math.floor(pos/16));
  32. // local.sendBytes(idHex, 1, 4, 71, posCommand, 255);
  33. sendHeaderCommand(camID, header, posCmd);
  34. }
  35. function setZoomSpeed(ID, speed){
  36. var header = [1, 4, 7];
  37. var speedCmd = speed < 0 ? 48 : 32;
  38. speedCmd += Math.abs(speed)-1;
  39. speedCmd = speed == 0 ? 0 : speedCmd ;
  40. sendHeaderCommand(camID, header, speedCmd);
  41. }
  42. function sendInquiry(id, inquiryName){
  43. var command ;
  44. if (currentInquiry == ''){ //no inquiry running;
  45. currentInquiry = inquiryName ;
  46. if(inquiryName == 'CAM_ZoomPosInq'){ command = [9, 4, 71];}
  47. if(inquiryName == 'CAM_ReplyIntervalTimeInq'){ command = [9, 4, 106];}
  48. sendCommand(camID, command);
  49. }
  50. else{script.log("inquiry running");}
  51. }
  52. function sendCommand(id, command){
  53. var idHex = (parseInt("0x80") + id);
  54. // printArray('command', command);
  55. local.sendBytes(idHex, command, 255);
  56. }
  57. function sendHeaderCommand(id, header, command){
  58. if (!waitTaskComplete){
  59. var idHex = (parseInt("0x80") + id);
  60. // printArray('header', header);
  61. // printArray('command', command);
  62. local.sendBytes(idHex, header, command, 255);
  63. waitTaskComplete = 1;
  64. }
  65. else { script.log('task not complete');}
  66. }
  67. //////////////////////// ZOOM AUTOMATION ////////////////////////////////
  68. function setZoomPositionInTime(ID, position, time){
  69. //update zoom position and time targets
  70. ZoomPos_target = position ;
  71. ZoomTime_target = util.getTime()+time;
  72. //activate callback
  73. ZoomAuto = true ;
  74. //deduce appropriate speed
  75. // var speedCmd = speed < 0 ? 48 : 32;
  76. // speedCmd = speed == 0 ? 0 : speedCmd ;
  77. // speedCmd += Math.abs(speed);
  78. // sendHeaderCommand(camID, header, speedCmd);
  79. }
  80. function setZoomPositionInTime_TL(ID, position, time){
  81. var tl_time = root.sequences.keys.currentTime.get();
  82. //update zoom position and time targets
  83. ZoomPos_target = root.sequences.keys.zoom.automation.getValueAtPosition(tl_time+time) ;
  84. ZoomTime_target = util.getTime()+time;
  85. //activate callback
  86. ZoomAuto = true ;
  87. //deduce appropriate speed
  88. // var speedCmd = speed < 0 ? 48 : 32;
  89. // speedCmd = speed == 0 ? 0 : speedCmd ;
  90. // speedCmd += Math.abs(speed);
  91. // sendHeaderCommand(camID, header, speedCmd);
  92. }
  93. function updateZoomPosition() {
  94. if (ZoomAuto){
  95. //update position
  96. sendInquiry(1, 'CAM_ZoomPosInq');
  97. //update speed if needed
  98. var lastUpdated = util.getTime()-ZoomPosLastUpdate.get();
  99. // script.log(lastUpdated);
  100. if(lastUpdated<0.5){
  101. //compute remaining time
  102. var remainTime = ZoomTime_target - util.getTime();
  103. if(remainTime > 0){
  104. var remainLength = (ZoomPos_target - ZoomPos.get()) * 100;
  105. var rawSpeed = remainLength / remainTime ;
  106. var absSpeed = Math.abs(rawSpeed);
  107. var realSpeed = -0.00221 * Math.pow(absSpeed,2) + 0.30898 * absSpeed ;
  108. var direction = rawSpeed > 0 ? 1 : -1;
  109. realSpeed *= direction ;
  110. realSpeed = Math.floor(realSpeed);
  111. script.log(remainLength + '% in ' + remainTime + ' s : ' + realSpeed + ' / ' +rawSpeed );
  112. setZoomSpeed(1, realSpeed);
  113. }
  114. else {
  115. ZoomAuto = false;
  116. script.log('automation timeout');
  117. //go to position
  118. setZoomPos(1, ZoomPos_target);
  119. sendInquiry(1, 'CAM_ZoomPosInq');
  120. }
  121. }
  122. }
  123. }
  124. function computeSpeed(){
  125. // 0,151*PUISSANCE((A18+1);2) +3,0001717*(A18+1)+0,007557
  126. }
  127. /////////////////////// SCRIPT FUNCTIONS ///////////////////////////////
  128. function init() {
  129. //loadFixtures();
  130. script.log("VISCA module loaded");
  131. script.setUpdateRate(2);
  132. }
  133. function update(deltaTime){
  134. updateZoomPosition();
  135. computeSpeed();
  136. // script.log('update');
  137. }
  138. var buffer=[];
  139. var bufferIndex = 0 ;
  140. function dataReceived(data)
  141. {
  142. //If mode is "Lines", you can expect data to be a single line String
  143. // script.log("Data received : " +data);
  144. //If mode is anything else, you can expect data to be an array of bytes
  145. // script.log(" Bytes received : "+data.length);
  146. // for(var i=0; i < data.length; i++)
  147. // {
  148. // script.log(" > " + parseInt((""+data[i]),16));
  149. // }
  150. //fill buffer with bytes until you find a 255
  151. for (var i = 0 ; i<data.length ; i++){
  152. if (data[i]!=255){
  153. buffer[bufferIndex]=data[i];
  154. bufferIndex += 1;
  155. }
  156. else{
  157. if(buffer[0]==144){ //0x90, you've got a message
  158. if (buffer[1]==65){script.log("received command");} //0x41
  159. else if (buffer[1]==81){script.log("complete command");waitTaskComplete=0;} //0x51
  160. else if (buffer[1]==96){script.log("syntax error");} //0x60
  161. else if (buffer[1]==97){//0x61
  162. var msg = "error :";
  163. if(buffer[2]==1){msg=msg+"message length";}
  164. else if(buffer[2]==2){msg=msg+"syntax";}
  165. else if(buffer[2]==3){msg=msg+"command buffer full";}
  166. else if(buffer[2]==4){msg=msg+"command cancelled";}
  167. else if(buffer[2]==5){msg=msg+"no socket";}
  168. else if(buffer[2]==65){msg=msg+"command not executable";}
  169. else{
  170. msg=msg+"unknow error";
  171. for(var j=2; j < buffer.length; j++)
  172. {
  173. script.log(" > " +data[i]);
  174. }
  175. }
  176. script.log(msg);
  177. }
  178. //inquiry answers
  179. else if (buffer[1]==80){//0x50
  180. if(currentInquiry == 'CAM_ZoomPosInq'){
  181. var position = buffer[2]*4096 + buffer[3]*256 + buffer[4]*16 + buffer[5];
  182. // printArray("zoom position :", buffer);
  183. // script.log(position);
  184. ZoomPos.set(position/16384.);
  185. ZoomPosLastUpdate.set(util.getTime());
  186. }
  187. if(currentInquiry == 'CAM_ReplyIntervalTimeInq'){
  188. var position = buffer[4]*16 + buffer[5];
  189. // printArray("zoom position :", buffer);
  190. // script.log(position);
  191. ZoomPos.set(position/16384.);
  192. ZoomPosLastUpdate.set(util.getTime());
  193. }
  194. //free inquiry slot
  195. currentInquiry = '';
  196. }
  197. else if(buffer[1] == 7 && buffer[2] == 4 && buffer[3]==105){
  198. var position = buffer[6]*4096 + buffer[7]*256 + buffer[8]*16 + buffer[9];
  199. // printArray("zoom position :", buffer);
  200. // script.log(position);
  201. ZoomPos.set(position/16384.);
  202. ZoomPosLastUpdate.set(util.getTime());
  203. }
  204. else{printArray("unknown answer :", buffer);}
  205. }
  206. bufferIndex = 0;
  207. buffer=[];
  208. }
  209. }
  210. //then process buffer
  211. }