1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-01 16:10:48 +00:00
plantuml/src/net/sourceforge/plantuml/project/draw/ResourceDraw.java

122 lines
4.2 KiB
Java
Raw Normal View History

2018-04-06 20:36:30 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2019-01-16 18:34:41 +00:00
* (C) Copyright 2009-2020, Arnaud Roques
2018-04-06 20:36:30 +00:00
*
* Project Info: http://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML 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 General Public
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
*
* Original Author: Arnaud Roques
*
*
*/
2020-02-18 21:24:31 +00:00
package net.sourceforge.plantuml.project.draw;
2018-04-06 20:36:30 +00:00
import net.sourceforge.plantuml.SpriteContainerEmpty;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.UDrawable;
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.project.GanttDiagram;
import net.sourceforge.plantuml.project.core.Resource;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.project.time.Wink;
2020-02-18 21:24:31 +00:00
import net.sourceforge.plantuml.project.timescale.TimeScale;
2018-04-06 20:36:30 +00:00
import net.sourceforge.plantuml.ugraphic.UFont;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.ULine;
import net.sourceforge.plantuml.ugraphic.UTranslate;
2020-03-18 10:50:02 +00:00
import net.sourceforge.plantuml.ugraphic.color.HColor;
import net.sourceforge.plantuml.ugraphic.color.HColorUtils;
2018-04-06 20:36:30 +00:00
public class ResourceDraw implements UDrawable {
private final Resource res;
private final TimeScale timeScale;
private final double y;
2020-02-18 21:24:31 +00:00
private final Wink min;
private final Wink max;
2018-04-06 20:36:30 +00:00
private final GanttDiagram gantt;
2020-02-18 21:24:31 +00:00
public ResourceDraw(GanttDiagram gantt, Resource res, TimeScale timeScale, double y, Wink min, Wink max) {
2018-04-06 20:36:30 +00:00
this.res = res;
this.timeScale = timeScale;
this.y = y;
this.min = min;
this.max = max;
this.gantt = gantt;
}
public void drawU(UGraphic ug) {
final TextBlock title = Display.getWithNewlines(res.getName()).create(getFontConfiguration(13),
HorizontalAlignment.LEFT, new SpriteContainerEmpty());
title.drawU(ug);
2020-03-18 10:50:02 +00:00
final ULine line = ULine.hline(timeScale.getEndingPosition(max) - timeScale.getStartingPosition(min));
2020-04-19 16:04:39 +00:00
ug.apply(HColorUtils.BLACK)
2020-03-18 10:50:02 +00:00
.apply(UTranslate.dy(title.calculateDimension(ug.getStringBounder()).getHeight())).draw(line);
2020-02-18 21:24:31 +00:00
for (Wink i = min; i.compareTo(max) <= 0; i = i.increment()) {
2018-04-06 20:36:30 +00:00
final int load = gantt.getLoadForResource(res, i);
if (load > 0) {
2020-03-18 10:50:02 +00:00
final FontConfiguration fontConfiguration = getFontConfiguration(9, load > 100 ? HColorUtils.RED
: HColorUtils.BLACK);
2018-04-06 20:36:30 +00:00
final TextBlock value = Display.getWithNewlines("" + load).create(fontConfiguration,
HorizontalAlignment.LEFT, new SpriteContainerEmpty());
final double start = (timeScale.getStartingPosition(i) + timeScale.getEndingPosition(i)) / 2
- value.calculateDimension(ug.getStringBounder()).getWidth() / 2;
value.drawU(ug.apply(new UTranslate(start, 16)));
}
}
}
private FontConfiguration getFontConfiguration(int size) {
2020-03-18 10:50:02 +00:00
return getFontConfiguration(size, HColorUtils.BLACK);
2018-04-06 20:36:30 +00:00
}
2020-03-18 10:50:02 +00:00
private FontConfiguration getFontConfiguration(int size, HColor color) {
2018-04-06 20:36:30 +00:00
final UFont font = UFont.serif(size);
return new FontConfiguration(font, color, color, false);
}
// public void setColors(ComplementColors colors);
//
// public double getY();
//
// public double getY(Direction direction);
//
// public void drawTitle(UGraphic ug);
public double getHeight() {
return 16 * 2;
}
public double getY() {
return y;
}
}