Removed visitor pattern used for one test only
[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         // "graphical" operations
142
143         /**
144          * Sets the position of this component and calls componentMovedListeners and redrawListeners.
145          * 
146          * @author Daniel Kirschten
147          */
148         public void moveTo(double x, double y)
149         {
150                 bounds.x = x;
151                 bounds.y = y;
152                 callComponentMovedListeners();
153                 requestRedraw();
154         }
155
156         /**
157          * Sets the size of this component and calls redrawListeners.
158          * 
159          * @author Daniel Kirschten
160          */
161         protected void setSize(double width, double height)
162         {
163                 bounds.width = width;
164                 bounds.height = height;
165                 requestRedraw();
166         }
167
168         /**
169          * Returns the bounds of this component. Is a bit slower than {@link #getPosX()}, {@link #getPosY()}, {@link #getWidth},
170          * {@link #getHeight}, because new objects are created.
171          * 
172          * @author Daniel Kirschten
173          */
174         public Rectangle getBounds()
175         {
176                 return new Rectangle(bounds.x, bounds.y, bounds.width, bounds.height);
177         }
178
179         /**
180          * Returns the x coordinate of the position of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
181          * 
182          * @author Daniel Kirschten
183          */
184         public double getPosX()
185         {
186                 return bounds.x;
187         }
188
189         /**
190          * Returns the y coordinate of the position of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
191          * 
192          * @author Daniel Kirschten
193          */
194         public double getPosY()
195         {
196                 return bounds.y;
197         }
198
199         /**
200          * Returns the (graphical) width of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
201          * 
202          * @author Daniel Kirschten
203          */
204         public double getWidth()
205         {
206                 return bounds.width;
207         }
208
209         /**
210          * Returns the height of this component. Is a bit faster than {@link #getBounds()} because no objects are created.
211          * 
212          * @author Daniel Kirschten
213          */
214         public double getHeight()
215         {
216                 return bounds.height;
217         }
218
219         /**
220          * Called when this component is clicked. Absolute coordinates of the click are given. Returns true if this component consumed this
221          * click.
222          * 
223          * @author Daniel Kirschten
224          */
225         @SuppressWarnings({ "static-method", "unused" }) // this method is inteded to be overridden
226         public boolean clicked(double x, double y)
227         {
228                 return false;
229         }
230
231         /**
232          * Render this component to the given gc, in absoulute coordinates.
233          * 
234          * @author Daniel Kirschten
235          */
236         public abstract void render(GeneralGC gc, Rectangle visibleRegion);
237
238         // serializing
239
240         /**
241          * @return an identifier used to reference this GUIComponent inside of {@link SubmodelComponentParams}
242          */
243         public String getIdentifier()
244         {
245                 return identifierDelegate.get();
246         }
247
248         @SuppressWarnings("static-method")
249         public Map<String, Object> getInstantiationParameters()
250         {
251                 return new TreeMap<>();
252         }
253
254         // listeners
255
256         /**
257          * Calls redraw listeners.
258          * 
259          * @author Daniel Kirschten
260          */
261         protected void requestRedraw()
262         {
263                 callRedrawListeners();
264         }
265
266         // @formatter:off
267         public void addComponentMovedListener   (Consumer<? super GUIComponent> listener) {componentMovedListeners.add   (listener);}
268         public void addPinAddedListener         (Consumer<? super Pin         > listener) {pinAddedListeners      .add   (listener);}
269         public void addPinRemovedListener       (Consumer<? super Pin         > listener) {pinRemovedListeners    .add   (listener);}
270         public void addRedrawListener           (Runnable                       listener) {redrawListeners        .add   (listener);}
271
272         public void removeComponentMovedListener(Consumer<? super GUIComponent> listener) {componentMovedListeners .remove(listener);}
273         public void removePinAddedListener      (Consumer<? super Pin         > listener) {pinAddedListeners       .remove(listener);}
274         public void removePinRemovedListener    (Consumer<? super Pin         > listener) {pinRemovedListeners     .remove(listener);}
275         public void removeRedrawListener        (Runnable                       listener) {redrawListeners         .remove(listener);}
276
277         private void callComponentMovedListeners(     ) {componentMovedListeners.forEach(l -> l.accept(this));}
278         private void callPinAddedListeners      (Pin p) {pinAddedListeners      .forEach(l -> l.accept(p   ));}
279         private void callPinRemovedListeners    (Pin p) {pinRemovedListeners    .forEach(l -> l.accept(p   ));}
280         private void callRedrawListeners        (     ) {redrawListeners        .forEach(l -> l.run(       ));}
281         // @formatter:on
282 }