aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/population/GUINode.java
blob: 6dfeaa4050c4f01137f450ee142964c3cd0d7dcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
package jcgp.gui.population;

import javafx.event.EventHandler;
import javafx.scene.control.Label;
import javafx.scene.input.MouseDragEvent;
import javafx.scene.input.MouseEvent;
import javafx.scene.paint.Paint;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Line;
import jcgp.backend.function.Function;
import jcgp.backend.population.Connection;
import jcgp.backend.population.Input;
import jcgp.backend.population.Node;
import jcgp.backend.resources.Resources;
import jcgp.gui.GUI;

public class GUINode extends GUIGene {

	private Line[] lines;
	private Node node;
	private Resources resources;
	private int connectionIndex = 0;
	

	public GUINode(ChromosomePane parentRef, final Node node, Line[] connectionLines, final GUI gui) {
		super();
		
		// store references
		this.parent = parentRef;
		this.node = node;
		this.lines = connectionLines;
		this.resources = gui.getExperiment().getResources();
		
		// move the GUIGene to the right position
		relocate(((node.getColumn() + 1) * (2 * NODE_RADIUS + SPACING)) + NODE_RADIUS,
				(node.getRow() * (2 * NODE_RADIUS + SPACING)) + NODE_RADIUS);

		// set the line ends correctly
		updateLines();

		final Label connectionNumber = new Label();
		connectionNumber.setStyle("-fx-background-color:rgb(255, 255, 255); -fx-border-color:rgba(0, 0, 0, 0.5); ");
		connectionNumber.setVisible(false);

		Circle output = new Circle(NODE_RADIUS, 0, SOCKET_RADIUS, Paint.valueOf("white"));
		output.setStroke(Paint.valueOf("black"));

		updateText();

		Circle[] sockets = new Circle[resources.arity()];
		double angle, xPos, yPos;
		for (int l = 0; l < sockets.length; l++) {
			angle = (((l + 1) / ((double) (resources.arity() + 1))) * THETA) - (THETA / 2);
			xPos = -Math.cos(angle) * NODE_RADIUS;
			yPos = Math.sin(angle) * NODE_RADIUS;

			sockets[l] = new Circle(xPos, yPos, GUIGene.SOCKET_RADIUS, Paint.valueOf("white"));
			sockets[l].setId(String.valueOf(l));
			sockets[l].setStroke(Paint.valueOf("black"));

			final Circle s = sockets[l];
			final int index = l;

			/*
			 * Mouse event handlers on sockets
			 * 
			 */
			s.addEventFilter(MouseEvent.DRAG_DETECTED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {
					// the mouse has been dragged out of the socket, this means a full drag is in progress
					startFullDrag();
				}
			});

			s.addEventFilter(MouseEvent.MOUSE_ENTERED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {
					// user is hovering over connection socket
					connectionNumber.setText("C: " + s.getId());
					connectionNumber.relocate(s.getCenterX() + 5, s.getCenterY() - 10);
					connectionNumber.setVisible(true);
				}
			});

			s.addEventFilter(MouseEvent.MOUSE_EXITED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {
					// user exits the connection socket
					connectionNumber.setVisible(false);
				}
			});

			s.addEventFilter(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {
					// mouse was pressed on the socket
					setState(GUIGeneState.SOURCE);
					connectionIndex = index;
				}
			});

			s.addEventFilter(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {
					if (!parent.isTarget()) {
						lines[connectionIndex].setEndX(event.getX() + ((Circle) event.getSource()).getParent().getLayoutX());
						lines[connectionIndex].setEndY(event.getY() + ((Circle) event.getSource()).getParent().getLayoutY());
					}
				}
			});	

			s.addEventFilter(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
				@Override
				public void handle(MouseEvent event) {					
					if (event.isStillSincePress()) {
						// mouse was released before dragging out of the socket
						updateLine(index);
						setState(GUIGeneState.HOVER);
					} else if (getState() == GUIGeneState.SOURCE) {
						// no connection has been made, fallback
						resetState();
						updateLines();
					}
				}
			});
		}

		/*
		 * Mouse event handlers on whole gene
		 */
		
		addEventFilter(MouseEvent.MOUSE_CLICKED, new EventHandler<MouseEvent>() {
			@Override
			public void handle(MouseEvent event) {
				gui.bringFunctionSelector(event, (GUINode) event.getSource());
			}
		});
		
		addEventFilter(MouseDragEvent.MOUSE_DRAG_ENTERED, new EventHandler<MouseDragEvent>() {
			@Override
			public void handle(MouseDragEvent event) {
				// the drag has entered this node, react appropriately
				// this happens even if we are the source of the drag
				if (isAllowed((GUIGene) event.getGestureSource(), (GUIGene) event.getSource())) {
					((GUIGene) event.getGestureSource()).setConnectionLine((GUIGene) event.getSource());
					
					Connection source = ((GUIGene) event.getGestureSource()).getChangingConnection();
					if (node == source) {
						setState(GUIGeneState.NO_CHANGE_TARGET);
					} else {
						setState(GUIGeneState.TARGET);
					}
				} else {
					setState(GUIGeneState.FORBIDDEN_TARGET);
				}
			}
		});

		addEventFilter(MouseDragEvent.MOUSE_DRAG_EXITED, new EventHandler<MouseDragEvent>() {
			@Override
			public void handle(MouseDragEvent event) {
				// the drag has exited this node, react appropriately
				// this happens even if we are the source of the drag
				parent.setTarget(false);
				if (event.isPrimaryButtonDown()) {
					if (event.getGestureSource() == event.getSource()) {
						setState(GUIGeneState.SOURCE);
					} else {
						if (getState() == GUIGeneState.NO_CHANGE_TARGET) {
							setState(GUIGeneState.INDIRECT_HOVER);
						} else {
							setState(GUIGeneState.NEUTRAL);
							((GUIGene) event.getGestureSource()).setConnections(GUIGeneState.INDIRECT_HOVER);
						}
					}
				}
			}
		});

		addEventFilter(MouseDragEvent.MOUSE_DRAG_RELEASED, new EventHandler<MouseDragEvent>() {
			@Override
			public void handle(MouseDragEvent event) {
				GUIGene source = ((GUIGene) event.getGestureSource());
				// set states to reflect the new situation
				if (source.isLocked()) {
					source.setState(GUIGeneState.HOVER);
					source.setConnections(GUIGeneState.HOVER);
				} else {
					source.setState(GUIGeneState.NEUTRAL);
					source.setConnections(GUIGeneState.NEUTRAL);
				}

				// the user released the drag gesture on this node, react appropriately
				if (isAllowed((GUIGene) event.getGestureSource(), (GUIGene) event.getSource())) {
					if (source.isLocked()) {
						// remove locks from the old connection, add the to setConnethe new
						// note that the old connection may still have locks after this
						parent.getGuiGene(source.getChangingConnection()).removeLocks(source.getLocks());
						addLocks(source.getLocks());
					} else {
						if (source instanceof GUIOutput) {
							source.resetState();
						}
					}
					source.setChangingConnection(node);

				}
				source.updateLines();
				setState(GUIGeneState.HOVER);
			}
		});


		addEventFilter(MouseEvent.MOUSE_ENTERED, new EventHandler<MouseEvent>() {
			@Override
			public void handle(MouseEvent event) {
				// cursor has entered this node without dragging, or it is dragging and this is the source
				if (getState() == GUIGeneState.NEUTRAL) {
					setState(GUIGeneState.HOVER);
				} else if (locked > 0) {
					setConnections(GUIGeneState.LOCKED_HOVER);
				}
			}
		});

		addEventFilter(MouseEvent.MOUSE_EXITED, new EventHandler<MouseEvent>() {
			@Override
			public void handle(MouseEvent event) {
				// cursor has left this node without dragging, or it is dragging and this is the source
				if (getState() == GUIGeneState.HOVER && locked <= 0) {
					setState(GUIGeneState.NEUTRAL);
					setConnections(GUIGeneState.NEUTRAL);
				} else if (locked > 0) {
					if (getState() == GUIGeneState.SOURCE || getState() == GUIGeneState.FORBIDDEN_TARGET) {
						setConnections(GUIGeneState.INDIRECT_HOVER);
					} else {
						setConnections(GUIGeneState.HOVER);
					}
					
				}
			}
		});

		getChildren().addAll(mainCircle, text);
		getChildren().addAll(sockets);
		getChildren().addAll(output, connectionNumber);

	}

	@Override
	public void setState(GUIGeneState newState) {
		switch (newState) {
		case ACTIVE_HOVER:
			if (locked > 0) {
				setState(GUIGeneState.LOCKED_HOVER);
			} else {
				mainCircle.setFill(Paint.valueOf(GUI.SOFT_HIGHLIGHT_COLOUR));
				showLines(true);
			}
			setConnections(GUIGeneState.ACTIVE_HOVER);
			break;
		case LOCKED_HOVER:
			mainCircle.setFill(Paint.valueOf(GUI.SOFT_HIGHLIGHT_COLOUR));
			break;
		case FORBIDDEN_TARGET:
			mainCircle.setFill(Paint.valueOf(GUI.BAD_SELECTION_COLOUR));
			break;
		case HOVER:
			mainCircle.setFill(Paint.valueOf(GUI.MEDIUM_HIGHLIGHT_COLOUR));
			showLines(true);
			if (locked <= 0) {
				setConnections(GUIGeneState.INDIRECT_HOVER);
			} else {
				setConnections(GUIGeneState.HOVER);
			}
			break;
		case INDIRECT_HOVER:
			mainCircle.setFill(Paint.valueOf(GUI.SOFT_HIGHLIGHT_COLOUR));
			break;
		case NEUTRAL:
			if (locked > 0) {
				setState(GUIGeneState.HOVER);
			} else {
				mainCircle.setFill(Paint.valueOf(GUI.NEUTRAL_COLOUR));
				showLines(false);
				if (getState() == GUIGeneState.ACTIVE_HOVER) {
					setConnections(GUIGeneState.NEUTRAL);
				}
			}
			break;
		case NO_CHANGE_TARGET:
			parent.setTarget(true);
			mainCircle.setFill(Paint.valueOf(GUI.NEUTRAL_SELECTION_COLOUR));
			break;
		case SOURCE:
			mainCircle.setFill(Paint.valueOf(GUI.HARD_HIGHLIGHT_COLOUR));
			break;
		case TARGET:
			parent.setTarget(true);
			mainCircle.setFill(Paint.valueOf(GUI.GOOD_SELECTION_COLOUR));
			break;
		default:
			break;
		}

		super.setState(newState);
	}
	
	@Override
	public Connection getChangingConnection() {
		return node.getConnection(connectionIndex);
	}

	private boolean isAllowed(GUIGene source, GUIGene target) {
		if (source instanceof GUINode) {
			// if the source is a node, all inputs and some nodes are valid
			if (target instanceof GUIInput) {
				return true;
			} else if (target instanceof GUINode) {
				// target and source are nodes, let's look at levels back
				Node t = ((GUINode) target).getNode(), s = ((GUINode) source).getNode();
				if (s.getColumn() - t.getColumn() > 0 && s.getColumn() - t.getColumn() <= resources.levelsBack()) {
					return true;
				}
				return false;
			} else if (target instanceof GUIOutput) {
				return false;
			} else {
				throw new ClassCastException("Target was neither GUINode nor GUIInput nor GUIOutput.");
			}
		} else if (source instanceof GUIOutput) {
			// if the source is an output, any node or input is valid
			if (target instanceof GUINode || target instanceof GUIInput) {
				return true;
			} else if (target instanceof GUIOutput) {
				return false;
			} else {
				throw new ClassCastException("Target was neither GUINode nor GUIInput nor GUIOutput.");
			}
		}
		// if the source was neither node nor output, something bad is happening
		throw new ClassCastException("Source was neither GUINode nor GUIOutput.");
	}


	public Node getNode() {
		return node;
	}

	/**
	 * Place the end of the specified line on the output of the associated connection. 
	 * 
	 * @param index the line to be updated.
	 */
	public void updateLine(int index) {
		if (node.getConnection(index) instanceof Node) {
			int row = ((Node) node.getConnection(index)).getRow(), 
					column = ((Node) node.getConnection(index)).getColumn();
			lines[index].setEndX(((column + 1) * (2 * NODE_RADIUS + SPACING)) + 2 * NODE_RADIUS);
			lines[index].setEndY((row * (2 * NODE_RADIUS + SPACING)) + NODE_RADIUS);
		} else if (node.getConnection(index) instanceof Input) {
			int inputIndex = ((Input) node.getConnection(index)).getIndex();
			lines[index].setEndX(2 * NODE_RADIUS);
			lines[index].setEndY(inputIndex * (2 * NODE_RADIUS + SPACING) + NODE_RADIUS);
		}
	}

	/**
	 * Updates the end of all lines to match the associated connections. 
	 */
	@Override
	public void updateLines() {
		for (int c = 0; c < lines.length; c++) {
			updateLine(c);
		}
	}

	/**
	 * Toggle visibility of all connection lines.
	 * 
	 * @param value whether to show the lines or not.
	 */
	private void showLines(boolean value) {
		for (int i = 0; i < lines.length; i++) {
			lines[i].setVisible(value);
		}
	}

	@Override
	public void setConnections(GUIGeneState newState) {
		for (int i = 0; i < lines.length; i++) {
			parent.getGuiGene(node.getConnection(i)).setState(newState);
		}
	}

	@Override
	public void setChangingConnection(Connection newConnection) {
		node.setConnection(connectionIndex, newConnection);
		if (parent.isEvaluating()) {
			parent.evaluate(node.getColumn());
		}
	}


	@Override
	public void resetState() {
		if (locked > 0) {
			setState(GUIGeneState.HOVER);
		} else {
			setState(GUIGeneState.NEUTRAL);
			setConnections(GUIGeneState.NEUTRAL);
		}

	}

	@Override
	void setLocked(boolean value) {
		locked += value ? 1 : -1;
		setState(locked > 0 ? GUIGeneState.HOVER : GUIGeneState.ACTIVE_HOVER);

		for (int i = 0; i < lines.length; i++) {
			parent.getGuiGene(node.getConnection(i)).setLocked(value);
		}
	}

	@Override
	public void addLocks(int value) {
		locked += value;
		setState(locked > 0 ? GUIGeneState.HOVER : GUIGeneState.ACTIVE_HOVER);

		for (int i = 0; i < lines.length; i++) {
			parent.getGuiGene(node.getConnection(i)).addLocks(value);
		}
	}

	@Override
	public void removeLocks(int value) {
		locked -= value;
		setState(locked > 0 ? GUIGeneState.HOVER : GUIGeneState.NEUTRAL);

		for (int i = 0; i < lines.length; i++) {
			parent.getGuiGene(node.getConnection(i)).removeLocks(value);
		}
	}

	@Override
	public void setConnectionLine(GUIGene gene) {
		lines[connectionIndex].setEndX(gene.getLayoutX() + NODE_RADIUS);
		lines[connectionIndex].setEndY(gene.getLayoutY());
	}

	public void updateText() {
		if (parent.isEvaluating()) {
			text.setText(node.getFunction() + "\n" + value.toString());
		} else {
			text.setText(node.getFunction().toString());
		}
	}

	public void calculate() {
		value = node.getValue();
	}
	
	public void setFunction(Function function) {
		node.setFunction(function);
		if (parent.isEvaluating()) {
			calculate();
			parent.evaluate(node.getColumn());
		} else {
			updateText();
		}
		
	}
}