module.json 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. {
  2. "name":"BT_OSCcontroller",
  3. "type":"OSC",
  4. "path":"LIEN-BT",
  5. "version":"0.0.1",
  6. "description":"BT OSC controller manager",
  7. "url":"https://gogs.madology.myds.me/FRESNOY/BT_OSCcontroller_chataigne",
  8. "downloadURL":"",
  9. "hasInput":true,
  10. "hasOutput":true,
  11. "hideDefaultCommands":false,
  12. "defaults":
  13. {
  14. "autoAdd":false,
  15. "OSC Input":
  16. {
  17. "localPort":9001
  18. },
  19. "OSC Output":
  20. {
  21. "remotePort":9000
  22. }
  23. },
  24. "parameters":
  25. {
  26. },
  27. "hideDefaultParameters":
  28. [
  29. "autoAdd",
  30. "splitArguments",
  31. "autoRange",
  32. "autoFeedback",
  33. "pass_through",
  34. "osc_input",
  35. "osc_outputs"
  36. ],
  37. "scripts":
  38. [
  39. "BT_OSCcontroller.js"
  40. ],
  41. "values":
  42. {
  43. },
  44. "commands":
  45. {
  46. "Set Value":
  47. {
  48. "menu":"",
  49. "callback":"valueCallback",
  50. "parameters":
  51. {
  52. "Target":
  53. {
  54. "type":"Enum",
  55. "options":
  56. {
  57. "All":"all",
  58. "One":"one",
  59. "Range":"range"
  60. }
  61. },
  62. "ID":
  63. {
  64. "type":"Integer",
  65. "dependency":
  66. {
  67. "source":"target",
  68. "value":"one",
  69. "check":"equals",
  70. "action":"show"
  71. }
  72. },
  73. "Start ID":
  74. {
  75. "type":"Integer",
  76. "dependency":
  77. {
  78. "source":"target",
  79. "value":"range",
  80. "check":"equals",
  81. "action":"show"
  82. }
  83. },
  84. "End ID":
  85. {
  86. "type":"Integer",
  87. "default":1,
  88. "dependency":
  89. {
  90. "source":"target",
  91. "value":"range",
  92. "check":"equals",
  93. "action":"show"
  94. }
  95. },
  96. "Value":
  97. {
  98. "type":"Float",
  99. "min":0,
  100. "max":1,
  101. "default":0
  102. }
  103. }
  104. },
  105. "Set Color":
  106. {
  107. "menu":"",
  108. "callback":"colorCallback",
  109. "parameters":
  110. {
  111. "Target":
  112. {
  113. "type":"Enum",
  114. "options":
  115. {
  116. "All":"all",
  117. "One":"one",
  118. "Range":"range"
  119. }
  120. },
  121. "ID":
  122. {
  123. "type":"Integer",
  124. "dependency":
  125. {
  126. "source":"target",
  127. "value":"one",
  128. "check":"equals",
  129. "action":"show"
  130. }
  131. },
  132. "Start ID":
  133. {
  134. "type":"Integer",
  135. "dependency":
  136. {
  137. "source":"target",
  138. "value":"range",
  139. "check":"equals",
  140. "action":"show"
  141. }
  142. },
  143. "End ID":
  144. {
  145. "type":"Integer",
  146. "default":1,
  147. "dependency":
  148. {
  149. "source":"target",
  150. "value":"range",
  151. "check":"equals",
  152. "action":"show"
  153. }
  154. },
  155. "Color":
  156. {
  157. "type":"Color",
  158. "default":[1,0,0,1]
  159. }
  160. }
  161. },
  162. "Black Out":
  163. {
  164. "menu":"",
  165. "callback":"blackOutCallback",
  166. "parameters":
  167. {
  168. "Target":
  169. {
  170. "type":"Enum",
  171. "options":
  172. {
  173. "All":"all",
  174. "One":"one",
  175. "Range":"range"
  176. }
  177. },
  178. "ID":
  179. {
  180. "type":"Integer",
  181. "dependency":
  182. {
  183. "source":"target",
  184. "value":"one",
  185. "check":"equals",
  186. "action":"show"
  187. }
  188. },
  189. "Start ID":
  190. {
  191. "type":"Integer",
  192. "dependency":
  193. {
  194. "source":"target",
  195. "value":"range",
  196. "check":"equals",
  197. "action":"show"
  198. }
  199. },
  200. "End ID":
  201. {
  202. "type":"Integer",
  203. "default":1,
  204. "dependency":
  205. {
  206. "source":"target",
  207. "value":"range",
  208. "check":"equals",
  209. "action":"show"
  210. }
  211. }
  212. }
  213. },
  214. "Gradient":
  215. {
  216. "menu":"Advanced",
  217. "callback":"gradientCallback",
  218. "parameters":
  219. {
  220. "Start ID":
  221. {
  222. "type":"Integer",
  223. "min":0,
  224. "max":15
  225. },
  226. "End ID":
  227. {
  228. "type":"Integer",
  229. "default":1,
  230. "min":0,
  231. "max":15
  232. },
  233. "Start Color":
  234. {
  235. "type":"Color",
  236. "default":[1,0,0,1]
  237. },
  238. "End Color":
  239. {
  240. "type":"Color",
  241. "default":[0,0,1,1]
  242. }
  243. }
  244. },
  245. "Point":
  246. {
  247. "menu":"Advanced",
  248. "callback":"pointCallback",
  249. "parameters":
  250. {
  251. "Start ID":
  252. {
  253. "type":"Integer",
  254. "min":0,
  255. "max":15
  256. },
  257. "End ID":
  258. {
  259. "type":"Integer",
  260. "default":1,
  261. "min":0,
  262. "max":15
  263. },
  264. "Position":
  265. {
  266. "type":"Float",
  267. "default":0.5,
  268. "min":0,
  269. "max":1,
  270. },
  271. "Size":
  272. {
  273. "type":"Float",
  274. "default":0.1,
  275. "min":0,
  276. "max":1
  277. },
  278. "Fade":
  279. {
  280. "type":"Float",
  281. "default":0.5,
  282. "min":0,
  283. "max":1
  284. },
  285. "Color":
  286. {
  287. "type":"Color",
  288. "default":[1,1,1,1]
  289. }
  290. }
  291. }
  292. }
  293. }