picrate 2.2.0-java → 2.3.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.mvn/extensions.xml +1 -1
- data/CHANGELOG.md +2 -0
- data/Rakefile +1 -0
- data/docs/_includes/footer.html +1 -1
- data/docs/_layouts/post.html +1 -1
- data/docs/_methods/noise_mode.md +88 -0
- data/docs/classes.md +2 -2
- data/docs/editors.md +2 -2
- data/docs/gems.md +3 -3
- data/docs/index.html +1 -1
- data/docs/libraries.md +2 -2
- data/docs/live.md +2 -2
- data/docs/magic.md +2 -2
- data/docs/methods.md +2 -2
- data/docs/modules.md +3 -3
- data/docs/objects.md +2 -2
- data/lib/picrate/app.rb +7 -2
- data/lib/picrate/native_folder.rb +1 -3
- data/lib/picrate/version.rb +1 -1
- data/library/pdf/pdf.rb +6 -0
- data/picrate.gemspec +1 -0
- data/pom.rb +16 -3
- data/pom.xml +25 -3
- data/src/main/java/monkstone/PicrateLibrary.java +1 -1
- data/src/main/java/monkstone/fastmath/DegLutTables.java +111 -0
- data/src/main/java/monkstone/fastmath/Deglut.java +41 -93
- data/src/main/java/monkstone/noise/FastTerrain.java +874 -0
- data/src/main/java/monkstone/noise/Noise.java +90 -0
- data/src/main/java/monkstone/noise/NoiseGenerator.java +75 -0
- data/src/main/java/monkstone/noise/NoiseMode.java +28 -0
- data/src/main/java/monkstone/noise/OpenSimplex2F.java +881 -0
- data/src/main/java/monkstone/noise/OpenSimplex2S.java +1106 -0
- data/src/main/java/monkstone/noise/SmoothTerrain.java +1099 -0
- data/src/main/java/monkstone/vecmath/package-info.java +1 -1
- data/src/main/java/monkstone/vecmath/vec3/Vec3.java +1 -1
- data/src/main/java/monkstone/videoevent/package-info.java +1 -1
- data/src/main/java/processing/awt/ShimAWT.java +260 -94
- data/src/main/java/processing/core/PApplet.java +14748 -13443
- data/src/main/java/processing/core/PConstants.java +5 -5
- data/src/main/java/processing/core/PFont.java +1 -1
- data/src/main/java/processing/core/PGraphics.java +200 -201
- data/src/main/java/processing/core/PImage.java +539 -549
- data/src/main/java/processing/core/PShape.java +18 -18
- data/src/main/java/processing/core/PVector.java +23 -23
- data/src/main/java/processing/data/Table.java +4 -4
- data/src/main/java/processing/net/Client.java +13 -13
- data/src/main/java/processing/net/Server.java +5 -5
- data/src/main/java/processing/opengl/PGraphicsOpenGL.java +4 -4
- data/src/main/java/processing/pdf/PGraphicsPDF.java +607 -0
- data/test/deglut_spec_test.rb +2 -2
- data/test/respond_to_test.rb +0 -1
- data/vendors/Rakefile +1 -1
- metadata +15 -4
- data/src/main/java/monkstone/noise/SimplexNoise.java +0 -465
@@ -119,7 +119,7 @@ public class Server implements Runnable {
|
|
119
119
|
*
|
120
120
|
* Disconnect a particular client.
|
121
121
|
*
|
122
|
-
|
122
|
+
|
123
123
|
* @brief Disconnect a particular client.
|
124
124
|
* @webref server:server
|
125
125
|
* @param client the client to disconnect
|
@@ -191,7 +191,7 @@ public class Server implements Runnable {
|
|
191
191
|
* Returns true if this server is still active and hasn't run
|
192
192
|
* into any trouble.
|
193
193
|
*
|
194
|
-
|
194
|
+
|
195
195
|
* @webref server:server
|
196
196
|
* @brief Return true if this server is still active.
|
197
197
|
*/
|
@@ -220,7 +220,7 @@ public class Server implements Runnable {
|
|
220
220
|
*
|
221
221
|
* Returns the next client in line with a new message.
|
222
222
|
*
|
223
|
-
|
223
|
+
|
224
224
|
* @brief Returns the next client in line with a new message.
|
225
225
|
* @webref server
|
226
226
|
* @usage application
|
@@ -258,7 +258,7 @@ public class Server implements Runnable {
|
|
258
258
|
*
|
259
259
|
* Disconnects all clients and stops the server.
|
260
260
|
*
|
261
|
-
|
261
|
+
|
262
262
|
* <h3>Advanced</h3>
|
263
263
|
* Use this to shut down the server if you finish using it while your applet
|
264
264
|
* is still running. Otherwise, it will be automatically be shut down by the
|
@@ -337,7 +337,7 @@ public class Server implements Runnable {
|
|
337
337
|
* Writes a value to all the connected clients. It sends bytes out from the
|
338
338
|
* Server object.
|
339
339
|
*
|
340
|
-
|
340
|
+
|
341
341
|
* @webref server
|
342
342
|
* @brief Writes data to all connected clients
|
343
343
|
* @param data data to write
|
@@ -3685,7 +3685,7 @@ public class PGraphicsOpenGL extends PGraphics {
|
|
3685
3685
|
* Ported from the implementation of textCharShapeImpl() in 1.5.1
|
3686
3686
|
*
|
3687
3687
|
* <EM>No attempt has been made to optimize this code</EM>
|
3688
|
-
*
|
3688
|
+
*
|
3689
3689
|
* TODO: Implement a FontShape class where each glyph is tessellated and
|
3690
3690
|
* stored inside a larger PShapeOpenGL object (which needs to be expanded as
|
3691
3691
|
* new glyphs are added and exceed the initial capacity in a similar way as
|
@@ -3693,18 +3693,18 @@ public class PGraphicsOpenGL extends PGraphics {
|
|
3693
3693
|
* in shape mode, then the correct sequences of vertex indices are computed
|
3694
3694
|
* (akin to the texcoords in the texture case) and used to draw only those
|
3695
3695
|
* parts of the PShape object that are required for the text.
|
3696
|
-
*
|
3696
|
+
*
|
3697
3697
|
*
|
3698
3698
|
* Some issues of the original implementation probably remain, so they are
|
3699
3699
|
* reproduced below:
|
3700
|
-
*
|
3700
|
+
*
|
3701
3701
|
* Also a problem where some fonts seem to be a bit slight, as if the
|
3702
3702
|
* control points aren't being mapped quite correctly. Probably doing
|
3703
3703
|
* something dumb that the control points don't map to P5's control
|
3704
3704
|
* points. Perhaps it's returning b-spline data from the TrueType font?
|
3705
3705
|
* Though it seems like that would make a lot of garbage rather than
|
3706
3706
|
* just a little flattening.
|
3707
|
-
*
|
3707
|
+
*
|
3708
3708
|
* There also seems to be a bug that is causing a line (but not a filled
|
3709
3709
|
* triangle) back to the origin on some letters (i.e. a capital L when
|
3710
3710
|
* tested with Akzidenz Grotesk Light). But this won't be visible
|
@@ -0,0 +1,607 @@
|
|
1
|
+
/*
|
2
|
+
Part of the Processing project - http://processing.org
|
3
|
+
|
4
|
+
Copyright (c) 2005-12 Ben Fry and Casey Reas
|
5
|
+
Copyright (c) 2012-18 The Processing Foundation
|
6
|
+
|
7
|
+
This library is free software; you can redistribute it and/or
|
8
|
+
modify it under the terms of the GNU Lesser General Public
|
9
|
+
License version 2.1 as published by the Free Software Foundation.
|
10
|
+
|
11
|
+
This library is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
Lesser General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU Lesser General
|
17
|
+
Public License along with this library; if not, write to the
|
18
|
+
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
19
|
+
Boston, MA 02111-1307 USA
|
20
|
+
*/
|
21
|
+
package processing.pdf;
|
22
|
+
|
23
|
+
import com.itextpdf.awt.DefaultFontMapper;
|
24
|
+
import com.itextpdf.text.Rectangle;
|
25
|
+
import com.itextpdf.text.Document;
|
26
|
+
import com.itextpdf.text.DocumentException;
|
27
|
+
import com.itextpdf.text.pdf.ByteBuffer;
|
28
|
+
import com.itextpdf.text.pdf.PdfContentByte;
|
29
|
+
import com.itextpdf.text.pdf.PdfWriter;
|
30
|
+
import java.awt.Font;
|
31
|
+
import java.awt.Graphics2D;
|
32
|
+
import java.awt.Image;
|
33
|
+
import java.io.*;
|
34
|
+
import java.util.*;
|
35
|
+
import java.util.logging.Level;
|
36
|
+
import java.util.logging.Logger;
|
37
|
+
|
38
|
+
//import com.lowagie.text.*;
|
39
|
+
//import com.lowagie.text.pdf.*;
|
40
|
+
//import com.lowagie.text.pdf.ByteBuffer;
|
41
|
+
|
42
|
+
import processing.awt.PGraphicsJava2D;
|
43
|
+
import processing.core.*;
|
44
|
+
|
45
|
+
/**
|
46
|
+
* Thin wrapper for the iText PDF library that handles writing PDF files. The
|
47
|
+
* majority of the work in this library is done by
|
48
|
+
* <a href="http://www.lowagie.com/iText/">iText</a>.
|
49
|
+
* This is currently using iText 2.1.7.
|
50
|
+
* The issue is that versions from the 5.x series were slow to handle lots of
|
51
|
+
* fonts with the DefaultFontMapper. 2.x seemed a little slower than 1.x, but
|
52
|
+
* 5.x took up to 10 times the time to load, meaning a lag of several seconds
|
53
|
+
* when starting sketches on a machine that had a good handful of fonts
|
54
|
+
* installed. (Like, say, anyone in our target audience. Or me.)
|
55
|
+
*/
|
56
|
+
public class PGraphicsPDF extends PGraphicsJava2D {
|
57
|
+
|
58
|
+
/**
|
59
|
+
* File being written, if it's a file.
|
60
|
+
*/
|
61
|
+
protected File file;
|
62
|
+
/**
|
63
|
+
* OutputStream being written to, if using an OutputStream.
|
64
|
+
*/
|
65
|
+
protected OutputStream output;
|
66
|
+
|
67
|
+
protected Document document;
|
68
|
+
protected PdfWriter writer;
|
69
|
+
protected PdfContentByte content;
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Shared across instances because it's incredibly time-consuming to create.
|
73
|
+
*/
|
74
|
+
static protected DefaultFontMapper mapper;
|
75
|
+
static protected String[] fontList;
|
76
|
+
|
77
|
+
|
78
|
+
/*
|
79
|
+
public PGraphicsPDF() {
|
80
|
+
// PDF always likes native fonts. Always.
|
81
|
+
hint(ENABLE_NATIVE_FONTS);
|
82
|
+
}
|
83
|
+
*/
|
84
|
+
@Override
|
85
|
+
public void setPath(String path) {
|
86
|
+
this.path = path;
|
87
|
+
if (path != null) {
|
88
|
+
file = new File(path);
|
89
|
+
if (!file.isAbsolute()) {
|
90
|
+
file = null;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
if (file == null) {
|
94
|
+
throw new RuntimeException("PGraphicsPDF requires an absolute path "
|
95
|
+
+ "for the location of the output file.");
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
/**
|
100
|
+
* Set the library to write to an output stream instead of a file.
|
101
|
+
* @param output
|
102
|
+
*/
|
103
|
+
public void setOutput(OutputStream output) {
|
104
|
+
this.output = output;
|
105
|
+
}
|
106
|
+
|
107
|
+
// /**
|
108
|
+
// * all the init stuff happens in here, in case someone calls size()
|
109
|
+
// * along the way and wants to hork things up.
|
110
|
+
// */
|
111
|
+
// protected void allocate() {
|
112
|
+
// // can't do anything here, because this will be called by the
|
113
|
+
// // superclass PGraphics, and the file/path object won't be set yet
|
114
|
+
// // (since super() called right at the beginning of the constructor)
|
115
|
+
// }
|
116
|
+
@Override
|
117
|
+
public PSurface createSurface() {
|
118
|
+
return surface = new PSurfaceNone(this);
|
119
|
+
}
|
120
|
+
|
121
|
+
@Override
|
122
|
+
protected void defaultSettings() { // ignore
|
123
|
+
super.defaultSettings();
|
124
|
+
textMode = SHAPE;
|
125
|
+
}
|
126
|
+
|
127
|
+
@Override
|
128
|
+
public void beginDraw() {
|
129
|
+
// long t0 = System.currentTimeMillis();
|
130
|
+
|
131
|
+
if (document == null) {
|
132
|
+
// https://github.com/processing/processing/issues/5801#issuecomment-466632459
|
133
|
+
ByteBuffer.HIGH_PRECISION = true;
|
134
|
+
|
135
|
+
document = new Document(new Rectangle(width, height));
|
136
|
+
boolean missingPath = false;
|
137
|
+
try {
|
138
|
+
if (file != null) {
|
139
|
+
//BufferedOutputStream output = new BufferedOutputStream(stream, 16384);
|
140
|
+
output = new BufferedOutputStream(new FileOutputStream(file), 16384);
|
141
|
+
|
142
|
+
} else if (output == null) {
|
143
|
+
missingPath = true;
|
144
|
+
throw new RuntimeException("PGraphicsPDF requires a path "
|
145
|
+
+ "for the location of the output file.");
|
146
|
+
}
|
147
|
+
try {
|
148
|
+
writer = PdfWriter.getInstance(document, output);
|
149
|
+
} catch (DocumentException ex) {
|
150
|
+
Logger.getLogger(PGraphicsPDF.class.getName()).log(Level.SEVERE, null, ex);
|
151
|
+
}
|
152
|
+
document.open();
|
153
|
+
content = writer.getDirectContent();
|
154
|
+
// template = content.createTemplate(width, height);
|
155
|
+
|
156
|
+
} catch (RuntimeException re) {
|
157
|
+
if (missingPath) {
|
158
|
+
throw re; // don't re-package our own error
|
159
|
+
} else {
|
160
|
+
throw new RuntimeException("Problem saving the PDF file.", re);
|
161
|
+
}
|
162
|
+
|
163
|
+
} catch (FileNotFoundException fnfe) {
|
164
|
+
throw new RuntimeException("Can't save the PDF file to " + path, fnfe);
|
165
|
+
|
166
|
+
}
|
167
|
+
|
168
|
+
g2 = content.createGraphicsShapes(width, height);
|
169
|
+
}
|
170
|
+
|
171
|
+
// super in Java2D now creates an image buffer, don't do that
|
172
|
+
//super.beginDraw();
|
173
|
+
checkSettings();
|
174
|
+
resetMatrix(); // reset model matrix
|
175
|
+
vertexCount = 0;
|
176
|
+
|
177
|
+
// Also need to push the matrix since the matrix doesn't reset on each run
|
178
|
+
// http://dev.processing.org/bugs/show_bug.cgi?id=1227
|
179
|
+
pushMatrix();
|
180
|
+
}
|
181
|
+
|
182
|
+
static protected DefaultFontMapper getMapper() {
|
183
|
+
if (mapper == null) {
|
184
|
+
// long t = System.currentTimeMillis();
|
185
|
+
mapper = new DefaultFontMapper();
|
186
|
+
|
187
|
+
if (PApplet.platform == PConstants.LINUX) {
|
188
|
+
checkDir("/usr/share/fonts/", mapper);
|
189
|
+
checkDir("/usr/local/share/fonts/", mapper);
|
190
|
+
checkDir(System.getProperty("user.home") + "/.fonts", mapper);
|
191
|
+
}
|
192
|
+
// System.out.println("mapping " + (System.currentTimeMillis() - t));
|
193
|
+
}
|
194
|
+
return mapper;
|
195
|
+
}
|
196
|
+
|
197
|
+
static protected void checkDir(String path, DefaultFontMapper mapper) {
|
198
|
+
File folder = new File(path);
|
199
|
+
if (folder.exists()) {
|
200
|
+
mapper.insertDirectory(path);
|
201
|
+
traverseDir(folder, mapper);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
/**
|
206
|
+
* Recursive walk to get all subdirectories for font fun.Patch submitted by
|
207
|
+
Matthias Breuer.(<a href="http://dev.processing.org/bugs/show_bug.cgi?id=1566">Bug
|
208
|
+
1566</a>)
|
209
|
+
* @param folder
|
210
|
+
* @param mapper
|
211
|
+
*/
|
212
|
+
static protected void traverseDir(File folder, DefaultFontMapper mapper) {
|
213
|
+
File[] files = folder.listFiles();
|
214
|
+
for (File file1 : files) {
|
215
|
+
if (file1.isDirectory()) {
|
216
|
+
mapper.insertDirectory(file1.getPath());
|
217
|
+
traverseDir(new File(file1.getPath()), mapper);
|
218
|
+
}
|
219
|
+
}
|
220
|
+
}
|
221
|
+
|
222
|
+
// endDraw() needs to be overridden so that the endDraw() from
|
223
|
+
// PGraphicsJava2D is not inherited (it calls loadPixels).
|
224
|
+
// http://dev.processing.org/bugs/show_bug.cgi?id=1169
|
225
|
+
@Override
|
226
|
+
public void endDraw() {
|
227
|
+
// Also need to pop the matrix since the matrix doesn't reset on each run
|
228
|
+
// http://dev.processing.org/bugs/show_bug.cgi?id=1227
|
229
|
+
popMatrix();
|
230
|
+
}
|
231
|
+
|
232
|
+
/**
|
233
|
+
* Call to explicitly go to the next page from within a single draw().
|
234
|
+
*/
|
235
|
+
public void nextPage() {
|
236
|
+
PStyle savedStyle = getStyle();
|
237
|
+
endDraw();
|
238
|
+
g2.dispose();
|
239
|
+
|
240
|
+
try {
|
241
|
+
// writer.setPageEmpty(false); // maybe useful later
|
242
|
+
document.newPage(); // is this bad if no addl pages are made?
|
243
|
+
} catch (Exception e) {
|
244
|
+
}
|
245
|
+
g2 = createGraphics();
|
246
|
+
beginDraw();
|
247
|
+
style(savedStyle);
|
248
|
+
}
|
249
|
+
|
250
|
+
protected Graphics2D createGraphics() {
|
251
|
+
if (textMode == SHAPE) {
|
252
|
+
return content.createGraphics(width, height);
|
253
|
+
} else if (textMode == MODEL) {
|
254
|
+
return content.createGraphics(width, height, getMapper());
|
255
|
+
}
|
256
|
+
// Should not be reachable...
|
257
|
+
throw new RuntimeException("Invalid textMode() selected for PDF.");
|
258
|
+
}
|
259
|
+
|
260
|
+
@Override
|
261
|
+
public void dispose() {
|
262
|
+
if (document != null) {
|
263
|
+
g2.dispose();
|
264
|
+
document.close(); // can't be done in finalize, not always called
|
265
|
+
document = null;
|
266
|
+
}
|
267
|
+
//new Exception().printStackTrace(System.out);
|
268
|
+
}
|
269
|
+
|
270
|
+
/**
|
271
|
+
* Don't open a window for this renderer, it won't be used.
|
272
|
+
* @return
|
273
|
+
*/
|
274
|
+
@Override
|
275
|
+
public boolean displayable() {
|
276
|
+
return false;
|
277
|
+
}
|
278
|
+
|
279
|
+
/*
|
280
|
+
protected void finalize() throws Throwable {
|
281
|
+
System.out.println("calling finalize");
|
282
|
+
//document.close(); // do this in dispose instead?
|
283
|
+
}
|
284
|
+
*/
|
285
|
+
//////////////////////////////////////////////////////////////
|
286
|
+
/*
|
287
|
+
public void endRecord() {
|
288
|
+
super.endRecord();
|
289
|
+
dispose();
|
290
|
+
}
|
291
|
+
|
292
|
+
|
293
|
+
public void endRaw() {
|
294
|
+
System.out.println("ending raw");
|
295
|
+
super.endRaw();
|
296
|
+
System.out.println("disposing");
|
297
|
+
dispose();
|
298
|
+
System.out.println("done");
|
299
|
+
}
|
300
|
+
*/
|
301
|
+
//////////////////////////////////////////////////////////////
|
302
|
+
/*
|
303
|
+
protected void rectImpl(float x1, float y1, float x2, float y2) {
|
304
|
+
//rect.setFrame(x1, y1, x2-x1, y2-y1);
|
305
|
+
//draw_shape(rect);
|
306
|
+
System.out.println("rect implements");
|
307
|
+
g2.fillRect((int)x1, (int)y1, (int) (x2-x1), (int) (y2-y1));
|
308
|
+
}
|
309
|
+
*
|
310
|
+
|
311
|
+
/*
|
312
|
+
public void clear() {
|
313
|
+
g2.setColor(Color.red);
|
314
|
+
g2.fillRect(0, 0, width, height);
|
315
|
+
}
|
316
|
+
*/
|
317
|
+
//////////////////////////////////////////////////////////////
|
318
|
+
@Override
|
319
|
+
protected void imageImpl(PImage image,
|
320
|
+
float x1, float y1, float x2, float y2,
|
321
|
+
int u1, int v1, int u2, int v2) {
|
322
|
+
pushMatrix();
|
323
|
+
translate(x1, y1);
|
324
|
+
int imageWidth = image.width;
|
325
|
+
int imageHeight = image.height;
|
326
|
+
scale((x2 - x1) / imageWidth,
|
327
|
+
(y2 - y1) / imageHeight);
|
328
|
+
if (u2 - u1 == imageWidth && v2 - v1 == imageHeight) {
|
329
|
+
g2.drawImage((Image) image.getNative(), 0, 0, null);
|
330
|
+
} else {
|
331
|
+
PImage tmp = image.get(u1, v1, u2 - u1, v2 - v1);
|
332
|
+
g2.drawImage((Image) tmp.getNative(), 0, 0, null);
|
333
|
+
}
|
334
|
+
popMatrix();
|
335
|
+
}
|
336
|
+
|
337
|
+
//////////////////////////////////////////////////////////////
|
338
|
+
@Override
|
339
|
+
public void textFont(PFont which) {
|
340
|
+
super.textFont(which);
|
341
|
+
checkFont();
|
342
|
+
// Make sure a native version of the font is available.
|
343
|
+
// if (textFont.getFont() == null) {
|
344
|
+
// throw new RuntimeException("Use createFont() instead of loadFont() " +
|
345
|
+
// "when drawing text using the PDF library.");
|
346
|
+
// }
|
347
|
+
// Make sure that this is a font that the PDF library can deal with.
|
348
|
+
// if ((textMode != SHAPE) && !checkFont(which.getName())) {
|
349
|
+
// System.err.println("Use PGraphicsPDF.listFonts() to get a list of available fonts.");
|
350
|
+
// throw new RuntimeException("The font “" + which.getName() + "” cannot be used with PDF Export.");
|
351
|
+
// }
|
352
|
+
}
|
353
|
+
|
354
|
+
/**
|
355
|
+
* Change the textMode() to either SHAPE or MODEL.
|
356
|
+
* This resets all renderer settings, and therefore must be called
|
357
|
+
* <EM>before</EM> any other commands that set the fill() or the textFont()
|
358
|
+
* or anything. Unlike other renderers, use textMode() directly after the
|
359
|
+
* size() command.
|
360
|
+
*/
|
361
|
+
@Override
|
362
|
+
public void textMode(int mode) {
|
363
|
+
if (textMode != mode) {
|
364
|
+
switch (mode) {
|
365
|
+
case SHAPE:
|
366
|
+
textMode = SHAPE;
|
367
|
+
g2.dispose();
|
368
|
+
// g2 = content.createGraphicsShapes(width, height);
|
369
|
+
g2 = createGraphics();
|
370
|
+
break;
|
371
|
+
case MODEL:
|
372
|
+
textMode = MODEL;
|
373
|
+
g2.dispose();
|
374
|
+
// g2 = content.createGraphics(width, height, mapper);
|
375
|
+
g2 = createGraphics();
|
376
|
+
// g2 = template.createGraphics(width, height, mapper);
|
377
|
+
break;
|
378
|
+
case SCREEN:
|
379
|
+
throw new RuntimeException("textMode(SCREEN) not supported with PDF");
|
380
|
+
default:
|
381
|
+
throw new RuntimeException("That textMode() does not exist");
|
382
|
+
}
|
383
|
+
}
|
384
|
+
}
|
385
|
+
|
386
|
+
@Override
|
387
|
+
protected void textLineImpl(char buffer[], int start, int stop,
|
388
|
+
float x, float y) {
|
389
|
+
checkFont();
|
390
|
+
super.textLineImpl(buffer, start, stop, x, y);
|
391
|
+
}
|
392
|
+
|
393
|
+
//////////////////////////////////////////////////////////////
|
394
|
+
@Override
|
395
|
+
public void loadPixels() {
|
396
|
+
nope("loadPixels");
|
397
|
+
}
|
398
|
+
|
399
|
+
@Override
|
400
|
+
public void updatePixels() {
|
401
|
+
nope("updatePixels");
|
402
|
+
}
|
403
|
+
|
404
|
+
@Override
|
405
|
+
public void updatePixels(int x, int y, int c, int d) {
|
406
|
+
nope("updatePixels");
|
407
|
+
}
|
408
|
+
|
409
|
+
//
|
410
|
+
@Override
|
411
|
+
public int get(int x, int y) {
|
412
|
+
nope("get");
|
413
|
+
return 0; // not reached
|
414
|
+
}
|
415
|
+
|
416
|
+
@Override
|
417
|
+
public PImage get(int x, int y, int c, int d) {
|
418
|
+
nope("get");
|
419
|
+
return null; // not reached
|
420
|
+
}
|
421
|
+
|
422
|
+
@Override
|
423
|
+
public PImage get() {
|
424
|
+
nope("get");
|
425
|
+
return null; // not reached
|
426
|
+
}
|
427
|
+
|
428
|
+
@Override
|
429
|
+
public void set(int x, int y, int argb) {
|
430
|
+
nope("set");
|
431
|
+
}
|
432
|
+
|
433
|
+
@Override
|
434
|
+
public void set(int x, int y, PImage image) {
|
435
|
+
nope("set");
|
436
|
+
}
|
437
|
+
|
438
|
+
//
|
439
|
+
|
440
|
+
/**
|
441
|
+
*
|
442
|
+
* @param alpha
|
443
|
+
*/
|
444
|
+
@Override
|
445
|
+
public void mask(int alpha[]) {
|
446
|
+
nope("mask");
|
447
|
+
}
|
448
|
+
|
449
|
+
@Override
|
450
|
+
public void mask(PImage alpha) {
|
451
|
+
nope("mask");
|
452
|
+
}
|
453
|
+
|
454
|
+
/**
|
455
|
+
*
|
456
|
+
* @param kind
|
457
|
+
*/
|
458
|
+
@Override
|
459
|
+
public void filter(int kind) {
|
460
|
+
nope("filter");
|
461
|
+
}
|
462
|
+
|
463
|
+
@Override
|
464
|
+
public void filter(int kind, float param) {
|
465
|
+
nope("filter");
|
466
|
+
}
|
467
|
+
|
468
|
+
//
|
469
|
+
@Override
|
470
|
+
protected void blendModeImpl() {
|
471
|
+
if (blendMode != REPLACE && blendMode != BLEND) {
|
472
|
+
showMissingWarning("blendMode");
|
473
|
+
}
|
474
|
+
}
|
475
|
+
|
476
|
+
//
|
477
|
+
@Override
|
478
|
+
public void copy(int sx1, int sy1, int sx2, int sy2,
|
479
|
+
int dx1, int dy1, int dx2, int dy2) {
|
480
|
+
nope("copy");
|
481
|
+
}
|
482
|
+
|
483
|
+
/**
|
484
|
+
*
|
485
|
+
* @param src
|
486
|
+
* @param sx1
|
487
|
+
* @param sy1
|
488
|
+
* @param sx2
|
489
|
+
* @param sy2
|
490
|
+
* @param dx1
|
491
|
+
* @param dy1
|
492
|
+
* @param dx2
|
493
|
+
* @param dy2
|
494
|
+
*/
|
495
|
+
@Override
|
496
|
+
public void copy(PImage src,
|
497
|
+
int sx1, int sy1, int sx2, int sy2,
|
498
|
+
int dx1, int dy1, int dx2, int dy2) {
|
499
|
+
nope("copy");
|
500
|
+
}
|
501
|
+
|
502
|
+
//
|
503
|
+
public void blend(int sx, int sy, int dx, int dy, int mode) {
|
504
|
+
nope("blend");
|
505
|
+
}
|
506
|
+
|
507
|
+
public void blend(PImage src,
|
508
|
+
int sx, int sy, int dx, int dy, int mode) {
|
509
|
+
nope("blend");
|
510
|
+
}
|
511
|
+
|
512
|
+
@Override
|
513
|
+
public void blend(int sx1, int sy1, int sx2, int sy2,
|
514
|
+
int dx1, int dy1, int dx2, int dy2, int mode) {
|
515
|
+
nope("blend");
|
516
|
+
}
|
517
|
+
|
518
|
+
@Override
|
519
|
+
public void blend(PImage src,
|
520
|
+
int sx1, int sy1, int sx2, int sy2,
|
521
|
+
int dx1, int dy1, int dx2, int dy2, int mode) {
|
522
|
+
nope("blend");
|
523
|
+
}
|
524
|
+
|
525
|
+
//
|
526
|
+
@Override
|
527
|
+
public boolean save(String filename) {
|
528
|
+
nope("save");
|
529
|
+
return false;
|
530
|
+
}
|
531
|
+
|
532
|
+
//////////////////////////////////////////////////////////////
|
533
|
+
/**
|
534
|
+
* On Linux or any other platform, you'll need to add the directories by
|
535
|
+
* hand. (If there are actual standards here that we can use as a starting
|
536
|
+
* point, please file a bug to make a note of it)
|
537
|
+
* @param directory
|
538
|
+
*/
|
539
|
+
public void addFonts(String directory) {
|
540
|
+
mapper.insertDirectory(directory);
|
541
|
+
}
|
542
|
+
|
543
|
+
/**
|
544
|
+
* Check whether the specified font can be used with the PDF library.
|
545
|
+
*
|
546
|
+
*/
|
547
|
+
protected void checkFont() {
|
548
|
+
Font awtFont = (Font) textFont.getNative();
|
549
|
+
if (awtFont == null) { // always need a native font or reference to it
|
550
|
+
throw new RuntimeException("Use createFont() instead of loadFont() "
|
551
|
+
+ "when drawing text using the PDF library.");
|
552
|
+
} else if (textMode != SHAPE) {
|
553
|
+
if (textFont.isStream()) {
|
554
|
+
throw new RuntimeException("Use textMode(SHAPE) with PDF when loading "
|
555
|
+
+ ".ttf and .otf files with createFont().");
|
556
|
+
} else if (mapper.getAliases().get(textFont.getName()) == null) {
|
557
|
+
//System.out.println("alias for " + name + " = " + mapper.getAliases().get(name));
|
558
|
+
// System.err.println("Use PGraphicsPDF.listFonts() to get a list of " +
|
559
|
+
// "fonts that can be used with PDF.");
|
560
|
+
// throw new RuntimeException("The font “" + textFont.getName() + "” " +
|
561
|
+
// "cannot be used with PDF Export.");
|
562
|
+
if (textFont.getName().equals("Lucida Sans")) {
|
563
|
+
throw new RuntimeException("Use textMode(SHAPE) with the default "
|
564
|
+
+ "font when exporting to PDF.");
|
565
|
+
} else {
|
566
|
+
throw new RuntimeException("Use textMode(SHAPE) with "
|
567
|
+
+ "“" + textFont.getName() + "” "
|
568
|
+
+ "when exporting to PDF.");
|
569
|
+
}
|
570
|
+
}
|
571
|
+
}
|
572
|
+
}
|
573
|
+
|
574
|
+
/**
|
575
|
+
* List the fonts known to the PDF renderer.This is like PFont.list(),
|
576
|
+
however not all those fonts are available by default.
|
577
|
+
* @return
|
578
|
+
*/
|
579
|
+
static public String[] listFonts() {
|
580
|
+
if (fontList == null) {
|
581
|
+
HashMap<?, ?> map = getMapper().getAliases();
|
582
|
+
// Set entries = map.entrySet();
|
583
|
+
// fontList = new String[entries.size()];
|
584
|
+
fontList = new String[map.size()];
|
585
|
+
int count = 0;
|
586
|
+
for (Object key : map.keySet()) {
|
587
|
+
// for (Object entry : map.entrySet()) {
|
588
|
+
// fontList[count++] = (String) ((Map.Entry) entry).getKey();
|
589
|
+
fontList[count++] = (String) key;
|
590
|
+
}
|
591
|
+
// Iterator it = entries.iterator();
|
592
|
+
// int count = 0;
|
593
|
+
// while (it.hasNext()) {
|
594
|
+
// Map.Entry entry = (Map.Entry) it.next();
|
595
|
+
// //System.out.println(entry.getKey() + "-->" + entry.getValue());
|
596
|
+
// fontList[count++] = (String) entry.getKey();
|
597
|
+
// }
|
598
|
+
fontList = PApplet.sort(fontList);
|
599
|
+
}
|
600
|
+
return fontList;
|
601
|
+
}
|
602
|
+
|
603
|
+
//////////////////////////////////////////////////////////////
|
604
|
+
protected void nope(String function) {
|
605
|
+
throw new RuntimeException("No " + function + "() for " + getClass().getSimpleName());
|
606
|
+
}
|
607
|
+
}
|