X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Frenderer%2Fseqfeatures%2FFeatureRenderer.java;h=1ccb6733676f30bd8586d6d6bd1e4cbeee1da0fc;hb=7b2f004da1302ca4cb155c7470c0fe47f6bb2a49;hp=8c6bc5e0bce1f0f62160581c69e0acfa96475af2;hpb=408b2821c8daf99245bf6358d06760701d90ddd8;p=jalview.git diff --git a/src/jalview/renderer/seqfeatures/FeatureRenderer.java b/src/jalview/renderer/seqfeatures/FeatureRenderer.java index 8c6bc5e..1ccb673 100644 --- a/src/jalview/renderer/seqfeatures/FeatureRenderer.java +++ b/src/jalview/renderer/seqfeatures/FeatureRenderer.java @@ -51,6 +51,8 @@ public class FeatureRenderer extends FeatureRendererModel boolean av_validCharWidth, av_isShowSeqFeatureHeight; + private Integer currentColour; + /** * Constructor given a viewport * @@ -186,15 +188,20 @@ public class FeatureRenderer extends FeatureRendererModel } /** - * This is used by the Molecule Viewer and Overview to get the accurate - * colourof the rendered sequence + * This is used by Structure Viewers and the Overview Window to get the + * feature colour of the rendered sequence, returned as an RGB value + * + * @param defaultColour + * @param seq + * @param column + * @return */ - public synchronized int findFeatureColour(int initialCol, + public synchronized int findFeatureColour(int defaultColour, final SequenceI seq, int column) { if (!av.isShowSequenceFeatures()) { - return initialCol; + return defaultColour; } SequenceFeature[] sequenceFeatures = seq.getSequenceFeatures(); @@ -221,7 +228,7 @@ public class FeatureRenderer extends FeatureRendererModel if (lastSequenceFeatures == null || sfSize == 0) { - return initialCol; + return defaultColour; } if (jalview.util.Comparison.isGap(lastSeq.getCharAt(column))) @@ -242,7 +249,7 @@ public class FeatureRenderer extends FeatureRendererModel if (offscreenImage != null) { - offscreenImage.setRGB(0, 0, initialCol); + offscreenImage.setRGB(0, 0, defaultColour); drawSequence(offscreenImage.getGraphics(), lastSeq, column, column, 0); return offscreenImage.getRGB(0, 0); @@ -253,11 +260,11 @@ public class FeatureRenderer extends FeatureRendererModel if (currentColour == null) { - return initialCol; + return defaultColour; } else { - return ((Integer) currentColour).intValue(); + return currentColour.intValue(); } } @@ -273,6 +280,19 @@ public class FeatureRenderer extends FeatureRendererModel int epos; + /** + * Draws the sequence on the graphics context, or just determines the colour + * that would be drawn (if flag offscreenrender is true). + * + * @param g + * @param seq + * @param start + * start column (or sequence position in offscreenrender mode) + * @param end + * end column (not used in offscreenrender mode) + * @param y1 + * vertical offset at which to draw on the graphics + */ public synchronized void drawSequence(Graphics g, final SequenceI seq, int start, int end, int y1) { @@ -310,12 +330,9 @@ public class FeatureRenderer extends FeatureRendererModel } sfSize = lastSequenceFeatures.length; - String type; - for (int renderIndex = 0; renderIndex < renderOrder.length; renderIndex++) + for (String type : renderOrder) { - type = renderOrder[renderIndex]; - - if (type == null || !showFeatureOfType(type)) + if (!showFeatureOfType(type)) { continue; } @@ -330,16 +347,16 @@ public class FeatureRenderer extends FeatureRendererModel continue; } - if (featureGroups != null - && sequenceFeature.featureGroup != null - && sequenceFeature.featureGroup.length() != 0 - && featureGroups.containsKey(sequenceFeature.featureGroup) - && !featureGroups.get(sequenceFeature.featureGroup) - .booleanValue()) + if (featureGroupNotShown(sequenceFeature)) { continue; } + /* + * check feature overlaps the visible part of the alignment, + * unless doing offscreenRender (to the Overview window or a + * structure viewer) which is not limited + */ if (!offscreenRender && (sequenceFeature.getBegin() > epos || sequenceFeature .getEnd() < spos)) @@ -347,35 +364,43 @@ public class FeatureRenderer extends FeatureRendererModel continue; } + Color featureColour = getColour(sequenceFeature); + boolean isContactFeature = sequenceFeature.isContactFeature(); + if (offscreenRender && offscreenImage == null) { - if (sequenceFeature.begin <= start - && sequenceFeature.end >= start) + /* + * offscreen mode with no image (image is only needed if transparency + * is applied to feature colours) - just check feature is rendered at + * the requested position (start == sequence position in this mode) + */ + boolean featureIsAtPosition = sequenceFeature.begin <= start + && sequenceFeature.end >= start; + if (isContactFeature) + { + featureIsAtPosition = sequenceFeature.begin == start + || sequenceFeature.end == start; + } + if (featureIsAtPosition) { // this is passed out to the overview and other sequence renderers // (e.g. molecule viewer) to get displayed colour for rendered // sequence - currentColour = new Integer(getColour(sequenceFeature).getRGB()); + currentColour = new Integer(featureColour.getRGB()); // used to be retreived from av.featuresDisplayed // currentColour = av.featuresDisplayed // .get(sequenceFeatures[sfindex].type); } } - else if (sequenceFeature.type.equals("disulfide bond")) + else if (isContactFeature) { renderFeature(g, seq, seq.findIndex(sequenceFeature.begin) - 1, - seq.findIndex(sequenceFeature.begin) - 1, - getColour(sequenceFeature) - // new Color(((Integer) av.featuresDisplayed - // .get(sequenceFeatures[sfindex].type)).intValue()) - , start, end, y1); + seq.findIndex(sequenceFeature.begin) - 1, featureColour, + start, end, y1); renderFeature(g, seq, seq.findIndex(sequenceFeature.end) - 1, - seq.findIndex(sequenceFeature.end) - 1, - getColour(sequenceFeature) - // new Color(((Integer) av.featuresDisplayed - // .get(sequenceFeatures[sfindex].type)).intValue()) - , start, end, y1); + seq.findIndex(sequenceFeature.end) - 1, featureColour, + start, end, y1); } else if (showFeature(sequenceFeature)) @@ -386,19 +411,17 @@ public class FeatureRenderer extends FeatureRendererModel renderScoreFeature(g, seq, seq.findIndex(sequenceFeature.begin) - 1, seq.findIndex(sequenceFeature.end) - 1, - getColour(sequenceFeature), start, end, y1, + featureColour, start, end, y1, normaliseScore(sequenceFeature)); } else { renderFeature(g, seq, seq.findIndex(sequenceFeature.begin) - 1, seq.findIndex(sequenceFeature.end) - 1, - getColour(sequenceFeature), start, end, y1); + featureColour, start, end, y1); } } - } - } if (transparency != 1.0f && g != null) @@ -410,6 +433,24 @@ public class FeatureRenderer extends FeatureRendererModel } /** + * Answers true if the feature belongs to a feature group which is not + * currently displayed, else false + * + * @param sequenceFeature + * @return + */ + protected boolean featureGroupNotShown( + final SequenceFeature sequenceFeature) + { + return featureGroups != null + && sequenceFeature.featureGroup != null + && sequenceFeature.featureGroup.length() != 0 + && featureGroups.containsKey(sequenceFeature.featureGroup) + && !featureGroups.get(sequenceFeature.featureGroup) + .booleanValue(); + } + + /** * Called when alignment in associated view has new/modified features to * discover and display. *