summaryrefslogtreecommitdiff
path: root/tags/host/0.8.1/src/org/reprap/geometry/LayerProducer.java
blob: f0db7e2dd796fc7d75130259ec3c83215d8ff9c0 (plain)
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/*
 * Created on May 1, 2006
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package org.reprap.geometry;

import java.io.IOException;
import javax.media.j3d.*;
import org.reprap.Printer;
import org.reprap.Preferences;
import org.reprap.ReprapException;
import org.reprap.geometry.polygons.*;

/**
 *
 */
class segmentSpeeds
{
	/**
	 * 
	 */
	public Rr2Point p1, p2, p3;
	
	/**
	 * 
	 */
	public double ca;
	
	/**
	 * 
	 */
	public boolean plotMiddle;
	
	/**
	 * 
	 */
	public boolean abandon;
	
	/**
	 * @param before
	 * @param now
	 * @param after
	 * @param fastLength
	 */
	public segmentSpeeds(Rr2Point before, Rr2Point now, Rr2Point after, double fastLength)
	{
		Rr2Point a = Rr2Point.sub(now, before);
		double amod = a.mod();
		abandon = amod == 0;
		if(abandon)
			return;
		Rr2Point b = Rr2Point.sub(after, now);
		if(b.mod() == 0)
			ca = 0;
		else
			ca = Rr2Point.mul(a.norm(), b.norm());
		plotMiddle = true;
		if(amod <= 2*fastLength)
		{
			fastLength = amod*0.5;
			plotMiddle = false;
		}
		a = a.norm();
		p1 = Rr2Point.add(before, Rr2Point.mul(a, fastLength));
		p2 = Rr2Point.add(p1, Rr2Point.mul(a, amod - 2*fastLength));
		p3 = Rr2Point.add(p2, Rr2Point.mul(a, fastLength));
	}
	
	int speed(int currentSpeed, double angFac)
	{
		return (int)Math.round((double)currentSpeed*(1 - 
				0.5*(1 + ca)*angFac));
	}
}

/**
 *
 */
public class LayerProducer {
	
	/**
	 * Identifier for movements without depositing
	 */
	private static int gapMaterial = 0;
	
	/**
	 * Identifier for the actual depositing material
	 */
	private static int solidMaterial = 1;
	
	/**
	 * @return the gap material identifier
	 */
	public static int gapMaterial() { return gapMaterial; }
	
	/**
	 * @return the filler material identifier
	 */
	public static int solidMaterial() { return solidMaterial; }

	/**
	 * The shape of the object built so far under the current layer
	 */
	private Shape3D lowerShell;

	/**
	 * 
	 */
	private Printer printer;
	
	/**
	 * 
	 */
	private RrPolygonList hatchedPolygons;
	
	/**
	 * 
	 */
	private RrPolygonList borderPolygons;
	
	/**
	 * 
	 */
	private RrCSGPolygon csg_p;
	
	/**
	 * 
	 */
	private double scale;
	
	/**
	 * 
	 */
	private double z;
	
	/**
	 * 
	 */
	private int baseSpeed;
	
	/**
	 * 
	 */
	private int infillSpeed;
	
	/**
	 * 
	 */
	private int outlineSpeed;
	
	/**
	 * 
	 */
	private int currentSpeed;
	
	/**
	 * 
	 */
	private Rr2Point p_0;
	
	/**
	 * 
	 */
	private Rr2Point pos;
		
	/**
	 * @param printer
	 * @param zValue
	 * @param csgPol
	 * @param ls
	 * @param hatchDirection
	 */
	public LayerProducer(Printer printer, double zValue, RrCSGPolygon csgPol, Shape3D ls, RrHalfPlane hatchDirection) {
		this.printer = printer;
		lowerShell = ls;
		baseSpeed = printer.getExtruder().getXYSpeed();
		outlineSpeed = (int)Math.round(baseSpeed*printer.getExtruder().getOutlineSpeed());
		infillSpeed = (int)Math.round(baseSpeed*printer.getExtruder().getInfillSpeed());
		currentSpeed= outlineSpeed; // Always start with an outline
		z = zValue;
		
		RrCSGPolygon offBorder = csgPol.offset(-0.5*printer.getExtruder().getExtrusionSize());
		RrCSGPolygon offHatch = csgPol.offset(-1.5*printer.getExtruder().getExtrusionSize());
		
		//csgPol.divide(Preferences.tiny(), 1.01);
		//RrGraphics g = new RrGraphics(csgPol, true);
		
		offBorder.divide(Preferences.tiny(), 1.01);
		offHatch.divide(Preferences.tiny(), 1.01);
		
		//RrGraphics g = new RrGraphics(offBorder, true);
		
		borderPolygons = offBorder.megList(solidMaterial, solidMaterial);
		
		hatchedPolygons = new RrPolygonList();
		hatchedPolygons.add(offHatch.hatch(hatchDirection, printer.getExtruder().getExtrusionInfillWidth(), 
				solidMaterial, gapMaterial));	
	
//		RrPolygonList pllist = new RrPolygonList();
//		pllist.add(borderPolygons);
//		pllist.add(hatchedPolygons);
//		RrGraphics g = new RrGraphics(pllist, false);

		csg_p = null;
		
		RrBox big = csgPol.box().scale(1.1);
		
		double width = big.x().length();
		double height = big.y().length();
	}
	
	/**
	 * @return current X and Y position of the printer
	 */
	private Rr2Point posNow()
	{
		return new Rr2Point(printer.getX(), printer.getY());
	}
	
	/**
	 * @param first First point, the start of the line segment to be plotted.
	 * @param second Second point, the end of the line segment to be plotted.
	 * @param turnOff True if the extruder should be turned off at the end of this segment.
	 * @throws ReprapException
	 * @throws IOException
	 */
	private void plot(Rr2Point first, Rr2Point second, boolean turnOff) throws ReprapException, IOException
	{
		if (printer.isCancelled()) return;
		
		double speedUpLength = printer.getExtruder().getAngleSpeedUpLength();
		if(speedUpLength > 0)
		{
			segmentSpeeds ss = new segmentSpeeds(posNow(), first, second, 
					speedUpLength);
			if(ss.abandon)
				return;

			printer.printTo(ss.p1.x(), ss.p1.y(), z, false);

			if(ss.plotMiddle)
			{
				int straightSpeed = (int)Math.round((double)currentSpeed*(1 - 
						printer.getExtruder().getAngleSpeedFactor()));
				printer.setSpeed(straightSpeed);
				printer.printTo(ss.p2.x(), ss.p2.y(), z, false);
			}

			printer.setSpeed(ss.speed(currentSpeed, printer.getExtruder().getAngleSpeedFactor()));
			printer.printTo(ss.p3.x(), ss.p3.y(), z, turnOff);
			pos = ss.p3;
		// Leave speed set for the start of the next line.
		} else
			printer.printTo(first.x(), first.y(), z, turnOff);
	}

	/**
	 * @param first
	 * @param second
	 * @param startUp
	 * @param endUp
	 * @throws ReprapException
	 * @throws IOException
	 */
	private void move(Rr2Point first, Rr2Point second, boolean startUp, boolean endUp) 
		throws ReprapException, IOException
	{
		if (printer.isCancelled()) return;
		
		if(startUp)
		{
			printer.setSpeed(printer.getFastSpeed());
			printer.moveTo(first.x(), first.y(), z, startUp, endUp);
			return;
		}
		
		double speedUpLength = printer.getExtruder().getAngleSpeedUpLength();
		if(speedUpLength > 0)
		{
			segmentSpeeds ss = new segmentSpeeds(posNow(), first, second, 
					speedUpLength);
			if(ss.abandon)
				return;

			printer.moveTo(ss.p1.x(), ss.p1.y(), z, startUp, startUp);

			if(ss.plotMiddle)
			{
				printer.setSpeed(currentSpeed);
				printer.moveTo(ss.p2.x(), ss.p2.y(), z, startUp, startUp);
			}

			printer.setSpeed(ss.speed(currentSpeed, printer.getExtruder().getAngleSpeedFactor()));
			printer.moveTo(ss.p3.x(), ss.p3.y(), z, startUp, endUp);
			pos = ss.p3;
			// Leave speed set for the start of the next movement.
		} else
			printer.moveTo(first.x(), first.y(), z, startUp, endUp);
	}


	/**
	 * Plot a polygon
	 * @throws IOException
	 * @throws ReprapException
	 */
	private void plot(RrPolygon p) throws ReprapException, IOException
	{
		if(p.size() <= 1)
			return;
		
		int stopExtruding = p.backStep(printer.getExtruder().getExtrusionOverRun());
		
		int leng = p.size();
		
		if (printer.isCancelled()) return;
		
		printer.setSpeed(printer.getFastSpeed());
		move(p.point(0), p.point(1), true, false);
		printer.setSpeed(outlineSpeed);
		plot(p.point(0), p.point(1), false);
		// Print any lead-in.
		printer.printStartDelay(printer.getExtruder().getExtrusionDelay());
		
		int f = p.flag(0);
		for(int j = 1; j <= leng; j++)
		{
			int i = j%leng;
			Rr2Point next = p.point((j+1)%leng);
			
			if (printer.isCancelled()) return;
			
			if(f != gapMaterial && j <= stopExtruding)
				plot(p.point(i), next, false);
			else
			{
				printer.stopExtruding();
				if(f == gapMaterial)
				{
					if(j == leng)
						return;
					else
						move(p.point(i), next, true, false);
				}else
					move(p.point(i), next, false, false);
			}

			f = p.flag(i);
		}
	}
		
	/**
	 * Master plot function - draw everything
	 * @throws IOException
	 * @throws ReprapException
	 */
	public void plot() throws ReprapException, IOException
	{
		int i;
		
		printer.setSpeed(outlineSpeed);
		currentSpeed = outlineSpeed;
		
		borderPolygons = borderPolygons.filterShorts(Preferences.machineResolution()*2);
		for(i = 0; i < borderPolygons.size(); i++) 
		{
			if (printer.isCancelled())
				break;
			plot(borderPolygons.polygon(i).randomStart());
		}
		
		printer.setSpeed(infillSpeed);
		currentSpeed = infillSpeed;
		
		hatchedPolygons = hatchedPolygons.filterShorts(Preferences.machineResolution()*2);
		for(i = 0; i < hatchedPolygons.size(); i++) 
		{
			if (printer.isCancelled())
				break;
			plot(hatchedPolygons.polygon(i));
		}
		
		printer.setSpeed(outlineSpeed);
		currentSpeed = outlineSpeed;
		// Uncomment the next line to replace lower layers with shell triangles.
		printer.setLowerShell(lowerShell);
	}		
	
}