Implemented things needed for setHighLevelState
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / GUIComponent.java
1 package net.mograsim.logic.ui.model.components;
2
3 import java.util.ArrayList;
4 import java.util.Collections;
5 import java.util.HashMap;
6 import java.util.List;
7 import java.util.Map;
8 import java.util.TreeMap;
9 import java.util.function.Consumer;
10 import java.util.function.Supplier;
11
12 import net.haspamelodica.swt.helper.gcs.GeneralGC;
13 import net.haspamelodica.swt.helper.swtobjectwrappers.Rectangle;
14 import net.mograsim.logic.ui.model.ViewModelModifiable;
15 import net.mograsim.logic.ui.model.wires.Pin;
16
17 /**
18  * The base class for all GUI components.<br>
19  * A <code>GUIComponent</code> has a position and size. The size can only be modified by subclasses.<br>
20  * 
21  * @author Daniel Kirschten
22  */
23 public abstract class GUIComponent
24 {
25         /**
26          * The model this component is a part of.
27          */
28         protected final ViewModelModifiable model;
29         private final Rectangle bounds;
30         /**
31          * The list of all pins of this component by name.
32          */
33         private final Map<String, Pin> pinsByName;
34         /**
35          * An unmodifiable view of {@link #pinsByName}.
36          */
37         protected final Map<String, Pin> pinsUnmodifiable;
38
39         private final List<Consumer<? super GUIComponent>> componentMovedListeners;
40         private final List<Consumer<? super Pin>> pinAddedListeners;
41         private final List<Consumer<? super Pin>> pinRemovedListeners;
42         private final List<Runnable> redrawListeners;
43
44         private final Runnable redrawListenerForSubcomponents;
45         // Defines how the GUIComponent is referenced in SubmodelComponentParams
46         protected Supplier<String> identifierDelegate = () -> getClass().getSimpleName();
47
48         // creation and destruction
49
50         public GUIComponent(ViewModelModifiable model)
51         {
52                 this.model = model;
53                 this.bounds = new Rectangle(0, 0, 0, 0);
54                 this.pinsByName = new HashMap<>();
55                 this.pinsUnmodifiable = Collections.unmodifiableMap(pinsByName);
56
57                 this.componentMovedListeners = new ArrayList<>();
58                 this.pinAddedListeners = new ArrayList<>();
59                 this.pinRemovedListeners = new ArrayList<>();
60                 this.redrawListeners = new ArrayList<>();
61
62                 redrawListenerForSubcomponents = this::requestRedraw;
63
64                 model.componentCreated(this);
65         }
66
67         /**
68          * Destroys this component. This method implicitly calls {@link ViewModelModifiable#componentDestroyed(GUIComponent)
69          * componentDestroyed()} for the model this component is a part of.
70          * 
71          * @author Daniel Kirschten
72          */
73         public void destroy()
74         {
75                 pinsByName.values().forEach(p -> pinRemovedListeners.forEach(l -> l.accept(p)));
76                 model.componentDestroyed(this);
77         }
78
79         // pins
80
81         /**
82          * Adds the given pin to this component and calls pinAddedListeners and redrawListeners.
83          * 
84          * @throws IllegalArgumentException if the pin doesn't belong to this component
85          * @throws IllegalArgumentException if there already is a pin with the given name
86          * 
87          * @author Daniel Kirschten
88          */
89         protected void addPin(Pin pin)
90         {
91                 if (pin.component != this)
92                         throw new IllegalArgumentException("Can't add a pin not belonging to this component!");
93                 if (pinsByName.containsKey(pin.name))
94                         throw new IllegalArgumentException("Duplicate pin name: " + pin.name);
95                 pinsByName.put(pin.name, pin);
96                 callPinAddedListeners(pin);
97                 pin.addRedrawListener(redrawListenerForSubcomponents);
98                 requestRedraw();
99         }
100
101         /**
102          * Removes the given pin from this component and calls pinAddedListeners and redrawListeners.
103          * 
104          * @throws NullPointerException if there was no pin with this name
105          * 
106          * @author Daniel Kirschten
107          */
108         protected void removePin(String name)
109         {
110                 Pin pin = pinsByName.remove(name);
111                 callPinRemovedListeners(pin);
112                 pin.removeRedrawListener(redrawListenerForSubcomponents);
113                 requestRedraw();
114         }
115
116         /**
117          * Returns a collection of pins of this component.
118          * 
119          * @author Daniel Kirschten
120          */
121         public Map<String, Pin> getPins()
122         {
123                 return pinsUnmodifiable;
124         }
125
126         /**
127          * Returns the pin with the given name of this component.
128          * 
129          * @throws IllegalArgumentException if there is no pin with the given name
130          * 
131          * @author Daniel Kirschten
132          */
133         public Pin getPin(String name)
134         {
135                 Pin pin = pinsByName.get(name);
136                 if (pin == null)
137                         throw new IllegalArgumentException("No pin with the name " + name);
138                 return pin;
139         }
140
141         // high-level access
142
143         @SuppressWarnings({ "static-method", "unused" }) // this method is intended to be overridden
144         public void setHighLevelState(String stateID, Object newState)
145         {
146                 throw new IllegalArgumentException("No high level state with ID " + stateID);
147         }
148
149         // "graphical" operations
150
151         /**
152          * Sets the position of this component and calls componentMovedListeners and redrawListeners.
153          * 
154          * @author Daniel Kirschten
155          */
156         public void moveTo(double x, double y)
157         {
158                 bounds.x = x;
159                 bounds.y = y;
160                 callComponentMovedListeners();
161                 requestRedraw();
162         }
163
164         /**
165          * Sets the size of this component and calls redrawListeners.
166          * 
167          * @author Daniel Kirschten
168          */
169         protected void setSize(double width, double height)
170         {
171                 bounds.width = width;
172                 bounds.height = height;
173                 requestRedraw();
174         }
175
176         /**
177          * Returns the bounds of this component. Is a bit slower than {@link #getPosX()}, {@link #getPosY()}, {@link #getWidth},
178          * {@link #getHeight}, because new objects are created.
179          * 
180          * @author Daniel Kirschten
181          */
182         public Rectangle getBounds()
183         {
184                 return new Rectangle(bounds.x, bounds.y, bounds.width, bounds.height);
185         }
186
187         /**
188          * Returns the x coordinate of the position of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
189          * 
190          * @author Daniel Kirschten
191          */
192         public double getPosX()
193         {
194                 return bounds.x;
195         }
196
197         /**
198          * Returns the y coordinate of the position of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
199          * 
200          * @author Daniel Kirschten
201          */
202         public double getPosY()
203         {
204                 return bounds.y;
205         }
206
207         /**
208          * Returns the (graphical) width of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
209          * 
210          * @author Daniel Kirschten
211          */
212         public double getWidth()
213         {
214                 return bounds.width;
215         }
216
217         /**
218          * Returns the height of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
219          * 
220          * @author Daniel Kirschten
221          */
222         public double getHeight()
223         {
224                 return bounds.height;
225         }
226
227         /**
228          * Called when this component is clicked. Absolute coordinates of the click are given. Returns true if this component consumed this
229          * click.
230          * 
231          * @author Daniel Kirschten
232          */
233         @SuppressWarnings({ "static-method", "unused" }) // this method is inteded to be overridden
234         public boolean clicked(double x, double y)
235         {
236                 return false;
237         }
238
239         /**
240          * Render this component to the given gc, in absoulute coordinates.
241          * 
242          * @author Daniel Kirschten
243          */
244         public abstract void render(GeneralGC gc, Rectangle visibleRegion);
245
246         // serializing
247
248         /**
249          * @return an identifier used to reference this GUIComponent inside of {@link SubmodelComponentParams}
250          */
251         public String getIdentifier()
252         {
253                 return identifierDelegate.get();
254         }
255
256         @SuppressWarnings("static-method")
257         public Map<String, Object> getInstantiationParameters()
258         {
259                 return new TreeMap<>();
260         }
261
262         // listeners
263
264         /**
265          * Calls redraw listeners.
266          * 
267          * @author Daniel Kirschten
268          */
269         protected void requestRedraw()
270         {
271                 callRedrawListeners();
272         }
273
274         // @formatter:off
275         public void addComponentMovedListener   (Consumer<? super GUIComponent> listener) {componentMovedListeners.add   (listener);}
276         public void addPinAddedListener         (Consumer<? super Pin         > listener) {pinAddedListeners      .add   (listener);}
277         public void addPinRemovedListener       (Consumer<? super Pin         > listener) {pinRemovedListeners    .add   (listener);}
278         public void addRedrawListener           (Runnable                       listener) {redrawListeners        .add   (listener);}
279
280         public void removeComponentMovedListener(Consumer<? super GUIComponent> listener) {componentMovedListeners .remove(listener);}
281         public void removePinAddedListener      (Consumer<? super Pin         > listener) {pinAddedListeners       .remove(listener);}
282         public void removePinRemovedListener    (Consumer<? super Pin         > listener) {pinRemovedListeners     .remove(listener);}
283         public void removeRedrawListener        (Runnable                       listener) {redrawListeners         .remove(listener);}
284
285         private void callComponentMovedListeners(     ) {componentMovedListeners.forEach(l -> l.accept(this));}
286         private void callPinAddedListeners      (Pin p) {pinAddedListeners      .forEach(l -> l.accept(p   ));}
287         private void callPinRemovedListeners    (Pin p) {pinRemovedListeners    .forEach(l -> l.accept(p   ));}
288         private void callRedrawListeners        (     ) {redrawListeners        .forEach(l -> l.run(       ));}
289         // @formatter:on
290 }