Browse Source

fix: default color for KDE-PLASMA-DARK

micha 11 months ago
parent
commit
96c6e9c784
4 changed files with 75 additions and 6 deletions
  1. 6 2
      3d/stage_3d.py
  2. 58 0
      _LibreLightDesk.py
  3. 2 0
      lib/libtk.py
  4. 9 4
      vpu/vpu_live.py

+ 6 - 2
3d/stage_3d.py

@@ -166,17 +166,20 @@ def event_read():
                 if event.mod == 1:
                     move_x = -inc
                 else:
+                    move_x = -inc
                     rot_z = -1
             if event.key == pg.K_UP:
                 if event.mod == 1:
                     move_z = inc
                 else:
-                    rot_x = 1
+                    move_z = inc
+                    #rot_x = 1
             if event.key == pg.K_DOWN:
                 if event.mod == 1:
                     move_z = -inc
                 else:
-                    rot_x = -1
+                    #rot_x = -1
+                    move_z = -inc
         
         gl.glTranslatef(move_x,move_z,move_y)
         a = 0
@@ -201,6 +204,7 @@ def event_read():
 pg.display.init()
 pg.key.set_repeat(1,100)
 pg.display.set_caption('LibreLight 3D Stage (Demo!)')
+pg.display.set_caption('SDL-Stage (Demo!)')
 display= (400,400)
 display= (800,600)
 pg.display.set_mode(display,pg.DOUBLEBUF|pg.OPENGL)

+ 58 - 0
_LibreLightDesk.py

@@ -3071,6 +3071,14 @@ if __run_main:
     data.append({"text":"SDL-MIDI"})
     data.append({"text":"CLOCK"})
     data.append({"text":"SDL-DMX"})
+    data.append({"text":"---"})
+    data.append({"text":"---"})
+    data.append({"text":"---"})
+    data.append({"text":"---"})
+    data.append({"text":"- DEMO -"})
+    data.append({"text":"---"})
+    data.append({"text":"SDL-STAGE"})
+    data.append({"text":"SDL-Shader"})
 
     #data.append({"text":"MASTER-WING"})
 
@@ -3166,6 +3174,56 @@ if __run_main:
     if libwin.split_window_show(pos_list,_filter=name):
         window_manager.top(name)
 
+    name="SDL-STAGE"
+    def sdl_config():
+        cmd="/usr/bin/python3 /opt/LibreLight/Xdesk//3d/stage_3d.py " #&"
+        print(cmd)
+        #os.popen(cmd)
+
+        def xyz123(cmd):
+            os.system(cmd)
+        thread.start_new_thread(xyz123,(cmd,))
+        return [None,None,None]
+    #class window_create_sdl_buffer():
+    args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
+    geo = libwin.split_window_position(pos_list,name)
+    if geo:
+        args.update(geo)
+
+    data = []
+    cls = sdl_config #: None #GUI_CONF
+    cb_ok = None
+
+    c = window_create_sdl_buffer(args=args,cls=cls,data=data,cb_ok=cb_ok,gui=master,scroll=1)
+    window_manager.new(None,name,wcb=c)
+    if libwin.split_window_show(pos_list,_filter=name):
+        window_manager.top(name)
+
+
+    name="SDL-Shader"
+    def sdl_config():
+        cmd="/usr/bin/python3 /opt/LibreLight/Xdesk//3d/demo_shaders.py " #&"
+        print(cmd)
+        #os.popen(cmd)
+
+        def xyz123(cmd):
+            os.system(cmd)
+        thread.start_new_thread(xyz123,(cmd,))
+        return [None,None,None]
+    #class window_create_sdl_buffer():
+    args = {"title":name,"master":0,"width":W1,"height":H1,"left":L1,"top":TOP}
+    geo = libwin.split_window_position(pos_list,name)
+    if geo:
+        args.update(geo)
+
+    data = []
+    cls = sdl_config #: None #GUI_CONF
+    cb_ok = None
+
+    c = window_create_sdl_buffer(args=args,cls=cls,data=data,cb_ok=cb_ok,gui=master,scroll=1)
+    window_manager.new(None,name,wcb=c)
+    if libwin.split_window_show(pos_list,_filter=name):
+        window_manager.top(name)
 
     name="FIX-LIST"
     def sdl_config():

+ 2 - 0
lib/libtk.py

@@ -62,6 +62,8 @@ class Window():
             self.tk.protocol("WM_DELETE_WINDOW", self.close_app_win)
             self.tk.withdraw() # do not draw
             self.tk.resizable(self.args["resize"],self.args["resize"])
+            self.tk.tk_setPalette(background='#bbb', foreground='black', activeBackground='#aaa', activeForeground="black")
+
             defaultFont = tkinter.font.nametofont("TkDefaultFont")
             cprint(defaultFont)
             defaultFont.configure(family="FreeSans",

+ 9 - 4
vpu/vpu_live.py

@@ -900,6 +900,14 @@ font80 = pygame.font.SysFont("freemonobold",70)
 fr = font.render("hallo" ,1, (200,0,255))
 
 
+def clean_path(path):
+    _path = path[:]
+    _path = _path.replace("/","-")
+    _path = _path.replace(".","-")
+    _path = _path.replace("\"","-")
+    _path = _path.replace("'","-")
+    return _path
+
 
 PIXEL_MAPPING = 0
 grid_file = "/tmp/vpu_grid_hd.csv"
@@ -911,10 +919,7 @@ if options.pixel_mapping:
     PIXEL_MAPPING = 1
     CFG_OUT["on"] = 1
     path = options.pixel_mapping
-    path = path.replace("/","-")
-    path = path.replace(".","-")
-    path = path.replace("\"","-")
-    path = path.replace("'","-")
+    path = clean_path(path)
     grid_file = HOME+"/LibreLight/vpu_grid_hd{}.csv".format(path)
     if options.dual_vpu:
         grid_file = HOME+"/LibreLight/vpu_grid_dual{}.csv".format(path)