Visca.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 state =
  5. var inquiry = ['CAM_ZoomPosInq', 'CAM_FocusModeInq', 'CAM_FocusPosInq'];
  6. /////////// HELPERS FUNCTIONS ////////////////
  7. function printArray(name, array){
  8. var printHeader = ' '+name+' : ';
  9. if (array.length){for(var i=0; i<array.length; i++){printHeader+=array[i] + ' ';}}
  10. script.log(printHeader);
  11. }
  12. /////////// VISCA FUNCTIONS ////////////////
  13. function setZoom(ID, position){
  14. var header = [1, 4, 71];
  15. var posCommand = [];
  16. var pos = Math.round(Math.floor(16384 * position));
  17. // script.log(pos);
  18. posCommand[3]=pos%16;
  19. pos = Math.round(Math.floor(pos/16));
  20. posCommand[2]=pos%16;
  21. pos=Math.round(Math.floor(pos/16));
  22. posCommand[1]=pos%16;
  23. posCommand[0]=Math.round(Math.floor(pos/16));
  24. // local.sendBytes(idHex, 1, 4, 71, posCommand, 255);
  25. sendCommand(1, header, posCommand);
  26. }
  27. function sendCommand(id, header, command){
  28. var idHex = (parseInt("0x80") + ID);
  29. printArray('header', header);
  30. printArray('command', command);
  31. local.sendBytes(idHex, header, command, 255);
  32. }
  33. /////////// SCRIPT FUNCTIONS ////////////////
  34. function init() {
  35. //loadFixtures();
  36. script.log("VISCA module loaded");
  37. }
  38. var buffer=[];
  39. var bufferIndex = 0 ;
  40. function dataReceived(data)
  41. {
  42. //If mode is "Lines", you can expect data to be a single line String
  43. // script.log("Data received : " +data);
  44. //If mode is anything else, you can expect data to be an array of bytes
  45. // script.log(" Bytes received : "+data.length);
  46. // for(var i=0; i < data.length; i++)
  47. // {
  48. // script.log(" > " + parseInt((""+data[i]),16));
  49. // }
  50. //fill buffer with bytes until you find a 255
  51. for (var i = 0 ; i<data.length ; i++){
  52. if (data[i]!=255){
  53. buffer[bufferIndex]=data[i];
  54. bufferIndex += 1;
  55. }
  56. else{
  57. if(buffer[0]==144){ //0x90, you've got a message
  58. if (buffer[1]==65){script.log("received command");} //0x41
  59. if (buffer[1]==81){script.log("complete command");} //0x51
  60. if (buffer[1]==97){//0x61
  61. var msg = "error :";
  62. if(buffer[2]==1){msg=msg+"message length";}
  63. if(buffer[2]==2){msg=msg+"syntax";}
  64. if(buffer[2]==3){msg=msg+"command buffer full";}
  65. if(buffer[2]==4){msg=msg+"command cancelled";}
  66. if(buffer[2]==5){msg=msg+"no socket";}
  67. if(buffer[2]==65){msg=msg+"command not executable";}
  68. else{
  69. msg=msg+"unknow error";
  70. for(var j=2; j < buffer.length; j++)
  71. {
  72. script.log(" > " +data[i]);
  73. }
  74. }
  75. script.log(msg);
  76. }
  77. //inquiry answers
  78. // if (buffer[1]==80){//0x50){
  79. // switch(inquiry){
  80. // case 'CAM_ZoomPosInq':
  81. // }
  82. // }
  83. }
  84. bufferIndex = 0;
  85. buffer=[];
  86. }
  87. }
  88. //then process buffer
  89. }