Newer
Older
* Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de>
* RWTH Aachen University - 52062 Aachen, Germany
*
* LibLaserCut is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LibLaserCut 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>.
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
**/
package com.t_oster.liblasercut.laserscript;
import com.t_oster.liblasercut.LaserProperty;
import com.t_oster.liblasercut.VectorPart;
import java.awt.geom.AffineTransform;
/**
*
* @author Thomas Oster <thomas.oster@rwth-aachen.de>
*/
public class VectorPartScriptInterface implements ScriptInterface
{
private VectorPart vp;
private AffineTransform objectTrans;
public VectorPartScriptInterface(VectorPart vp, AffineTransform objectTrans)
{
this.vp = vp;
this.objectTrans = objectTrans;
}
public void move(double x, double y)
{
double[] p = new double[2];
objectTrans.transform(new double[]{x,y}, 0, p, 0, 1);
vp.moveto((int) p[0],(int) p[1]);
}
public void line(double x, double y)
{
double[] p = new double[2];
objectTrans.transform(new double[]{x,y}, 0, p, 0, 1);
vp.lineto((int) p[0],(int) p[1]);
}
public void set(String property, Object value)
{
LaserProperty cp = vp.getCurrentCuttingProperty().clone();
Object current = cp.getProperty(property);
if (current instanceof Float)
{
cp.setProperty(property, (Float) ((Double) value).floatValue());
}
else if (current instanceof Integer)
{
cp.setProperty(property, (Integer) ((Double) value).intValue());
}
else if (current instanceof String)
{
cp.setProperty(property, current.toString());
}
else
{
cp.setProperty(property, value);
}
vp.setProperty(cp);
}
public Object get(String property)
{
return vp.getCurrentCuttingProperty().getProperty(property);
}
public void echo(String text)
{
System.err.println("LaserScript: "+text);
}
}