(JAL-980) update binding for refactored Jmol constants and new interface methods
[jalview.git] / src / jalview / ext / jmol / JalviewJmolBinding.java
1 /*\r
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7)\r
3  * Copyright (C) 2011 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle\r
4  * \r
5  * This file is part of Jalview.\r
6  * \r
7  * Jalview is free software: you can redistribute it and/or\r
8  * modify it under the terms of the GNU General Public License \r
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.\r
10  * \r
11  * Jalview is distributed in the hope that it will be useful, but \r
12  * WITHOUT ANY WARRANTY; without even the implied warranty \r
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR \r
14  * PURPOSE.  See the GNU General Public License for more details.\r
15  * \r
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.\r
17  */\r
18 package jalview.ext.jmol;\r
19 \r
20 import jalview.api.AlignmentViewPanel;\r
21 import jalview.api.FeatureRenderer;\r
22 import jalview.api.SequenceRenderer;\r
23 import jalview.api.SequenceStructureBinding;\r
24 import jalview.api.StructureSelectionManagerProvider;\r
25 import jalview.datamodel.AlignmentI;\r
26 import jalview.datamodel.ColumnSelection;\r
27 import jalview.datamodel.PDBEntry;\r
28 import jalview.datamodel.SequenceI;\r
29 import jalview.io.AppletFormatAdapter;\r
30 import jalview.schemes.ColourSchemeI;\r
31 import jalview.schemes.ResidueProperties;\r
32 import jalview.structure.StructureListener;\r
33 import jalview.structure.StructureMapping;\r
34 import jalview.structure.StructureSelectionManager;\r
35 \r
36 import java.awt.Color;\r
37 import java.awt.Container;\r
38 import java.awt.event.ComponentEvent;\r
39 import java.awt.event.ComponentListener;\r
40 import java.io.File;\r
41 import java.net.URL;\r
42 import java.util.Enumeration;\r
43 import java.util.Hashtable;\r
44 import java.util.Map;\r
45 import java.util.Vector;\r
46 \r
47 import org.jmol.adapter.smarter.SmarterJmolAdapter;\r
48 import org.jmol.api.JmolAppConsoleInterface;\r
49 import org.jmol.api.JmolSelectionListener;\r
50 import org.jmol.api.JmolStatusListener;\r
51 import org.jmol.api.JmolViewer;\r
52 import org.jmol.constant.EnumCallback;\r
53 import org.jmol.popup.JmolPopup;\r
54 \r
55 public abstract class JalviewJmolBinding implements StructureListener,\r
56         JmolStatusListener, SequenceStructureBinding,\r
57         JmolSelectionListener, ComponentListener, StructureSelectionManagerProvider\r
58 \r
59 {\r
60   /**\r
61    * set if Jmol state is being restored from some source - instructs binding\r
62    * not to apply default display style when structure set is updated for first\r
63    * time.\r
64    */\r
65   private boolean loadingFromArchive = false;\r
66 \r
67   /**\r
68    * state flag used to check if the Jmol viewer's paint method can be called\r
69    */\r
70   private boolean finishedInit = false;\r
71 \r
72   public boolean isFinishedInit()\r
73   {\r
74     return finishedInit;\r
75   }\r
76 \r
77   public void setFinishedInit(boolean finishedInit)\r
78   {\r
79     this.finishedInit = finishedInit;\r
80   }\r
81 \r
82   boolean allChainsSelected = false;\r
83 \r
84   /**\r
85    * when true, try to search the associated datamodel for sequences that are\r
86    * associated with any unknown structures in the Jmol view.\r
87    */\r
88   private boolean associateNewStructs = false;\r
89 \r
90   Vector atomsPicked = new Vector();\r
91 \r
92   public Vector chainNames;\r
93 \r
94   Hashtable chainFile;\r
95 \r
96   /**\r
97    * array of target chains for seuqences - tied to pdbentry and sequence[]\r
98    */\r
99   protected String[][] chains;\r
100 \r
101   boolean colourBySequence = true;\r
102 \r
103   StringBuffer eval = new StringBuffer();\r
104 \r
105   public String fileLoadingError;\r
106 \r
107   /**\r
108    * the default or current model displayed if the model cannot be identified\r
109    * from the selection message\r
110    */\r
111   int frameNo = 0;\r
112 \r
113   protected JmolPopup jmolpopup;\r
114 \r
115   String lastCommand;\r
116 \r
117   String lastMessage;\r
118 \r
119   boolean loadedInline;\r
120 \r
121   /**\r
122    * current set of model filenames loaded in the Jmol instance\r
123    */\r
124   String[] modelFileNames = null;\r
125 \r
126   public PDBEntry[] pdbentry;\r
127 \r
128   /**\r
129    * datasource protocol for access to PDBEntrylatest\r
130    */\r
131   String protocol = null;\r
132 \r
133   StringBuffer resetLastRes = new StringBuffer();\r
134 \r
135   /**\r
136    * sequences mapped to each pdbentry\r
137    */\r
138   public SequenceI[][] sequence;\r
139 \r
140   public StructureSelectionManager ssm;\r
141 \r
142   public JmolViewer viewer;\r
143 \r
144   public JalviewJmolBinding(StructureSelectionManager ssm, PDBEntry[] pdbentry, SequenceI[][] sequenceIs,\r
145           String[][] chains, String protocol)\r
146   {\r
147     this.ssm = ssm;\r
148     this.sequence = sequenceIs;\r
149     this.chains = chains;\r
150     this.pdbentry = pdbentry;\r
151     this.protocol = protocol;\r
152     if (chains == null)\r
153     {\r
154       this.chains = new String[pdbentry.length][];\r
155     }\r
156     /*\r
157      * viewer = JmolViewer.allocateViewer(renderPanel, new SmarterJmolAdapter(),\r
158      * "jalviewJmol", ap.av.applet .getDocumentBase(),\r
159      * ap.av.applet.getCodeBase(), "", this);\r
160      * \r
161      * jmolpopup = JmolPopup.newJmolPopup(viewer, true, "Jmol", true);\r
162      */\r
163   }\r
164 \r
165   public JalviewJmolBinding(StructureSelectionManager ssm, JmolViewer viewer2)\r
166   {\r
167     this.ssm = ssm;\r
168     viewer = viewer2;\r
169     viewer.setJmolStatusListener(this);\r
170     viewer.addSelectionListener(this);\r
171   }\r
172 \r
173   /**\r
174    * construct a title string for the viewer window based on the data jalview\r
175    * knows about\r
176    * \r
177    * @return\r
178    */\r
179   public String getViewerTitle()\r
180   {\r
181     if (sequence == null || pdbentry == null || sequence.length < 1\r
182             || pdbentry.length < 1 || sequence[0].length < 1)\r
183     {\r
184       return ("Jalview Jmol Window");\r
185     }\r
186     // TODO: give a more informative title when multiple structures are\r
187     // displayed.\r
188     StringBuffer title = new StringBuffer(sequence[0][0].getName() + ":"\r
189             + pdbentry[0].getId());\r
190 \r
191     if (pdbentry[0].getProperty() != null)\r
192     {\r
193       if (pdbentry[0].getProperty().get("method") != null)\r
194       {\r
195         title.append(" Method: ");\r
196         title.append(pdbentry[0].getProperty().get("method"));\r
197       }\r
198       if (pdbentry[0].getProperty().get("chains") != null)\r
199       {\r
200         title.append(" Chain:");\r
201         title.append(pdbentry[0].getProperty().get("chains"));\r
202       }\r
203     }\r
204     return title.toString();\r
205   }\r
206 \r
207   /**\r
208    * prepare the view for a given set of models/chains. chainList contains\r
209    * strings of the form 'pdbfilename:Chaincode'\r
210    * \r
211    * @param chainList\r
212    *          list of chains to make visible\r
213    */\r
214   public void centerViewer(Vector chainList)\r
215   {\r
216     StringBuffer cmd = new StringBuffer();\r
217     String lbl;\r
218     int mlength, p;\r
219     for (int i = 0, iSize = chainList.size(); i < iSize; i++)\r
220     {\r
221       mlength = 0;\r
222       lbl = (String) chainList.elementAt(i);\r
223       do\r
224       {\r
225         p = mlength;\r
226         mlength = lbl.indexOf(":", p);\r
227       } while (p < mlength && mlength < (lbl.length() - 2));\r
228       // TODO: lookup each pdb id and recover proper model number for it.\r
229       cmd.append(":" + lbl.substring(mlength + 1) + " /"\r
230               + (1 + getModelNum((String) chainFile.get(lbl))) + " or ");\r
231     }\r
232     if (cmd.length() > 0)\r
233       cmd.setLength(cmd.length() - 4);\r
234     evalStateCommand("select *;restrict " + cmd + ";cartoon;center " + cmd);\r
235   }\r
236 \r
237   public void closeViewer()\r
238   {\r
239     viewer.setModeMouse(org.jmol.viewer.JmolConstants.MOUSE_NONE);\r
240     // remove listeners for all structures in viewer\r
241     ssm.removeStructureViewerListener(this, this.getPdbFile());\r
242     // and shut down jmol\r
243     viewer.evalStringQuiet("zap");\r
244     viewer.setJmolStatusListener(null);\r
245     lastCommand = null;\r
246     viewer = null;\r
247     releaseUIResources();\r
248   }\r
249 \r
250   /**\r
251    * called by JalviewJmolbinding after closeViewer is called - release any\r
252    * resources and references so they can be garbage collected.\r
253    */\r
254   protected abstract void releaseUIResources();\r
255 \r
256   public void colourByChain()\r
257   {\r
258     colourBySequence = false;\r
259     // TODO: colour by chain should colour each chain distinctly across all\r
260     // visible models\r
261     // TODO: http://issues.jalview.org/browse/JAL-628\r
262     evalStateCommand("select *;color chain");\r
263   }\r
264 \r
265   public void colourByCharge()\r
266   {\r
267     colourBySequence = false;\r
268     evalStateCommand("select *;color white;select ASP,GLU;color red;"\r
269             + "select LYS,ARG;color blue;select CYS;color yellow");\r
270   }\r
271 \r
272   /**\r
273    * superpose the structures associated with sequences in the alignment\r
274    * according to their corresponding positions.\r
275    */\r
276   public void superposeStructures(AlignmentI alignment)\r
277   {\r
278     superposeStructures(alignment, -1, null);\r
279   }\r
280 \r
281   /**\r
282    * superpose the structures associated with sequences in the alignment\r
283    * according to their corresponding positions. ded)\r
284    * \r
285    * @param refStructure\r
286    *          - select which pdb file to use as reference (default is -1 - the\r
287    *          first structure in the alignment)\r
288    */\r
289   public void superposeStructures(AlignmentI alignment, int refStructure)\r
290   {\r
291     superposeStructures(alignment, refStructure, null);\r
292   }\r
293 \r
294   /**\r
295    * superpose the structures associated with sequences in the alignment\r
296    * according to their corresponding positions. ded)\r
297    * \r
298    * @param refStructure\r
299    *          - select which pdb file to use as reference (default is -1 - the\r
300    *          first structure in the alignment)\r
301    * @param hiddenCols\r
302    *          TODO\r
303    */\r
304   public void superposeStructures(AlignmentI alignment, int refStructure,\r
305           ColumnSelection hiddenCols)\r
306   {\r
307     superposeStructures(new AlignmentI[]\r
308     { alignment }, new int[]\r
309     { refStructure }, new ColumnSelection[]\r
310     { hiddenCols });\r
311   }\r
312 \r
313   public void superposeStructures(AlignmentI[] _alignment,\r
314           int[] _refStructure, ColumnSelection[] _hiddenCols)\r
315   {\r
316     String[] files = getPdbFile();\r
317     StringBuffer selectioncom = new StringBuffer();\r
318     assert (_alignment.length == _refStructure.length && _alignment.length != _hiddenCols.length);\r
319     // union of all aligned positions are collected together.\r
320     for (int a = 0; a < _alignment.length; a++)\r
321     {\r
322       int refStructure = _refStructure[a];\r
323       AlignmentI alignment = _alignment[a];\r
324       ColumnSelection hiddenCols = _hiddenCols[a];\r
325       if (a > 0\r
326               && selectioncom.length() > 0\r
327               && !selectioncom.substring(selectioncom.length() - 1).equals(\r
328                       "|"))\r
329       {\r
330         selectioncom.append("|");\r
331       }\r
332       // process this alignment\r
333       if (refStructure >= files.length)\r
334       {\r
335         System.err.println("Invalid reference structure value "\r
336                 + refStructure);\r
337         refStructure = -1;\r
338       }\r
339       if (refStructure < -1)\r
340       {\r
341         refStructure = -1;\r
342       }\r
343       StringBuffer command = new StringBuffer();\r
344 \r
345       boolean matched[] = new boolean[alignment.getWidth()];\r
346       for (int m = 0; m < matched.length; m++)\r
347       {\r
348 \r
349         matched[m] = (hiddenCols != null) ? hiddenCols.isVisible(m) : true;\r
350       }\r
351 \r
352       int commonrpositions[][] = new int[files.length][alignment.getWidth()];\r
353       String isel[] = new String[files.length];\r
354       // reference structure - all others are superposed in it\r
355       String[] targetC = new String[files.length];\r
356       String[] chainNames = new String[files.length];\r
357       for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)\r
358       {\r
359         StructureMapping[] mapping = ssm.getMapping(files[pdbfnum]);\r
360 \r
361         if (mapping == null || mapping.length < 1)\r
362           continue;\r
363 \r
364         int lastPos = -1;\r
365         for (int s = 0; s < sequence[pdbfnum].length; s++)\r
366         {\r
367           for (int sp, m = 0; m < mapping.length; m++)\r
368           {\r
369             if (mapping[m].getSequence() == sequence[pdbfnum][s]\r
370                     && (sp = alignment.findIndex(sequence[pdbfnum][s])) > -1)\r
371             {\r
372               if (refStructure == -1)\r
373               {\r
374                 refStructure = pdbfnum;\r
375               }\r
376               SequenceI asp = alignment.getSequenceAt(sp);\r
377               for (int r = 0; r < matched.length; r++)\r
378               {\r
379                 if (!matched[r])\r
380                 {\r
381                   continue;\r
382                 }\r
383                 matched[r] = false; // assume this is not a good site\r
384                 if (r >= asp.getLength())\r
385                 {\r
386                   continue;\r
387                 }\r
388 \r
389                 if (jalview.util.Comparison.isGap(asp.getCharAt(r)))\r
390                 {\r
391                   // no mapping to gaps in sequence\r
392                   continue;\r
393                 }\r
394                 int t = asp.findPosition(r); // sequence position\r
395                 int apos = mapping[m].getAtomNum(t);\r
396                 int pos = mapping[m].getPDBResNum(t);\r
397 \r
398                 if (pos < 1 || pos == lastPos)\r
399                 {\r
400                   // can't align unmapped sequence\r
401                   continue;\r
402                 }\r
403                 matched[r] = true; // this is a good ite\r
404                 lastPos = pos;\r
405                 // just record this residue position\r
406                 commonrpositions[pdbfnum][r] = pos;\r
407               }\r
408               // create model selection suffix\r
409               isel[pdbfnum] = "/" + (pdbfnum + 1) + ".1";\r
410               if (mapping[m].getChain() == null\r
411                       || mapping[m].getChain().trim().length() == 0)\r
412               {\r
413                 targetC[pdbfnum] = "";\r
414               }\r
415               else\r
416               {\r
417                 targetC[pdbfnum] = ":" + mapping[m].getChain();\r
418               }\r
419               chainNames[pdbfnum] = mapping[m].getPdbId()\r
420                       + targetC[pdbfnum];\r
421               // move on to next pdb file\r
422               s = sequence[pdbfnum].length;\r
423               break;\r
424             }\r
425           }\r
426         }\r
427       }\r
428       String[] selcom = new String[files.length];\r
429       int nmatched = 0;\r
430       // generate select statements to select regions to superimpose structures\r
431       {\r
432         for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)\r
433         {\r
434           String chainCd = targetC[pdbfnum];\r
435           int lpos = -1;\r
436           boolean run = false;\r
437           StringBuffer molsel = new StringBuffer();\r
438           molsel.append("{");\r
439           for (int r = 0; r < matched.length; r++)\r
440           {\r
441             if (matched[r])\r
442             {\r
443               if (pdbfnum == 0)\r
444               {\r
445                 nmatched++;\r
446               }\r
447               if (lpos != commonrpositions[pdbfnum][r] - 1)\r
448               {\r
449                 // discontinuity\r
450                 if (lpos != -1)\r
451                 {\r
452                   molsel.append(lpos);\r
453                   molsel.append(chainCd);\r
454                   // molsel.append("} {");\r
455                   molsel.append("|");\r
456                 }\r
457               }\r
458               else\r
459               {\r
460                 // continuous run - and lpos >-1\r
461                 if (!run)\r
462                 {\r
463                   // at the beginning, so add dash\r
464                   molsel.append(lpos);\r
465                   molsel.append("-");\r
466                 }\r
467                 run = true;\r
468               }\r
469               lpos = commonrpositions[pdbfnum][r];\r
470               // molsel.append(lpos);\r
471             }\r
472           }\r
473           // add final selection phrase\r
474           if (lpos != -1)\r
475           {\r
476             molsel.append(lpos);\r
477             molsel.append(chainCd);\r
478             molsel.append("}");\r
479           }\r
480           selcom[pdbfnum] = molsel.toString();\r
481           selectioncom.append("((");\r
482           selectioncom.append(selcom[pdbfnum].substring(1,\r
483                   selcom[pdbfnum].length() - 1));\r
484           selectioncom.append(" )& ");\r
485           selectioncom.append(pdbfnum + 1);\r
486           selectioncom.append(".1)");\r
487           if (pdbfnum < files.length - 1)\r
488           {\r
489             selectioncom.append("|");\r
490           }\r
491         }\r
492       }\r
493       // TODO: consider bailing if nmatched less than 4 because superposition\r
494       // not\r
495       // well defined.\r
496       // TODO: refactor superposable position search (above) from jmol selection\r
497       // construction (below)\r
498       for (int pdbfnum = 0; pdbfnum < files.length; pdbfnum++)\r
499       {\r
500         if (pdbfnum == refStructure)\r
501         {\r
502           continue;\r
503         }\r
504         command.append("echo ");\r
505         command.append("\"Superposing (");\r
506         command.append(chainNames[pdbfnum]);\r
507         command.append(") against reference (");\r
508         command.append(chainNames[refStructure]);\r
509         command.append(")\";\ncompare ");\r
510         command.append("{");\r
511         command.append(1 + pdbfnum);\r
512         command.append(".1} {");\r
513         command.append(1 + refStructure);\r
514         command.append(".1} SUBSET {*.CA | *.P} ATOMS ");\r
515 \r
516         // form the matched pair strings\r
517         String sep = "";\r
518         for (int s = 0; s < 2; s++)\r
519         {\r
520           command.append(selcom[(s == 0 ? pdbfnum : refStructure)]);\r
521         }\r
522         command.append(" ROTATE TRANSLATE;\n");\r
523       }\r
524       System.out.println("Select regions:\n" + selectioncom.toString());\r
525       evalStateCommand("select *; cartoons off; backbone; select ("\r
526               + selectioncom.toString() + "); cartoons; ");\r
527       // selcom.append("; ribbons; ");\r
528       System.out.println("Superimpose command(s):\n" + command.toString());\r
529 \r
530       evalStateCommand(command.toString());\r
531     }\r
532     if (selectioncom.length() > 0)\r
533     {// finally, mark all regions that were superposed.\r
534       if (selectioncom.substring(selectioncom.length() - 1).equals("|"))\r
535       {\r
536         selectioncom.setLength(selectioncom.length() - 1);\r
537       }\r
538       System.out.println("Select regions:\n" + selectioncom.toString());\r
539       evalStateCommand("select *; cartoons off; backbone; select ("\r
540               + selectioncom.toString() + "); cartoons; ");\r
541       // evalStateCommand("select *; backbone; select "+selcom.toString()+"; cartoons; center "+selcom.toString());\r
542     }\r
543   }\r
544 \r
545   public void evalStateCommand(String command)\r
546   {\r
547     jmolHistory(false);\r
548     if (lastCommand == null || !lastCommand.equals(command))\r
549     {\r
550       viewer.evalStringQuiet(command + "\n");\r
551     }\r
552     jmolHistory(true);\r
553     lastCommand = command;\r
554   }\r
555 \r
556   /**\r
557    * colour any structures associated with sequences in the given alignment\r
558    * using the getFeatureRenderer() and getSequenceRenderer() renderers but only\r
559    * if colourBySequence is enabled.\r
560    */\r
561   public void colourBySequence(boolean showFeatures,\r
562           jalview.api.AlignmentViewPanel alignmentv)\r
563   {\r
564     if (!colourBySequence)\r
565       return;\r
566     if (ssm == null)\r
567     {\r
568       return;\r
569     }\r
570     String[] files = getPdbFile();\r
571 \r
572     SequenceRenderer sr = getSequenceRenderer(alignmentv);\r
573 \r
574     FeatureRenderer fr = null;\r
575     if (showFeatures)\r
576     {\r
577       fr = getFeatureRenderer(alignmentv);\r
578     }\r
579     AlignmentI alignment = alignmentv.getAlignment();\r
580 \r
581     for (jalview.structure.StructureMappingcommandSet cpdbbyseq: JmolCommands.getColourBySequenceCommand(ssm, files, sequence, sr, fr, alignment))\r
582       for (String cbyseq : cpdbbyseq.commands) {\r
583       evalStateCommand(cbyseq);\r
584     }\r
585   }\r
586   \r
587   public boolean isColourBySequence()\r
588   {\r
589     return colourBySequence;\r
590   }\r
591 \r
592   public void setColourBySequence(boolean colourBySequence)\r
593   {\r
594     this.colourBySequence = colourBySequence;\r
595   }\r
596 \r
597   public void createImage(String file, String type, int quality)\r
598   {\r
599     System.out.println("JMOL CREATE IMAGE");\r
600   }\r
601 \r
602   public String createImage(String fileName, String type,\r
603           Object textOrBytes, int quality)\r
604   {\r
605     System.out.println("JMOL CREATE IMAGE");\r
606     return null;\r
607   }\r
608 \r
609   public String eval(String strEval)\r
610   {\r
611     // System.out.println(strEval);\r
612     // "# 'eval' is implemented only for the applet.";\r
613     return null;\r
614   }\r
615 \r
616   // End StructureListener\r
617   // //////////////////////////\r
618 \r
619   public float[][] functionXY(String functionName, int x, int y)\r
620   {\r
621     return null;\r
622   }\r
623 \r
624   public float[][][] functionXYZ(String functionName, int nx, int ny, int nz)\r
625   {\r
626     // TODO Auto-generated method stub\r
627     return null;\r
628   }\r
629 \r
630   public Color getColour(int atomIndex, int pdbResNum, String chain,\r
631           String pdbfile)\r
632   {\r
633     if (getModelNum(pdbfile) < 0)\r
634       return null;\r
635     // TODO: verify atomIndex is selecting correct model.\r
636     return new Color(viewer.getAtomArgb(atomIndex));\r
637   }\r
638 \r
639   /**\r
640    * returns the current featureRenderer that should be used to colour the\r
641    * structures\r
642    * \r
643    * @param alignment\r
644    * \r
645    * @return\r
646    */\r
647   public abstract FeatureRenderer getFeatureRenderer(\r
648           AlignmentViewPanel alignment);\r
649 \r
650   /**\r
651    * instruct the Jalview binding to update the pdbentries vector if necessary\r
652    * prior to matching the jmol view's contents to the list of structure files\r
653    * Jalview knows about.\r
654    */\r
655   public abstract void refreshPdbEntries();\r
656 \r
657   private int getModelNum(String modelFileName)\r
658   {\r
659     String[] mfn = getPdbFile();\r
660     if (mfn == null)\r
661     {\r
662       return -1;\r
663     }\r
664     for (int i = 0; i < mfn.length; i++)\r
665     {\r
666       if (mfn[i].equalsIgnoreCase(modelFileName))\r
667         return i;\r
668     }\r
669     return -1;\r
670   }\r
671 \r
672   /**\r
673    * map between index of model filename returned from getPdbFile and the first\r
674    * index of models from this file in the viewer. Note - this is not trimmed -\r
675    * use getPdbFile to get number of unique models.\r
676    */\r
677   private int _modelFileNameMap[];\r
678 \r
679   // ////////////////////////////////\r
680   // /StructureListener\r
681   public synchronized String[] getPdbFile()\r
682   {\r
683     if (viewer == null)\r
684     {\r
685       return new String[0];\r
686     }\r
687     if (modelFileNames == null)\r
688     {\r
689 \r
690       String mset[] = new String[viewer.getModelCount()];\r
691       _modelFileNameMap = new int[mset.length];\r
692       int j = 1;\r
693       mset[0] = viewer.getModelFileName(0);\r
694       for (int i = 1; i < mset.length; i++)\r
695       {\r
696         mset[j] = viewer.getModelFileName(i);\r
697         _modelFileNameMap[j] = i; // record the model index for the filename\r
698         // skip any additional models in the same file (NMR structures)\r
699         if ((mset[j] == null ? mset[j] != mset[j - 1]\r
700                 : (mset[j - 1] == null || !mset[j].equals(mset[j - 1]))))\r
701         {\r
702           j++;\r
703         }\r
704       }\r
705       modelFileNames = new String[j];\r
706       System.arraycopy(mset, 0, modelFileNames, 0, j);\r
707     }\r
708     return modelFileNames;\r
709   }\r
710 \r
711   /**\r
712    * map from string to applet\r
713    */\r
714   public Map getRegistryInfo()\r
715   {\r
716     // TODO Auto-generated method stub\r
717     return null;\r
718   }\r
719 \r
720   /**\r
721    * returns the current sequenceRenderer that should be used to colour the\r
722    * structures\r
723    * \r
724    * @param alignment\r
725    * \r
726    * @return\r
727    */\r
728   public abstract SequenceRenderer getSequenceRenderer(\r
729           AlignmentViewPanel alignment);\r
730 \r
731   // ///////////////////////////////\r
732   // JmolStatusListener\r
733 \r
734   public void handlePopupMenu(int x, int y)\r
735   {\r
736     jmolpopup.show(x, y);\r
737   }\r
738 \r
739   // jmol/ssm only\r
740   public void highlightAtom(int atomIndex, int pdbResNum, String chain,\r
741           String pdbfile)\r
742   {\r
743     if (modelFileNames == null)\r
744     {\r
745       return;\r
746     }\r
747 \r
748     // look up file model number for this pdbfile\r
749     int mdlNum = 0;\r
750     String fn;\r
751     // may need to adjust for URLencoding here - we don't worry about that yet.\r
752     while (mdlNum < modelFileNames.length\r
753             && !pdbfile.equals(modelFileNames[mdlNum]))\r
754     {\r
755       // System.out.println("nomatch:"+pdbfile+"\nmodelfn:"+fn);\r
756       mdlNum++;\r
757     }\r
758     if (mdlNum == modelFileNames.length)\r
759     {\r
760       return;\r
761     }\r
762 \r
763     jmolHistory(false);\r
764     // if (!pdbfile.equals(pdbentry.getFile()))\r
765     // return;\r
766     if (resetLastRes.length() > 0)\r
767     {\r
768       viewer.evalStringQuiet(resetLastRes.toString());\r
769     }\r
770 \r
771     eval.setLength(0);\r
772     eval.append("select " + pdbResNum); // +modelNum\r
773 \r
774     resetLastRes.setLength(0);\r
775     resetLastRes.append("select " + pdbResNum); // +modelNum\r
776 \r
777     eval.append(":");\r
778     resetLastRes.append(":");\r
779     if (!chain.equals(" "))\r
780     {\r
781       eval.append(chain);\r
782       resetLastRes.append(chain);\r
783     }\r
784     {\r
785       eval.append(" /" + (mdlNum + 1));\r
786       resetLastRes.append("/" + (mdlNum + 1));\r
787     }\r
788     eval.append(";wireframe 100;" + eval.toString() + " and not hetero;");\r
789 \r
790     resetLastRes.append(";wireframe 0;" + resetLastRes.toString()\r
791             + " and not hetero; spacefill 0;");\r
792 \r
793     eval.append("spacefill 200;select none");\r
794 \r
795     viewer.evalStringQuiet(eval.toString());\r
796     jmolHistory(true);\r
797 \r
798   }\r
799 \r
800   boolean debug = true;\r
801 \r
802   private void jmolHistory(boolean enable)\r
803   {\r
804     viewer.evalStringQuiet("History " + ((debug || enable) ? "on" : "off"));\r
805   }\r
806 \r
807   public void loadInline(String string)\r
808   {\r
809     loadedInline = true;\r
810     // TODO: re JAL-623\r
811     // viewer.loadInline(strModel, isAppend);\r
812     // could do this:\r
813     // construct fake fullPathName and fileName so we can identify the file\r
814     // later.\r
815     // Then, construct pass a reader for the string to Jmol.\r
816     // ((org.jmol.Viewer.Viewer) viewer).loadModelFromFile(fullPathName,\r
817     // fileName, null, reader, false, null, null, 0);\r
818     viewer.openStringInline(string);\r
819   }\r
820 \r
821   public void mouseOverStructure(int atomIndex, String strInfo)\r
822   {\r
823     int pdbResNum;\r
824     int alocsep = strInfo.indexOf("^");\r
825     int mdlSep = strInfo.indexOf("/");\r
826     int chainSeparator = strInfo.indexOf(":"), chainSeparator1 = -1;\r
827 \r
828     if (chainSeparator == -1)\r
829     {\r
830       chainSeparator = strInfo.indexOf(".");\r
831       if (mdlSep > -1 && mdlSep < chainSeparator)\r
832       {\r
833         chainSeparator1 = chainSeparator;\r
834         chainSeparator = mdlSep;\r
835       }\r
836     }\r
837     // handle insertion codes\r
838     if (alocsep != -1)\r
839     {\r
840       pdbResNum = Integer.parseInt(strInfo.substring(\r
841               strInfo.indexOf("]") + 1, alocsep));\r
842 \r
843     }\r
844     else\r
845     {\r
846       pdbResNum = Integer.parseInt(strInfo.substring(\r
847               strInfo.indexOf("]") + 1, chainSeparator));\r
848     }\r
849     String chainId;\r
850 \r
851     if (strInfo.indexOf(":") > -1)\r
852       chainId = strInfo.substring(strInfo.indexOf(":") + 1,\r
853               strInfo.indexOf("."));\r
854     else\r
855     {\r
856       chainId = " ";\r
857     }\r
858 \r
859     String pdbfilename = modelFileNames[frameNo]; // default is first or current\r
860     // model\r
861     if (mdlSep > -1)\r
862     {\r
863       if (chainSeparator1 == -1)\r
864       {\r
865         chainSeparator1 = strInfo.indexOf(".", mdlSep);\r
866       }\r
867       String mdlId = (chainSeparator1 > -1) ? strInfo.substring(mdlSep + 1,\r
868               chainSeparator1) : strInfo.substring(mdlSep + 1);\r
869       try\r
870       {\r
871         // recover PDB filename for the model hovered over.\r
872         pdbfilename = viewer\r
873                 .getModelFileName(new Integer(mdlId).intValue() - 1);\r
874       } catch (Exception e)\r
875       {\r
876       }\r
877       ;\r
878     }\r
879     if (lastMessage == null || !lastMessage.equals(strInfo))\r
880       ssm.mouseOverStructure(pdbResNum, chainId, pdbfilename);\r
881 \r
882     lastMessage = strInfo;\r
883   }\r
884 \r
885   public void notifyAtomHovered(int atomIndex, String strInfo, String data)\r
886   {\r
887     if (data != null)\r
888     {\r
889       System.err.println("Ignoring additional hover info: " + data\r
890               + " (other info: '" + strInfo + "' pos " + atomIndex + ")");\r
891     }\r
892     mouseOverStructure(atomIndex, strInfo);\r
893   }\r
894 \r
895   /*\r
896    * { if (history != null && strStatus != null &&\r
897    * !strStatus.equals("Script completed")) { history.append("\n" + strStatus);\r
898    * } }\r
899    */\r
900 \r
901   public void notifyAtomPicked(int atomIndex, String strInfo, String strData)\r
902   {\r
903     /**\r
904      * this implements the toggle label behaviour copied from the original\r
905      * structure viewer, MCView\r
906      */\r
907     if (strData != null)\r
908     {\r
909       System.err.println("Ignoring additional pick data string " + strData);\r
910     }\r
911     int chainSeparator = strInfo.indexOf(":");\r
912     int p = 0;\r
913     if (chainSeparator == -1)\r
914       chainSeparator = strInfo.indexOf(".");\r
915 \r
916     String picked = strInfo.substring(strInfo.indexOf("]") + 1,\r
917             chainSeparator);\r
918     String mdlString = "";\r
919     if ((p = strInfo.indexOf(":")) > -1)\r
920       picked += strInfo.substring(p + 1, strInfo.indexOf("."));\r
921 \r
922     if ((p = strInfo.indexOf("/")) > -1)\r
923     {\r
924       mdlString += strInfo.substring(p, strInfo.indexOf(" #"));\r
925     }\r
926     picked = "((" + picked + ".CA" + mdlString + ")|(" + picked + ".P"\r
927             + mdlString + "))";\r
928     jmolHistory(false);\r
929 \r
930     if (!atomsPicked.contains(picked))\r
931     {\r
932       viewer.evalStringQuiet("select " + picked + ";label %n %r:%c");\r
933       atomsPicked.addElement(picked);\r
934     }\r
935     else\r
936     {\r
937       viewer.evalString("select " + picked + ";label off");\r
938       atomsPicked.removeElement(picked);\r
939     }\r
940     jmolHistory(true);\r
941     // TODO: in application this happens\r
942     //\r
943     // if (scriptWindow != null)\r
944     // {\r
945     // scriptWindow.sendConsoleMessage(strInfo);\r
946     // scriptWindow.sendConsoleMessage("\n");\r
947     // }\r
948 \r
949   }\r
950 \r
951   @Override\r
952   public void notifyCallback(EnumCallback type, Object[] data)\r
953   {\r
954     try\r
955     {\r
956       switch (type)\r
957       {\r
958       case LOADSTRUCT:\r
959         notifyFileLoaded((String) data[1], (String) data[2],\r
960                 (String) data[3], (String) data[4],\r
961                 ((Integer) data[5]).intValue());\r
962 \r
963         break;\r
964       case PICK:\r
965         notifyAtomPicked(((Integer) data[2]).intValue(), (String) data[1],\r
966                 (String) data[0]);\r
967         // also highlight in alignment\r
968       case HOVER:\r
969         notifyAtomHovered(((Integer) data[2]).intValue(), (String) data[1],\r
970                 (String) data[0]);\r
971         break;\r
972       case SCRIPT:\r
973         notifyScriptTermination((String) data[2],\r
974                 ((Integer) data[3]).intValue());\r
975         break;\r
976       case ECHO:\r
977         sendConsoleEcho((String) data[1]);\r
978         break;\r
979       case MESSAGE:\r
980         sendConsoleMessage((data == null) ? ((String) null)\r
981                 : (String) data[1]);\r
982         break;\r
983       case ERROR:\r
984         // System.err.println("Ignoring error callback.");\r
985         break;\r
986       case SYNC:\r
987       case RESIZE:\r
988         refreshGUI();\r
989         break;\r
990       case MEASURE:\r
991 \r
992       case CLICK:\r
993       default:\r
994         System.err.println("Unhandled callback " + type + " "\r
995                 + data[1].toString());\r
996         break;\r
997       }\r
998     } catch (Exception e)\r
999     {\r
1000       System.err.println("Squashed Jmol callback handler error:");\r
1001       e.printStackTrace();\r
1002     }\r
1003   }\r
1004 \r
1005   @Override\r
1006   public boolean notifyEnabled(EnumCallback callbackPick)\r
1007   {\r
1008     switch (callbackPick)\r
1009     {\r
1010     case ECHO:\r
1011     case LOADSTRUCT:\r
1012     case MEASURE:\r
1013     case MESSAGE:\r
1014     case PICK:\r
1015     case SCRIPT:\r
1016     case HOVER:\r
1017     case ERROR:\r
1018       return true;\r
1019     case RESIZE:\r
1020     case SYNC:\r
1021     case CLICK:\r
1022     case ANIMFRAME:\r
1023     case MINIMIZATION:\r
1024     }\r
1025     return false;\r
1026   }\r
1027 \r
1028   // incremented every time a load notification is successfully handled -\r
1029   // lightweight mechanism for other threads to detect when they can start\r
1030   // referrring to new structures.\r
1031   private long loadNotifiesHandled = 0;\r
1032 \r
1033   public long getLoadNotifiesHandled()\r
1034   {\r
1035     return loadNotifiesHandled;\r
1036   }\r
1037 \r
1038   public void notifyFileLoaded(String fullPathName, String fileName2,\r
1039           String modelName, String errorMsg, int modelParts)\r
1040   {\r
1041     if (errorMsg != null)\r
1042     {\r
1043       fileLoadingError = errorMsg;\r
1044       refreshGUI();\r
1045       return;\r
1046     }\r
1047     // TODO: deal sensibly with models loaded inLine:\r
1048     // modelName will be null, as will fullPathName.\r
1049 \r
1050     // the rest of this routine ignores the arguments, and simply interrogates\r
1051     // the Jmol view to find out what structures it contains, and adds them to\r
1052     // the structure selection manager.\r
1053     fileLoadingError = null;\r
1054     String[] oldmodels = modelFileNames;\r
1055     modelFileNames = null;\r
1056     chainNames = new Vector();\r
1057     chainFile = new Hashtable();\r
1058     boolean notifyLoaded = false;\r
1059     String[] modelfilenames = getPdbFile();\r
1060     // first check if we've lost any structures\r
1061     if (oldmodels != null && oldmodels.length > 0)\r
1062     {\r
1063       int oldm = 0;\r
1064       for (int i = 0; i < oldmodels.length; i++)\r
1065       {\r
1066         for (int n = 0; n < modelfilenames.length; n++)\r
1067         {\r
1068           if (modelfilenames[n] == oldmodels[i])\r
1069           {\r
1070             oldmodels[i] = null;\r
1071             break;\r
1072           }\r
1073         }\r
1074         if (oldmodels[i] != null)\r
1075         {\r
1076           oldm++;\r
1077         }\r
1078       }\r
1079       if (oldm > 0)\r
1080       {\r
1081         String[] oldmfn = new String[oldm];\r
1082         oldm = 0;\r
1083         for (int i = 0; i < oldmodels.length; i++)\r
1084         {\r
1085           if (oldmodels[i] != null)\r
1086           {\r
1087             oldmfn[oldm++] = oldmodels[i];\r
1088           }\r
1089         }\r
1090         // deregister the Jmol instance for these structures - we'll add\r
1091         // ourselves again at the end for the current structure set.\r
1092         ssm.removeStructureViewerListener(this, oldmfn);\r
1093       }\r
1094     }\r
1095     refreshPdbEntries();\r
1096     for (int modelnum = 0; modelnum < modelfilenames.length; modelnum++)\r
1097     {\r
1098       String fileName = modelfilenames[modelnum];\r
1099       boolean foundEntry = false;\r
1100       MCview.PDBfile pdb = null;\r
1101       String pdbfile = null, pdbfhash = null;\r
1102       // model was probably loaded inline - so check the pdb file hashcode\r
1103       if (loadedInline)\r
1104       {\r
1105         // calculate essential attributes for the pdb data imported inline.\r
1106         // prolly need to resolve modelnumber properly - for now just use our\r
1107         // 'best guess'\r
1108         pdbfile = viewer.getData("" + (1 + _modelFileNameMap[modelnum])\r
1109                 + ".0", "PDB");\r
1110         pdbfhash = "" + pdbfile.hashCode();\r
1111       }\r
1112       if (pdbentry != null)\r
1113       {\r
1114         // search pdbentries and sequences to find correct pdbentry for this\r
1115         // model\r
1116         for (int pe = 0; pe < pdbentry.length; pe++)\r
1117         {\r
1118           boolean matches = false;\r
1119           if (fileName == null)\r
1120           {\r
1121             if (false)\r
1122             // see JAL-623 - need method of matching pasted data up\r
1123             {\r
1124               pdb = ssm.setMapping(sequence[pe], chains[pe], pdbfile,\r
1125                       AppletFormatAdapter.PASTE);\r
1126               pdbentry[modelnum].setFile("INLINE" + pdb.id);\r
1127               matches = true;\r
1128               foundEntry = true;\r
1129             }\r
1130           }\r
1131           else\r
1132           {\r
1133             if (matches = pdbentry[pe].getFile().equals(fileName))\r
1134             {\r
1135               foundEntry = true;\r
1136               // TODO: Jmol can in principle retrieve from CLASSLOADER but\r
1137               // this\r
1138               // needs\r
1139               // to be tested. See mantis bug\r
1140               // https://mantis.lifesci.dundee.ac.uk/view.php?id=36605\r
1141               String protocol = AppletFormatAdapter.URL;\r
1142               try\r
1143               {\r
1144                 File fl = new java.io.File(pdbentry[pe].getFile());\r
1145                 if (fl.exists())\r
1146                 {\r
1147                   protocol = AppletFormatAdapter.FILE;\r
1148                 }\r
1149               } catch (Exception e)\r
1150               {\r
1151               } catch (Error e)\r
1152               {\r
1153               }\r
1154               ;\r
1155               pdb = ssm.setMapping(sequence[pe], chains[pe],\r
1156                       pdbentry[pe].getFile(), protocol);\r
1157 \r
1158             }\r
1159           }\r
1160           if (matches)\r
1161           {\r
1162             // add an entry for every chain in the model\r
1163             for (int i = 0; i < pdb.chains.size(); i++)\r
1164             {\r
1165               String chid = new String(pdb.id + ":"\r
1166                       + ((MCview.PDBChain) pdb.chains.elementAt(i)).id);\r
1167               chainFile.put(chid, pdbentry[pe].getFile());\r
1168               chainNames.addElement(chid);\r
1169             }\r
1170             notifyLoaded = true;\r
1171           }\r
1172         }\r
1173       }\r
1174       if (!foundEntry && associateNewStructs)\r
1175       {\r
1176         // this is a foreign pdb file that jalview doesn't know about - add\r
1177         // it to the dataset and try to find a home - either on a matching\r
1178         // sequence or as a new sequence.\r
1179         String pdbcontent = viewer.getData("/" + (modelnum + 1) + ".1",\r
1180                 "PDB");\r
1181         // parse pdb file into a chain, etc.\r
1182         // locate best match for pdb in associated views and add mapping to\r
1183         // ssm\r
1184         // if properly registered then\r
1185         notifyLoaded = true;\r
1186 \r
1187       }\r
1188     }\r
1189     // FILE LOADED OK\r
1190     // so finally, update the jmol bits and pieces\r
1191     if (jmolpopup != null)\r
1192     {\r
1193       // potential for deadlock here:\r
1194       // jmolpopup.updateComputedMenus();\r
1195     }\r
1196     if (!isLoadingFromArchive())\r
1197     {\r
1198       viewer.evalStringQuiet("model 0; select backbone;restrict;cartoon;wireframe off;spacefill off");\r
1199     }\r
1200     // register ourselves as a listener and notify the gui that it needs to\r
1201     // update itself.\r
1202     ssm.addStructureViewerListener(this);\r
1203     if (notifyLoaded)\r
1204     {\r
1205       FeatureRenderer fr = getFeatureRenderer(null);\r
1206       if (fr != null)\r
1207       {\r
1208         fr.featuresAdded();\r
1209       }\r
1210       refreshGUI();\r
1211       loadNotifiesHandled++;\r
1212     }\r
1213     setLoadingFromArchive(false);\r
1214   }\r
1215 \r
1216   public void notifyNewPickingModeMeasurement(int iatom, String strMeasure)\r
1217   {\r
1218     notifyAtomPicked(iatom, strMeasure, null);\r
1219   }\r
1220 \r
1221   public abstract void notifyScriptTermination(String strStatus,\r
1222           int msWalltime);\r
1223 \r
1224   /**\r
1225    * display a message echoed from the jmol viewer\r
1226    * \r
1227    * @param strEcho\r
1228    */\r
1229   public abstract void sendConsoleEcho(String strEcho); /*\r
1230                                                          * { showConsole(true);\r
1231                                                          * \r
1232                                                          * history.append("\n" +\r
1233                                                          * strEcho); }\r
1234                                                          */\r
1235 \r
1236   // /End JmolStatusListener\r
1237   // /////////////////////////////\r
1238 \r
1239   /**\r
1240    * @param strStatus\r
1241    *          status message - usually the response received after a script\r
1242    *          executed\r
1243    */\r
1244   public abstract void sendConsoleMessage(String strStatus);\r
1245 \r
1246   public void setCallbackFunction(String callbackType,\r
1247           String callbackFunction)\r
1248   {\r
1249     System.err.println("Ignoring set-callback request to associate "\r
1250             + callbackType + " with function " + callbackFunction);\r
1251 \r
1252   }\r
1253 \r
1254   public void setJalviewColourScheme(ColourSchemeI cs)\r
1255   {\r
1256     colourBySequence = false;\r
1257 \r
1258     if (cs == null)\r
1259       return;\r
1260 \r
1261     String res;\r
1262     int index;\r
1263     Color col;\r
1264     jmolHistory(false);\r
1265     // TODO: Switch between nucleotide or aa selection expressions\r
1266     Enumeration en = ResidueProperties.aa3Hash.keys();\r
1267     StringBuffer command = new StringBuffer("select *;color white;");\r
1268     while (en.hasMoreElements())\r
1269     {\r
1270       res = en.nextElement().toString();\r
1271       index = ((Integer) ResidueProperties.aa3Hash.get(res)).intValue();\r
1272       if (index > 20)\r
1273         continue;\r
1274 \r
1275       col = cs.findColour(ResidueProperties.aa[index].charAt(0));\r
1276 \r
1277       command.append("select " + res + ";color[" + col.getRed() + ","\r
1278               + col.getGreen() + "," + col.getBlue() + "];");\r
1279     }\r
1280 \r
1281     evalStateCommand(command.toString());\r
1282     jmolHistory(true);\r
1283   }\r
1284 \r
1285   public void showHelp()\r
1286   {\r
1287     showUrl("http://jmol.sourceforge.net/docs/JmolUserGuide/", "jmolHelp");\r
1288   }\r
1289 \r
1290   /**\r
1291    * open the URL somehow\r
1292    * \r
1293    * @param target\r
1294    */\r
1295   public abstract void showUrl(String url, String target);\r
1296 \r
1297   /**\r
1298    * called when the binding thinks the UI needs to be refreshed after a Jmol\r
1299    * state change. this could be because structures were loaded, or because an\r
1300    * error has occured.\r
1301    */\r
1302   public abstract void refreshGUI();\r
1303 \r
1304   /**\r
1305    * called to show or hide the associated console window container.\r
1306    * \r
1307    * @param show\r
1308    */\r
1309   public abstract void showConsole(boolean show);\r
1310 \r
1311   /**\r
1312    * @param renderPanel\r
1313    * @param jmolfileio\r
1314    *          - when true will initialise jmol's file IO system (should be false\r
1315    *          in applet context)\r
1316    * @param htmlName\r
1317    * @param documentBase\r
1318    * @param codeBase\r
1319    * @param commandOptions\r
1320    */\r
1321   public void allocateViewer(Container renderPanel, boolean jmolfileio,\r
1322           String htmlName, URL documentBase, URL codeBase,\r
1323           String commandOptions)\r
1324   {\r
1325     allocateViewer(renderPanel, jmolfileio, htmlName, documentBase,\r
1326             codeBase, commandOptions, null, null);\r
1327   }\r
1328 \r
1329   /**\r
1330    * \r
1331    * @param renderPanel\r
1332    * @param jmolfileio\r
1333    *          - when true will initialise jmol's file IO system (should be false\r
1334    *          in applet context)\r
1335    * @param htmlName\r
1336    * @param documentBase\r
1337    * @param codeBase\r
1338    * @param commandOptions\r
1339    * @param consolePanel\r
1340    *          - panel to contain Jmol console\r
1341    * @param buttonsToShow\r
1342    *          - buttons to show on the console, in ordr\r
1343    */\r
1344   public void allocateViewer(Container renderPanel, boolean jmolfileio,\r
1345           String htmlName, URL documentBase, URL codeBase,\r
1346           String commandOptions, final Container consolePanel,\r
1347           String buttonsToShow)\r
1348   {\r
1349     if (commandOptions==null) {
1350       commandOptions="";
1351     }
1352     viewer = JmolViewer.allocateViewer(renderPanel,\r
1353             (jmolfileio ? new SmarterJmolAdapter() : null), htmlName\r
1354                     + ((Object) this).toString(), documentBase, codeBase,\r
1355             commandOptions, this);\r
1356 \r
1357     console = createJmolConsole(viewer, consolePanel, buttonsToShow);\r
1358     if (consolePanel != null)\r
1359     {\r
1360       consolePanel.addComponentListener(this);\r
1361 \r
1362     }\r
1363 \r
1364   }\r
1365 \r
1366   protected abstract JmolAppConsoleInterface createJmolConsole(\r
1367           JmolViewer viewer2, Container consolePanel, String buttonsToShow);\r
1368 \r
1369   protected org.jmol.api.JmolAppConsoleInterface console = null;\r
1370 \r
1371   public void componentResized(ComponentEvent e)\r
1372   {\r
1373 \r
1374   }\r
1375 \r
1376   public void componentMoved(ComponentEvent e)\r
1377   {\r
1378 \r
1379   }\r
1380 \r
1381   public void componentShown(ComponentEvent e)\r
1382   {\r
1383     showConsole(true);\r
1384   }\r
1385 \r
1386   public void componentHidden(ComponentEvent e)\r
1387   {\r
1388     showConsole(false);\r
1389   }\r
1390 \r
1391   public void setLoadingFromArchive(boolean loadingFromArchive)\r
1392   {\r
1393     this.loadingFromArchive = loadingFromArchive;\r
1394   }\r
1395 \r
1396   public boolean isLoadingFromArchive()\r
1397   {\r
1398     return loadingFromArchive;\r
1399   }\r
1400 \r
1401   public void setBackgroundColour(java.awt.Color col)\r
1402   {\r
1403     jmolHistory(false);\r
1404     viewer.evalStringQuiet("background [" + col.getRed() + ","\r
1405             + col.getGreen() + "," + col.getBlue() + "];");\r
1406     jmolHistory(true);\r
1407   }\r
1408 \r
1409   /**\r
1410    * add structures and any known sequence associations\r
1411    * \r
1412    * @returns the pdb entries added to the current set.\r
1413    */\r
1414   public synchronized PDBEntry[] addSequenceAndChain(PDBEntry[] pdbe,\r
1415           SequenceI[][] seq, String[][] chns)\r
1416   {\r
1417     int pe = -1;\r
1418     Vector v = new Vector();\r
1419     Vector rtn = new Vector();\r
1420     for (int i = 0; i < pdbentry.length; i++)\r
1421     {\r
1422       v.addElement(pdbentry[i]);\r
1423     }\r
1424     for (int i = 0; i < pdbe.length; i++)\r
1425     {\r
1426       int r = v.indexOf(pdbe[i]);\r
1427       if (r == -1 || r >= pdbentry.length)\r
1428       {\r
1429         rtn.addElement(new int[]\r
1430         { v.size(), i });\r
1431         v.addElement(pdbe[i]);\r
1432       }\r
1433       else\r
1434       {\r
1435         // just make sure the sequence/chain entries are all up to date\r
1436         addSequenceAndChain(r, seq[i], chns[i]);\r
1437       }\r
1438     }\r
1439     pdbe = new PDBEntry[v.size()];\r
1440     v.copyInto(pdbe);\r
1441     pdbentry = pdbe;\r
1442     if (rtn.size() > 0)\r
1443     {\r
1444       // expand the tied seuqence[] and string[] arrays\r
1445       SequenceI[][] sqs = new SequenceI[pdbentry.length][];\r
1446       String[][] sch = new String[pdbentry.length][];\r
1447       System.arraycopy(sequence, 0, sqs, 0, sequence.length);\r
1448       System.arraycopy(chains, 0, sch, 0, this.chains.length);\r
1449       sequence = sqs;\r
1450       chains = sch;\r
1451       pdbe = new PDBEntry[rtn.size()];\r
1452       for (int r = 0; r < pdbe.length; r++)\r
1453       {\r
1454         int[] stri = ((int[]) rtn.elementAt(r));\r
1455         // record the pdb file as a new addition\r
1456         pdbe[r] = pdbentry[stri[0]];\r
1457         // and add the new sequence/chain entries\r
1458         addSequenceAndChain(stri[0], seq[stri[1]], chns[stri[1]]);\r
1459       }\r
1460     }\r
1461     else\r
1462     {\r
1463       pdbe = null;\r
1464     }\r
1465     return pdbe;\r
1466   }\r
1467 \r
1468   public void addSequence(int pe, SequenceI[] seq)\r
1469   {\r
1470     // add sequences to the pe'th pdbentry's seuqence set.\r
1471     addSequenceAndChain(pe, seq, null);\r
1472   }\r
1473 \r
1474   private void addSequenceAndChain(int pe, SequenceI[] seq, String[] tchain)\r
1475   {\r
1476     if (pe < 0 || pe >= pdbentry.length)\r
1477     {\r
1478       throw new Error(\r
1479               "Implementation error - no corresponding pdbentry (for index "\r
1480                       + pe + ") to add sequences mappings to");\r
1481     }\r
1482     final String nullChain = "TheNullChain";\r
1483     Vector s = new Vector();\r
1484     Vector c = new Vector();\r
1485     if (chains == null)\r
1486     {\r
1487       chains = new String[pdbentry.length][];\r
1488     }\r
1489     if (sequence[pe] != null)\r
1490     {\r
1491       for (int i = 0; i < sequence[pe].length; i++)\r
1492       {\r
1493         s.addElement(sequence[pe][i]);\r
1494         if (chains[pe] != null)\r
1495         {\r
1496           if (i < chains[pe].length)\r
1497           {\r
1498             c.addElement(chains[pe][i]);\r
1499           }\r
1500           else\r
1501           {\r
1502             c.addElement(nullChain);\r
1503           }\r
1504         }\r
1505         else\r
1506         {\r
1507           if (tchain != null && tchain.length > 0)\r
1508           {\r
1509             c.addElement(nullChain);\r
1510           }\r
1511         }\r
1512       }\r
1513     }\r
1514     for (int i = 0; i < seq.length; i++)\r
1515     {\r
1516       if (!s.contains(seq[i]))\r
1517       {\r
1518         s.addElement(seq[i]);\r
1519         if (tchain != null && i < tchain.length)\r
1520         {\r
1521           c.addElement(tchain[i] == null ? nullChain : tchain[i]);\r
1522         }\r
1523       }\r
1524     }\r
1525     SequenceI[] tmp = new SequenceI[s.size()];\r
1526     s.copyInto(tmp);\r
1527     sequence[pe] = tmp;\r
1528     if (c.size() > 0)\r
1529     {\r
1530       String[] tch = new String[c.size()];\r
1531       c.copyInto(tch);\r
1532       for (int i = 0; i < tch.length; i++)\r
1533       {\r
1534         if (tch[i] == nullChain)\r
1535         {\r
1536           tch[i] = null;\r
1537         }\r
1538       }\r
1539       chains[pe] = tch;\r
1540     }\r
1541     else\r
1542     {\r
1543       chains[pe] = null;\r
1544     }\r
1545   }\r
1546   /**\r
1547    * \r
1548    * @param pdbfile\r
1549    * @return text report of alignment between pdbfile and any associated alignment sequences\r
1550    */\r
1551   public String printMapping(String pdbfile)\r
1552   {\r
1553     return ssm.printMapping(pdbfile);\r
1554   }\r
1555   @Override\r
1556   public void resizeInnerPanel(String data)\r
1557   {\r
1558     // Jalview doesn't honour resize panel requests\r
1559     \r
1560   }\r
1561 }\r