JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / appletgui / RotatableCanvas.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21 package jalview.appletgui;
22
23 import jalview.api.RotatableCanvasI;
24 import jalview.datamodel.Point;
25 import jalview.datamodel.SequenceGroup;
26 import jalview.datamodel.SequenceI;
27 import jalview.datamodel.SequencePoint;
28 import jalview.math.RotatableMatrix;
29 import jalview.math.RotatableMatrix.Axis;
30 import jalview.util.MessageManager;
31 import jalview.viewmodel.AlignmentViewport;
32
33 import java.awt.Color;
34 import java.awt.Dimension;
35 import java.awt.Font;
36 import java.awt.Graphics;
37 import java.awt.Image;
38 import java.awt.Panel;
39 import java.awt.event.KeyEvent;
40 import java.awt.event.KeyListener;
41 import java.awt.event.MouseEvent;
42 import java.awt.event.MouseListener;
43 import java.awt.event.MouseMotionListener;
44 import java.util.List;
45
46 public class RotatableCanvas extends Panel implements MouseListener,
47         MouseMotionListener, KeyListener, RotatableCanvasI
48 {
49   private static final int DIMS = 3;
50
51   String tooltip;
52
53   int toolx;
54
55   int tooly;
56
57   // RubberbandRectangle rubberband;
58
59   boolean drawAxes = true;
60
61   int mouseX = 0;
62
63   int mouseY = 0;
64
65   Image img;
66
67   Graphics ig;
68
69   Dimension prefsize;
70
71   Point centre;
72
73   float[] width = new float[DIMS];
74
75   float[] max = new float[DIMS];
76
77   float[] min = new float[DIMS];
78
79   float maxwidth;
80
81   float scale;
82
83   int npoint;
84
85   List<SequencePoint> points;
86
87   Point[] orig;
88
89   Point[] axisEndPoints;
90
91   int startx;
92
93   int starty;
94
95   int lastx;
96
97   int lasty;
98
99   int rectx1;
100
101   int recty1;
102
103   int rectx2;
104
105   int recty2;
106
107   float scalefactor = 1;
108
109   AlignmentViewport av;
110
111   boolean showLabels = false;
112
113   public RotatableCanvas(AlignmentViewport viewport)
114   {
115     this.av = viewport;
116     axisEndPoints = new Point[DIMS];
117   }
118
119   public void showLabels(boolean b)
120   {
121     showLabels = b;
122     repaint();
123   }
124
125   @Override
126   public void setPoints(List<SequencePoint> points, int npoint)
127   {
128     this.points = points;
129     this.npoint = npoint;
130     PaintRefresher.Register(this, av.getSequenceSetId());
131
132     prefsize = getPreferredSize();
133     orig = new Point[npoint];
134
135     for (int i = 0; i < npoint; i++)
136     {
137       SequencePoint sp = points.get(i);
138       orig[i] = sp.coord;
139     }
140
141     resetAxes();
142
143     findCentre();
144     findWidth();
145
146     scale = findScale();
147
148     // System.out.println("Scale factor = " + scale);
149
150     addMouseListener(this);
151     addKeyListener(this);
152     // if (getParent() != null) {
153     // getParent().addKeyListener(this);
154     // }
155     addMouseMotionListener(this);
156
157     // Add rubberband
158     // rubberband = new RubberbandRectangle(this);
159     // rubberband.setActive(true);
160     // rubberband.addListener(this);
161   }
162
163   /*
164    * public boolean handleSequenceSelectionEvent(SequenceSelectionEvent evt) {
165    * redrawneeded = true; repaint(); return true; }
166    * 
167    * public void removeNotify() { controller.removeListener(this);
168    * super.removeNotify(); }
169    */
170
171   /**
172    * Resets axes to the initial state: x-axis to the right, y-axis up, z-axis to
173    * back (so obscured in a 2-D display)
174    */
175   public void resetAxes()
176   {
177     axisEndPoints[0] = new Point(1f, 0f, 0f);
178     axisEndPoints[1] = new Point(0f, 1f, 0f);
179     axisEndPoints[2] = new Point(0f, 0f, 1f);
180   }
181
182   /**
183    * Computes and saves the maximum and minimum (x, y, z) positions of any
184    * sequence point, and also the min-max range (width) for each dimension, and
185    * the maximum width for all dimensions
186    */
187   public void findWidth()
188   {
189     max = new float[3];
190     min = new float[3];
191
192     max[0] = Float.MIN_VALUE;
193     max[1] = Float.MIN_VALUE;
194     max[2] = Float.MIN_VALUE;
195
196     min[0] = Float.MAX_VALUE;
197     min[1] = Float.MAX_VALUE;
198     min[2] = Float.MAX_VALUE;
199
200     for (SequencePoint sp : points)
201     {
202       max[0] = Math.max(max[0], sp.coord.x);
203       max[1] = Math.max(max[1], sp.coord.y);
204       max[2] = Math.max(max[2], sp.coord.z);
205       min[0] = Math.min(min[0], sp.coord.x);
206       min[1] = Math.min(min[1], sp.coord.y);
207       min[2] = Math.min(min[2], sp.coord.z);
208     }
209
210     width[0] = Math.abs(max[0] - min[0]);
211     width[1] = Math.abs(max[1] - min[1]);
212     width[2] = Math.abs(max[2] - min[2]);
213
214     maxwidth = Math.max(width[0], Math.max(width[1], width[2]));
215   }
216
217   public float findScale()
218   {
219     int dim, w, height;
220     if (getSize().width != 0)
221     {
222       w = getSize().width;
223       height = getSize().height;
224     }
225     else
226     {
227       w = prefsize.width;
228       height = prefsize.height;
229     }
230
231     if (w < height)
232     {
233       dim = w;
234     }
235     else
236     {
237       dim = height;
238     }
239
240     return dim * scalefactor / (2 * maxwidth);
241   }
242
243   /**
244    * Computes and saves the position of the centre of the view
245    */
246   public void findCentre()
247   {
248     findWidth();
249
250     float x = (max[0] + min[0]) / 2;
251     float y = (max[1] + min[1]) / 2;
252     float z = (max[2] + min[2]) / 2;
253
254     centre = new Point(x, y, z);
255   }
256
257   @Override
258   public Dimension getPreferredSize()
259   {
260     if (prefsize != null)
261     {
262       return prefsize;
263     }
264     else
265     {
266       return new Dimension(400, 400);
267     }
268   }
269
270   @Override
271   public Dimension getMinimumSize()
272   {
273     return getPreferredSize();
274   }
275
276   @Override
277   public void update(Graphics g)
278   {
279     paint(g);
280   }
281
282   @Override
283   public void paint(Graphics g)
284   {
285     if (points == null)
286     {
287       g.setFont(new Font("Verdana", Font.PLAIN, 18));
288       g.drawString(
289               MessageManager.getString("label.calculating_pca") + "....",
290               20, getSize().height / 2);
291     }
292     else
293     {
294
295       // Only create the image at the beginning -
296       if ((img == null) || (prefsize.width != getSize().width)
297               || (prefsize.height != getSize().height))
298       {
299         prefsize.width = getSize().width;
300         prefsize.height = getSize().height;
301
302         scale = findScale();
303
304         // System.out.println("New scale = " + scale);
305         img = createImage(getSize().width, getSize().height);
306         ig = img.getGraphics();
307
308       }
309
310       drawBackground(ig, Color.black);
311       drawScene(ig);
312       if (drawAxes)
313       {
314         drawAxes(ig);
315       }
316
317       if (tooltip != null)
318       {
319         ig.setColor(Color.red);
320         ig.drawString(tooltip, toolx, tooly);
321       }
322
323       g.drawImage(img, 0, 0, this);
324     }
325   }
326
327   public void drawAxes(Graphics g)
328   {
329
330     g.setColor(Color.yellow);
331     for (int i = 0; i < 3; i++)
332     {
333       g.drawLine(getSize().width / 2, getSize().height / 2,
334               (int) (axisEndPoints[i].x * scale * max[0]
335                       + getSize().width / 2),
336               (int) (axisEndPoints[i].y * scale * max[1]
337                       + getSize().height / 2));
338     }
339   }
340
341   public void drawBackground(Graphics g, Color col)
342   {
343     g.setColor(col);
344     g.fillRect(0, 0, prefsize.width, prefsize.height);
345   }
346
347   public void drawScene(Graphics g)
348   {
349     for (int i = 0; i < npoint; i++)
350     {
351       SequencePoint sp = points.get(i);
352       SequenceI sequence = sp.getSequence();
353       Color sequenceColour = av.getSequenceColour(sequence);
354       g.setColor(
355               sequenceColour == Color.black ? Color.white : sequenceColour);
356       if (av.getSelectionGroup() != null)
357       {
358         if (av.getSelectionGroup().getSequences(null).contains(sequence))
359         {
360           g.setColor(Color.gray);
361         }
362       }
363
364       if (sp.coord.z < centre.z)
365       {
366         g.setColor(g.getColor().darker());
367       }
368
369       int halfwidth = getSize().width / 2;
370       int halfheight = getSize().height / 2;
371       int x = (int) ((sp.coord.x - centre.x) * scale) + halfwidth;
372       int y = (int) ((sp.coord.y - centre.y) * scale) + halfheight;
373       g.fillRect(x - 3, y - 3, 6, 6);
374
375       if (showLabels)
376       {
377         g.setColor(Color.red);
378         g.drawString(sequence.getName(), x - 3, y - 4);
379       }
380     }
381   }
382
383   @Override
384   public void keyTyped(KeyEvent evt)
385   {
386   }
387
388   @Override
389   public void keyReleased(KeyEvent evt)
390   {
391   }
392
393   @Override
394   public void keyPressed(KeyEvent evt)
395   {
396     boolean shiftDown = evt.isShiftDown();
397     int keyCode = evt.getKeyCode();
398     if (keyCode == KeyEvent.VK_UP)
399     {
400       if (shiftDown)
401       {
402         rotate(0f, -1f);
403       }
404       else
405       {
406         zoom(1.1f);
407       }
408     }
409     else if (keyCode == KeyEvent.VK_DOWN)
410     {
411       if (shiftDown)
412       {
413         rotate(0f, 1f);
414       }
415       else
416       {
417         zoom(0.9f);
418       }
419     }
420     else if (shiftDown && keyCode == KeyEvent.VK_LEFT)
421     {
422       rotate(1f, 0f);
423     }
424     else if (shiftDown && keyCode == KeyEvent.VK_RIGHT)
425     {
426       rotate(-1f, 0f);
427     }
428     else if (evt.getKeyChar() == 's')
429     {
430       System.err.println("DEBUG: Rectangle selection"); // log.debug
431       if (rectx2 != -1 && recty2 != -1)
432       {
433         rectSelect(rectx1, recty1, rectx2, recty2);
434
435       }
436     }
437     repaint();
438   }
439
440   @Override
441   public void mouseClicked(MouseEvent evt)
442   {
443   }
444
445   @Override
446   public void mouseEntered(MouseEvent evt)
447   {
448   }
449
450   @Override
451   public void mouseExited(MouseEvent evt)
452   {
453   }
454
455   @Override
456   public void mouseReleased(MouseEvent evt)
457   {
458   }
459
460   @Override
461   public void mousePressed(MouseEvent evt)
462   {
463     int x = evt.getX();
464     int y = evt.getY();
465
466     mouseX = x;
467     mouseY = y;
468
469     startx = x;
470     starty = y;
471
472     rectx1 = x;
473     recty1 = y;
474
475     rectx2 = -1;
476     recty2 = -1;
477
478     SequenceI found = findSequenceAtPoint(x, y);
479
480     if (found != null)
481     {
482       // TODO: applet PCA is not associatable with multi-panels - only parent
483       // view
484       if (av.getSelectionGroup() != null)
485       {
486         av.getSelectionGroup().addOrRemove(found, true);
487         av.getSelectionGroup().setEndRes(av.getAlignment().getWidth() - 1);
488       }
489       else
490       {
491         av.setSelectionGroup(new SequenceGroup());
492         av.getSelectionGroup().addOrRemove(found, true);
493         av.getSelectionGroup().setEndRes(av.getAlignment().getWidth() - 1);
494
495       }
496       PaintRefresher.Refresh(this, av.getSequenceSetId());
497       av.sendSelection();
498     }
499     repaint();
500   }
501
502   @Override
503   public void mouseMoved(MouseEvent evt)
504   {
505     SequenceI found = findSequenceAtPoint(evt.getX(), evt.getY());
506     if (found == null)
507     {
508       tooltip = null;
509     }
510     else
511     {
512       tooltip = found.getName();
513       toolx = evt.getX();
514       tooly = evt.getY();
515     }
516     repaint();
517   }
518
519   @Override
520   public void mouseDragged(MouseEvent evt)
521   {
522     int xPos = evt.getX();
523     int yPos = evt.getY();
524
525     if (xPos == mouseX && yPos == mouseY)
526     {
527       return;
528     }
529
530     int xDelta = xPos - mouseX;
531     int yDelta = yPos - mouseY;
532
533     rotate(xDelta, yDelta);
534     repaint();
535   }
536
537   public void rectSelect(int x1, int y1, int x2, int y2)
538   {
539     // boolean changedSel = false;
540     for (int i = 0; i < npoint; i++)
541     {
542       SequencePoint sp = points.get(i);
543       int tmp1 = (int) ((sp.coord.x - centre.x) * scale
544               + getSize().width / 2.0);
545       int tmp2 = (int) ((sp.coord.y - centre.y) * scale
546               + getSize().height / 2.0);
547
548       SequenceI sequence = sp.getSequence();
549       if (tmp1 > x1 && tmp1 < x2 && tmp2 > y1 && tmp2 < y2)
550       {
551         if (av != null)
552         {
553           if (!av.getSelectionGroup().getSequences(null).contains(sequence))
554           {
555             av.getSelectionGroup().addSequence(sequence, true);
556           }
557         }
558       }
559     }
560   }
561
562   /**
563    * Answers the first sequence found whose point on the display is within 2
564    * pixels of the given coordinates, or null if none is found
565    * 
566    * @param x
567    * @param y
568    * 
569    * @return
570    */
571   public SequenceI findSequenceAtPoint(int x, int y)
572   {
573     int halfwidth = getSize().width / 2;
574     int halfheight = getSize().height / 2;
575
576     int found = -1;
577
578     for (int i = 0; i < npoint; i++)
579     {
580
581       SequencePoint sp = points.get(i);
582       int px = (int) ((sp.coord.x - centre.x) * scale) + halfwidth;
583       int py = (int) ((sp.coord.y - centre.y) * scale) + halfheight;
584
585       if (Math.abs(px - x) < 3 && Math.abs(py - y) < 3)
586       {
587         found = i;
588         break;
589       }
590     }
591
592     if (found != -1)
593     {
594       return points.get(found).getSequence();
595     }
596     else
597     {
598       return null;
599     }
600   }
601
602   /**
603    * Resets the view to initial state (no rotation)
604    */
605   public void resetView()
606   {
607     img = null;
608     resetAxes();
609   }
610
611   @Override
612   public void zoom(float factor)
613   {
614     if (factor > 0f)
615     {
616       scalefactor *= factor;
617     }
618     scale = findScale();
619   }
620
621   @Override
622   public void rotate(float x, float y)
623   {
624     if (x == 0f && y == 0f)
625     {
626       return;
627     }
628
629     /*
630      * get the identity transformation...
631      */
632     RotatableMatrix rotmat = new RotatableMatrix();
633
634     /*
635      * rotate around the X axis for change in Y
636      * (mouse movement up/down); note we are equating a
637      * number of pixels with degrees of rotation here!
638      */
639     if (y != 0)
640     {
641       rotmat.rotate(y, Axis.X);
642     }
643
644     /*
645      * rotate around the Y axis for change in X
646      * (mouse movement left/right)
647      */
648     if (x != 0)
649     {
650       rotmat.rotate(x, Axis.Y);
651     }
652
653     /*
654      * apply the composite transformation to sequence points
655      */
656     for (int i = 0; i < npoint; i++)
657     {
658       SequencePoint sp = points.get(i);
659       sp.translate(-centre.x, -centre.y, -centre.z);
660
661       // Now apply the rotation matrix
662       sp.coord = rotmat.vectorMultiply(sp.coord);
663
664       // Now translate back again
665       sp.translate(centre.x, centre.y, centre.z);
666     }
667
668     /*
669      * rotate the x/y/z axis positions
670      */
671     for (int i = 0; i < DIMS; i++)
672     {
673       axisEndPoints[i] = rotmat.vectorMultiply(axisEndPoints[i]);
674     }
675   }
676
677 }