summaryrefslogtreecommitdiff
path: root/altosuilib/AltosUITimeSeries.java
blob: e85e3c17774aadde406577d93e7a5cdd82cf0635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*
 * Copyright © 2017 Keith Packard <keithp@keithp.com>
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
 */

package org.altusmetrum.altosuilib_12;

import java.io.*;
import java.util.ArrayList;

import java.awt.*;
import javax.swing.*;
import org.altusmetrum.altoslib_12.*;

import org.jfree.ui.*;
import org.jfree.chart.*;
import org.jfree.chart.plot.*;
import org.jfree.chart.axis.*;
import org.jfree.chart.renderer.*;
import org.jfree.chart.renderer.xy.*;
import org.jfree.chart.labels.*;
import org.jfree.data.xy.*;
import org.jfree.data.*;

class AltosUITime extends AltosUnits {
	public double value(double v, boolean imperial_units) { return v; }

	public double inverse(double v, boolean imperial_unis) { return v; }

	public String show_units(boolean imperial_units) { return "s"; }

	public String say_units(boolean imperial_units) { return "seconds"; }

	public int show_fraction(int width, boolean imperial_units) {
		if (width < 5)
			return 0;
		return width - 5;
	}

	public int say_fraction(boolean imperial_units) { return 0; }
}

class AltosXYSeries extends XYSeries {

	public AltosXYSeries(String label) {
		super(label);
	}
}

public class AltosUITimeSeries extends AltosTimeSeries implements AltosUIGrapher {
	AltosUILineStyle	line_style;
	boolean			enable;
	boolean			custom_axis_set;
	AltosUIAxis		axis;
	boolean			marker;
	boolean			marker_top;
	XYLineAndShapeRenderer	renderer;
	XYPlot			plot;
	AltosXYSeries		xy_series;
	ArrayList<ValueMarker>	markers;
	float			width;

	/* AltosUIGrapher interface */
	public boolean need_reset() {
		return false;
	}

	public void clear() {
	}

	public void add(AltosUIDataPoint dataPoint) {
	}

	public void setNotify(boolean notify) {
	}

	public void fireSeriesChanged() {
	}

	public void set_data() {
		if (marker) {
			if (markers != null) {
				for (ValueMarker marker : markers)
					plot.removeDomainMarker(marker);
			}
			markers = new ArrayList<ValueMarker>();
			for (AltosTimeValue v : this) {
				String s = units.string_value(v.value);
				ValueMarker marker = new ValueMarker(v.time);
				marker.setLabel(s);
				if (marker_top) {
					marker.setLabelAnchor(RectangleAnchor.TOP_RIGHT);
					marker.setLabelTextAnchor(TextAnchor.TOP_LEFT);
				} else {
					marker.setLabelAnchor(RectangleAnchor.BOTTOM_RIGHT);
					marker.setLabelTextAnchor(TextAnchor.BOTTOM_LEFT);
				}
				marker.setPaint(line_style.color);
				marker.setStroke(new BasicStroke(width, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
				if (enable)
					plot.addDomainMarker(marker);
				markers.add(marker);
			}
		} else {
			xy_series.clear();

			xy_series.setNotify(false);
			for (AltosTimeValue v : this) {
				double value = v.value;
				if (units != null)
					value = units.graph_value(value);
				xy_series.add(v.time, value);
			}
			xy_series.setNotify(true);
		}
		clear_changed();
	}

	public void set_units() {
		axis.set_units();
		StandardXYToolTipGenerator	ttg;

		if (units != null) {
			String	time_example = (new AltosUITime()).graph_format(7);
			String  example = units.graph_format(7);

			ttg = new StandardXYToolTipGenerator(String.format("{1}s: {2}%s ({0})",
									   units.graph_units()),
							     new java.text.DecimalFormat(time_example),
							     new java.text.DecimalFormat(example));
			renderer.setBaseToolTipGenerator(ttg);
		}
		set_data();
	}

	public AltosXYSeries xy_series() {
		return xy_series;
	}

	public void set_enable(boolean enable) {
		if (this.enable != enable) {
			this.enable = enable;
			if (marker) {
				for (ValueMarker marker : markers) {
					if (enable)
						plot.addDomainMarker(marker);
					else
						plot.removeDomainMarker(marker);
				}
			} else {
				renderer.setSeriesVisible(0, enable);
				axis.set_enable(enable);
			}
		}
	}

	// public BasicStroke(float width, int cap, int join, float miterlimit,
	// float dash[], float dash_phase)

	public void set_line_width(float width) {
		this.width = width;
		if (markers != null) {
			for (ValueMarker marker : markers) {
				marker.setStroke(new BasicStroke(width, BasicStroke.CAP_BUTT, BasicStroke.JOIN_BEVEL));
			}
		} else {
			if (line_style.dash[0] == 0.0)
				renderer.setSeriesStroke(0, new BasicStroke(width, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND));
			else
				renderer.setSeriesStroke(0, new BasicStroke(width, BasicStroke.CAP_ROUND, BasicStroke.JOIN_ROUND, 10.0f, line_style.dash, 0.0f));
		}
	}

	public void set_axis(AltosUILineStyle line_style, boolean enable, AltosUIAxis axis) {
		this.line_style = line_style;
		this.enable = enable;
		this.axis = axis;
		this.marker = false;
		this.width = 1.0f;

		axis.ref(this.enable);

		renderer = new XYLineAndShapeRenderer(true, false);
		renderer.setSeriesPaint(0, line_style.color);
		set_line_width(this.width);
		renderer.setSeriesVisible(0, enable);
		xy_series = new AltosXYSeries(label);
	}

	public void set_marker(AltosUILineStyle line_style, boolean enable, XYPlot plot, boolean marker_top) {
		this.line_style = line_style;
		this.enable = enable;
		this.marker = true;
		this.plot = plot;
		this.marker_top = marker_top;
	}

	public void set_shapes_visible(boolean shapes_visible) {
		renderer.setSeriesShapesVisible(0, shapes_visible);
	}

	public AltosUITimeSeries(String label, AltosUnits units) {
		super(label, units);
	}

	public AltosUITimeSeries(String label, AltosUnits units,
				 AltosUILineStyle line_style, boolean enable,
				 AltosUIAxis axis) {
		this(label, units);
		set_axis(line_style, enable, axis);
	}
}