_LibreLightDesk.py 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404
  1. #! /usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. """
  4. This file is part of LibreLight.
  5. LibreLight is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, version 2 of the License.
  8. LibreLight is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with LibreLight. If not, see <http://www.gnu.org/licenses/>.
  14. (c) 2012 micha@librelight.de
  15. """
  16. import random
  17. import subprocess
  18. import string
  19. import copy
  20. import traceback
  21. rnd_id = str(random.randint(100,900))
  22. rnd_id += " beta"
  23. rnd_id2 = ""
  24. rnd_id3 = ""
  25. try:
  26. _gcmd=['git','log','-1', '--format=%ci']
  27. r = subprocess.check_output(_gcmd)
  28. rnd_id3 += " " + r.decode('ascii').strip().split()[0]
  29. except:pass
  30. rnd_id += rnd_id3
  31. _gcmd=['git', 'rev-parse', '--short', 'HEAD']
  32. try:
  33. r = subprocess.check_output(_gcmd)
  34. rnd_id2 += " "+r.decode('ascii').strip()
  35. except Exception as e:
  36. rnd_id2 += " no git"
  37. #rnd_id += " ".join(_gcmd) +str(e)
  38. rnd_id += rnd_id2
  39. try:
  40. xtitle = __file__
  41. except:
  42. xtitle = "__file__"
  43. if "/" in xtitle:
  44. xtitle = xtitle.split("/")[-1]
  45. import sys
  46. sys.stdout.write("\x1b]2;"+str(xtitle)+" "+str(rnd_id)+"\x07") # terminal title
  47. import json
  48. import time
  49. import sys
  50. import os
  51. HOME = os.getenv('HOME')
  52. import _thread as thread
  53. import traceback
  54. import tkinter
  55. import tkinter as tk
  56. from tkinter import font
  57. space_font = None
  58. import tkinter.simpledialog
  59. from idlelib.tooltip import Hovertip
  60. INIT_OK = 0
  61. _global_short_key = 1
  62. gcolor = 1
  63. def cprint(*text,color="blue",space=" ",end="\n"):
  64. #return 0 #disable print dbg
  65. if not gcolor:
  66. print(text)
  67. return 0
  68. if color == "green":
  69. txt = '\033[92m'
  70. elif color == "red":
  71. txt = '\033[0;31m\033[1m'
  72. elif color == "yellow":
  73. txt = '\033[93m\033[1m'
  74. elif color == "cyan":
  75. txt = '\033[96m'
  76. else:
  77. txt = '\033[94m'
  78. for t in text:
  79. txt += str(t ) +" "
  80. #HEADER = '\033[95m'
  81. #OKBLUE = '\033[94m'
  82. #OKCYAN = '\033[96m'
  83. #OKGREEN = '\033[92m'
  84. #WARNING = '\033[93m'
  85. #FAIL = '\033[91m'
  86. #ENDC = '\033[0m'
  87. #BOLD = '\033[1m'
  88. #UNDERLINE = '\033[4m'
  89. txt += '\033[0m'
  90. print(txt,end=end)
  91. #return txt
  92. sys.stdout.flush() # to grep output
  93. cprint("________________________________")
  94. import lib.zchat as chat
  95. import lib.motion as motion
  96. from collections import OrderedDict
  97. _POS_LEFT = 0
  98. _POS_TOP = 15
  99. _config = []
  100. try:
  101. h = os.environ["HOME"]
  102. lines = [{}]
  103. try:
  104. f = open(h +"/LibreLight/config.json")
  105. lines = f.readlines()
  106. except FileNotFoundError as e: #Exception as e:
  107. f = open(h +"/LibreLight/config.json","w")
  108. f.write('{"POS_TOP":0}\n{"POS_LEFT":0}')
  109. f.close()
  110. print("Exception:",e)
  111. cprint("config read")
  112. for line in lines:
  113. line=line.strip()
  114. cprint("- config:",line)
  115. row = json.loads(line)
  116. _config.append(row)
  117. except Exception as e:
  118. print("Exception:",e)
  119. try:
  120. for row in _config:
  121. print("config:",row)
  122. if "POS_LEFT" in row:
  123. _POS_LEFT = int(row["POS_LEFT"])
  124. if "POS_TOP" in row:
  125. _POS_TOP = int(row["POS_TOP"])
  126. except Exception as e:
  127. print("Exception:",e)
  128. def showwarning(msg="<ERROR>",title="<TITLE>"):
  129. _main = tkinter.Tk()
  130. defaultFont = tkinter.font.nametofont("TkDefaultFont")
  131. print("showwarning",defaultFont)
  132. defaultFont.configure(family="FreeSans",
  133. size=10,
  134. weight="normal")
  135. geo ="{}x{}".format(20,20)
  136. _main.geometry(geo)
  137. def _quit():
  138. time.sleep(.02)
  139. _main.quit()
  140. thread.start_new_thread(_main.mainloop,())
  141. #_main.quit()
  142. #msg="'{}'\n Show Does Not Exist\n\n".format(show_name)
  143. #msg += "please check\n"
  144. #msg += "-{}init.txt\n".format(self.show_path0)
  145. #msg += "-{}".format(self.show_path1)
  146. r=tkinter.messagebox.showwarning(message=msg,title=title,parent=None)
  147. CUES = OrderedDict()
  148. groups = OrderedDict()
  149. class Modes():
  150. def __init__(self):
  151. self.modes = {}
  152. self.__cfg = {}
  153. self.__cb = None
  154. def val(self,mode,value=None): #like jquery
  155. if value is not None:
  156. return self.set(mode,value)
  157. elif mode in self.modes:
  158. return self.modes[mode]
  159. def get(self,mode,value=None):
  160. return self.val(mode,value)
  161. def __check(self,mode):
  162. if mode not in self.modes:
  163. self.modes[mode] = 0
  164. self.__cfg[mode] = 0
  165. def cfg(self,mode,data={}):
  166. self.__check(mode)
  167. if type(data) is dict:
  168. for k in data:
  169. v = data[k]
  170. if v not in self.__cfg:
  171. self.__cfg[k] = v
  172. return 1
  173. elif type(data) is str:
  174. if data in self.__cfg:
  175. return self.__cfg[data]
  176. def set(self,mode,value):
  177. protected = ["BLIND","CLEAR","REC-FX"]
  178. self.__check(mode)
  179. if mode == "CLEAR":
  180. return 1
  181. elif mode == "ESC":
  182. for m in self.modes:
  183. print("ESC",m)
  184. if m == "COPY":
  185. PRESETS.clear_copy()
  186. if m == "MOVE":
  187. PRESETS.clear_move()
  188. if m != "BLIND":
  189. self.modes[m] = 0
  190. self.callback(m)
  191. return 1
  192. if value:
  193. for m in self.modes:
  194. if m not in protected and mode not in protected and m != mode:
  195. #cprint("-#-# clear mode",mode,m,value,color="red")
  196. if self.modes[m]:
  197. self.modes[m]= 0
  198. self.callback(m)
  199. if self.modes[mode] and value == 1:
  200. if modes == "MOVE":
  201. PRESETS.clear_move()
  202. if modes == "COPY":
  203. PRESETS.clear_copy()
  204. self.modes[mode] = 0 # value
  205. else:
  206. self.modes[mode] = value #1 #value
  207. else:
  208. self.modes[mode] = 0 #value
  209. if modes == "COPY":
  210. PRESETS.clear_copy()
  211. if modes == "MOVE":
  212. PRESETS.clear_move()
  213. self.callback(mode)
  214. return value
  215. def set_cb(self,cb):
  216. if cb:
  217. self.__cb = cb
  218. def callback(self,mode):
  219. if self.__cb is not None and mode in self.modes:
  220. value = self.modes[mode]
  221. self.__cb(mode=mode,value=value)
  222. modes = Modes()
  223. #modes.val("BLIND", 0)
  224. #modes.modes["BLIND"] = 0
  225. modes.modes["ESC"] = 0
  226. modes.modes["REC"] = 0
  227. modes.modes["EDIT"] = 0
  228. modes.modes["MOVE"] = 0
  229. modes.modes["FLASH"] = 0
  230. modes.modes["GO"] = 0
  231. modes.modes["DEL"] = 0
  232. modes.modes["REC-FX"] = 0
  233. modes.modes["SELECT"] = 0
  234. modes.modes["CFG-BTN"] = 0
  235. modes.modes["LABEL"] = 0
  236. def xcb(mode,value=None):
  237. print("xcb","MODE CALLBACK",mode,value)
  238. if mode == "REC-FX":
  239. print("xcb",modes.val("REC-FX"))
  240. #modes.set_cb(xcb)
  241. POS = ["PAN","TILT","MOTION"]
  242. COLOR = ["RED","GREEN","BLUE","COLOR"]
  243. BEAM = ["GOBO","G-ROT","PRISMA","P-ROT","FOCUS","SPEED"]
  244. INT = ["DIM","SHUTTER","STROBE","FUNC"]
  245. #client = chat.tcp_sender(port=50001)
  246. def set_exec_fader(nr,val,color=""):
  247. exec_wing = window_manager.get_obj(name="EXEC-WING") #= WindowManager()
  248. if not exec_wing:
  249. return
  250. #print(exec_wing)
  251. try:
  252. exec_wing.set_fader(nr,val,color=color)
  253. except Exception as e:
  254. print("- exception:",e)
  255. #print("remote in:",round(time.time(),0),"x",i,v)
  256. def set_exec_fader_all():
  257. cprint( "set_exec_fader_all()",color="green")
  258. for nr in range(10):
  259. set_exec_fader(nr,0) #,color="#fff")
  260. # remote input - start (memcached)
  261. def JCB(x):
  262. for i in x:
  263. jv = x[i]
  264. try:
  265. jv = json.loads(jv)
  266. jv = jv[0]
  267. #print(jv)
  268. v = jv["iVAL"]
  269. #exec_wing.set_fader(0,v)
  270. set_exec_fader(0,v)
  271. set_exec_fader(1,200-v)
  272. set_exec_fader(2,int(v/2+10))
  273. except Exception as e:
  274. print("exception",e)
  275. #print("remote in:",round(time.time(),0),"x",i,v)
  276. #chat.cmd(JCB,port=30002) # SERVER
  277. thread.start_new_thread(chat.cmd,(JCB,30002)) # SERVER
  278. # remote input - end
  279. # read memcachd
  280. memcache = None
  281. try:
  282. import memcache
  283. except Exception as e:
  284. print("Exception IMPORT ERROR",e)
  285. class MC():
  286. def __init__(self,server="127.0.0.1",port=11211):
  287. cprint("MC.init() ----------" ,server,port,color="red")
  288. try:
  289. #self.mc = memcache.Client(['127.0.0.1:11211'], debug=0)
  290. self.mc = memcache.Client(['{}:{}'.format(server,port)], debug=0)
  291. #self.init()
  292. except Exception as e:
  293. print("-- Exception",e)
  294. # def init(self):
  295. data = {}
  296. start = time.time()
  297. delta = start
  298. index = self.mc.get("index")
  299. if index:
  300. for i in index:
  301. print("-- key",i)
  302. self.fader_map = []
  303. for i in range(30+1):
  304. self.fader_map.append({"UNIV":0,"DMX":0})
  305. try:
  306. fname = HOME + "/LibreLight/fader.json"
  307. f = open(fname)
  308. lines = f.readlines()
  309. cprint("FADER MAP",fname)
  310. for i,line in enumerate(lines):
  311. jdata = json.loads(line)
  312. print("-- fader_map ->>",i,jdata)
  313. self.fader_map[i] = jdata
  314. except Exception as e:
  315. print("-- Except Fader_map",e)
  316. #exit()
  317. def ok(self):
  318. if self.mc:
  319. return 1
  320. return 0
  321. def test(self):
  322. if not self.ok():
  323. return
  324. self.mc.set("some_key", "Some value")
  325. self.value = mc.get("some_key")
  326. self.mc.set("another_key", 3)
  327. self.mc.delete("another_key")
  328. def loop(self):
  329. thread.start_new_thread(self._loop,())
  330. if not self.ok():
  331. return
  332. def _loop(self):
  333. print("++++++++++ start.memcachd read loop",self )
  334. while 1:
  335. send = 0
  336. #print("+")
  337. try:
  338. ip="10.10.10.13:0"
  339. #ip="ltp-out:0"
  340. #print(ip)
  341. x=self.mc.get(ip)
  342. if x:
  343. #print(ip,x)
  344. #val = x[501-1]
  345. #val = x[141-1]
  346. for i, line in enumerate(self.fader_map):
  347. try:
  348. #print(i,line)
  349. dmx = int(line["DMX"])
  350. if dmx > 0:
  351. val = x[dmx-1]
  352. #print("mc val",val)
  353. set_exec_fader(i,val,color="#aaa")
  354. except:pass
  355. time.sleep(0.01)
  356. except Exception as e:
  357. print("exc", e)
  358. time.sleep(1)
  359. _mc=MC()
  360. _mc.loop()
  361. #time.sleep(1)
  362. #exit()
  363. jclient = chat.tcp_sender()#port=50001)
  364. import zlib
  365. def jclient_send(data):
  366. t_start = time.time()
  367. jtxt = data
  368. jdatas = []
  369. for jdata in data:
  370. if "CMD" in jdata:
  371. try:
  372. jdatas.append(jdata)
  373. except Exception as e:
  374. cprint("jclient_send, Exception DMX ",color="red")
  375. cprint("",jdata,color="red")
  376. cprint("-----",color="red")
  377. elif "DMX" in jdata:
  378. #print(jdata)
  379. try:
  380. dmx = int(jdata["DMX"])
  381. if int(dmx) >= 1: # ignore DMX lower one
  382. if "ATTR" not in jdata:
  383. # for fx off
  384. jdatas.append(jdata)
  385. else: # with "ATTR"
  386. if "FIX" in jdata:
  387. fix = jdata["FIX"]
  388. attr = jdata["ATTR"]
  389. # find dmx-fine channel
  390. jdata["DMX-FINE"] = FIXTURES.get_dmx(fix,attr+"-FINE")
  391. if jdata["ATTR"].startswith("_"):
  392. # ignore attr "_"
  393. # bug with "S" attr._ACTIVE breaks preset_go
  394. pass
  395. else:
  396. jdatas.append(jdata)
  397. else:
  398. cprint("jclient_send, ignore DMX ",color="red")
  399. cprint("-- ",jdata,color="red")
  400. except Exception as e:
  401. cprint("jclient_send, Exception DMX ",color="red")
  402. cprint("",jdata,color="red")
  403. cprint(e,color="red")
  404. cprint("-----",color="red")
  405. jtxt = jdatas
  406. jtxt = json.dumps(jtxt)
  407. jtxt = jtxt.encode()
  408. #jtxt = zlib.compress(jtxt)
  409. jclient.send( jtxt ) #b"\00 ")
  410. #print(round((time.time()-t_start)*1000,4),"milis")
  411. cprint("{:0.04} sec.".format(time.time()-t_start),color="yellow")
  412. cprint("{:0.04} tick".format(time.time()),color="yellow")
  413. def _highlight(fix,_attr="DIM"):
  414. " patch test button "
  415. print("highlight",fix,"1")
  416. if fix not in FIXTURES.fixtures:
  417. return None
  418. d = FIXTURES.fixtures[fix]
  419. #for k,v in d.items():
  420. # print("-",k,v)
  421. DMX = d["DMX"] + d["UNIVERS"]*512
  422. if "ATTRIBUT" in d:
  423. ATTR= d["ATTRIBUT"]
  424. data = {"VALUE":200,"DMX":1}
  425. attr = ""
  426. if _attr in ATTR:
  427. attr = _attr
  428. else:
  429. return #stop
  430. print(attr,ATTR[attr])
  431. old_val = ATTR[attr]["VALUE"]
  432. data["DMX"] = DMX + ATTR[attr]["NR"]-1
  433. print(attr,ATTR[attr])
  434. print(data)
  435. for i in range(3):
  436. print("highlight",fix,"0")
  437. data["VALUE"] = 100
  438. jclient_send([data])
  439. time.sleep(0.1)
  440. print("highlight",fix,"1")
  441. data["VALUE"] = 234
  442. jclient_send([data])
  443. time.sleep(0.3)
  444. print("highlight",fix,"0")
  445. data["VALUE"] = old_val
  446. jclient_send([data])
  447. def highlight2(fix,attr="DIM"):
  448. def x():
  449. highlight(fix,attr=attr)
  450. return x
  451. def highlight(fix):
  452. print("highlight",fix)
  453. thread.start_new_thread(_highlight,(fix,"DIM"))
  454. thread.start_new_thread(_highlight,(fix,"RED"))
  455. thread.start_new_thread(_highlight,(fix,"GREEN"))
  456. thread.start_new_thread(_highlight,(fix,"BLUE"))
  457. class ValueBuffer():
  458. def __init__(self,_min=0,_max=255):
  459. self._value = 2
  460. self._on = 1
  461. self._min=_min
  462. self._max=_max
  463. def check(self):
  464. if self._value < self._min:
  465. self._value = self._min
  466. elif self._value > self._max:
  467. self._value = self._max
  468. def inc(self,value=None):
  469. if value is not None:
  470. if type(value) is float:
  471. self._value += round(value,4)
  472. else:
  473. self._value += value
  474. self.check()
  475. return self._value
  476. def val(self,value=None):
  477. if value is not None:
  478. if type(value) is float:
  479. self._value = round(value,4)
  480. else:
  481. self._value = value
  482. self.check()
  483. return self._value
  484. def on(self):
  485. self._on = 1
  486. def off(self):
  487. self._on = 0
  488. def _is(self):
  489. if self._on:
  490. return 1
  491. return 0
  492. FADE = ValueBuffer() #2 #0.1 #1.13
  493. FADE.val(2.0)
  494. FADE_move = ValueBuffer() #2 #0.1 #1.13
  495. FADE_move.val(4.0)
  496. DELAY = ValueBuffer() #2 #0.1 #1.13
  497. DELAY.off()
  498. DELAY.val(0.2)
  499. fx_prm_move = {"SIZE":40,"SPEED":8,"OFFSET":100,"BASE":"0","START":0,"MODE":0,"MO":0,"DIR":1,"INVERT":0,"WING":2,"WIDTH":100}
  500. fx_prm = {"SIZE":255,"SPEED":10,"OFFSET":100,"BASE":"-","START":0,"MODE":0,"MO":0,"DIR":1,"INVERT":1,"SHUFFLE":0,"WING":2,"WIDTH":25,"FX-X":1,"FX:MODE":0}
  501. fx_x_modes = ["spiral","left","right","up","down","left_right","up_down"]
  502. fx_modes = ["RED","GREEN","BLUE","MAG","YELLOW","CYAN"]
  503. fx_mo = ["fade","on","rnd","ramp","ramp2","cosinus","sinus"]
  504. class FX_handler():
  505. def __init__():
  506. pass
  507. def reshape_preset(data ,value=None,xfade=0,flash=0,ptfade=0):
  508. f=0 #fade
  509. out = []
  510. delay=0
  511. for row in data:
  512. #cprint("reshape_preset in:",row)
  513. line = {}
  514. line["DELAY"]=delay
  515. if type(value) is float:
  516. line["VALUE"] = value #round(value,3)
  517. else:
  518. line["VALUE"] = value
  519. if value is not None:
  520. line["FX"] = row["FX"].split(":",1)[-1]
  521. else:
  522. line["FX"] = row["FX"]
  523. if row["FX2"]:
  524. line["FX2"] = row["FX2"]
  525. if row["FIX"]:
  526. line["FIX"] = row["FIX"]
  527. if row["ATTR"]:
  528. line["ATTR"] = row["ATTR"]
  529. if row["VALUE"] is not None:
  530. if value is None:
  531. v=row["VALUE"]
  532. if type(v) is float:
  533. line["VALUE"] = v #round(v,3)
  534. else:
  535. line["VALUE"] = v
  536. if row["ATTR"] in ["PAN","TILT"]:
  537. f = ptfade
  538. for a in ["DIM","ZOOM","FOCUS","RED","GREEN","BLUE","WHITE","AMBER","IRIS","BLADE"]:
  539. #FADE ATTRIBUTES
  540. if a in row["ATTR"]:
  541. f = xfade
  542. break
  543. if flash:
  544. xfade = 0
  545. if type( f ) is float:
  546. line["FADE"] = round(f,4)
  547. else:
  548. line["FADE"] = f
  549. if 0:
  550. cprint("reshape_preset j",line,color="red")
  551. #cprint("reshape_preset out:",line)
  552. out.append(line)
  553. if DELAY._is():
  554. delay+=DELAY.val()/100 #0.02
  555. return out
  556. class dummy_event():
  557. def __init__(self):
  558. self.num =0
  559. self.type = 4 #press 5 release
  560. self.set_value=-1
  561. def process_wings(xfixtures):
  562. """process the wing's of selected fixtures
  563. input: [1,2,3,4,10,12,13,14]
  564. if WING = 2 return: [[1,2,3,4][14,13,12,10]]
  565. """
  566. wing_buffer = []
  567. fix_count = len(xfixtures)
  568. prm = fx_prm # ToDo: global WING for PAN/TILE !? ATTRIBUT is not availible in this moment
  569. if prm["WING"] > 1 and fix_count > 1:
  570. wing_count = fix_count // prm["WING"]
  571. number_of_fix_in_wing = fix_count // wing_count
  572. if number_of_fix_in_wing < 2:
  573. number_of_fix_in_wing = 2
  574. for i in range(number_of_fix_in_wing):
  575. j = i*wing_count
  576. wing = xfixtures[j:j+wing_count]
  577. if i%2!=0:
  578. wing = wing[::-1]
  579. print("wing",i,"j",j,"wing_count:",wing_count,"wing",wing)
  580. wing_buffer.append(wing)
  581. if fix_count > j+wing_count: # append Fixtures Left over
  582. wing = xfixtures[j+wing_count:]
  583. wing_buffer.append(wing)
  584. else:
  585. wing_buffer.append(xfixtures)
  586. if prm["SHUFFLE"]:
  587. _wing_buffer = []
  588. for wing in wing_buffer:
  589. wing = wing[:]
  590. random.shuffle(wing)
  591. _wing_buffer.append(wing)
  592. wing_buffer = _wing_buffer
  593. return wing_buffer
  594. def process_effect(wing_buffer,fx_name=""):
  595. jdatas = []
  596. offset = 0
  597. offset_move = 0
  598. start = fx_prm["START"]
  599. base = fx_prm["BASE"]
  600. for wing in wing_buffer:
  601. count_of_fix_in_wing = len(wing)
  602. coffset= 0 # 1024/count_of_fix_in_wing * (offset/255)
  603. coffset_move=0
  604. for fix in wing:
  605. if fix not in FIXTURES.fixtures:
  606. continue
  607. data = FIXTURES.fixtures[fix]
  608. for attr in data["ATTRIBUT"]:
  609. if attr.startswith("_"):
  610. continue
  611. jdata = {"MODE":"FX"}
  612. jdata["VALUE"] = None
  613. jdata["FIX"] = fix
  614. jdata["DMX"] = FIXTURES.get_dmx(fix,attr)
  615. jdata["DMX-FINE"] = FIXTURES.get_dmx(fix,attr+"-FINE")
  616. jdata["ATTR"] =attr
  617. if attr.endswith("-FINE"):
  618. continue
  619. if attr in ["PAN","TILT"]:
  620. csize = fx_prm_move["SIZE"]
  621. cspeed = fx_prm_move["SPEED"]
  622. cstart = fx_prm_move["START"]
  623. cbase = fx_prm_move["BASE"]
  624. width = fx_prm_move["WIDTH"]
  625. invert = fx_prm_move["INVERT"]
  626. coffset_move= round(offset_move,1)
  627. else:
  628. csize = fx_prm["SIZE"]
  629. cspeed = fx_prm["SPEED"]
  630. cstart = fx_prm["START"]
  631. cbase = fx_prm["BASE"]
  632. width = fx_prm["WIDTH"]
  633. invert = fx_prm["INVERT"]
  634. coffset= round(offset,1)
  635. fx=""
  636. if "SIN" in fx_name:
  637. fx = "sinus"
  638. elif "FD" in fx_name:
  639. fx = "fade"
  640. elif "RND" in fx_name:
  641. fx = "rnd"
  642. elif "ON" in fx_name:
  643. fx = "on"
  644. elif "RAMP2" in fx_name:
  645. fx = "bump2"
  646. fx = "ramp2"
  647. elif "RAMP" in fx_name:
  648. fx = "ramp"
  649. elif "COS" in fx_name:
  650. fx = "cosinus"
  651. if fx:
  652. if attr in ["PAN","TILT"]:
  653. cprint("SKIP FX attr:{} fix:{} " .format(attr,fix) )
  654. continue
  655. if fx:
  656. if fx_prm["SPEED"] < 0:
  657. fx = "off"
  658. else:
  659. if ":DIM" in fx_name:
  660. base=""
  661. ffxb=fx_mo[fx_prm["MO"]]
  662. #ffxb= "cosinus"
  663. if attr == "DIM":
  664. if fx_prm["SPEED"] < 0:
  665. fx = "off"
  666. else:
  667. fx = ffxb #"fade"
  668. elif ":TILT" in fx_name:
  669. base=""
  670. if attr == "PAN":
  671. fx = "off"
  672. if attr == "TILT":
  673. if fx_prm["SPEED"] < 0:
  674. fx = "off"
  675. else:
  676. fx = "sinus"
  677. elif ":PAN" in fx_name:
  678. base=""
  679. if attr == "PAN":
  680. if fx_prm_move["SPEED"] < 0:
  681. fx = "off"
  682. else:
  683. fx = "cosinus"
  684. if attr == "TILT":
  685. fx = "off"
  686. elif ":CIR" in fx_name:
  687. base=""
  688. if attr == "PAN":
  689. if fx_prm_move["SPEED"] < 0:
  690. fx = "off"
  691. else:
  692. fx = "cosinus"
  693. if attr == "TILT":
  694. if fx_prm["SPEED"] < 0:
  695. fx = "off"
  696. else:
  697. fx = "sinus"
  698. elif ":RED" in fx_name:
  699. ffxb= fx_mo[fx_prm["MO"]]
  700. ffx= "off" #fx_mo[fx_prm["MO"]]
  701. if "RED" in fx_modes[fx_prm["MODE"]]:#
  702. base="-"
  703. if attr == "RED":
  704. fx=ffx
  705. if attr == "GREEN":
  706. fx = ffxb# "off"
  707. if attr == "BLUE":
  708. fx = ffxb#"off"
  709. elif "GREEN" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#in fx_name:
  710. base="-"
  711. if attr == "RED":
  712. fx = ffxb#"off"
  713. elif "GREEN" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#in fx_name:
  714. if attr == "GREEN":
  715. fx = ffxb# "off"
  716. fx=ffx
  717. if attr == "BLUE":
  718. fx = ffxb#"off"
  719. elif "BLUE" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#fx_name:
  720. base="-"
  721. if attr == "RED":
  722. fx = ffxb# "off"
  723. if attr == "GREEN":
  724. fx = ffxb# "off"
  725. if attr == "BLUE":
  726. fx = ffxb# "off"
  727. fx=ffx
  728. elif "YELLOW" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#fx_name:
  729. base="-"
  730. if attr == "RED":
  731. fx = ffxb# "off"
  732. fx=ffx
  733. if attr == "GREEN":
  734. fx = ffxb# "off"
  735. fx=ffx
  736. if attr == "BLUE":
  737. fx = "off"
  738. elif "CYAN" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#fx_name:
  739. base="-"
  740. if attr == "RED":
  741. fx = ffxb# "off"
  742. if attr == "GREEN":
  743. fx = ffxb# "off"
  744. fx=ffx
  745. if attr == "BLUE":
  746. fx = ffxb# "off"
  747. fx=ffx
  748. elif "MAG" in fx_modes[fx_prm["MODE"]]:#fx_prm["MODE"]:#fx_name:
  749. base="-"
  750. if attr == "RED":
  751. fx = ffxb# "off"
  752. fx=ffx
  753. if attr == "GREEN":
  754. fx = ffxb# "off"
  755. if attr == "BLUE":
  756. fx = ffxb# "off"
  757. fx=ffx
  758. else:
  759. cprint("FX: unbekant",fx_modes[fx_prm["MODE"]],color="red")
  760. fxtype = fx
  761. fxtype = fx
  762. if "FX" not in data["ATTRIBUT"][attr]:
  763. data["ATTRIBUT"][attr]["FX"] =""
  764. if "FX2" not in data["ATTRIBUT"][attr]:
  765. data["ATTRIBUT"][attr]["FX2"] ={}
  766. if data["ATTRIBUT"][attr]["ACTIVE"] and fxtype:
  767. #print("++ADD FX",fix,attr,fx)
  768. #data["ATTRIBUT"][attr]["FX"] = fx #"sinus:40:100:10"
  769. fjdata = {}
  770. if cspeed < 0.1:
  771. fjdata["TYPE"] = "off"
  772. else:
  773. fjdata["TYPE"] = fxtype
  774. fjdata["SIZE"] = round(csize,2)
  775. fjdata["SPEED"] = round(cspeed,2)
  776. fjdata["WIDTH"] = int(width)
  777. fjdata["START"] = cstart
  778. if attr in ["PAN","TILT"]:
  779. fjdata["OFFSET"]= round(coffset_move,2)
  780. else:
  781. fjdata["OFFSET"]= round(coffset,2)
  782. fjdata["INVERT"]= int(invert)
  783. fjdata["BASE"] = cbase
  784. jdata["FX2"] = fjdata
  785. data["ATTRIBUT"][attr]["FX2"] = fjdata
  786. jdatas.append(jdata)
  787. if fx_prm_move["OFFSET"] > 0.5: # and
  788. aoffset_move = (100/count_of_fix_in_wing) * (fx_prm_move["OFFSET"]/100)
  789. if fx_prm_move["DIR"] <= 0:
  790. offset_move -= aoffset_move
  791. else:
  792. offset_move += aoffset_move
  793. offset_move = round(offset_move,2)
  794. if fx_prm["OFFSET"] > 0.5: # and
  795. aoffset = (100/count_of_fix_in_wing) * (fx_prm["OFFSET"]/100)
  796. if fx_prm["DIR"] <= 0:
  797. offset -= aoffset
  798. else:
  799. offset += aoffset
  800. offset = round(offset,2)
  801. if jdatas and not modes.val("BLIND"):
  802. jclient_send(jdatas)
  803. master._refresh_fix()
  804. return jdatas
  805. def process_matrix(xfixtures):
  806. fix_count = len(xfixtures)
  807. fx_x = fx_prm["FX-X"]
  808. fx_mod = fx_x_modes[fx_prm["FX:MODE"]]
  809. print("----",fx_x,fx_mod)
  810. if fx_x > 1 and fix_count > fx_x:
  811. try:
  812. from lib import matrix
  813. w=fx_x
  814. h=int(fix_count/fx_x)
  815. if fx_mod == "spiral":
  816. _map = matrix.spiral(w,h)
  817. elif fx_mod == "up_down":
  818. _map = matrix.up_down(w,h)
  819. elif fx_mod == "left_right":
  820. _map = matrix.left_right(w,h)
  821. elif fx_mod == "left":
  822. _map = matrix.left(w,h)
  823. elif fx_mod == "right":
  824. _map = matrix.right(w,h)
  825. elif fx_mod == "up":
  826. _map = matrix.up(w,h)
  827. elif fx_mod == "down":
  828. _map = matrix.down(w,h)
  829. else:
  830. return xfixtures # do nothing
  831. matrix.mprint(xfixtures,w,h)
  832. out = ["0"]*(w*h)
  833. for i,f in enumerate(xfixtures):
  834. if i < w*h:
  835. j = int(_map[i])
  836. print([i,f,j])
  837. out[j] = f
  838. matrix.mprint(out,w,h)
  839. xfixtures = out
  840. except Exception as e:
  841. print("matrix exception",e)
  842. return xfixtures
  843. class Xevent_fx():
  844. """ global input event Handeler for short cut's ... etc
  845. """
  846. def __init__(self,fix,elem,attr=None,data=None,mode=None):
  847. self.fix = fix
  848. self.data = data
  849. self.attr = attr
  850. self.elem = elem
  851. self.mode = mode
  852. def fx(self,event):
  853. cprint("Xevent.fx",self.attr,self.fix,event)
  854. fx2 = {}
  855. if event.num == 4:
  856. cprint("FX:COLOR CHANGE",fx_prm,color="red")
  857. txt = "FX:RED"
  858. fx_prm["MODE"] += 1
  859. if fx_prm["MODE"] >= len(fx_modes):
  860. fx_prm["MODE"]=0
  861. txt = "FX:\n"+fx_modes[fx_prm["MODE"]]
  862. master.fx.elem["FX:RED"]["text"] = txt
  863. elif event.num == 5:
  864. cprint("FX:COLOR CHANGE",fx_prm,color="red")
  865. txt = "FX:RED"
  866. fx_prm["MODE"] -= 1
  867. if fx_prm["MODE"] < 0:
  868. fx_prm["MODE"]= len(fx_modes)-1
  869. txt = "FX:\n"+fx_modes[fx_prm["MODE"]]
  870. master.fx.elem["FX:RED"]["text"] = txt
  871. if event.num == 4:
  872. cprint("FX-X: CHANGE",fx_prm,color="red")
  873. txt = "FX-X:"
  874. fx_prm["FX:MODE"] += 1
  875. if fx_prm["FX:MODE"] >= len(fx_x_modes):
  876. fx_prm["FX:MODE"]=0
  877. txt = "FX:MODE\n"+fx_x_modes[fx_prm["FX:MODE"]]
  878. master.fx.elem["FX:MODE"]["text"] = txt
  879. elif event.num == 5:
  880. cprint("FX-X: CHANGE",fx_prm,color="red")
  881. txt = "FX-X:"
  882. fx_prm["FX:MODE"] -= 1
  883. if fx_prm["FX:MODE"] < 0:
  884. fx_prm["FX:MODE"]= len(fx_x_modes)-1
  885. txt = "FX:MODE\n"+fx_x_modes[fx_prm["FX:MODE"]]
  886. master.fx.elem["FX:MODE"]["text"] = txt
  887. elif event.num == 1:
  888. xfixtures = []
  889. fix_active =FIXTURES.get_active()
  890. for fix in fix_active:
  891. if fix == "CFG":
  892. continue
  893. xfixtures.append(fix)
  894. if not xfixtures:
  895. cprint("470 fx() ... init no fixture selected",color="red")
  896. return 0
  897. xfixtures = process_matrix(xfixtures)
  898. wing_buffer = process_wings(xfixtures)
  899. process_effect(wing_buffer,fx_name=self.attr)
  900. def command(self,event,mode=""):
  901. cprint("fx_command",self.mode)
  902. if self.mode == "FX":
  903. prm = fx_prm
  904. ct = self.data.fx
  905. if self.mode == "FX-MOVE":
  906. prm = fx_prm_move
  907. ct = self.data.fx_moves
  908. if 1:
  909. if self.attr.startswith("SIZE:"):#SIN":
  910. #global fx_prm
  911. k = "SIZE"
  912. if event.num == 1:
  913. prm[k] =30
  914. elif event.num == 3:
  915. prm[k] =100
  916. elif event.num == 4:
  917. if prm[k] <= 0:
  918. prm[k] = 1
  919. prm[k] +=5
  920. elif event.num == 5:
  921. prm[k] -=5
  922. #prm[k] =int(prm[k])
  923. if prm[k] > 4000:
  924. prm[k] = 4000
  925. if prm[k] < 0:
  926. prm[k] =0
  927. if prm[k] == 6: #bug
  928. prm[k] =5
  929. ct.elem[self.attr]["text"] = "SIZE:\n{:0.0f}".format(prm[k])
  930. cprint(prm)
  931. elif self.attr.startswith("SPEED:"):#SIN":
  932. #global prm
  933. k = "SPEED"
  934. if event.num == 1:
  935. prm[k] = 6
  936. elif event.num == 3:
  937. prm[k] = 60
  938. elif event.num == 4:
  939. if prm[k] <= 0:
  940. prm[k] = 0.06
  941. elif prm[k] < 5:
  942. prm[k] *=1.2
  943. else:
  944. prm[k] +=5 #1.1
  945. elif event.num == 5:
  946. if prm[k] <= 5:
  947. prm[k] *=0.8
  948. else:
  949. prm[k] -= 5 #1.1
  950. #prm[k] =int(prm[k])
  951. if prm[k] > 4000:
  952. prm[k] = 4000
  953. if prm[k] < 0.05:
  954. prm[k] =0
  955. if prm[k] > 5 and prm[k] < 10: #bug
  956. prm[k] =5
  957. if prm[k] < 0:
  958. ct.elem[self.attr]["text"] = "SPEED:\noff".format(prm[k])
  959. else:
  960. ct.elem[self.attr]["text"] = "SPEED:\n{:0.02f}".format(prm[k])
  961. cprint(prm)
  962. elif self.attr.startswith("START:"):#SIN":
  963. #global prm
  964. k = "START"
  965. if event.num == 1:
  966. pass
  967. elif event.num == 2:
  968. pass
  969. elif event.num == 4:
  970. if prm[k] <= 0:
  971. prm[k] = 1
  972. prm[k] += 5 #1.1
  973. elif event.num == 5:
  974. prm[k] -= 5 #1.1
  975. #prm[k] =int(prm[k])
  976. if prm[k] > 4000:
  977. prm[k] = 4000
  978. if prm[k] < 5:
  979. prm[k] =0
  980. if prm[k] == 6: #bug
  981. prm[k] =5
  982. ct.elem[self.attr]["text"] = "START:\n{:0.0f}".format(prm[k])
  983. cprint(prm)
  984. elif self.attr.startswith("WIDTH:"):#SIN":
  985. #global prm
  986. k = "WIDTH"
  987. if event.num == 1:
  988. prm[k] = 25
  989. elif event.num == 2:
  990. prm[k] = 50
  991. elif event.num == 3:
  992. prm[k] = 100
  993. elif event.num == 4:
  994. if prm[k] <= 0:
  995. prm[k] = 1
  996. elif prm[k] == 50:
  997. prm[k] = 100
  998. elif prm[k] == 5:
  999. prm[k] = 25
  1000. elif prm[k] == 25:
  1001. prm[k] = 50
  1002. else:
  1003. prm[k] += 5 #*=1.1
  1004. elif event.num == 5:
  1005. if prm[k] == 10:
  1006. prm[k] = 5
  1007. elif prm[k] == 25:
  1008. prm[k] = 10
  1009. elif prm[k] == 50:
  1010. prm[k] = 25
  1011. elif prm[k] == 100:
  1012. prm[k] = 50
  1013. #else:
  1014. # prm[k] -=5 #/=1.1
  1015. #prm[k] =int(prm[k])
  1016. if prm[k] < 0:
  1017. prm[k] = 0
  1018. if prm[k] > 100:
  1019. prm[k] = 100
  1020. if prm[k] == 6: #bug
  1021. prm[k] =5
  1022. if prm[k] > 25 and prm[k] < 50: #bug
  1023. prm[k] =50
  1024. if prm[k] > 50 and prm[k] < 100: #bug
  1025. prm[k] =100
  1026. ct.elem[self.attr]["text"] = "WIDTH:\n{:0.0f}".format(prm[k])
  1027. cprint(prm)
  1028. elif self.attr.startswith("DIR:"):#SIN":
  1029. #global prm
  1030. k = "DIR"
  1031. if event.num == 1:
  1032. prm[k] = 1
  1033. elif event.num == 3:
  1034. prm[k] = -1
  1035. elif event.num == 4:
  1036. prm[k] = 1
  1037. elif event.num == 5:
  1038. prm[k] =-1
  1039. txt = prm[k]
  1040. ct.elem[self.attr]["text"] = "DIR:\n{}".format(prm[k])
  1041. cprint(prm)
  1042. elif self.attr.startswith("SHUFFLE:"):#SIN":
  1043. #global prm
  1044. k = "SHUFFLE"
  1045. if event.num == 1:
  1046. prm[k] = 0
  1047. elif event.num == 3:
  1048. prm[k] = 1
  1049. elif event.num == 4:
  1050. prm[k] = 1
  1051. elif event.num == 5:
  1052. prm[k] =0
  1053. if prm[k] == 6: #bug ?
  1054. prm[k] =5
  1055. ct.elem[self.attr]["text"] = k+":\n{}".format(prm[k])
  1056. cprint(prm)
  1057. elif self.attr.startswith("INVERT:"):#SIN":
  1058. #global prm
  1059. k = "INVERT"
  1060. if event.num == 1:
  1061. prm[k] = 0
  1062. elif event.num == 3:
  1063. prm[k] = 1
  1064. elif event.num == 4:
  1065. prm[k] = 1
  1066. elif event.num == 5:
  1067. prm[k] =0
  1068. if prm[k] == 6: #bug ?
  1069. prm[k] =5
  1070. ct.elem[self.attr]["text"] = k+":\n{}".format(prm[k])
  1071. cprint(prm)
  1072. elif self.attr.startswith("FX-X:"):#SIN":
  1073. #global prm
  1074. k = "FX-X"
  1075. if event.num == 1:
  1076. prm[k] = 1
  1077. elif event.num == 3:
  1078. prm[k] = 2
  1079. elif event.num == 4:
  1080. prm[k] += 1
  1081. elif event.num == 5:
  1082. prm[k] -=1
  1083. if prm[k] > 100:
  1084. prm[k] = 100
  1085. if prm[k] < 1:
  1086. prm[k] =1
  1087. txt = prm[k]
  1088. ct.elem[self.attr]["text"] = "FX-X:\n{}".format(prm[k])
  1089. cprint(prm)
  1090. elif self.attr.startswith("WING:"):#SIN":
  1091. #global prm
  1092. k = "WING"
  1093. if event.num == 1:
  1094. prm[k] = 1
  1095. elif event.num == 3:
  1096. prm[k] = 2
  1097. elif event.num == 4:
  1098. prm[k] += 1
  1099. elif event.num == 5:
  1100. prm[k] -=1
  1101. if prm[k] > 100:
  1102. prm[k] = 100
  1103. if prm[k] < 1:
  1104. prm[k] =1
  1105. txt = prm[k]
  1106. ct.elem[self.attr]["text"] = "WING:\n{}".format(prm[k])
  1107. cprint(prm)
  1108. elif self.attr.startswith("OFFSET:"):#SIN":
  1109. #global prm
  1110. k = "OFFSET"
  1111. if event.num == 1:
  1112. prm[k] = 50
  1113. elif event.num == 2:
  1114. prm[k] *= 2
  1115. elif event.num == 3:
  1116. prm[k] = 100
  1117. elif event.num == 4:
  1118. if prm[k] <= 0:
  1119. prm[k] = 1
  1120. prm[k] +=5 #*=1.1
  1121. elif event.num == 5:
  1122. prm[k] -=5 #/=1.1
  1123. #prm[k] =int(prm[k])
  1124. #if prm[k] > 512:
  1125. # prm[k] = 512
  1126. if prm[k] < 5:
  1127. prm[k] =0
  1128. if prm[k] == 6: #bug
  1129. prm[k] =5
  1130. ct.elem[self.attr]["text"] = "OFFSET:\n{:0.0f}".format(prm[k])
  1131. cprint(prm)
  1132. elif self.attr.startswith("BASE:"):
  1133. k = "BASE"
  1134. if event.num == 1:
  1135. prm[k] = "-"
  1136. elif event.num == 3:
  1137. prm[k] = "0"
  1138. elif event.num == 4:
  1139. prm[k] = "+"
  1140. elif event.num == 5:
  1141. prm[k] = "0"
  1142. ct.elem[self.attr]["text"] = "BASE:\n{}".format(prm[k])
  1143. elif self.attr.startswith("FX:"):#SIN":
  1144. self.fx(event)
  1145. elif self.attr == "FX OFF":
  1146. if event.num == 1:
  1147. FIXTURES.fx_off("all")
  1148. CONSOLE.fx_off("all")
  1149. CONSOLE.flash_off("all")
  1150. master._refresh_fix()
  1151. return 0
  1152. #if event.num == 1:
  1153. elif self.attr == "REC-FX":
  1154. print("ELSE",self.attr)
  1155. modes.val(self.attr,1)
  1156. return 0
  1157. def cb(self,event):
  1158. cprint("EVENT_fx cb",self.attr,self.mode,event,color='yellow')
  1159. print(["type",event.type,"num",event.num])
  1160. try:
  1161. change = 0
  1162. if self.mode.startswith("FX"):
  1163. self.command(event)
  1164. return 0
  1165. except Exception as e:
  1166. cprint("== cb EXCEPT",e,color="red")
  1167. cprint("Error on line {}".format(sys.exc_info()[-1].tb_lineno),color="red")
  1168. cprint(''.join(traceback.format_exception(None, e, e.__traceback__)),color="red")
  1169. return 1
  1170. def save_window_position(save_as=""):
  1171. print()
  1172. cprint("save_window_position",[save_as])
  1173. try:
  1174. base = Base()
  1175. fname = HOME+"/LibreLight"
  1176. fname = base.show_path1 +base.show_name
  1177. if save_as:
  1178. fname = save_as
  1179. fname += "/gui.txt"
  1180. cprint("- fname",fname)
  1181. f = open(fname,"w")
  1182. for k,win in window_manager.windows.items():
  1183. try:
  1184. print("-- save:win:pos",win,k)
  1185. if not win:
  1186. continue
  1187. #print("d",dir(win))
  1188. #print("winfo",k,win.tk.geometry())
  1189. line="{} {}\n".format(k,win.tk.geometry())
  1190. #print("> ",[line])
  1191. f.write( line )
  1192. f.flush()
  1193. except Exception as e:
  1194. cprint("- save_window_position Exception:",e,color="red")
  1195. except Exception as e:
  1196. cprint("- save_window_position Exception:",e,color="red")
  1197. finally:
  1198. f.close()
  1199. def save_window_position_loop(): # like autosave
  1200. def loop():
  1201. time.sleep(20)
  1202. try:
  1203. while 1:
  1204. save_window_position()
  1205. time.sleep(60)
  1206. except Exception as e:
  1207. print("save_loop",e)
  1208. thread.start_new_thread(loop,())
  1209. def load_window_position(_filter=""):
  1210. print()
  1211. cprint("load_window_position",[_filter])
  1212. try:
  1213. base = Base()
  1214. fname = HOME+"/LibreLight"
  1215. fname = base.show_path1 +base.show_name
  1216. fname += "/gui.txt"
  1217. cprint("- fname:",fname)
  1218. f = open(fname,"r")
  1219. data = {}
  1220. for line in f.readlines():
  1221. line = line.strip()
  1222. if " " in line:
  1223. k,geo = line.split(" ",1)
  1224. data[k] = geo
  1225. for k,win in window_manager.windows.items():
  1226. if not win:
  1227. continue
  1228. if k not in data:
  1229. continue
  1230. w = data[k]
  1231. if _filter:
  1232. if _filter != k:
  1233. continue
  1234. cprint("- set_win_pos","filter:",[_filter],"Name: {:<20}".format(k),w,win)
  1235. try:
  1236. win.tk.geometry(w)
  1237. except Exception as e:
  1238. cprint("- load_window_position 544 Exception:",e,color="red")
  1239. #print("winfo",k,win.tk.geometry())
  1240. f.close()
  1241. except Exception as e:
  1242. cprint("- load_window_position 345 Exception:",e,color="red")
  1243. return
  1244. class BLINKI():
  1245. def __init__(self,e):
  1246. self.e = e
  1247. def blink(self):
  1248. e = self.e
  1249. e.config(bg='green')
  1250. duration = 150
  1251. for i in range(8):
  1252. d = i * duration
  1253. if i % 2 == 0:
  1254. e.after(d, lambda: e.config(bg='white')) # after 1000ms
  1255. e.after(d, lambda: e.config(activebackground='white')) # after 1000ms
  1256. else:
  1257. e.after(d, lambda: e.config(bg='orange')) # after 1000ms
  1258. e.after(d, lambda: e.config(activebackground='orange')) # after 1000ms
  1259. i+=1
  1260. duration = 150
  1261. e.after(d, lambda: e.config(bg='white')) # after 1000ms
  1262. e.after(d, lambda: e.config(activebackground='white')) # after 1000ms
  1263. class Xevent():
  1264. """ global input event Handeler for short cut's ... etc
  1265. """
  1266. def __init__(self,fix,elem,attr=None,data=None,mode=None):
  1267. self.fix = fix
  1268. self.data=data
  1269. self.attr = attr
  1270. self.elem = elem
  1271. self.mode = mode
  1272. def setup(self,event):
  1273. cprint("xevent.SETUP",[self.mode,self.attr],color="red")
  1274. if self.mode == "SETUP":
  1275. if self.attr == "SAVE\nSHOW":
  1276. self.elem["bg"] = "orange"
  1277. self.elem["text"] = "SAVING..."
  1278. self.elem["bg"] = "red"
  1279. #tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  1280. #self.elem["fg"] = "orange"
  1281. self.elem.config(activebackground="orange")
  1282. modes.val(self.attr,1)
  1283. PRESETS.backup_presets()
  1284. FIXTURES.backup_patch()
  1285. save_window_position()
  1286. #time.sleep(1)
  1287. #modes.val(self.attr,0)
  1288. self.elem["bg"] = "lightgrey"
  1289. #self.elem["fg"] = "lightgrey"
  1290. self.elem.config(activebackground="lightgrey")
  1291. b = BLINKI(self.elem)
  1292. b.blink()
  1293. elif self.attr == "LOAD\nSHOW":
  1294. name = "LOAD-SHOW"
  1295. base = Base()
  1296. line1 = "PATH: "+base.show_path1 +base.show_name
  1297. line2 = "DATE: "+ time.strftime("%Y-%m-%d %X", time.localtime(time.time()))
  1298. class cb():
  1299. def __init__(self,name=""):
  1300. self.name=name
  1301. print("cb",name)
  1302. def cb(self,event=None,**args):
  1303. print("cdb",self.name,event,args)
  1304. if self.name != "<exit>":
  1305. print("-----------------------:")
  1306. LOAD_SHOW_AND_RESTAT(self.name).cb()
  1307. #self.elem["bg"] = "lightgrey"
  1308. #self.elem.config(activebackground="lightgrey")
  1309. pw = PopupList(name,cb=cb)
  1310. frame = pw.sframe(line1=line1,line2=line2)
  1311. r = _load_show_list(frame,cb=cb)
  1312. #self.elem["bg"] = "red"# "lightgrey"
  1313. #self.elem.config(activebackground="red")
  1314. #self.elem.config(activebackground="lightgrey")
  1315. #w.tk.attributes('-topmost',False)
  1316. elif self.attr == "SAVE\nSHOW AS":
  1317. base = Base()
  1318. #def _cb(fname):
  1319. def _cb(data):
  1320. fname = data["Value"]
  1321. print(self,"save_show._cb()",fname)
  1322. fpath,fname = base.build_path(fname)
  1323. cprint("SAVE AS",fpath,fname)
  1324. if base._create_path(fpath):
  1325. a=PRESETS.backup_presets(save_as=fpath)
  1326. b=FIXTURES.backup_patch(save_as=fpath)
  1327. #base._set(fname)
  1328. save_window_position(save_as=fpath)
  1329. LOAD_SHOW_AND_RESTAT(fname).cb()
  1330. dialog._cb = _cb
  1331. dialog.askstring("SAVE SHOW AS","SAVE SHOW AS:")
  1332. elif self.attr == "SAVE &\nRESTART":
  1333. self.elem["bg"] = "orange"
  1334. self.elem["text"] = "SAVING..."
  1335. self.elem["bg"] = "red"
  1336. #tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  1337. #self.elem["fg"] = "orange"
  1338. self.elem.config(activebackground="orange")
  1339. modes.val(self.attr,1)
  1340. PRESETS.backup_presets()
  1341. FIXTURES.backup_patch()
  1342. save_window_position()
  1343. self.elem["text"] = "RESTARTING..."
  1344. #time.sleep(1)
  1345. #modes.val(self.attr,0)
  1346. self.elem["bg"] = "lightgrey"
  1347. #self.elem["fg"] = "lightgrey"
  1348. self.elem.config(activebackground="lightgrey")
  1349. LOAD_SHOW_AND_RESTAT("").cb(force=1)
  1350. elif self.attr == "DRAW\nGUI":
  1351. #self.elem["bg"] = "orange"
  1352. old_text = self.elem["text"]
  1353. self.elem["text"] = "DRAWING..."
  1354. #self.elem["bg"] = "red"
  1355. #time.sleep(0.05)
  1356. #print("redraw",name)
  1357. #if name == "PATCH":
  1358. # gui_patch.draw()
  1359. #if name == "DIMMER":
  1360. # gui_fix.draw()
  1361. self.elem["text"] = "PATCH..."
  1362. window_manager.top("PATCH")
  1363. gui_patch.draw(FIXTURES)
  1364. self.elem["text"] = "FIX..."
  1365. gui_fix.draw(FIXTURES)
  1366. window_manager.top("FIXTURES")
  1367. master._refresh_exec()
  1368. self.elem["text"] = old_text
  1369. else:
  1370. r=tkinter.messagebox.showwarning(message="{}\nnot implemented".format(self.attr.replace("\n"," ")),parent=None)
  1371. return 1
  1372. def live(self,event):
  1373. if self.mode == "LIVE":
  1374. if "FADE" in self.attr or "DELAY" in self.attr:
  1375. if self.attr == "FADE":
  1376. ct = FADE
  1377. if self.attr == "DELAY":
  1378. ct = DELAY
  1379. if "PAN/TILT\nFADE" in self.attr:
  1380. ct = FADE_move
  1381. value = ct.val()
  1382. #print("EVENT CHANGE ",[self.attr])
  1383. print("EVENT CHANGE:",self.mode,value,self.attr)
  1384. if value < 0.01:
  1385. ct.val(0.01)
  1386. elif value > 100.0:
  1387. pass #value = 100
  1388. if event.num == 4:
  1389. value *= 1.1
  1390. elif event.num == 5:
  1391. value /= 1.1
  1392. elif event.num == 1:
  1393. if ct._is():
  1394. ct.off()# = 0
  1395. self.data.commands.elem[self.attr]["bg"] = "grey"
  1396. self.elem.config(activebackground="grey")
  1397. else:
  1398. ct.on()# = 1
  1399. self.data.commands.elem[self.attr]["bg"] = "green"
  1400. self.elem.config(activebackground="lightgreen")
  1401. elif event.num == 2:
  1402. if value > 1 and value < 4:
  1403. value = 4
  1404. elif value > 3 and value < 6:
  1405. value = 6
  1406. elif value > 5 and value < 7:
  1407. value = 8
  1408. elif value > 7 and value < 9:
  1409. value = 10
  1410. elif value > 9:
  1411. value = 0.01
  1412. elif value < 1:
  1413. value = 1.1
  1414. value = round(value,3)
  1415. value = ct.val(value)
  1416. if self.attr == "FADE":
  1417. self.data.commands.elem[self.attr]["text"] = "FADE:\n{:0.2f}".format(value)
  1418. if self.attr == "DELAY":
  1419. self.data.commands.elem[self.attr]["text"] = "DELAY:\n{:0.3f}".format(value)
  1420. if "PAN/TILT\nFADE" in self.attr:
  1421. self.data.commands.elem[self.attr]["text"] = "PAN/TILT\nFADE:{:0.2f}".format(value)
  1422. def command(self,event):
  1423. if self.mode == "COMMAND":
  1424. if self.attr == "CLEAR":
  1425. if event.num == 1:
  1426. ok = FIXTURES.clear()
  1427. if ok:
  1428. master._refresh_fix()
  1429. modes.val(self.attr,0)
  1430. elif self.attr == "SAVE":
  1431. modes.val(self.attr,1)
  1432. PRESETS.backup_presets()
  1433. FIXTURES.backup_patch()
  1434. #time.sleep(1)
  1435. modes.val(self.attr,0)
  1436. elif self.attr == "S-KEY":
  1437. global _global_short_key
  1438. if _global_short_key:
  1439. _global_short_key = 0
  1440. master.commands.elem["S-KEY"]["bg"] = "red"
  1441. master.commands.elem["S-KEY"]["activebackground"] = "red"
  1442. else:
  1443. _global_short_key = 1
  1444. master.commands.elem["S-KEY"]["bg"] = "green"
  1445. master.commands.elem["S-KEY"]["activebackground"] = "green"
  1446. print("s-key",_global_short_key)
  1447. else:
  1448. if event.num == 1:
  1449. print("ELSE",self.attr)
  1450. modes.val(self.attr,1)
  1451. return 0
  1452. def encoder(self,event):
  1453. global _shift_key
  1454. cprint("Xevent","ENC",self.fix,self.attr,self.mode)
  1455. cprint("SHIFT_KEY",_shift_key,"??????????")
  1456. if self.mode == "ENCODER":
  1457. if self._encoder(event):
  1458. master.refresh_fix() # delayed
  1459. refresher_fix.reset() # = Refresher()
  1460. if self.mode == "ENCODER2":
  1461. if self._encoder(event):
  1462. master.refresh_fix() # delayed
  1463. refresher_fix.reset() # = Refresher()
  1464. if self.mode == "INVERT":
  1465. print("INVERT",event)
  1466. if self._encoder(event):
  1467. master.refresh_fix() # delayed
  1468. refresher_fix.reset() # = Refresher()
  1469. def _encoder(self,event):
  1470. global _shift_key
  1471. if 1: #self.mode == "ENCODER" or self.mode == "ENCODER2":
  1472. cprint("-- Xevent","_ENC",self.fix,self.attr,self.mode)
  1473. cprint("-- SHIFT_KEY",_shift_key,"??????????")
  1474. #cprint(self.data)
  1475. val=""
  1476. if event.num == 1:
  1477. val ="click"
  1478. elif event.num == 4:
  1479. val ="++"
  1480. if _shift_key:
  1481. val = "+"
  1482. elif event.num == 5:
  1483. val ="--"
  1484. if _shift_key:
  1485. val = "-"
  1486. #print("SHIFT",val,_shift_key)
  1487. if val:
  1488. FIXTURES.encoder(fix=self.fix,attr=self.attr,xval=val)
  1489. return 1
  1490. def cb(self,event):
  1491. cprint("EVENT cb",self.attr,self.mode,event,color='yellow')
  1492. print(["type",event.type,"num",event.num])
  1493. global INIT_OK
  1494. INIT_OK = 1
  1495. try:
  1496. change = 0
  1497. if "keysym" in dir(event):
  1498. if "Escape" == event.keysym:
  1499. ok = FIXTURES.clear()
  1500. master._refresh_fix()
  1501. print()
  1502. return 0
  1503. if self.mode == "SETUP":
  1504. self.setup(event)
  1505. elif self.mode == "COMMAND":
  1506. self.command(event)
  1507. elif self.mode == "LIVE":
  1508. self.live(event)
  1509. elif self.mode == "ENCODER":
  1510. self.encoder(event)
  1511. master._refresh_fix()
  1512. elif self.mode == "ENCODER2":
  1513. self.encoder(event)
  1514. elif self.mode == "INVERT":
  1515. self.encoder(event)
  1516. elif self.mode == "FX":
  1517. cprint("Xevent CALLING FX WRONG EVENT OBJECT !!",color="red")
  1518. elif self.mode == "ROOT":
  1519. if event.keysym=="Escape":
  1520. pass
  1521. elif self.mode == "INPUT":
  1522. print("INP",self.data.entry.get())
  1523. if event.keycode == 36:
  1524. x=self.data.entry.get()
  1525. #client.send(x)
  1526. elif self.mode == "INPUT2":
  1527. print("INP2",self.data.entry2.get())
  1528. if event.keycode == 36:
  1529. x=self.data.entry2.get()
  1530. #client.send(x)
  1531. elif self.mode == "INPUT3":
  1532. print("INP3",self.data.entry3.get())
  1533. if event.keycode == 36:
  1534. x=self.data.entry3.get()
  1535. #client.send(x)
  1536. elif self.mode == "PRESET":
  1537. nr = self.attr #int(self.attr.split(":")[1])-1
  1538. if event.num == 3: # right click for testing
  1539. if str(event.type) == '4': #4 ButtonPress
  1540. if modes.val("CFG-BTN"):
  1541. master.btn_cfg(nr,testing=1)
  1542. if event.num == 1:
  1543. if str(event.type) == '4': #4 ButtonPress
  1544. if modes.val("REC"):
  1545. self.data.preset_rec(nr)
  1546. modes.val("REC",0)
  1547. time.sleep(0.05)
  1548. master._refresh_exec(nr=nr)
  1549. elif modes.val("DEL"):
  1550. ok=PRESETS.delete(nr)
  1551. if ok:
  1552. modes.val("DEL",0)
  1553. #master.refresh_exec()
  1554. master._refresh_exec(nr=nr)
  1555. elif modes.val("COPY"):
  1556. ok=PRESETS.copy(nr)
  1557. if ok:
  1558. modes.val("COPY",0)
  1559. master._refresh_exec(nr=nr)
  1560. elif modes.val("MOVE"):
  1561. ok,cnr,bnr=PRESETS.move(nr)
  1562. if ok:
  1563. #modes.val("MOVE",0) # keep MOVE on
  1564. master._refresh_exec(nr=nr)
  1565. master._refresh_exec(nr=bnr)
  1566. elif modes.val("CFG-BTN"):
  1567. master.btn_cfg(nr)
  1568. #master._refresh_exec(nr=nr)
  1569. elif modes.val("LABEL"):#else:
  1570. master.label(nr)
  1571. #master._refresh_exec(nr=nr)
  1572. elif modes.val("EDIT"):
  1573. FIXTURES.clear()
  1574. self.data.preset_select(nr)
  1575. self.data.preset_go(nr,xfade=0,event=event,val=255,button="go")
  1576. modes.val("EDIT", 0)
  1577. master.refresh_fix()
  1578. elif modes.val("SELECT"):
  1579. self.data.preset_select(nr)
  1580. else:
  1581. self.data.preset_go(nr,event=event,val=255)
  1582. else:
  1583. self.data.preset_go(nr,xfade=0,event=event,val=0)
  1584. if event.num == 3:
  1585. if not modes.val("REC"):
  1586. if str(event.type) == '4': #4 ButtonPress
  1587. self.data.preset_go(nr,xfade=0,ptfade=0,event=event,val=255)
  1588. else:
  1589. self.data.preset_go(nr,xfade=0,ptfade=0,event=event,val=0)
  1590. print()
  1591. return 0
  1592. elif self.mode == "INPUT":
  1593. print()
  1594. return 0
  1595. except Exception as e:
  1596. cprint("== cb EXCEPT",e,color="red")
  1597. cprint("Error on line {}".format(sys.exc_info()[-1].tb_lineno),color="red")
  1598. cprint(''.join(traceback.format_exception(None, e, e.__traceback__)),color="red")
  1599. print()
  1600. return 1
  1601. def wheel(event,d=None):
  1602. print("wheel",event,d)
  1603. class Element():
  1604. def __init__(self):
  1605. self.__data = {}
  1606. def set(self,key,val):
  1607. self.__data[key] = val
  1608. class Base():
  1609. def __init__(self):
  1610. cprint("Base.init()",color="red")
  1611. self._init()
  1612. def _init(self):
  1613. show_name = "DemoShow"
  1614. self.show_path0 = HOME +"/LibreLight/"
  1615. self.show_path = self.show_path0
  1616. self.show_path1 = self.show_path0 + "show/"
  1617. try:
  1618. f = open(self.show_path+"init.txt","r")
  1619. for line in f.readlines():
  1620. #cprint(line)
  1621. if not line.startswith("#"):
  1622. show_name = line.strip()
  1623. show_name = show_name.replace(".","")
  1624. show_name = show_name.replace("\\","")
  1625. show_name = show_name.replace("/","")
  1626. self.show_name = show_name
  1627. except Exception as e:
  1628. cprint("show name exception",color="red")
  1629. msg="Error Exception:{}".format(e)
  1630. r=tkinter.messagebox.showwarning(message=msg,parent=None)
  1631. finally:
  1632. f.close()
  1633. fpath = self.show_path1 +show_name
  1634. if not os.path.isdir(fpath):
  1635. cprint(fpath)
  1636. print( os.path.isdir(fpath))
  1637. msg="'{}'\n Show Does Not Exist\n\n".format(show_name)
  1638. msg += "please check\n"
  1639. msg += "-{}init.txt\n".format(self.show_path0)
  1640. msg += "-{}".format(self.show_path1)
  1641. showwarning(msg=msg,title="Show Error")
  1642. exit()
  1643. self._check()
  1644. def _set(self,fname):
  1645. ok= os.path.isdir(self.show_path1+"/"+fname)
  1646. ini = self.show_path0+"init.txt"
  1647. print("SET SHOW NAME",fname,ok,ini)
  1648. try:
  1649. f = open( ini ,"r")
  1650. lines = f.readlines()
  1651. f.close()
  1652. if len(lines) >= 10: # cut show history
  1653. print("_set",ini,len(lines))
  1654. lines = lines[-10:]
  1655. f = open( ini ,"w")
  1656. f.writelines(lines)
  1657. f.close()
  1658. exit()
  1659. except:pass
  1660. if ok:
  1661. #self.show_name = fname
  1662. f = open( ini ,"a")
  1663. f.write(fname+"\n")
  1664. f.close()
  1665. return 1
  1666. def _check(self):
  1667. if not os.path.isdir(self.show_path):
  1668. os.mkdir(self.show_path)
  1669. self.show_path += "/show/"
  1670. if not os.path.isdir(self.show_path):
  1671. os.mkdir(self.show_path)
  1672. self.show_path += "/" +self.show_name +"/"
  1673. if not os.path.isdir(self.show_path):
  1674. os.mkdir(self.show_path)
  1675. pass
  1676. def _list(self):
  1677. #self._check()
  1678. show_list = list(os.listdir( self.show_path1 ))
  1679. out = []
  1680. for fname in show_list:
  1681. #print(fname)
  1682. ctime = os.path.getmtime(self.show_path1+fname)
  1683. ctime = time.strftime("%Y-%m-%d %X", time.localtime(ctime)) #1650748726.6604707))
  1684. try:
  1685. mtime = os.path.getmtime(self.show_path1+fname+"/patch.sav")
  1686. mtime = time.strftime("%Y-%m-%d %X", time.localtime(mtime)) #1650748726.6604707))
  1687. except:
  1688. mtime = 0
  1689. if mtime:
  1690. out.append([fname,mtime])#,ctime])
  1691. from operator import itemgetter
  1692. out=sorted(out, key=itemgetter(1))
  1693. out.reverse()
  1694. return out
  1695. def _load(self,filename):
  1696. xfname = self.show_path+"/"+str(filename)+".sav"
  1697. print("load",xfname)
  1698. try:
  1699. f = open(xfname,"r")
  1700. lines = f.readlines()
  1701. f.close()
  1702. except Exception as e:
  1703. msg = "Exception: {}".format(e)
  1704. msg += "\n\ncheck\n-init.txt"
  1705. cprint(msg,color="red")
  1706. showwarning(msg=msg,title="load Error")
  1707. data = OrderedDict()
  1708. labels = OrderedDict()
  1709. i=0
  1710. for line in lines:
  1711. if line.count("\t") < 2:
  1712. cprint("Error line.count('\\t') < 2 (is:{})".format(line.count("\t")),color="red",end=" ")
  1713. cprint("file:{}".format(xfname),color="red")
  1714. continue
  1715. key,label,rdata = line.split("\t",2)
  1716. key = int(key)
  1717. jdata = json.loads(rdata,object_pairs_hook=OrderedDict)
  1718. nrnull = 0
  1719. if "ATTRIBUT" in jdata: # translate old FIXTURES.fixtures start with 0 to 1
  1720. if nrnull:
  1721. print("DMX NR IS NULL",attr,"CHANGE +1")
  1722. for attr in jdata["ATTRIBUT"]:
  1723. if "NR" in jdata["ATTRIBUT"][attr]:
  1724. nr = jdata["ATTRIBUT"][attr]["NR"]
  1725. if nr >= 0:
  1726. jdata["ATTRIBUT"][attr]["NR"] +=1
  1727. data[key] = jdata
  1728. labels[key] = label
  1729. return data,labels
  1730. def _clean_path(self,fpath):
  1731. _path=[]
  1732. for i in fpath:
  1733. fpath = fpath.replace(" ","_")
  1734. if i in string.ascii_letters+string.digits+"äöüßÖÄÜ_-":
  1735. _path.append(i)
  1736. path = "".join(_path)
  1737. return path
  1738. def build_path(self,save_as):
  1739. save_as = self._clean_path(save_as)
  1740. path = self.show_path.split("/")
  1741. path = "/".join(path[:-2])
  1742. fpath = path+"/"+save_as
  1743. return fpath,save_as
  1744. def _create_path(self,fpath):
  1745. if os.path.isdir(fpath):
  1746. cprint("STOP SHOW EXIST !",color="red")
  1747. return 0
  1748. else:
  1749. cprint("CREATE DIR ",fpath,color="green")
  1750. os.mkdir(fpath)
  1751. #self._set(save_as)
  1752. return fpath
  1753. def _backup(self,filename,data,labels,save_as):
  1754. if save_as:
  1755. xfname = save_as +"/"+str(filename)+".sav"
  1756. else:
  1757. xfname = self.show_path+"/"+str(filename)+".sav"
  1758. print("backup",xfname)
  1759. f = open(xfname,"w")
  1760. for key in data:
  1761. line = data[key]
  1762. #print(line)
  1763. label = "label"
  1764. if key in labels:
  1765. label = labels[key]
  1766. if label == "Name-"+str(key):
  1767. label = ""
  1768. #print(xfname,"load",key,label,len(line))
  1769. f.write( "{}\t{}\t{}\n".format( key,label,json.dumps(line) ) )
  1770. f.close()
  1771. return 1
  1772. def hex_to_rgb(hex):
  1773. return tuple(int(hex[i:i+2], 16) for i in (0, 2, 4))
  1774. class cb():
  1775. def __init__(self,win):
  1776. self.win = win
  1777. def _callback(self,event):
  1778. clobj=event.widget
  1779. ## undermouse=find_withtag(master.CURRENT)
  1780. undermouse=self.win.find_closest(self.win.CURRENT)
  1781. print( repr(undermouse))
  1782. def callback(self,event):
  1783. print(__file__,self,"callback",event)
  1784. cnv = self.win
  1785. item = cnv.find_closest(cnv.canvasx(event.x), cnv.canvasy(event.y))[0]
  1786. tags = cnv.gettags(item)
  1787. #cnv.itemconfigure(self.tag, text=tags[0])
  1788. print(tags,item)
  1789. color = cnv.itemcget(item, "fill")
  1790. cnv.itemconfig("all", width=1)#filla="green")
  1791. cnv.itemconfig(item, width=3)#filla="green")
  1792. print(color)
  1793. print( hex_to_rgb(color[1:]))
  1794. class Elem_Container():
  1795. def __init__(self):
  1796. self.commands = []
  1797. self.val = {}
  1798. self.elem = {}
  1799. class MASTER():
  1800. def __init__(self):
  1801. #super().__init__()
  1802. self.base = Base ()
  1803. self.load()
  1804. self._XX = 0
  1805. self.all_attr =["DIM","PAN","TILT"]
  1806. self.elem_attr = {}
  1807. self.fx_moves = Elem_Container()
  1808. self.fx_moves.commands =["REC-FX","FX OFF","\n"
  1809. ,"FX:CIR","FX:PAN","FX:TILT", "WIDTH:\n100","DIR:\n0","INVERT:\n0","\n",
  1810. "SHUFFLE:\n0","SIZE:\n","SPEED:\n","START:\n","OFFSET:\n","\n"
  1811. ]
  1812. #, "FX:SIN","FX:COS","FX:RAMP","FX:RAMP2","FX:FD","FX:ON","BASE:\n-"] #,"FX:RND" ]
  1813. self.fx = Elem_Container()
  1814. self.fx.commands =[
  1815. "FX:DIM","FX:RED", "WIDTH:\n25","WING:\n2","DIR:\n1","INVERT:\n1","\n","SHUFFLE:\n0"
  1816. ,"SIZE:\n","SPEED:\n","START:\n","OFFSET:\n","BASE:\n-","FX-X:\n-","FX:MODE"
  1817. ]
  1818. self.fx_generic = Elem_Container()
  1819. self.fx_generic.commands =["FX:SIN","FX:COS","FX:RAMP","FX:RAMP2","FX:FD","FX:ON"]
  1820. self.commands = Elem_Container()
  1821. self.commands.commands =["\n","ESC","CFG-BTN","LABEL","-","DEL","-","\n"
  1822. ,"SELECT","FLASH","GO","-","MOVE","S-KEY","\n"
  1823. ,"BLIND","CLEAR","REC","EDIT","COPY","-","\n"
  1824. ]
  1825. self.elem_presets = {}
  1826. for i in range(8*8*8):
  1827. if i not in PRESETS.val_presets:
  1828. name = "Preset:"+str(i+1)+":\nXYZ"
  1829. #self.presets[i] = [i]
  1830. PRESETS.val_presets[i] = OrderedDict() # FIX
  1831. PRESETS.val_presets[i]["CFG"] = OrderedDict() # CONFIG
  1832. PRESETS.label_presets[i] = "-"
  1833. modes.set_cb(self.xcb)
  1834. def button_refresh(self,name,color,color2=None,text="",fg=None):
  1835. cprint("button_refresh",name,color)
  1836. #if color == "gold":
  1837. # color2 = "yellow"
  1838. if color2 is None:
  1839. color2 = color
  1840. if text:
  1841. text = "\n"+str(text)
  1842. if name in self.commands.elem:
  1843. self.commands.elem[name]["bg"] = color
  1844. self.commands.elem[name]["text"] = name+ text
  1845. self.commands.elem[name].config(activebackground=color2)
  1846. if fg:
  1847. self.commands.elem[name]["fg"] = fg
  1848. elif name in self.fx.elem:
  1849. #todo
  1850. self.fx.elem[name]["bg"] = color
  1851. self.fx.elem[name].config(activebackground=color2)
  1852. if fg:
  1853. self.fx.elem[name]["fg"] = fg
  1854. # new version
  1855. for elems in [self.fx_moves]:
  1856. if name in elems.elem:
  1857. elem = elems.elem[name]
  1858. cprint("elem",elem)
  1859. elem.config(bg = color)
  1860. elem.config(text = name+text)
  1861. elem.config(activebackground=color2)
  1862. if fg and "fg" in elem:
  1863. elem["fg"] = fg
  1864. def btn_cfg(self,nr,testing=0):
  1865. cfg = PRESETS._btn_cfg(nr)
  1866. button = PRESETS.btn_cfg(nr)
  1867. label = PRESETS.label(nr)
  1868. def _cb(data):
  1869. print(self,"btn_cfg._cb()",data)
  1870. if data:
  1871. if "Button" in data and type(data["Button"]) is str:
  1872. txt = data["Button"]
  1873. PRESETS.btn_cfg(nr,txt)
  1874. self.elem_presets[nr].configure(text= PRESETS.get_btn_txt(nr))
  1875. if "Label" in data and type(data["Label"]) is str:
  1876. txt = data["Label"]
  1877. PRESETS.label(nr,txt)
  1878. self.elem_presets[nr].configure(text= PRESETS.get_btn_txt(nr))
  1879. modes.val("CFG-BTN",0)
  1880. master._refresh_exec(nr=nr)
  1881. dialog._cb = _cb
  1882. if 1: # testing:
  1883. dialog.ask_exec_config(str(nr+1),button=button,label=label,cfg=cfg)
  1884. else:
  1885. dialog.askstring("CFG-BTN","GO=GO FL=FLASH\nSEL=SELECT EXE:"+str(nr+1),initialvalue=txt)
  1886. def label(self,nr):
  1887. txt = PRESETS.label(nr)
  1888. def _cb(data):
  1889. txt = data["Value"]
  1890. print(self,"label._cb()",nr,txt)
  1891. if txt:
  1892. PRESETS.label(nr,txt)
  1893. self.elem_presets[nr].configure(text = PRESETS.get_btn_txt(nr))
  1894. modes.val("LABEL", 0)
  1895. master._refresh_exec(nr=nr)
  1896. dialog._cb= _cb #_x(nr)
  1897. dialog.askstring("LABEL","EXE:"+str(nr+1),initialvalue=txt)
  1898. def xcb(self,mode,value=None):
  1899. cprint("MODE CALLBACK",mode,value,color="green",end="")
  1900. #cprint(self,"xcb","MODE CALLBACK",mode,value,color="green")
  1901. if value:
  1902. cprint("===== ON ======",color="red")
  1903. txt = ""
  1904. if mode == "REC-FX":
  1905. modes.val("REC",0)
  1906. modes.val("REC",1)
  1907. if value == 2:
  1908. if mode in ["MOVE","COPY"]:
  1909. txt="to"
  1910. self.button_refresh(mode,color="orange",text=txt)#,fg="blue")
  1911. else:
  1912. if mode in ["MOVE","COPY"]:
  1913. txt="from"
  1914. self.button_refresh(mode,color="red",text=txt)#,fg="blue",text="from")
  1915. else:
  1916. cprint("===== OFF ======",color="red")
  1917. if mode == "REC-FX":
  1918. modes.val("REC",0)
  1919. self.button_refresh(mode,color="lightgrey")#,fg="black")
  1920. def load(self,fname=""):
  1921. pass
  1922. def exit(self):
  1923. print("__del__",self)
  1924. PRESETS.backup_presets()
  1925. #print("********************************************************")
  1926. FIXTURES.backup_patch()
  1927. #print("*********del",self,"***********************************************")
  1928. def refresh_exec(self):
  1929. refresher_exec.reset() # = Refresher()
  1930. def _refresh_exec(self,nr=-1):
  1931. s = time.time()
  1932. cprint("PRESET.refresh_exec()")
  1933. refresher_exec.reset() # = Refresher()
  1934. self._XX +=1
  1935. self._nr_ok = 0
  1936. for k in PRESETS.val_presets:
  1937. _bg = "grey"
  1938. _ba = "grey"
  1939. _fg = "lightgrey"
  1940. _text = "N/V"
  1941. if nr >= 0:
  1942. if self._nr_ok:
  1943. break
  1944. if nr != k:
  1945. continue
  1946. else:
  1947. self._nr_ok = 1
  1948. label = ""
  1949. if k not in self.elem_presets:
  1950. cprint("ERROR",k ,"not in elem_presets continue")
  1951. continue
  1952. if k in PRESETS.label_presets:
  1953. label = PRESETS.label_presets[k]
  1954. #print([label])
  1955. b = self.elem_presets[k]
  1956. ifval = 0
  1957. fx_only = 0
  1958. if k in PRESETS.val_presets and len(PRESETS.val_presets[k]) :
  1959. sdata = PRESETS.val_presets[k]
  1960. #print("sdata7654",sdata)
  1961. BTN="go"
  1962. if "CFG" in sdata:#["BUTTON"] = "GO"
  1963. if "BUTTON" in sdata["CFG"]:
  1964. BTN = sdata["CFG"]["BUTTON"]
  1965. #txt=str(k+1)+" "+str(BTN)+" "+str(len(sdata)-1)+"\n"+label
  1966. txt="{} {} {}\n{}".format(k+1,BTN,len(sdata)-1,label)
  1967. _text = txt
  1968. if b.text != txt: # TODO
  1969. #txt+=str(self._XX)
  1970. #b.configure(text= txt)
  1971. _text = txt
  1972. _bg="yellow"
  1973. _ba="yellow"
  1974. if len(sdata) > 1:
  1975. ifval = 1
  1976. fx_color = 0
  1977. val_color = 0
  1978. for fix in sdata:
  1979. if fix == "CFG":
  1980. continue
  1981. #print( "$$$$",fix,sdata[fix])
  1982. for attr in sdata[fix]:
  1983. if "FX2" in sdata[fix][attr]:
  1984. if sdata[fix][attr]["FX2"]:
  1985. fx_color = 1
  1986. if "FX" in sdata[fix][attr]:
  1987. if sdata[fix][attr]["FX"]:
  1988. fx_color = 1
  1989. if "VALUE" in sdata[fix][attr]:
  1990. if sdata[fix][attr]["VALUE"] is not None:
  1991. val_color = 1
  1992. b.configure(fg= "black")
  1993. if val_color:
  1994. _bg = "gold"
  1995. _ba = "#ffaa55"
  1996. if fx_color:
  1997. _fg = "blue"
  1998. else:
  1999. if fx_color:
  2000. fx_only = 1
  2001. else:
  2002. _bg = "grey"
  2003. _ba = "#aaa"
  2004. if "\n" in txt:
  2005. txt1 = txt.split("\n")[0]
  2006. _fg = "black"
  2007. if ifval:
  2008. if fx_only:
  2009. _bg = "cyan"
  2010. _ba = "#55d4ff"
  2011. if "SEL" in txt1:
  2012. b.configure(bg="#77f")
  2013. _bg = "#77f"
  2014. else:
  2015. _bg = "grey"
  2016. _fg = "darkgrey"
  2017. if "SEL" in txt1:
  2018. _fg = "blue"
  2019. elif "ON" in txt1:
  2020. _fg = "#040"
  2021. elif "GO" in txt1:
  2022. _fg = "#555"
  2023. if "FL" in txt1:
  2024. _fg = "#00e"
  2025. b.configure(fg=_fg,bg=_bg,activebackground=_ba,text=_text)
  2026. time.sleep(0.01)
  2027. #tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  2028. #time.sleep(0.01)
  2029. def refresh_fix(self):
  2030. refresher_fix.reset() # = Refresher()
  2031. def _refresh_fix(self):
  2032. s=time.time(); _XXX=0
  2033. c_d =0
  2034. c_f =0
  2035. c_a =0
  2036. for fix in FIXTURES.fixtures:
  2037. sdata = FIXTURES.fixtures[fix]
  2038. _c_a = 0
  2039. if fix not in self.elem_attr:
  2040. cprint("_refresh_fix fix not in self.elem_attr (no Button)",fix,color="red")
  2041. continue
  2042. elem_attr_fix = self.elem_attr[fix]
  2043. _dim_in_flag = 0
  2044. if "DIM" in sdata["ATTRIBUT"] and len(sdata["ATTRIBUT"]) == 1:
  2045. _dim_in_flag = 1
  2046. for attr in sdata["ATTRIBUT"]:
  2047. row = sdata["ATTRIBUT"][attr]
  2048. if attr.endswith("-FINE"):
  2049. continue
  2050. b_attr = attr
  2051. if b_attr == "_ACTIVE":
  2052. b_attr = "S"
  2053. if b_attr not in elem_attr_fix:
  2054. continue
  2055. elem = elem_attr_fix[b_attr]
  2056. if not elem:
  2057. continue
  2058. if not attr.startswith("_"):
  2059. v2 = row["VALUE"]
  2060. _text = "{} {:0.2f}".format(attr,v2) # ~0.2 sec
  2061. if elem["text"] != _text: #"{} {:0.2f}".format(attr,v2)
  2062. elem["text"] = _text #"{} {:0.2f}".format(attr,v2)
  2063. if row["ACTIVE"]:
  2064. if elem["bg"] != "yellow":
  2065. elem["bg"] = "yellow"
  2066. elem.config(activebackground="yellow")
  2067. #if "DIM" in sdata["ATTRIBUT"] and len(sdata["ATTRIBUT"]) == 1:
  2068. if _dim_in_flag:
  2069. c_d+=1
  2070. else:
  2071. _c_a += 1
  2072. else:
  2073. if elem["bg"] != "grey":
  2074. elem["bg"] = "grey"
  2075. elem.config(activebackground="grey")
  2076. if "FX2" not in row: # insert FX2 excetption
  2077. row["FX2"] = OrderedDict()
  2078. if row["FX"]:
  2079. elem["fg"] = "blue"
  2080. elif row["FX2"]:
  2081. elem["fg"] = "red"
  2082. else:
  2083. elem["fg"] = "black"
  2084. c_a += _c_a
  2085. if _c_a>0:
  2086. c_f +=1
  2087. c_a2=0
  2088. cprint("fix:",_XXX,round(time.time()-s,2),color="red");_XXX += 1
  2089. if c_f > 0:
  2090. c_a2 = round(c_a/c_f,2)
  2091. if c_a2 % 1 > 0:
  2092. gui_menu.config("FIXTURES","bg","orange")
  2093. gui_menu.config("FIXTURES","activebackground","orange")
  2094. else:
  2095. gui_menu.config("FIXTURES","bg","yellow")
  2096. gui_menu.config("FIXTURES","activebackground","yellow")
  2097. else:
  2098. gui_menu.config("FIXTURES","bg","")
  2099. gui_menu.config("FIXTURES","activebackground","")
  2100. gui_menu.update("FIXTURES","{} : {}".format(c_f,c_a2))
  2101. if c_d > 0:
  2102. gui_menu.config("DIMMER","bg","yellow")
  2103. gui_menu.config("DIMMER","activebackground","yellow")
  2104. else:
  2105. gui_menu.config("DIMMER","bg","")
  2106. gui_menu.config("DIMMER","activebackground","")
  2107. gui_menu.update("DIMMER","{}".format(c_d))
  2108. cprint("fix:",_XXX,round(time.time()-s),color="red"); _XXX += 1
  2109. def preset_rec(self,nr):
  2110. print("------- STORE PRESET")
  2111. data = FIXTURES.get_active()
  2112. if modes.val("REC-FX"):
  2113. PRESETS.rec(nr,data,"REC-FX")
  2114. modes.val("REC-FX",0)
  2115. else:
  2116. PRESETS.rec(nr,data)
  2117. sdata=data
  2118. PRESETS.val_presets[nr] = sdata
  2119. master._refresh_exec()
  2120. return 1
  2121. def preset_select(self,nr):
  2122. print("SELECT PRESET")
  2123. sdata = PRESETS.val_presets[nr]
  2124. cmd = ""
  2125. for fix in sdata:
  2126. if fix == "CFG":
  2127. continue
  2128. for attr in sdata[fix]:
  2129. v2 = sdata[fix][attr]["VALUE"]
  2130. v2_fx = sdata[fix][attr]["FX"]
  2131. #print( self.data.elem_attr)
  2132. if fix in self.elem_attr:
  2133. if attr in self.elem_attr[fix]:
  2134. elem = self.elem_attr[fix][attr]
  2135. FIXTURES.fixtures[fix]["ATTRIBUT"][attr]["ACTIVE"] = 1
  2136. FIXTURES.fixtures[fix]["ATTRIBUT"]["_ACTIVE"]["ACTIVE"] = 1
  2137. #elem["bg"] = "yellow"
  2138. def preset_go(self,nr,val=None,xfade=None,event=None,button="",ptfade=None):
  2139. t_start = time.time()
  2140. if xfade is None and FADE._is():
  2141. xfade = FADE.val()
  2142. if ptfade is None and FADE_move._is():
  2143. ptfade = FADE_move.val()
  2144. print("GO PRESET FADE",nr,val)
  2145. rdata = PRESETS.get_raw_map(nr)
  2146. if not rdata:
  2147. return 0
  2148. print("???????")
  2149. cfg = PRESETS.get_cfg(nr)
  2150. print("''''''''")
  2151. #virtcmd = FIXTURES.get_virtual(rdata)
  2152. if not cfg:
  2153. cprint("NO CFG",cfg,nr)
  2154. return 0
  2155. xFLASH = 0
  2156. value=None
  2157. cprint("preset_go",nr,cfg)
  2158. if modes.val("SELECT") or ( "BUTTON" in cfg and cfg["BUTTON"] == "SEL") and val and not button: #FLASH
  2159. self.preset_select(nr)
  2160. elif modes.val("FLASH") or ( "BUTTON" in cfg and cfg["BUTTON"] == "FL") and not button: #FLASH
  2161. xFLASH = 1
  2162. xfade = 0
  2163. if type(val) is not type(None) and val == 0 :
  2164. value = "off"
  2165. if event:
  2166. if str(event.type) == "ButtonRelease" or event.type == '5' :
  2167. value = "off"
  2168. cprint("preset_go() FLUSH",value,color="red")
  2169. fcmd = FIXTURES.update_raw(rdata,update=0)
  2170. self._preset_go(rdata,cfg,fcmd,value,xfade=xfade,xFLASH=xFLASH,nr=nr)
  2171. elif not val:
  2172. cprint("preset_go() STOP",value,color="red")
  2173. elif button == "on" or ( modes.val("ON") or ( "BUTTON" in cfg and cfg["BUTTON"] in ["on","ON"])):
  2174. fcmd = FIXTURES.update_raw(rdata)
  2175. self._preset_go(rdata,cfg,fcmd,value,xfade=0,xFLASH=xFLASH)
  2176. elif button == "go" or ( modes.val("GO") or ( "BUTTON" in cfg and cfg["BUTTON"] in ["go","GO"])):
  2177. fcmd = FIXTURES.update_raw(rdata)
  2178. self._preset_go(rdata,cfg,fcmd,value,xfade=xfade,xFLASH=xFLASH,ptfade=ptfade,nr=nr)
  2179. if not (modes.val("FLASH") or ( "BUTTON" in cfg and cfg["BUTTON"] == "FL")): #FLASH
  2180. self.refresh_exec()
  2181. self.refresh_fix()
  2182. #print("IIIIIIIIIIIiiiiiiiiiiiiiiiiiii",nr,val)
  2183. #print(len(self.elem_presets) )
  2184. if len(self.elem_presets) > nr: # RED BUTTON IF PRESSED
  2185. #print("IIIIIIIIIIIiiiiiiiiiiiiiiiiiii",nr,val)
  2186. if val:# or value:
  2187. #self.elem_presets[nr].config(borderwidth=1)
  2188. self.elem_presets[nr].config(bg="red")
  2189. else:
  2190. self._refresh_exec()
  2191. cprint("preset_go",time.time()-t_start)
  2192. def _preset_go(self,rdata,cfg,fcmd,value=None,xfade=None,event=None,xFLASH=0,ptfade=0,nr=None):
  2193. if xfade is None and FADE._is():
  2194. xfade = FADE.val()
  2195. if ptfade is None and FADE_move._is():
  2196. ptfade = FADE_move.val()
  2197. cprint("PRESETS._preset_go() len=",len(rdata),cfg)
  2198. if xfade is None:
  2199. xfade = cfg["FADE"]
  2200. if ptfade is None:
  2201. ptfade = cfg["FADE"]
  2202. #vcmd = reshape_preset( rdata ,value,[],xfade=xfade,fx=1)
  2203. #cprint(rdata,color="red")
  2204. vcmd = reshape_preset( rdata ,value,xfade=xfade,ptfade=ptfade)
  2205. cmd = []
  2206. delay=0
  2207. for i,v in enumerate(fcmd):
  2208. #print("go",i,v)
  2209. if xFLASH:
  2210. vcmd[i]["FLASH"] = 1
  2211. DMX = fcmd[i]["DMX"]
  2212. if "VALUE" in vcmd[i] and type(vcmd[i]["VALUE"]) is type(float):
  2213. vcmd[i]["VALUE"] = round(vcmd[i]["VALUE"],3)
  2214. if value is not None:
  2215. vcmd[i]["VALUE"] = value
  2216. if value == "off":
  2217. if "FX2" in vcmd:
  2218. vcmd[i]["FX2"]["TYPE"] = value
  2219. if "FIX" in fcmd:
  2220. vcmd[i]["FIX"] = fcmd["FIX"]
  2221. if DMX and vcmd[i]:
  2222. vcmd[i]["DMX"] = DMX
  2223. if "VIRTUAL" in fcmd[i]:
  2224. for a in fcmd[i]["VIRTUAL"]:
  2225. DMX = fcmd[i]["VIRTUAL"][a]
  2226. if DMX and vcmd[i]:
  2227. vcmd[i]["DMX"] = DMX
  2228. if type(nr) is not type(None):
  2229. vcmd[i]["EXEC"] = str(int(nr)+1)
  2230. #cprint(vcmd[i],color="red")
  2231. cmd.append(vcmd[i])
  2232. if cmd and not modes.val("BLIND"):
  2233. jclient_send(cmd)
  2234. def render(self):
  2235. #Xroot.bind("<Key>",Xevent(fix=0,elem=None,attr="ROOT",data=self,mode="ROOT").cb)
  2236. #self.draw_input()
  2237. pass
  2238. ##draw_sub_dim
  2239. class InputEventBlocker():
  2240. def __init__(self):
  2241. self.__init = 0
  2242. self.cursor = "88888"
  2243. def set(self,el,txt):
  2244. self.e = el
  2245. self.e_txt = txt
  2246. self.cursor = "88888"
  2247. def init(self):
  2248. if self.__init == 0:
  2249. try:
  2250. self.el = tk.Button()
  2251. self.e_txt = tk.StringVar()
  2252. self.__init = 1
  2253. except Exception as e:
  2254. pirnt("init() exception",e)
  2255. def _lock(self):
  2256. global _global_short_key
  2257. _global_short_key = 0
  2258. master.commands.elem["S-KEY"]["bg"] = "red"
  2259. def _unlock(self):
  2260. global _global_short_key
  2261. _global_short_key = 1
  2262. master.commands.elem["S-KEY"]["bg"] = "green"
  2263. def lock(self):
  2264. self._lock()
  2265. #self.e["bg"] = "red"
  2266. #self.el.config({"background": "grey"})
  2267. #self.e.focus()
  2268. def unlock(self):
  2269. self._unlock()
  2270. #self.e["bg"] = "blue"
  2271. #self.el.config({"background": "yellow"})
  2272. #self.el.focus_set()
  2273. def event(self,event,**args):
  2274. self.init()
  2275. #print()
  2276. print(self,event,args)
  2277. #print("###-",self.e_txt,dir(self.e_txt))
  2278. if "S-KEY" not in master.commands.elem:
  2279. return
  2280. if "num" in dir(event):
  2281. self.lock()
  2282. if "keysym" in dir(event):
  2283. t=self.e_txt.get()
  2284. if t and t[-1] == "<":
  2285. t = t[:-1]
  2286. if event.keysym == "Return" or event.keysym == "Tab" or event.keysym == "ISO_Left_Tab":
  2287. self.unlock()
  2288. #self.e_txt.set(t)
  2289. print("filter: get()",_global_short_key,t)
  2290. t2 = t
  2291. if _global_short_key == 0:
  2292. if event.keysym == "BackSpace":
  2293. if len(t) > 1:
  2294. t2 = t[:-1]
  2295. else:
  2296. t2=""
  2297. elif event.keysym == "Escape":
  2298. t2=""
  2299. elif event.keysym == "space":
  2300. t2=t+" "
  2301. elif event.char in "äöüÄÖÜ-_,.;:#'*+~":
  2302. t2=t+event.char
  2303. elif len(event.keysym) == 1:
  2304. t2=t+event.keysym
  2305. #self.e_txt.set(t2+"<")
  2306. #time.sleep(0.2)
  2307. #_global_short_key = 1
  2308. input_event_blocker = InputEventBlocker()
  2309. from tkgui.dialog import *
  2310. dialog = Dialog()
  2311. from tkgui.draw import *
  2312. from tkgui.GUI import *
  2313. #draw_enc
  2314. class LOAD_SHOW_AND_RESTAT():
  2315. def __init__(self,fname=""):
  2316. self.fname=fname
  2317. self.base = Base()
  2318. def cb(self,event=None,force=0):
  2319. print("LOAD_SHOW_AND_RESTART.cb force={} name={}".format(force,self.fname) )
  2320. if not self.fname and not force:
  2321. return 0
  2322. if self.base.show_name == self.fname and not force:
  2323. cprint("filename is the same",self.fname)
  2324. return 0
  2325. if not force:
  2326. self.base._set(self.fname)
  2327. print("LOAD SHOW:",event,self.fname)
  2328. print(sys.executable, os.path.abspath(__file__), *sys.argv)
  2329. os.execl("/usr/bin/python3", "/opt/LibreLight/Xdesk/_LibreLightDesk.py", "_LibreLightDesk.py")
  2330. sys.exit()
  2331. class PopupList():
  2332. def __init__(self,name="<NAME>",master=0,width=400,height=450,exit=1,left=_POS_LEFT+400,top=_POS_TOP+100,cb=None,bg="black"):
  2333. self.name = name
  2334. self.frame = None
  2335. self.bg=bg
  2336. self.cb = cb
  2337. if cb is None:
  2338. cb = DummyCallback #("load_show_list.cb")
  2339. #w = Window(self.name,master=master,width=width,height=height,exit=exit,left=left,top=top,cb=cb)
  2340. args = {"title":self.name,"master":master,"width":width,"height":height,"exit":exit,"left":left,"top":top,"cb":cb}
  2341. w = Window(args)
  2342. self.w = w
  2343. w.show()
  2344. def sframe(self,line1="<line1>",line2="<line2>",data=[]):
  2345. xframe=self.w.tk
  2346. if self.bg:
  2347. xframe.configure(bg=self.bg)
  2348. self.w.tk.configure(bg=self.bg)
  2349. c=0
  2350. r=0
  2351. b = tk.Label(xframe,bg="grey",text=line1,anchor="w")
  2352. b.pack(side="top",expand=0,fill="x" )
  2353. b = tk.Label(xframe,bg="grey",text=line2,anchor="w")
  2354. b.pack(side="top",expand=0,fill="x" )
  2355. b = tk.Label(xframe,bg="black",fg="black",text="")
  2356. if self.bg:
  2357. b.configure(fg=self.bg)
  2358. b.configure(bg=self.bg)
  2359. b.pack(side="top")
  2360. b = tk.Entry(xframe,width=10,text="")#,anchor="w")
  2361. b.pack(side="top",expand=0,fill="x")
  2362. b.focus()
  2363. #frame = tk.Frame(xframe,heigh=2800)
  2364. #frame.pack(fill=tk.BOTH,expand=1, side=tk.TOP)
  2365. frame = ScrollFrame(xframe,width=300,height=500,bd=1,bg=self.bg)
  2366. #frame.pack(side="left") #fill=tk.BOTH,expand=1, side=tk.TOP)
  2367. #self.frame = frame
  2368. self.w.tk.state(newstate='normal')
  2369. self.w.tk.attributes('-topmost',True)
  2370. return frame
  2371. class DummyCallback():
  2372. def __init__(self,name="name"):
  2373. self.name = name
  2374. def cb(self,event=None):
  2375. print("DummyCallback.cb",[self.name,event])
  2376. def _load_show_list(frame,cb=None):
  2377. c=0
  2378. r=0
  2379. base = Base()
  2380. for i in ["name","stamp"]: #,"create"]:
  2381. b = tk.Label(frame,bg="grey",text=i)
  2382. b.grid(row=r, column=c, sticky=tk.W+tk.E)
  2383. c+=1
  2384. r+=1
  2385. blist = base._list()
  2386. for i in range(10):
  2387. blist.append(["",""])
  2388. if cb is None:
  2389. cb = DummyCallback #("load_show_list.cb")
  2390. for i in blist:
  2391. #print(i)
  2392. c=0
  2393. for j in i:
  2394. bg="lightgrey"
  2395. dbg="lightgrey"
  2396. if i[1] > time.strftime("%Y-%m-%d %X", time.localtime(time.time()-3600*4)):
  2397. dbg = "lightgreen"
  2398. elif i[1] > time.strftime("%Y-%m-%d %X", time.localtime(time.time()-3600*24*7)):
  2399. dbg = "green"
  2400. if c > 0:
  2401. b = tk.Button(frame,text=j,anchor="w",bg=dbg,relief="sunken")
  2402. b.config(activebackground=dbg)
  2403. b.grid(row=r, column=c, sticky=tk.W+tk.E)
  2404. else:
  2405. if base.show_name == i[0]:
  2406. bg="green"
  2407. _cb = cb(j)
  2408. b = tk.Button(frame,text=j,anchor="w",height=1,bg=bg,command=_cb.cb)
  2409. if base.show_name == i[0]:
  2410. b.config(activebackground=bg)
  2411. b.grid(row=r, column=c, sticky=tk.W+tk.E)
  2412. c+=1
  2413. r+=1
  2414. def _parse_fixture_name(name):
  2415. out = ["FIX","MAN","CH","PATH"]
  2416. if name.count(".") == 2:
  2417. m,n,e = name.split(".")
  2418. out = [n,m,"0",name]
  2419. elif name.count("_") == 2:
  2420. name,e = name.split(".")
  2421. m,n,c = name.split("_")
  2422. out = [n,m,c,name]
  2423. else:
  2424. out = [name]
  2425. return out
  2426. def _load_fixture_list(frame,cb=None,master=None,bg="black"):
  2427. frame.configure(bg=bg)
  2428. c=0
  2429. r=0
  2430. base = Base()
  2431. for i in ["source","name","manufacturer","channel's","file","path"]: #,"create"]:
  2432. b = tk.Label(frame,bg="grey",text=i)
  2433. b.grid(row=r, column=c, sticky=tk.W) #+tk.E)
  2434. c+=1
  2435. r+=1
  2436. blist = [] #base._list()
  2437. try:
  2438. p = HOME+"/LibreLight/fixtures/"
  2439. ls = os.listdir(p)
  2440. ls.sort()
  2441. for l in ls:
  2442. b = _parse_fixture_name(l)
  2443. b.append(p)
  2444. b.insert(0,"user")
  2445. blist.append(b)
  2446. except Exception as e:
  2447. print("Exce 877 ",e)
  2448. try:
  2449. p="/opt/LibreLight/Xdesk/fixtures/"
  2450. ls = os.listdir(p )
  2451. ls.sort()
  2452. for l in ls:
  2453. b = _parse_fixture_name(l)
  2454. b.append(p)
  2455. b.insert(0,"base")
  2456. blist.append(b)
  2457. except Exception as e:
  2458. print("Exce 878 ",e)
  2459. if not blist:
  2460. blist.append(["MAC-500","martin","Demo"])
  2461. blist.append(["MAC-2000","martin","Demo"])
  2462. blist.append(["MAC-VIPER","martin","Demo"])
  2463. blist.append(["SPARX-7","JB","Demo"])
  2464. blist.append(["SPARX-11","JB","Demo"])
  2465. blist.append(["JB-P6","JB","Demo"])
  2466. blist.append(["JB-P7","JB","Demo"])
  2467. blist.append(["JB-A7","JB","Demo"])
  2468. blist.append(["TMH-12","Eurolight","Demo"])
  2469. if len(blist) < 30:
  2470. for i in range(30-len(blist)):
  2471. blist.append(["{:0>4}".format(len(blist)+i+1),"",""])
  2472. if cb is None:
  2473. cb = DummyCallback #("load_show_list.cb")
  2474. _tmp_name = ""
  2475. _tmp_flag = 0
  2476. for i in blist:
  2477. #print(i)
  2478. if i[0] != _tmp_name:
  2479. _tmp_flag = "#aaf"
  2480. if i[0] == "user":
  2481. _tmp_flag = "#aaf"
  2482. if i[0] == "base":
  2483. _tmp_flag = "#0f0"
  2484. c=0
  2485. for j in i:
  2486. bg="lightgrey"
  2487. dbg="lightgrey"
  2488. if i[1] > time.strftime("%Y-%m-%d %X", time.localtime(time.time()-3600*4)):
  2489. dbg = "lightgreen"
  2490. elif i[1] > time.strftime("%Y-%m-%d %X", time.localtime(time.time()-3600*24*7)):
  2491. dbg = "green"
  2492. if _tmp_flag:
  2493. bg = "{}".format(_tmp_flag)
  2494. if c == 1:
  2495. if base.show_name == i[0]:
  2496. bg="green"
  2497. _cb=cb(j)
  2498. _cb.master=master
  2499. b = tk.Button(frame,text=j,anchor="w",height=1,bg=bg,command=_cb.cb)
  2500. if base.show_name == i[0]:
  2501. b.config(activebackground=bg)
  2502. b.grid(row=r, column=c, sticky=tk.W+tk.E)
  2503. else:#ief c > 0:
  2504. b = tk.Button(frame,text=j,anchor="w",bg=dbg,relief="sunken")
  2505. b.config(activebackground=dbg)
  2506. b.grid(row=r, column=c, sticky=tk.W+tk.E)
  2507. c+=1
  2508. r+=1
  2509. class Fixtures():
  2510. def __init__(self):
  2511. #super().__init__()
  2512. self.base=Base()
  2513. #self.load()
  2514. self.fixtures = OrderedDict()
  2515. self.gui = GUIHandler()
  2516. def load_patch(self):
  2517. filename="patch"
  2518. #self.base._init()
  2519. d,l = self.base._load(filename)
  2520. self.fixtures = OrderedDict()
  2521. for i in l:
  2522. sdata = d[i]
  2523. new_f = OrderedDict()
  2524. #print("++++")
  2525. for k,j in sdata.items():
  2526. overide=0 # only for repair
  2527. if overide:
  2528. if k in ["TYPE","VENDOR"]: #ignor
  2529. continue
  2530. new_f[k] = j
  2531. if k =="NAME":
  2532. #print("AAAADDDDDD")
  2533. if "TYPE" not in sdata and not overide:
  2534. if len( sdata["ATTRIBUT"]) == 1:
  2535. new_f["TYPE"] = "DIMMER"
  2536. elif "PAN" in sdata["ATTRIBUT"]:
  2537. new_f["TYPE"] = "MOVER"
  2538. elif "RED" in sdata["ATTRIBUT"] and len(sdata["ATTRIBUT"]) == 3:
  2539. new_f["TYPE"] = "RGB"
  2540. elif "RED" in sdata["ATTRIBUT"]:
  2541. new_f["TYPE"] = "LED"
  2542. elif "CYAN" in sdata["ATTRIBUT"]:
  2543. new_f["TYPE"] = "COLOR"
  2544. else:
  2545. new_f["TYPE"] = ""
  2546. if "VENDOR" not in sdata and not overide:
  2547. new_f["VENDOR"] = ""
  2548. #print(k,j)#,sdata)
  2549. sdata = new_f
  2550. if "ACTIVE" not in sdata:
  2551. sdata["ACTIVE"] = 0
  2552. sdata["ATTRIBUT"]["_ACTIVE"] = OrderedDict()
  2553. sdata["ATTRIBUT"]["_ACTIVE"]["NR"] = 0
  2554. sdata["ATTRIBUT"]["_ACTIVE"]["ACTIVE"] = 1
  2555. sdata["ATTRIBUT"]["_ACTIVE"]["VALUE"] = 0
  2556. for attr in sdata["ATTRIBUT"]:
  2557. sdata["ATTRIBUT"][attr]["ACTIVE"] = 0
  2558. #print("load",filename,sdata)
  2559. #if "CFG" not in sdata:
  2560. # sdata["CFG"] = OrderedDict()
  2561. self.fixtures[str(i)] = sdata
  2562. #PRESETS.label_presets = l
  2563. self.fx_off("all")
  2564. def backup_patch(self,save_as=""):
  2565. filename = "patch"
  2566. #self.fx_off("all")
  2567. data = self.fixtures
  2568. labels = {}
  2569. for k in data:
  2570. labels[k] = k
  2571. #self.base._init()
  2572. self.base._backup(filename,data,labels,save_as)
  2573. def fx_get(self,fix=None):
  2574. out={}
  2575. if not fix or fix == "all":
  2576. #self.data.fx.elem[self.attr]["bg"] = "magenta"
  2577. for fix in self.fixtures:
  2578. data = self.fixtures[fix]
  2579. for attr in data["ATTRIBUT"]:
  2580. out[str(fix)+"."+str(attr)+".fx"] = data["ATTRIBUT"][attr]["FX"]
  2581. out[str(fix)+"."+str(attr)+".fx"] = data["ATTRIBUT"][attr]["FX2"]
  2582. return out
  2583. def fx_off(self,fix=None):
  2584. if not fix or fix == "all":
  2585. #self.data.fx.elem[self.attr]["bg"] = "magenta"
  2586. for fix in self.fixtures:
  2587. data = self.fixtures[fix]
  2588. for attr in data["ATTRIBUT"]:
  2589. data["ATTRIBUT"][attr]["FX"] = ""
  2590. data["ATTRIBUT"][attr]["FX2"] = OrderedDict()
  2591. def get_attr(self,fix,attr):
  2592. if fix in self.fixtures:
  2593. data = self.fixtures[fix]
  2594. if "ATTRIBUT" in data:
  2595. if attr in data["ATTRIBUT"]:
  2596. return data["ATTRIBUT"][attr]
  2597. def get_max_dmx_nr(self,fix):
  2598. max_dmx = 0
  2599. used_dmx = 0
  2600. if fix not in self.fixtures:
  2601. return (used_dmx,max_dmx)
  2602. data = self.fixtures[fix]
  2603. used_dmx = len(data["ATTRIBUT"])
  2604. for a in data["ATTRIBUT"]:
  2605. attr = data["ATTRIBUT"][a]
  2606. if "NR" in attr:
  2607. try:
  2608. _n = int(attr["NR"])
  2609. if _n > max_dmx:
  2610. max_dmx=_n
  2611. except ValueError:pass
  2612. return (used_dmx,max_dmx)
  2613. def get_dmx(self,fix,attr):
  2614. #cprint("get_dmx",[fix,attr])
  2615. if fix in self.fixtures:
  2616. data = self.fixtures[fix]
  2617. DMX = -99
  2618. if "DMX" in data:
  2619. DMX = int(data["DMX"])
  2620. if DMX < 1: # ignore attribute with DMX lower 1
  2621. return -22
  2622. else:
  2623. return -1
  2624. if "UNIVERS" in data:
  2625. if int(data["UNIVERS"]) >= 0:
  2626. DMX += (int(data["UNIVERS"])*512)
  2627. else:
  2628. return -33
  2629. adata = self.get_attr(fix,attr)
  2630. #-hier ende 8.2.22
  2631. #cprint("adata",adata,DMX)
  2632. if adata:
  2633. if "NR" in adata:
  2634. NR = adata["NR"]
  2635. if NR >= 1:
  2636. DMX+=NR-1
  2637. else:
  2638. return -44
  2639. return DMX
  2640. return -4
  2641. return -3
  2642. def update_raw(self,rdata,update=1):
  2643. cprint("update_raw",len(rdata))
  2644. cmd = []
  2645. for i,d in enumerate(rdata):
  2646. xcmd = {"DMX":""}
  2647. #print("fix:",i,d)
  2648. fix = d["FIX"]
  2649. attr = d["ATTR"]
  2650. v2 = d["VALUE"]
  2651. v2_fx = d["FX"]
  2652. if fix not in self.fixtures:
  2653. continue
  2654. sdata = self.fixtures[fix] #shortcat
  2655. ATTR = sdata["ATTRIBUT"]
  2656. sDMX = 0
  2657. if sdata["DMX"] > 0:
  2658. #print( sdata)
  2659. sDMX = (sdata["UNIVERS"]*512)+sdata["DMX"]
  2660. #sDMX =sdata["DMX"]
  2661. #else:
  2662. # continue
  2663. if attr not in ATTR:
  2664. continue
  2665. #DMX = FIXTURES.get_dmx(fix)
  2666. if ATTR[attr]["NR"] >= 0:
  2667. DMX = sDMX+ATTR[attr]["NR"]-1
  2668. xcmd["DMX"] = str(DMX)
  2669. else:
  2670. if attr == "DIM" and ATTR[attr]["NR"] < 0:
  2671. xcmd["VIRTUAL"] = {}
  2672. for a in ATTR:
  2673. if ATTR[a]["MASTER"]:
  2674. xcmd["VIRTUAL"][a] = sDMX+ATTR[a]["NR"]-1
  2675. #print( "VIRTUAL",xcmd)
  2676. cmd.append(xcmd)
  2677. v=ATTR[attr]["VALUE"]
  2678. if v2 is not None and update:
  2679. ATTR[attr]["VALUE"] = v2
  2680. if d["FX2"] and update:
  2681. ATTR[attr]["FX2"] = d["FX2"]
  2682. #self.data.elem_attr[fix][attr]["text"] = str(attr)+' '+str(round(v,2))
  2683. text = str(attr)+' '+str(round(v,2))
  2684. #self.gui.update(fix,attr,args={"text":text})
  2685. #print("END 5454 _=_=_=_=_==_")
  2686. #cprint("update_raw",cmd,color="red")
  2687. return cmd
  2688. def encoder(self,fix,attr,xval="",xfade=0,xdelay=0,blind=0):
  2689. _blind = 0
  2690. if modes.val("BLIND"):
  2691. _blind = 1
  2692. if blind:
  2693. _blind = 1
  2694. if not _blind:
  2695. cprint("FIXTURES.encoder",fix,attr,xval,xfade,color="yellow")
  2696. if attr == "CLEAR":
  2697. self.clear()
  2698. return 0
  2699. if attr == "ALL":
  2700. x=self.select(fix,attr,mode="toggle")
  2701. return x
  2702. if attr == "INV-ATTR":
  2703. print("-x-x-x-x-x-x-x-X-")
  2704. x=self.select(fix,attr,mode="swap")
  2705. #x=self.select(fix,"ALL",mode="swap")
  2706. master.refresh_fix()
  2707. return x
  2708. if attr == "INV-FIX":
  2709. print("-x-x-x-x-x-x-x-x-")
  2710. x=self.select(fix,attr,mode="swap")
  2711. #x=self.select(fix,"ALL",mode="swap")
  2712. return x
  2713. out = []
  2714. if fix not in self.fixtures:
  2715. print(" activate Fixture in fixture list on encoder click ")
  2716. #jdata=[{"MODE":"---"}]
  2717. ii =0
  2718. #jclient_send(jdata)
  2719. delay=0
  2720. print("-->A HIER <--")
  2721. sub_data = []
  2722. for fix in self.fixtures:
  2723. ii+=1
  2724. #cprint(fix,attr,xval)
  2725. data = self.fixtures[fix]
  2726. if "-FINE" in attr.upper():
  2727. continue
  2728. elif (attr in data["ATTRIBUT"] ) and "-FINE" not in attr.upper() :
  2729. if xval == "click":
  2730. self.select(fix,attr,mode="on")
  2731. elif data["ATTRIBUT"][attr]["ACTIVE"]:
  2732. if fix: # prevent endless recursion
  2733. #print("------",end="")
  2734. #self.encoder(fix,attr,xval,xfade,delay)
  2735. sub_data.append([fix,attr,xval,xfade,delay])
  2736. if DELAY._is():
  2737. delay += DELAY.val()/100
  2738. sub_jdata = []
  2739. for dd in sub_data:
  2740. #print("---",len(sub_data),end="")
  2741. #self.encoder(fix,attr,xval,xfade,delay)
  2742. _x123 = self.encoder(dd[0],dd[1],dd[2],dd[3],dd[4],blind=1)
  2743. sub_jdata.append(_x123)
  2744. if sub_jdata:
  2745. print("--- SEND MASTER ENCODER:",len(sub_data),sub_data[0],"... _blind:",_blind)#,end="")
  2746. jclient_send(sub_jdata)
  2747. jdata=[{"MODE":ii}]
  2748. print("-->B HIER <--")
  2749. jclient_send(jdata)
  2750. return 0
  2751. data = self.fixtures[fix]
  2752. if xval == "click":
  2753. #cprint(data)
  2754. return self.select(fix,attr,mode="toggle")
  2755. v2=data["ATTRIBUT"][attr]["VALUE"]
  2756. change=0
  2757. increment = 4.11
  2758. jdata = {"MODE":"ENC"}
  2759. if xval == "++":
  2760. v2+= increment
  2761. jdata["INC"] = increment
  2762. change=1
  2763. elif xval == "--":
  2764. jdata["INC"] = increment*-1
  2765. v2-= increment
  2766. change=1
  2767. elif xval == "+":
  2768. increment = 0.5
  2769. v2+= increment
  2770. jdata["INC"] = increment
  2771. change=1
  2772. elif xval == "-":
  2773. increment = 0.5
  2774. jdata["INC"] = increment*-1
  2775. v2-= increment
  2776. change=1
  2777. elif type(xval) is int or type(xval) is float:
  2778. v2 = xval
  2779. change=1
  2780. if v2 < 0:
  2781. v2=0
  2782. elif v2 > 256:
  2783. v2=256
  2784. jdata["VALUE"] = round(v2,4)
  2785. jdata["FIX"] = fix
  2786. jdata["ATTR"] = attr
  2787. jdata["DMX"] = FIXTURES.get_dmx(fix,attr)
  2788. jdata["DMX-FINE"] = FIXTURES.get_dmx(fix,attr+"-FINE")
  2789. out = {}
  2790. if change:
  2791. data["ATTRIBUT"][attr]["ACTIVE"] = 1
  2792. data["ATTRIBUT"]["_ACTIVE"]["ACTIVE"] = 1
  2793. data["ATTRIBUT"][attr]["VALUE"] = round(v2,4)
  2794. jdata["FADE"] = 0
  2795. if xfade:
  2796. jdata["FADE"] = xfade
  2797. if xdelay:
  2798. #if attr not in ["PAN","TILT"] and 1:
  2799. jdata["DELAY"] = xdelay
  2800. if not _blind:
  2801. jdata = [jdata]
  2802. #print("ENC",jdata)
  2803. jclient_send(jdata)
  2804. time.sleep(0.001)
  2805. return jdata
  2806. return v2
  2807. def get_active(self):
  2808. cprint("get_active",self)
  2809. CFG = OrderedDict()
  2810. sdata = OrderedDict()
  2811. sdata["CFG"] = CFG # OrderedDict()
  2812. sdata["CFG"]["FADE"] = FADE.val()
  2813. sdata["CFG"]["DEALY"] = 0
  2814. #sdata["CFG"]["BUTTON"] = "GO"
  2815. for fix in self.fixtures:
  2816. data = self.fixtures[fix]
  2817. for attr in data["ATTRIBUT"]:
  2818. if data["ATTRIBUT"][attr]["ACTIVE"]:
  2819. if fix not in sdata:
  2820. sdata[fix] = {}
  2821. if attr not in sdata[fix]:
  2822. sdata[fix][attr] = OrderedDict()
  2823. if not modes.val("REC-FX"):
  2824. sdata[fix][attr]["VALUE"] = data["ATTRIBUT"][attr]["VALUE"]
  2825. #sdata[fix][attr]["FADE"] = FADE.val() #fade
  2826. else:
  2827. sdata[fix][attr]["VALUE"] = None #data["ATTRIBUT"][attr]["VALUE"]
  2828. if "FX" not in data["ATTRIBUT"][attr]:
  2829. data["ATTRIBUT"][attr]["FX"] =""
  2830. if "FX2" not in data["ATTRIBUT"][attr]:
  2831. data["ATTRIBUT"][attr]["FX2"] ={}
  2832. sdata[fix][attr]["FX"] = data["ATTRIBUT"][attr]["FX"]
  2833. sdata[fix][attr]["FX2"] = data["ATTRIBUT"][attr]["FX2"]
  2834. return sdata
  2835. def get_active2(self):
  2836. pass
  2837. def _deselect_all(self,fix=None):
  2838. cprint("FIXTURES._deselect_all()",fix,"ALL",color="yellow")
  2839. c=0
  2840. if fix in self.fixtures:
  2841. data = self.fixtures[fix]
  2842. for attr in data["ATTRIBUT"]:
  2843. #print("SELECT ALL",fix,attr)
  2844. if "-FINE" in attr.upper():
  2845. pass
  2846. else:
  2847. c+=self.select(fix,attr,mode="off",mute=1)
  2848. return c
  2849. def _select_all(self,fix=None,mode="toggle",mute=0):
  2850. if not mute:
  2851. cprint("FIXTURES._select_all()",fix,"ALL",mode,color="yellow")
  2852. c=0
  2853. if fix in self.fixtures:
  2854. data = self.fixtures[fix]
  2855. for attr in data["ATTRIBUT"]:
  2856. #print("SELECT ALL",fix,attr)
  2857. if "-FINE" in attr.upper():
  2858. continue
  2859. if mode == "toggle":
  2860. c+=self.select(fix,attr,mode="on",mute=mute)
  2861. elif mode == "swap":
  2862. if not attr.startswith("_"):
  2863. c+=self.select(fix,attr,mode="toggle",mute=mute)
  2864. if not c and mode == "toggle": # unselect all
  2865. c= self._deselect_all(fix=fix)
  2866. return c
  2867. def select(self,fix=None,attr=None,mode="on",mute=0):
  2868. if not mute:
  2869. cprint("FIXTURES.select() >>",fix,attr,mode,color="yellow")
  2870. out = 0
  2871. if fix == "SEL":
  2872. if attr.upper() == "INV-ATTR":
  2873. fixs = self.get_active()
  2874. print("selected:",len(fixs))
  2875. for fix in fixs:
  2876. x=self._select_all(fix=fix,mode=mode,mute=1)
  2877. return None
  2878. if fix in self.fixtures:
  2879. if attr.upper() == "ALL":
  2880. x=self._select_all(fix=fix,mode=mode)
  2881. return x
  2882. data = self.fixtures[fix]
  2883. if attr in data["ATTRIBUT"]:
  2884. if mode == "on":
  2885. if not data["ATTRIBUT"][attr]["ACTIVE"]:
  2886. data["ATTRIBUT"][attr]["ACTIVE"] = 1
  2887. data["ATTRIBUT"]["_ACTIVE"]["ACTIVE"] = 1
  2888. out = 1
  2889. elif mode == "off":
  2890. if data["ATTRIBUT"][attr]["ACTIVE"]:
  2891. data["ATTRIBUT"][attr]["ACTIVE"] = 0
  2892. out = 1
  2893. elif mode == "toggle":
  2894. if data["ATTRIBUT"][attr]["ACTIVE"]:
  2895. data["ATTRIBUT"][attr]["ACTIVE"] = 0
  2896. else:
  2897. data["ATTRIBUT"][attr]["ACTIVE"] = 1
  2898. data["ATTRIBUT"]["_ACTIVE"]["ACTIVE"] = 1
  2899. out = 1
  2900. return out
  2901. def clear(self):
  2902. out = 0
  2903. for fix in self.fixtures:
  2904. data = self.fixtures[fix]
  2905. for attr in data["ATTRIBUT"]:
  2906. #if attr.endswith("-FINE"):
  2907. # continue
  2908. if data["ATTRIBUT"][attr]["ACTIVE"]:
  2909. out +=1
  2910. data["ATTRIBUT"][attr]["ACTIVE"] = 0
  2911. return out
  2912. def CFG_CHECKER(sdata):
  2913. "repair CFG "
  2914. ok = 0
  2915. if "CFG" not in sdata:
  2916. sdata["CFG"] = OrderedDict()
  2917. ok += 1
  2918. if "FADE" not in sdata["CFG"]:
  2919. sdata["CFG"]["FADE"] = 4
  2920. ok += 1
  2921. if "DELAY" not in sdata["CFG"]:
  2922. sdata["CFG"]["DELAY"] = 0
  2923. ok += 1
  2924. if "BUTTON" not in sdata["CFG"]:
  2925. sdata["CFG"]["BUTTON"] = "GO"
  2926. ok += 1
  2927. if "HTP-MASTER" not in sdata["CFG"]:
  2928. sdata["CFG"]["HTP-MASTER"] = 100 #%
  2929. ok += 1
  2930. if "SIZE-MASTER" not in sdata["CFG"]:
  2931. sdata["CFG"]["SIZE-MASTER"] = 100 #%
  2932. ok += 1
  2933. if "SPEED-MASTER" not in sdata["CFG"]:
  2934. sdata["CFG"]["SPEED-MASTER"] = 100 #%
  2935. ok += 1
  2936. if "OFFSET-MASTER" not in sdata["CFG"]:
  2937. sdata["CFG"]["OFFSET-MASTER"] = 100 #%
  2938. ok += 1
  2939. #try:del sdata["CFG"]["SPEED-MASTER"] #= 100 #%
  2940. #except:pass
  2941. return ok
  2942. class Presets():
  2943. def __init__(self):
  2944. #super().__init__()
  2945. self.base = Base()
  2946. #self.load()
  2947. self._last_copy = None
  2948. self._last_move = None
  2949. self.fx_buffer = {}
  2950. def load_presets(self):
  2951. #self._load()
  2952. filename="presets"
  2953. #self.base._init()
  2954. d,l = self.base._load(filename)
  2955. for i in d:
  2956. sdata = d[i]
  2957. ok = CFG_CHECKER(sdata)
  2958. self.val_presets = d
  2959. self.label_presets = l
  2960. def check_cfg(self,nr=None):
  2961. cprint("PRESETS.check_cfg()",nr)#,color="red")
  2962. ok = 0
  2963. if nr is not None:
  2964. if nr in self.val_presets:
  2965. sdata = self.val_presets[nr]
  2966. ok += self._check_cfg(sdata)
  2967. else:
  2968. cprint("nr not in data ",nr,color="red")
  2969. else:
  2970. for nr in self.val_presets:
  2971. sdata = self.val_presets[nr]
  2972. ok += self._check_cfg(sdata)
  2973. return ok
  2974. def _check_cfg(self,sdata):
  2975. cprint("PRESETS._check_cfg()")#,color="red")
  2976. ok = CFG_CHECKER(sdata)
  2977. if ok:
  2978. cprint("REPAIR CFG's",ok,sdata["CFG"],color="red")
  2979. return ok
  2980. def backup_presets(self,save_as=""):
  2981. filename = "presets"
  2982. data = self.val_presets
  2983. labels = self.label_presets
  2984. #self.base._init()
  2985. self.base._backup(filename,data,labels,save_as)
  2986. def get_cfg(self,nr):
  2987. cprint("PRESETS.get_cfg()",nr)
  2988. self.check_cfg(nr)
  2989. if nr not in self.val_presets:
  2990. cprint("get_cfg",self,"error get_cfg no nr:",nr,color="red")
  2991. return {}
  2992. if "CFG" in self.val_presets[nr]:
  2993. return self.val_presets[nr]["CFG"]
  2994. def clean(self,nr):
  2995. if nr not in self.val_presets:
  2996. self.val_presets[nr] = OrderedDict()
  2997. #self.val_presets[nr]["VALUE"] = 0
  2998. #self.val_presets[nr]["FX"] = ""
  2999. sdata = self.val_presets[nr]
  3000. for fix in sdata:
  3001. #print("exec.clear()",nr,fix,sdata[fix])
  3002. for attr in sdata[fix]:
  3003. row = sdata[fix][attr]
  3004. if fix == "CFG":
  3005. continue
  3006. if "VALUE" not in row:
  3007. row["VALUE"] = None
  3008. if "FX" not in row:
  3009. row["FX"] = ""
  3010. if "FX2" not in row:
  3011. row["FX2"] = OrderedDict()
  3012. elif row["FX2"]:
  3013. for k in ["SIZE","SPEED","START","OFFSET"]:
  3014. row["FX2"][k] = int( row["FX2"][k] )
  3015. row["FX"] = ""
  3016. if "FX" in row and row["FX"] and not row["FX2"]: # rebuild old FX to Dict-FX2
  3017. #"off:0:0:0:16909:-:"
  3018. x = row["FX"].split(":")
  3019. print("-fx",x,len(x))
  3020. #'FX2': {'TYPE': 'sinus', 'SIZE': 200, 'SPEED': 30, 'START': 0, 'OFFSET': 2805, 'BASE': '-'}}
  3021. if len(x) >= 6:
  3022. row["FX2"]["TYPE"] = x[0]
  3023. row["FX2"]["SIZE"] = int(x[1])
  3024. row["FX2"]["SPEED"] = int(x[2])
  3025. row["FX2"]["START"] = int(x[3])
  3026. row["FX2"]["OFFSET"] = int(x[4])
  3027. row["FX2"]["BASE"] = x[5]
  3028. row["FXOLD"] = row["FX"]
  3029. row["FX"] = ""
  3030. #cprint("exec.clear()",nr,fix,row)
  3031. def get_raw_map(self,nr):
  3032. self.clean(nr)
  3033. print("get_raw_map",nr)
  3034. sdata = self.val_presets[nr]
  3035. cmd = ""
  3036. out = []
  3037. dmx=-1
  3038. for fix in sdata:
  3039. if fix == "CFG":
  3040. #print("CFG",nr,sdata[fix])
  3041. continue
  3042. for attr in sdata[fix]:
  3043. x = {}
  3044. #print("RAW",attr)
  3045. x["FIX"] = fix
  3046. x["ATTR"] = attr
  3047. x["VALUE"] = sdata[fix][attr]["VALUE"]
  3048. x["FX"] = sdata[fix][attr]["FX"]
  3049. x["FX2"] = sdata[fix][attr]["FX2"]
  3050. #x["DMX"] = sdata[fix][attr]["NR"]
  3051. out.append(x)
  3052. return out
  3053. def get_btn_txt(self,nr):
  3054. sdata=self.val_presets[nr]
  3055. BTN="go"
  3056. if "CFG" in sdata:
  3057. if "BUTTON" in sdata["CFG"]:
  3058. BTN = sdata["CFG"]["BUTTON"]
  3059. _label = self.label_presets[nr] # = label
  3060. #txt=str(nr+1)+":"+str(BTN)+":"+str(len(sdata)-1)+"\n"+_label
  3061. #txt=str(nr+1)+" "+str(BTN)+" "+str(len(sdata)-1)+"\n"+_label
  3062. txt="{} {} {}\n{}".format(nr+1,BTN,len(sdata)-1,_label)
  3063. print("get_btn_txt",nr,[txt])
  3064. return txt
  3065. def _btn_cfg(self,nr,txt=None):
  3066. if nr not in self.val_presets:
  3067. return ""
  3068. if "CFG" not in self.val_presets[nr]:
  3069. self.val_presets[nr]["CFG"] = OrderedDict()
  3070. return self.val_presets[nr]["CFG"]
  3071. def btn_cfg(self,nr,txt=None):
  3072. if nr not in self.val_presets:
  3073. return ""
  3074. if "CFG" not in self.val_presets[nr]:
  3075. self.val_presets[nr]["CFG"] = OrderedDict()
  3076. if "BUTTON" not in self.val_presets[nr]["CFG"]:
  3077. self.val_presets[nr]["CFG"]["BUTTON"] = ""
  3078. if type(txt) is str:
  3079. self.val_presets[nr]["CFG"]["BUTTON"] = txt
  3080. if self.val_presets[nr]["CFG"]["BUTTON"] is None:
  3081. self.val_presets[nr]["CFG"]["BUTTON"] = ""
  3082. master._refresh_exec(nr=nr)
  3083. print("EEE", self.val_presets[nr]["CFG"]["BUTTON"] )
  3084. return self.val_presets[nr]["CFG"]["BUTTON"]
  3085. def label(self,nr,txt=None):
  3086. if nr not in self.label_presets:
  3087. return ""
  3088. if type(txt) is str:
  3089. self.label_presets[nr] = txt
  3090. print("set label",nr,[txt])
  3091. print("??? ?? set label",nr,[txt])
  3092. return self.label_presets[nr]
  3093. def clear_move(self):
  3094. cprint("PRESETS.clear_move()",end=" ")
  3095. self.clear_copy()
  3096. def clear_copy(self):
  3097. cprint("PRESETS.clear_copy()",end=" ")
  3098. if self._last_copy is not None:
  3099. cprint("=OK=",color="red")
  3100. self._last_copy = None
  3101. else:
  3102. cprint("=NONE=",color="green")
  3103. def copy(self,nr,overwrite=1):
  3104. cprint("PRESETS._copy",nr,"last",self._last_copy)
  3105. if nr >= 0:
  3106. if self._last_copy is not None:
  3107. if modes.val("COPY"):
  3108. modes.val("COPY",3)
  3109. ok = self._copy(self._last_copy,nr,overwrite=overwrite)
  3110. return ok #ok
  3111. else:
  3112. if modes.val("COPY"):
  3113. modes.val("COPY",2)
  3114. self._last_copy = nr
  3115. cprint("PRESETS.copy START ",color="red")
  3116. return 0
  3117. return 1 # on error reset move
  3118. def _copy(self,nr_from,nr_to,overwrite=1):
  3119. cprint("PRESETS._copy",nr_from,"to",nr_to)
  3120. self.check_cfg(nr_from)
  3121. if type(self._last_copy) is None:
  3122. cprint("PRESETS._copy last nr is None",color="red")
  3123. return 0
  3124. cprint("------ PRESETS._copy", nr_from in self.val_presets , nr_to in self.val_presets)
  3125. if nr_from in self.val_presets and nr_to in self.val_presets:
  3126. fdata = self.val_presets[nr_from]
  3127. tdata = self.val_presets[nr_to]
  3128. #cprint(fdata)
  3129. flabel = self.label_presets[nr_from]
  3130. tlabel = self.label_presets[nr_to]
  3131. self.val_presets[nr_to] = copy.deepcopy(fdata)
  3132. self.label_presets[nr_to] = flabel
  3133. if not overwrite: #default
  3134. cprint("overwrite",overwrite)
  3135. self.val_presets[nr_from] = copy.deepcopy(tdata)
  3136. self.label_presets[nr_from] = tlabel
  3137. #self.label_presets[nr_from] = "MOVE"
  3138. self.clear_copy()
  3139. cprint("PRESETS.copy OK",color="green")
  3140. return 1
  3141. def move(self,nr):
  3142. cprint("PRESETS.move",self._last_copy,"to",nr)
  3143. if nr >= 0:
  3144. last = self._last_copy
  3145. if modes.val("MOVE"):
  3146. modes.val("MOVE",2)
  3147. ok= self.copy(nr,overwrite=0)
  3148. if ok and last >= 0:
  3149. if modes.val("MOVE"):
  3150. modes.val("MOVE",3)
  3151. cprint("PRESETS.move OK",color="red")
  3152. #self.delete(last)
  3153. return ok,nr,last #ok
  3154. return 0,nr,last # on error reset move
  3155. def delete(self,nr):
  3156. cprint("PRESETS.delete",nr)
  3157. ok=0
  3158. if nr in self.val_presets:
  3159. self.val_presets[nr] = OrderedDict()
  3160. self.label_presets[nr] = "-"
  3161. ok = 1
  3162. self.check_cfg(nr)
  3163. return ok
  3164. def rec(self,nr,data,arg=""):
  3165. cprint("rec",self,"rec()",len(data),arg)
  3166. self.check_cfg(nr)
  3167. self._check_cfg(data) #by ref
  3168. odata=self.val_presets[nr]
  3169. #print("odata",odata)
  3170. if "CFG" in odata:
  3171. if "BUTTON" in odata["CFG"]:
  3172. data["CFG"]["BUTTON"] = odata["CFG"]["BUTTON"]
  3173. self.val_presets[nr] = data
  3174. return 1
  3175. class FixtureEditor():
  3176. def __init__(self,dmx=1):
  3177. pass
  3178. self.elem=[]
  3179. self.dmx=dmx
  3180. print("init FixtureEditor",dmx)
  3181. def event(self,a1="",a2=""):
  3182. print([self.dmx,a1,a2])
  3183. j=[]
  3184. jdata = {'VALUE': int(a1), 'args': [] , 'FADE': 0,'DMX': str(self.dmx)}
  3185. j.append(jdata)
  3186. jclient_send(j)
  3187. class MasterWing():
  3188. def __init__(self,dmx=1):
  3189. pass
  3190. self.elem=[]
  3191. self.dmx=dmx
  3192. print("init MasterWing",dmx)
  3193. def event(self,a1="",a2=""):
  3194. print([self.dmx,a1,a2])
  3195. jdata = {'CMD': "MASTER", 'NAME': str(a1),'VALUE':str(a2) }
  3196. j=[]
  3197. j.append(jdata)
  3198. jclient_send(j)
  3199. class BufferVar():
  3200. def __init__(self,elem):
  3201. self.elem = elem
  3202. def change_dmx(self,event=""):
  3203. nr=1
  3204. txt=""
  3205. def cb(data):
  3206. txt = data["Value"]
  3207. dialog._cb = _cb
  3208. dialog.askstring("FADER-DMX-START",""+str(nr+1),initialvalue=txt)
  3209. print("change_dmx",[event,self])
  3210. # GUI_FaderLayout():
  3211. lf_nr = 0
  3212. from tkinter import PhotoImage
  3213. _shift_key = 0
  3214. class Window():
  3215. def __init__(self,args): #title="title",master=0,width=100,height=100,left=None,top=None,exit=0,cb=None,resize=1):
  3216. global lf_nr
  3217. self.args = {"title":"title","master":0,"width":100,"height":100,"left":None,"top":None,"exit":0,"cb":None,"resize":1}
  3218. self.args.update(args)
  3219. cprint("Window.init()",id(self.args),color="yellow")
  3220. cprint(" ",self.args,color="yellow")
  3221. ico_path="./icon/"
  3222. self.cb = cb
  3223. if self.args["master"]:
  3224. self.tk = tkinter.Tk()
  3225. self.tk.protocol("WM_DELETE_WINDOW", self.close_app_win)
  3226. self.tk.withdraw() # do not draw
  3227. self.tk.resizable(self.args["resize"],self.args["resize"])
  3228. defaultFont = tkinter.font.nametofont("TkDefaultFont")
  3229. print(defaultFont)
  3230. defaultFont.configure(family="FreeSans",
  3231. size=10,
  3232. weight="bold")
  3233. # MAIN MENUE
  3234. try:
  3235. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"main.png"))
  3236. except Exception as e:
  3237. print("Exception GUIWindow.__init__",e)
  3238. else:
  3239. # addtional WINDOW
  3240. self.tk = tkinter.Toplevel()
  3241. self.tk.iconify()
  3242. #self.tk.withdraw() # do not draw
  3243. self.tk.protocol("WM_DELETE_WINDOW", self.close_app_win)
  3244. self.tk.resizable(self.args["resize"],self.args["resize"])
  3245. try:
  3246. if "COLORPICKER" in self.args["title"]:
  3247. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"picker.png"))
  3248. elif "ENCODER" in self.args["title"]:
  3249. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"enc.png"))
  3250. elif "EXEC" in self.args["title"]:
  3251. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"exec.png"))
  3252. elif "FX" in self.args["title"]:
  3253. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"fx.png"))
  3254. else:
  3255. self.tk.iconphoto(False, tk.PhotoImage(file=ico_path+"scribble.png"))
  3256. except Exception as e:
  3257. print("Exception on load window icon",self.args["title"])
  3258. print("Exception:",e)
  3259. #time.sleep(3)
  3260. self.tk.deiconify()
  3261. self.tk["bg"] = "black"
  3262. self.tk.bind("<Button>",self.callback)
  3263. self.tk.bind("<Key>",self.callback)
  3264. self.tk.bind("<KeyRelease>",self.callback)
  3265. self.tk.title(""+str(self.args["title"])+" "+str(lf_nr)+":"+str(rnd_id))
  3266. lf_nr+=1
  3267. #self.tk.geometry("270x600+0+65")
  3268. geo ="{}x{}".format(self.args["width"],self.args["height"])
  3269. if self.args["left"] is not None:
  3270. geo += "+{}".format(self.args["left"])
  3271. if self.args["top"] is not None:
  3272. geo += "+{}".format(self.args["top"])
  3273. #self._event_clear = Xevent(fix=0,elem=None,attr="CLEAR",data=self,mode="ROOT").cb
  3274. self.tk.geometry(geo)
  3275. self.show()
  3276. def update_idle_task(self):
  3277. if INIT_OK:
  3278. tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  3279. pass
  3280. def close_app_win(self,event=None):
  3281. cprint("close_app_win",self,event,self.args["title"],color="red")
  3282. if exit:
  3283. if self.title == "MAIN":
  3284. save_window_position()
  3285. self.tk.destroy()
  3286. try:
  3287. self.cb("<exit>").cb()
  3288. except Exception as e:
  3289. cprint("EXCETPION: close_app_win",e,self,color="red")
  3290. def title(self,title=None):
  3291. if title is None:
  3292. return self.tk.title()
  3293. else:
  3294. #return self.tk.title(title)
  3295. self.args["title"] = title
  3296. return self.tk.title(""+str(self.args["title"])+" "+str(lf_nr)+":"+str(rnd_id))
  3297. def show(self):
  3298. self.tk.deiconify()
  3299. pass
  3300. def mainloop(self):
  3301. #save_window_position_loop() #like autosave
  3302. try:
  3303. self.tk.mainloop()
  3304. finally:
  3305. self.tk.quit()
  3306. def callback(self,event,data={}):#value=255):
  3307. global _global_short_key
  3308. #time.sleep(0.1)
  3309. if not _global_short_key:
  3310. #cprint("<GLOBAL-GUI-EVENT-DISABLED>",event,color="red")
  3311. return 1
  3312. global _shift_key
  3313. #cprint("<GUI>",event,color="yellow")
  3314. value = 255
  3315. if "Release" in str(event.type) or str(event.type) == '5' or str(event.type) == '3':
  3316. value = 0
  3317. #cprint("<GUI>",event.state,data,value,[event.type,event.keysym],color="yellow")
  3318. if "keysym" in dir(event):
  3319. if "Escape" == event.keysym:
  3320. FIXTURES.clear()
  3321. modes.val("ESC",1)
  3322. master.refresh_fix()
  3323. elif event.keysym in ["Shift_L","Shift_R"]:
  3324. #cprint(event.type)
  3325. if "KeyRelease" in str(event.type) or str(event.type) in ["3"]:
  3326. _shift_key = 0
  3327. else:
  3328. _shift_key = 1
  3329. #cprint("SHIFT_KEY",_shift_key,"??????????")
  3330. #cprint("SHIFT_KEY",_shift_key,"??????????")
  3331. global _ENCODER_WINDOW
  3332. if _shift_key:
  3333. _ENCODER_WINDOW.title("SHIFT/FINE ")
  3334. else:
  3335. _ENCODER_WINDOW.title("ENCODER")
  3336. elif event.keysym in "ebfclrms" and value:
  3337. if "e" == event.keysym:
  3338. modes.val("EDIT",1)
  3339. elif "b" == event.keysym:
  3340. modes.val("BLIND",1)
  3341. elif "f" == event.keysym:
  3342. modes.val("FLASH",1)
  3343. elif "c" == event.keysym:
  3344. modes.val("CFG-BTN",1)
  3345. elif "l" == event.keysym:
  3346. modes.val("LABEL",1)
  3347. elif "r" == event.keysym:
  3348. modes.val("REC",1)
  3349. elif "m" == event.keysym:
  3350. x=modes.val("MOVE",1)
  3351. if not x:
  3352. PRESETS.clear_move()
  3353. elif "s" == event.keysym:
  3354. modes.val("SELECT",1)
  3355. elif event.keysym in ["F1","F2","F3","F4","F5","F6","F7","F8","F9","F10","F11","F12"]:
  3356. nr = int( event.keysym[1:]) # F:1-12
  3357. nr = nr-1+81
  3358. cprint("F-KEY",value,nr,event.keysym)
  3359. #print(event)
  3360. master.preset_go(nr-1,xfade=None,val=value)
  3361. elif event.keysym in ["1","2","3","4","5","6","7","8","9","0"]:
  3362. nr = int( event.keysym)
  3363. if nr == 0:
  3364. nr = 10
  3365. nr = nr-1+161
  3366. cprint("NUM-KEY",value,nr)
  3367. master.preset_go(nr-1,xfade=None,val=value)
  3368. elif "numbersign" == event.keysym and value: # is char "#"
  3369. print("numbersign !!")
  3370. e = master.commands.elem["SAVE\nSHOW"]
  3371. print(e)
  3372. PRESETS.backup_presets()
  3373. FIXTURES.backup_patch()
  3374. save_window_position()
  3375. b = BLINKI(e)
  3376. b.blink()
  3377. #e = Xevent(fix=0,elem=None,attr="SAVE\nSHOW",mode="SETUP")
  3378. #e.cb(event=event)
  3379. elif "End" == event.keysym:
  3380. FIXTURES.fx_off("all")
  3381. CONSOLE.fx_off("all")
  3382. CONSOLE.flash_off("all")
  3383. elif "Delete" == event.keysym:
  3384. #PRESETS.delete(nr)
  3385. if value:
  3386. modes.val("DEL",1)
  3387. class WindowManager():
  3388. def __init__(self):
  3389. self.windows = {}
  3390. self.obj = {}
  3391. self.nr= 0
  3392. self.first=""
  3393. def new(self,w,name="",obj=None):
  3394. if not self.first:
  3395. if name:
  3396. self.first = name
  3397. else:
  3398. self.first = str(self.nr)
  3399. w.tk.state(newstate='normal')
  3400. w.tk.attributes('-topmost',True)
  3401. if name:
  3402. self.windows[str(name)] = w
  3403. self.obj[str(name)] = obj
  3404. else:
  3405. self.windows[str(self.nr)] = w
  3406. self.obj[str(self.nr)] = obj
  3407. self.nr+=1
  3408. #w.show()
  3409. def mainloop(self):
  3410. self.windows[self.first].mainloop()
  3411. def get(self,name):
  3412. print(self,".get(name) =",name)
  3413. name = str(name)
  3414. if name in self.windows:
  3415. out = self.windows[name]
  3416. print(out)
  3417. return out
  3418. def get_obj(self,name):
  3419. #print(self,".get(name) =",name)
  3420. name = str(name)
  3421. if name in self.windows:
  3422. out = self.obj[name]
  3423. #print(out)
  3424. return out
  3425. def top(self,name):
  3426. name = str(name)
  3427. for n in self.windows:
  3428. print("TOP",n) #self.get("")
  3429. if name in self.windows:
  3430. self.windows[name].tk.state(newstate='normal')
  3431. self.windows[name].tk.attributes('-topmost',True)
  3432. self.windows[name].tk.attributes('-topmost',False)
  3433. self.windows[name].tk.update_idletasks()# gui_menu_gui.tk)
  3434. #print("redraw",name)
  3435. #if name == "PATCH":
  3436. # gui_patch.draw()
  3437. #if name == "DIMMER":
  3438. # gui_fix.draw()
  3439. if name == "EXEC":
  3440. master._refresh_exec()
  3441. #self.windows[name].tk.update_idletasks()# gui_menu_gui.tk)
  3442. tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  3443. else:
  3444. print(name,"not in self.windows",self.windows.keys())
  3445. class Console():
  3446. def __init__(self):
  3447. pass
  3448. def flash_off(self,fix):
  3449. pass#client.send("df0:alloff:::,")
  3450. def fx_off(self,fix):
  3451. cprint("Console.fx_off()",fix)
  3452. if not fix or fix == "all":
  3453. #client.send("fx0:alloff:,fxf:alloff:,")
  3454. #client.send("df0:alloff:::,")
  3455. j = []
  3456. if 0:
  3457. jdata = {'VALUE': None, 'args': [], 'FX': 'alloff::::', 'FADE': 2, 'DMX': '0'}
  3458. j.append(jdata)
  3459. jdata = {'VALUE': None, 'args': [], 'FX': 'alloff::::', 'FADE': 2,'FLASH':1, 'DMX': '0'}
  3460. j.append(jdata)
  3461. else:
  3462. jdata = {'VALUE': None, 'args': [], 'FX2': {"TYPE":"alloff"}, 'FADE': 2,'FLASH':1, 'DMX': '1'}
  3463. j.append(jdata)
  3464. jclient_send(j)
  3465. return 0
  3466. def test_1():
  3467. #LibreLight --no-gui --show=unitest --dmx-out=on --exec="sel fix 1-10; go preset 2; encoder DIM sel; encoder DIM ++"
  3468. pass
  3469. window_manager = WindowManager()
  3470. CONSOLE = Console()
  3471. PRESETS = Presets()
  3472. FIXTURES = Fixtures()
  3473. def LOAD_SHOW():
  3474. PRESETS.load_presets()
  3475. FIXTURES.load_patch()
  3476. #draw_enc(gui,root2)
  3477. #master._refresh_fix()
  3478. #master._refresh_exec()
  3479. LOAD_SHOW()
  3480. master = MASTER()
  3481. class Refresher():
  3482. def __init__(self):
  3483. self.time = time.time()
  3484. self.time_max = time.time()
  3485. self.time_delta = 15
  3486. self.update = 1
  3487. self.name = "fix" # exec
  3488. def reset(self):
  3489. self.time = time.time() #+.1
  3490. self.update = 1
  3491. def refresh(self):
  3492. #print("refresh",self.update,int((self.time-time.time())*1000))
  3493. #if self.time_max+self.time_delta < time.time():
  3494. # #print("----- MAX REFRES TIMEOUT -----")
  3495. # self._refresh()
  3496. if self.update:
  3497. if self.time+self.time_delta < time.time():
  3498. self._refresh()
  3499. else:
  3500. self.time = time.time() #+.1
  3501. def _refresh(self):
  3502. print(self,"_refresh()")
  3503. if not INIT_OK:
  3504. return
  3505. self.time_max = time.time()
  3506. self.time = time.time()
  3507. self.update = 0
  3508. try:
  3509. if self.name == "fix": # exec
  3510. master._refresh_fix()
  3511. else:
  3512. master._refresh_exec()
  3513. except Exception as e:
  3514. print("_refresh except:",e)
  3515. traceback.print_exc()
  3516. print()
  3517. print("t=",self.time_max- time.time())
  3518. def loop(self,args={}):
  3519. while 1:
  3520. try:
  3521. if INIT_OK:
  3522. self.refresh()
  3523. tkinter.Tk.update_idletasks(gui_menu_gui.tk)
  3524. except Exception as e:
  3525. print("loop exc",e)
  3526. traceback.print_exc()
  3527. cprint("== cb EXCEPT",e,color="red")
  3528. cprint("Error on line {}".format(sys.exc_info()[-1].tb_lineno),color="red")
  3529. cprint(''.join(traceback.format_exception(None, e, e.__traceback__)),color="red")
  3530. time.sleep(0.2)
  3531. print("main",__name__)
  3532. __run_main = 0
  3533. if __name__ == "__main__":
  3534. __run_main = 1
  3535. else:
  3536. import __main__
  3537. if "unittest" not in dir(__main__):
  3538. __run_main = 1
  3539. refresher_fix = Refresher()
  3540. refresher_fix.time_delta = 0.25
  3541. refresher_fix.name = "fix"
  3542. refresher_exec = Refresher()
  3543. refresher_exec.time_delta = 10 #0
  3544. refresher_exec.name = "exec"
  3545. def loops(**args):
  3546. time.sleep(15) # wait until draw all window's
  3547. thread.start_new_thread(refresher_fix.loop,())
  3548. thread.start_new_thread(refresher_exec.loop,())
  3549. class window_create_buffer():
  3550. def __init__(self,args,cls,data,cb_ok=None,scroll=0,gui=None):
  3551. self.args = args.copy()
  3552. self.cls = cls
  3553. self.cb_ok = cb_ok
  3554. self.data = data
  3555. self.scroll = scroll
  3556. self.gui = gui
  3557. def create(self):
  3558. cprint()
  3559. cprint("window_create_buffer.create()",id(self),self.args["title"],color="green")
  3560. obj = None
  3561. w = Window(self.args)
  3562. if self.scroll:
  3563. w1 = ScrollFrame(w.tk,width=self.args["width"],height=self.args["height"])
  3564. else:
  3565. w1 = tk.Frame(w.tk,width=self.args["width"],height=self.args["height"])
  3566. w1.pack()
  3567. if self.gui:
  3568. self.cls(self.gui,w1,self.data) #PRESETS):
  3569. else:
  3570. obj=self.cls(w1,self.data)
  3571. return w,obj,self.cb_ok
  3572. window_init_buffer = {}
  3573. if __run_main:
  3574. print("main")
  3575. #thread.start_new_thread(refresher_fix.loop,())
  3576. #thread.start_new_thread(refresher_exec.loop,())
  3577. TOP = _POS_TOP + 15
  3578. L0 = _POS_LEFT
  3579. L1 = _POS_LEFT + 95
  3580. L2 = _POS_LEFT + 920
  3581. W1 = 810
  3582. H1 = 550
  3583. HTB = 23 # hight of the titlebar from window manager
  3584. #w = Window("MAIN",master=1,width=95,height=H1//2,left=L0,top=TOP,resize=0)
  3585. args = {"title":"MAIN","master":1,"width":100,"height":H1,"left":L0,"top":TOP,"resize":1}
  3586. #w = Window("MAIN",master=1,width=100,height=H1,left=L0,top=TOP,resize=1)
  3587. w = Window(args)
  3588. gui_menu_gui = w
  3589. data = []
  3590. #data.append({"text":"COMMAND"})
  3591. #data.append({"text":"CONFIG"})
  3592. data.append({"text":"PATCH"})
  3593. data.append({"text":"DIMMER"})
  3594. data.append({"text":"FIXTURES"})
  3595. data.append({"text":"EXEC","name":"EXEC-BTN"})
  3596. data.append({"text":"EXEC-WING"})
  3597. data.append({"text":"---"})
  3598. data.append({"text":"ENCODER"})
  3599. data.append({"text":"COMMAND"})
  3600. data.append({"text":"COLORPICKER","name":"COLOR"})
  3601. data.append({"text":"FX"})
  3602. gui_menu = GUI_menu(w.tk,data)
  3603. window_manager = gui_menu.window_manager #= window_manager
  3604. window_manager.new(w)
  3605. name="EXEC"
  3606. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3607. cls = draw_exec #GUI_ExecWingLayout
  3608. cb_ok = None #set_exec_fader_all
  3609. data = PRESETS
  3610. c = window_create_buffer(args=args,cls=cls,data=data,cb_ok=cb_ok,scroll=1,gui=master)
  3611. window_init_buffer[name] = c
  3612. w,obj,cb_ok = c.create()
  3613. window_manager.new(w,name,obj=obj)
  3614. if cb_ok:
  3615. cb_ok()
  3616. if 0: # draw EXEC -BTN second time fail TODO
  3617. c = window_create_buffer(args=args,cls=cls,data=data,cb_ok=cb_ok,scroll=1,gui=master)
  3618. window_init_buffer[name] = c
  3619. w,obj,cb_ok = c.create()
  3620. window_manager.update(w,name,obj=obj)
  3621. name="CONFIG"
  3622. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3623. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3624. w = Window(args)
  3625. w1 = ScrollFrame(w.tk,width=W1,height=H1)
  3626. #frame_exe = w.tk
  3627. draw_config(master,w1)#.tk)#Xroot)
  3628. #draw_enc(master,w.tk)#Xroot)
  3629. #draw_preset(master,w1)#w.tk)
  3630. window_manager.new(w,name)
  3631. name="DIMMER"
  3632. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3633. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3634. w = Window(args)
  3635. w2 = ScrollFrame(w.tk,width=W1,height=H1)
  3636. #frame_dim = w1 # w.tk
  3637. #master.draw_dim(w1.tk)
  3638. window_manager.new(w,name)
  3639. name="FIXTURES"
  3640. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3641. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3642. w = Window(args)
  3643. w1 = ScrollFrame(w.tk,width=W1,height=H1)
  3644. #frame_fix = w1 #w.tk
  3645. #draw_fix(master,w1,w2)#.tk)
  3646. gui_fix = GUI_FIX(master,w1,w2)
  3647. gui_fix.draw(FIXTURES)
  3648. window_manager.new(w,name)
  3649. name="FIXTURE-EDITOR"
  3650. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3651. w = Window(args)
  3652. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3653. w1 = ScrollFrame(w.tk,width=W1,height=H1)
  3654. data=[]
  3655. for i in range((24+12)*15):
  3656. data.append({"text"+str(i):"test"})
  3657. GUI_FaderLayout(w1,data)
  3658. window_manager.new(w,name)
  3659. name="MASTER-WING"
  3660. #w = Window(name,master=0,width=730,height=205,left=L1-80,top=TOP+H1-200)
  3661. #w = Window(name,master=0,width=75,height=405,left=L0,top=TOP+H1-220)
  3662. args = {"title":name,"master":0,"width":75,"height":405,"left":L0,"top":TOP+H1-220}
  3663. w = Window(args)
  3664. #w1 = ScrollFrame(w.tk,width=W1,height=H1)
  3665. w1 = tk.Frame(w.tk,width=W1,height=H1)
  3666. w1.pack()
  3667. data=[]
  3668. for i in range(2):
  3669. data.append({"MASTER"+str(i):"MASTER"})
  3670. GUI_MasterWingLayout(w1,data)
  3671. window_manager.new(w,name)
  3672. name="EXEC-WING"
  3673. args = {"title":name,"master":0,"width":600,"height":415,"left":L1,"top":TOP+H1+HTB*2,"H1":H1,"W1":W1}
  3674. data=[]
  3675. for i in range(10*3):
  3676. data.append({"EXEC"+str(i):"EXEC"})
  3677. cls = GUI_ExecWingLayout
  3678. cb_ok = set_exec_fader_all
  3679. c = window_create_buffer(args=args,cls=cls,data=data,cb_ok=cb_ok)
  3680. window_init_buffer[name] = c
  3681. w,obj,cb_ok = c.create()
  3682. window_manager.new(w,name,obj)
  3683. if cb_ok:
  3684. cb_ok()
  3685. name="ENCODER"
  3686. #w = Window(name,master=0,width=620,height=113,left=L0+710,top=TOP+H1+15+HTB*2)
  3687. args = {"title":name,"master":0,"width":620,"height":113,"left":L0+710,"top":TOP+H1+15+HTB*2}
  3688. w = Window(args)
  3689. _ENCODER_WINDOW = w
  3690. draw_enc(master,w.tk)#Xroot)
  3691. window_manager.new(w,name)
  3692. #name="REMOTE-CONTROL"
  3693. #w = Window(name,master=0,width=220,height=113,left=L0+710,top=TOP+H1+HTB*2+123)
  3694. #_ENCODER_WINDOW = w
  3695. #draw_enc(master,w.tk)#Xroot)
  3696. name = "SETUP"
  3697. #w = Window(name,master=0,width=415,height=42,left=L1+10+W1,top=TOP,resize=0)
  3698. args = {"title":name,"master":0,"width":415,"height":42,"left":L1+10+W1,"top":TOP,"resize":0}
  3699. w = Window(args)
  3700. w.tk.title("SETUP SHOW:"+master.base.show_name)
  3701. draw_setup(master,w.tk)
  3702. window_manager.new(w,name)
  3703. name = "COMMAND"
  3704. args = {"title":name,"master":0,"width":415,"height":130,"left":L1+10+W1,"top":TOP+81,"resize":0}
  3705. w = Window(args)
  3706. #w = Window(name,master=0,width=415,height=130,left=L1+10+W1,top=TOP+81,resize=0)#+96)
  3707. draw_command(master,w.tk)
  3708. window_manager.new(w,name)
  3709. name = "LIVE"
  3710. #w = Window(name,master=0,width=415,height=42,left=L1+10+W1,top=TOP+235,resize=0)#250)
  3711. args = {"title":name,"master":0,"width":415,"height":42,"left":L1+10+W1,"top":TOP+235,"resize":0}
  3712. w = Window(args)
  3713. draw_live(master,w.tk)
  3714. window_manager.new(w,name)
  3715. name = "CLOCK"
  3716. #w = Window(name,master=0,width=335,height=102,left=L1+10+W1+80,top=TOP+H1+HTB+160,resize=0)#250)
  3717. args = {"title":name,"master":0,"width":335,"height":102,"left":L1+10+W1+80,"top":TOP+H1+HTB+160,"resize":0}
  3718. w = Window(args)
  3719. cclock = X_CLOCK()
  3720. cclock.draw_clock(master,w.tk)
  3721. window_manager.new(w,name)
  3722. name="FX"
  3723. #w = Window(name,master=0,width=415,height=297,left=L1+10+W1,top=TOP+302,resize=0)#317)
  3724. args = {"title":name,"master":0,"width":415,"height":297,"left":L1+10+W1,"top":TOP+302,"resize":0}
  3725. w = Window(args)
  3726. #frame_fx = w.tk
  3727. draw_fx(master,w.tk)
  3728. window_manager.new(w,name)
  3729. name="PATCH"
  3730. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3731. args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
  3732. w = Window(args)
  3733. w1 = ScrollFrame(w.tk,width=W1,height=H1)
  3734. main_preset_frame = w1
  3735. gui_patch = GUI_PATCH(master,main_preset_frame)
  3736. gui_patch.draw(FIXTURES)
  3737. window_manager.new(w,name)
  3738. #LibreLightDesk
  3739. name="COLORPICKER"
  3740. #w = Window(name,master=0,width=600,height=113,left=L1+5,top=TOP+5+HTB*2+H1)
  3741. args = {"title":name,"master":0,"width":600,"height":113,"left":L1+5,"top":TOP+5+HTB*2+H1}
  3742. w = Window(args)
  3743. draw_colorpicker(master,w.tk,FIXTURES,master)
  3744. window_manager.new(w,name)
  3745. name="TableA"
  3746. #w = Window(name,master=0,width=W1,height=H1,left=L1,top=TOP)
  3747. #space_font = tk.font.Font(family="FreeSans", size=1 ) #, weight="bold")
  3748. #x=TableFrame(root=w.tk)#,left=80,top=620)
  3749. #w.show()
  3750. #data =[]
  3751. #for a in range(40):
  3752. # data.append(["E","E{}".format(a+1)])
  3753. #x.draw(data=data,head=["E","C"],config=[12,5,5])
  3754. #w=x.bframe
  3755. #window_manager.new(w,name)
  3756. #Xroot = tk.Tk()
  3757. #Xroot["bg"] = "black" #white
  3758. #Xroot.title( xtitle+" "+str(rnd_id) )
  3759. #Xroot.geometry("1024x800+130+65")
  3760. master.render()
  3761. window_manager.top("Table")
  3762. #w = frame_fix #Window("OLD",master=0,width=W1,height=500,left=130,top=TOP)
  3763. window_manager.new(w,name)
  3764. load_window_position()
  3765. #thread.start_new_thread(refresher_fix.loop,())
  3766. #thread.start_new_thread(refresher_exec.loop,())
  3767. thread.start_new_thread(loops,())
  3768. try:
  3769. #root.mainloop()
  3770. #tk.mainloop()
  3771. window_manager.mainloop()
  3772. finally:
  3773. master.exit()