/* Copyright 2008-2010 Gephi Authors : Jeremy Subtil <jeremy.subtil@gephi.org> Website : http://www.gephi.org This file is part of Gephi. Gephi is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Gephi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Gephi. If not, see <http://www.gnu.org/licenses/>. */ package org.gephi.preview.supervisors; import java.util.HashSet; import java.util.Set; import org.gephi.preview.GraphImpl; import org.gephi.preview.SelfLoopImpl; import org.gephi.preview.api.EdgeColorizer; import org.gephi.preview.api.SupervisorPropery; import org.gephi.preview.api.supervisors.SelfLoopSupervisor; import org.gephi.preview.propertyeditors.EdgeColorizerPropertyEditor; import org.gephi.preview.updaters.CustomColorMode; /** * Self-loop supervisor implementation. * * @author Jérémy Subtil <jeremy.subtil@gephi.org> */ public class SelfLoopSupervisorImpl implements SelfLoopSupervisor { //Properties private Boolean show; private EdgeColorizer colorizer; private Float edgeScale; protected Boolean rescaleWeight; //Architecture private final Set<SelfLoopImpl> supervisedSelfLoops = new HashSet<SelfLoopImpl>(); public SelfLoopSupervisorImpl() { defaultValues(); } public Boolean getRescaleWeight() { return rescaleWeight; } public void setRescaleWeight(Boolean rescaleWeight) { this.rescaleWeight = rescaleWeight; } public void defaultValues() { show = true; colorizer = new CustomColorMode(0, 0, 0); edgeScale = new Float(1f); rescaleWeight = Boolean.FALSE; } public Float getEdgeScale() { return edgeScale; } public void setEdgeScale(Float edgeScale) { this.edgeScale = edgeScale; } /** * Adds the given self-loop to the list of the supervised self-loops. * * It updates the self-loop with the supervisor's values. * * @param selfLoop the self-loop to supervise */ public void addSelfLoop(SelfLoopImpl edge) { supervisedSelfLoops.add(edge); float weight = edge.getThickness(); float min = edge.getGraph().getMinWeight(); float max = edge.getGraph().getMaxWeight(); if (rescaleWeight) { if (!Double.isInfinite(min) && !Double.isInfinite(max) && max != min) { float ratio = (GraphImpl.WEIGHT_MAXIMUM - GraphImpl.WEIGHT_MINIMUM) / (max - min); weight = (weight - min) * ratio + GraphImpl.WEIGHT_MINIMUM; } } else if (min <= 0) { weight += Math.abs(min) + 1; } edge.setThickness(weight); colorSelfLoops(); } /** * Clears the list of supervised self-loops. */ public void clearSupervised() { supervisedSelfLoops.clear(); } /** * Returns true if the self-loops must be displayed in the preview. * * @return true if the self-loops must be displayed in the preview */ public Boolean getShowFlag() { return show; } /** * Defines if the self-loops must be displayed in the preview. * * @param value true to display the self-loops in the preview */ public void setShowFlag(Boolean value) { show = value; } /** * Returns the self-loop colorizer. * * @return the self-loop colorizer */ public EdgeColorizer getColorizer() { return colorizer; } /** * Sets the self-loop colorizer. * * @param value the self-loop colorizer to set */ public void setColorizer(EdgeColorizer value) { colorizer = value; colorSelfLoops(); } /** * Colors the given self-loop. * * @param selfLoop the self-loop to color */ private void colorSelfLoop(SelfLoopImpl selfLoop) { colorizer.color(selfLoop); } /** * Colors the supervised self-loops. */ private void colorSelfLoops() { for (SelfLoopImpl sl : supervisedSelfLoops) { colorSelfLoop(sl); } } public SupervisorPropery[] getProperties() { final String CATEGORY = "Self-Loop"; try { return new SupervisorPropery[]{ SupervisorPropery.createProperty(this, Boolean.class, "SelfLoop_showFlag", CATEGORY, "Show", "getShowFlag", "setShowFlag"), SupervisorPropery.createProperty(this, Float.class, "SelfLoop_edgeScale", CATEGORY, "Thickness", "getEdgeScale", "setEdgeScale"), SupervisorPropery.createProperty(this, Boolean.class, "SelfLoop_rescaleWeight", CATEGORY, "Rescale Weight", "getRescaleWeight", "setRescaleWeight"), SupervisorPropery.createProperty(this, EdgeColorizer.class, "SelfLoop_colorizer", CATEGORY, "Color", "getColorizer", "setColorizer", EdgeColorizerPropertyEditor.class)}; } catch (Exception e) { e.printStackTrace(); } return new SupervisorPropery[0]; } }