Port to newest HeronLX, use new UI libraries
[SugarCubes.git] / _UIImplementation.pde
index 0ea8073ddb57d6701a6a0a1b55df6fc88c89bbe8..9fbc8762b958de32e04711c3345dad82a38711fd 100644 (file)
  *
  * Custom UI components using the framework.
  */
-class UIPatternDeck extends UIWindow {
-    
-  LXDeck deck;
-  
-  public UIPatternDeck(LXDeck deck, String label, float x, float y, float w, float h) {
-    super(label, x, y, w, h);
-    this.deck = deck;
-    int yp = titleHeight;
-        
-    List<ScrollItem> items = new ArrayList<ScrollItem>();
-    for (LXPattern p : deck.getPatterns()) {
-      items.add(new PatternScrollItem(p));
-    }    
-    final UIScrollList patternList = new UIScrollList(1, yp, w-2, 140).setItems(items);
-    patternList.addToContainer(this);
-    yp += patternList.h + 10;
-    
-    final UIParameterKnob[] parameterKnobs = new UIParameterKnob[12];
-    for (int ki = 0; ki < parameterKnobs.length; ++ki) {
-      parameterKnobs[ki] = new UIParameterKnob(5 + 34*(ki % 4), yp + (ki/4) * 48);
-      parameterKnobs[ki].addToContainer(this);
-    }
-    
-    LXDeck.Listener lxListener = new LXDeck.AbstractListener() {
-      public void patternWillChange(LXDeck deck, LXPattern pattern, LXPattern nextPattern) {
-        patternList.redraw();
-      }
-      public void patternDidChange(LXDeck deck, LXPattern pattern) {
-        patternList.redraw();
-        int pi = 0;
-        for (LXParameter parameter : pattern.getParameters()) {
-          if (pi >= parameterKnobs.length) {
-            break;
-          }
-          parameterKnobs[pi++].setParameter(parameter);
-        }
-        while (pi < parameterKnobs.length) {
-          parameterKnobs[pi++].setParameter(null);
-        }
-      }
-    };
-    
-    deck.addListener(lxListener);
-    lxListener.patternDidChange(deck, deck.getActivePattern());
-    
-  }
-  
-  class PatternScrollItem extends AbstractScrollItem {
-    
-    private LXPattern pattern;
-    private String label;
-    
-    PatternScrollItem(LXPattern pattern) {
-      this.pattern = pattern;
-      label = className(pattern, "Pattern");
-    }
-    
-    public String getLabel() {
-      return label;
-    }
-    
-    public boolean isSelected() {
-      return deck.getActivePattern() == pattern;
-    }
-    
-    public boolean isPending() {
-      return deck.getNextPattern() == pattern;
-    }
-    
-    public void onMousePressed() {
-      deck.goPattern(pattern);
-    }
-  }
-}
 
 class UIBlendMode extends UIWindow {
   public UIBlendMode(float x, float y, float w, float h) {
-    super("BLEND MODE", x, y, w, h);
-    List<ScrollItem> items = new ArrayList<ScrollItem>();
+    super(lx.ui, "BLEND MODE", x, y, w, h);
+    List<UIScrollList.Item> items = new ArrayList<UIScrollList.Item>();
     for (LXTransition t : glucose.getTransitions()) {
       items.add(new TransitionScrollItem(t));
     }
     final UIScrollList tList;
-    (tList = new UIScrollList(1, titleHeight, w-2, 60)).setItems(items).addToContainer(this);
+    (tList = new UIScrollList(1, UIWindow.TITLE_LABEL_HEIGHT, w-2, 60)).setItems(items).addToContainer(this);
 
     lx.engine.getDeck(GLucose.RIGHT_DECK).addListener(new LXDeck.AbstractListener() {
       public void faderTransitionDidChange(LXDeck deck, LXTransition transition) {
@@ -103,7 +28,7 @@ class UIBlendMode extends UIWindow {
     });
   }
 
-  class TransitionScrollItem extends AbstractScrollItem {
+  class TransitionScrollItem extends UIScrollList.AbstractItem {
     private final LXTransition transition;
     private String label;
     
@@ -136,10 +61,10 @@ class UICrossfader extends UIWindow {
   private final UIToggleSet displayMode;
   
   public UICrossfader(float x, float y, float w, float h) {
-    super("CROSSFADER", x, y, w, h);
+    super(lx.ui, "CROSSFADER", x, y, w, h);
 
-    new UIParameterSlider(4, titleHeight, w-9, 32).setParameter(lx.engine.getDeck(GLucose.RIGHT_DECK).getFader()).addToContainer(this);
-    (displayMode = new UIToggleSet(4, titleHeight + 36, w-9, 20)).setOptions(new String[] { "A", "COMP", "B" }).setValue("COMP").addToContainer(this);
+    new UISlider(4, UIWindow.TITLE_LABEL_HEIGHT, w-9, 32).setParameter(lx.engine.getDeck(GLucose.RIGHT_DECK).getFader()).addToContainer(this);
+    (displayMode = new UIToggleSet(4, UIWindow.TITLE_LABEL_HEIGHT + 36, w-9, 20)).setOptions(new String[] { "A", "COMP", "B" }).setValue("COMP").addToContainer(this);
   }
   
   public UICrossfader setDisplayMode(String value) {
@@ -154,20 +79,20 @@ class UICrossfader extends UIWindow {
 
 class UIEffects extends UIWindow {
   UIEffects(float x, float y, float w, float h) {
-    super("FX", x, y, w, h);
+    super(lx.ui, "FX", x, y, w, h);
 
-    int yp = titleHeight;
-    List<ScrollItem> items = new ArrayList<ScrollItem>();
+    int yp = UIWindow.TITLE_LABEL_HEIGHT;
+    List<UIScrollList.Item> items = new ArrayList<UIScrollList.Item>();
     for (LXEffect fx : glucose.lx.getEffects()) {
       items.add(new FXScrollItem(fx));
     }    
     final UIScrollList effectsList = new UIScrollList(1, yp, w-2, 60).setItems(items);
     effectsList.addToContainer(this);
-    yp += effectsList.h + 10;
+    yp += effectsList.getHeight() + 10;
     
-    final UIParameterKnob[] parameterKnobs = new UIParameterKnob[4];
+    final UIKnob[] parameterKnobs = new UIKnob[4];
     for (int ki = 0; ki < parameterKnobs.length; ++ki) {
-      parameterKnobs[ki] = new UIParameterKnob(5 + 34*(ki % 4), yp + (ki/4) * 48);
+      parameterKnobs[ki] = new UIKnob(5 + 34*(ki % 4), yp + (ki/4) * 48);
       parameterKnobs[ki].addToContainer(this);
     }
     
@@ -178,7 +103,9 @@ class UIEffects extends UIWindow {
           if (i >= parameterKnobs.length) {
             break;
           }
-          parameterKnobs[i++].setParameter(p);
+          if (p instanceof BasicParameter) {
+            parameterKnobs[i++].setParameter((BasicParameter) p);
+          }
         }
         while (i < parameterKnobs.length) {
           parameterKnobs[i++].setParameter(null);
@@ -191,7 +118,7 @@ class UIEffects extends UIWindow {
 
   }
   
-  class FXScrollItem extends AbstractScrollItem {
+  class FXScrollItem extends UIScrollList.AbstractItem {
     
     private LXEffect effect;
     private String label;
@@ -237,12 +164,12 @@ class UIEffects extends UIWindow {
 
 class UIOutput extends UIWindow {
   public UIOutput(float x, float y, float w, float h) {
-    super("OUTPUT", x, y, w, h);
-    float yp = titleHeight;
+    super(lx.ui, "OUTPUT", x, y, w, h);
+    float yp = UIWindow.TITLE_LABEL_HEIGHT;
     
-    final UIScrollList outputs = new UIScrollList(1, titleHeight, w-2, 80);
+    final UIScrollList outputs = new UIScrollList(1, UIWindow.TITLE_LABEL_HEIGHT, w-2, 80);
     
-    List<ScrollItem> items = new ArrayList<ScrollItem>();
+    List<UIScrollList.Item> items = new ArrayList<UIScrollList.Item>();
     for (final PandaDriver panda : pandaBoards) {
       items.add(new PandaScrollItem(panda));
       panda.setListener(new PandaDriver.Listener() {
@@ -254,7 +181,7 @@ class UIOutput extends UIWindow {
     outputs.setItems(items).addToContainer(this);
   } 
  
-  class PandaScrollItem extends AbstractScrollItem {
+  class PandaScrollItem extends UIScrollList.AbstractItem {
     final PandaDriver panda;
     PandaScrollItem(PandaDriver panda) {
       this.panda = panda;
@@ -279,8 +206,8 @@ class UITempo extends UIWindow {
   private final UIButton tempoButton;
   
   UITempo(float x, float y, float w, float h) {
-    super("TEMPO", x, y, w, h);
-    tempoButton = new UIButton(4, titleHeight, w-10, 20) {
+    super(lx.ui, "TEMPO", x, y, w, h);
+    tempoButton = new UIButton(4, UIWindow.TITLE_LABEL_HEIGHT, w-10, 20) {
       protected void onToggle(boolean active) {
         if (active) {
           lx.tempo.tap();
@@ -288,17 +215,26 @@ class UITempo extends UIWindow {
       }
     }.setMomentary(true);
     tempoButton.addToContainer(this);
+    new UITempoBlipper(8, UIWindow.TITLE_LABEL_HEIGHT + 5, 12, 12).addToContainer(this);
   }
   
-  public void draw() {
-    tempoButton.setLabel("" + ((int)(lx.tempo.bpm() * 10)) / 10.);
-    super.draw();
-    
-    // Overlay tempo thing with openGL, redraw faster than button UI
-    fill(color(0, 0, 24 - 8*lx.tempo.rampf()));
-    noStroke();
-    rect(x + 8, y + titleHeight + 5, 12, 12);
+  class UITempoBlipper extends UIObject {
+    UITempoBlipper(float x, float y, float w, float h) {
+      super(x, y, w, h);
+    }
+    
+    void onDraw(UI ui, PGraphics pg) {
+      tempoButton.setLabel("" + ((int)(lx.tempo.bpm() * 10)) / 10.);
+    
+      // Overlay tempo thing with openGL, redraw faster than button UI
+      pg.fill(color(0, 0, 24 - 8*lx.tempo.rampf()));
+      pg.noStroke();
+      pg.rect(0, 0, width, height);
+      
+      redraw();
+    }
   }
+  
 }
 
 class UIMapping extends UIWindow {
@@ -318,10 +254,10 @@ class UIMapping extends UIWindow {
   private final UIIntegerBox stripBox;
   
   UIMapping(MappingTool tool, float x, float y, float w, float h) {
-    super("MAPPING", x, y, w, h);
+    super(lx.ui, "MAPPING", x, y, w, h);
     mappingTool = tool;
     
-    int yp = titleHeight;
+    int yp = UIWindow.TITLE_LABEL_HEIGHT;
     new UIToggleSet(4, yp, w-10, 20) {
       protected void onToggle(String value) {
         if (value == MAP_MODE_ALL) mappingTool.mappingMode = mappingTool.MAPPING_MODE_ALL;
@@ -350,7 +286,7 @@ class UIMapping extends UIWindow {
     
     yp += 10;
         
-    new UIScrollList(1, yp, w-2, 60).setItems(Arrays.asList(new ScrollItem[] {
+    new UIScrollList(1, yp, w-2, 60).setItems(Arrays.asList(new UIScrollList.Item[] {
       new ColorScrollItem(ColorScrollItem.COLOR_RED),
       new ColorScrollItem(ColorScrollItem.COLOR_GREEN),
       new ColorScrollItem(ColorScrollItem.COLOR_BLUE),
@@ -392,7 +328,7 @@ class UIMapping extends UIWindow {
     stripBox.setValue(value);
   }
   
-  class ColorScrollItem extends AbstractScrollItem {
+  class ColorScrollItem extends UIScrollList.AbstractItem {
     
     public static final int COLOR_RED = 1;
     public static final int COLOR_GREEN = 2;
@@ -438,7 +374,7 @@ class UIDebugText extends UIContext {
   private String line2 = "";
   
   UIDebugText(float x, float y, float w, float h) {
-    super(x, y, w, h);
+    super(lx.ui, x, y, w, h);
   }
 
   public UIDebugText setText(String line1) {
@@ -455,13 +391,13 @@ class UIDebugText extends UIContext {
     return this;
   }
   
-  protected void onDraw(PGraphics pg) {
-    super.onDraw(pg);
+  protected void onDraw(UI ui, PGraphics pg) {
+    super.onDraw(ui, pg);
     if (line1.length() + line2.length() > 0) {
       pg.noStroke();
       pg.fill(#444444);
-      pg.rect(0, 0, w, h);
-      pg.textFont(defaultItemFont);
+      pg.rect(0, 0, width, height);
+      pg.textFont(ui.getItemFont());
       pg.textSize(10);
       pg.textAlign(LEFT, TOP);
       pg.fill(#cccccc);
@@ -476,14 +412,14 @@ class UISpeed extends UIWindow {
   final BasicParameter speed;
   
   UISpeed(float x, float y, float w, float h) {
-    super("SPEED", x, y, w, h);
+    super(lx.ui, "SPEED", x, y, w, h);
     speed = new BasicParameter("SPEED", 0.5);
-    new UIParameterSlider(4, titleHeight, w-10, 20)
-    .setParameter(speed.addListener(new LXParameterListener() {
+    speed.addListener(new LXParameterListener() {
       public void onParameterChanged(LXParameter parameter) {
         lx.setSpeed(parameter.getValuef() * 2);
       }
-    })).addToContainer(this);
+    });
+    new UISlider(4, UIWindow.TITLE_LABEL_HEIGHT, w-10, 20).setParameter(speed).addToContainer(this);
   }
 }
 
@@ -493,15 +429,15 @@ class UIMidi extends UIWindow {
   private final UIButton logMode;
   
   UIMidi(final MidiEngine midiEngine, float x, float y, float w, float h) {
-    super("MIDI", x, y, w, h);
+    super(lx.ui, "MIDI", x, y, w, h);
 
     // Processing compiler doesn't seem to get that list of class objects also conform to interface
-    List<ScrollItem> scrollItems = new ArrayList<ScrollItem>();
+    List<UIScrollList.Item> scrollItems = new ArrayList<UIScrollList.Item>();
     for (SCMidiInput mc : midiEngine.getControllers()) {
       scrollItems.add(mc);
     }
     final UIScrollList scrollList;
-    (scrollList = new UIScrollList(1, titleHeight, w-2, 100)).setItems(scrollItems).addToContainer(this);
+    (scrollList = new UIScrollList(1, UIWindow.TITLE_LABEL_HEIGHT, w-2, 100)).setItems(scrollItems).addToContainer(this);
     (deckMode = new UIToggleSet(4, 130, 90, 20) {
       protected void onToggle(String value) {
         midiEngine.setFocusedDeck(value == "A" ? 0 : 1);