aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-04-01 15:13:17 +0200
committerSven Gothel <[email protected]>2011-04-01 15:13:17 +0200
commitd4c400b9e70550bc93ebc2c0df2cd916b9ea0b3b (patch)
tree38f1b53b1aeb5af4b12e9a3901ee45a2da690ee3 /src/jogl/classes/jogamp
parentf47753b63c9530a6af36cb69135dee0421abfe6b (diff)
Load fonts via File or URL .
Diffstat (limited to 'src/jogl/classes/jogamp')
-rw-r--r--src/jogl/classes/jogamp/graph/font/FontConstructor.java7
-rw-r--r--src/jogl/classes/jogamp/graph/font/JavaFontLoader.java24
-rw-r--r--src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java36
-rw-r--r--src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java22
4 files changed, 64 insertions, 25 deletions
diff --git a/src/jogl/classes/jogamp/graph/font/FontConstructor.java b/src/jogl/classes/jogamp/graph/font/FontConstructor.java
index a382d292e..721b2072f 100644
--- a/src/jogl/classes/jogamp/graph/font/FontConstructor.java
+++ b/src/jogl/classes/jogamp/graph/font/FontConstructor.java
@@ -27,8 +27,13 @@
*/
package jogamp.graph.font;
+import java.io.File;
+import java.io.IOException;
+import java.net.URL;
+
import com.jogamp.graph.font.Font;
public interface FontConstructor {
- Font create(String name);
+ Font create(File file) throws IOException ;
+ Font create(URL url) throws IOException ;
}
diff --git a/src/jogl/classes/jogamp/graph/font/JavaFontLoader.java b/src/jogl/classes/jogamp/graph/font/JavaFontLoader.java
index 33505e797..a9ab902a9 100644
--- a/src/jogl/classes/jogamp/graph/font/JavaFontLoader.java
+++ b/src/jogl/classes/jogamp/graph/font/JavaFontLoader.java
@@ -27,6 +27,11 @@
*/
package jogamp.graph.font;
+import java.io.File;
+import java.io.IOException;
+
+import javax.media.opengl.GLException;
+
import com.jogamp.common.util.IntObjectHashMap;
import com.jogamp.graph.font.Font;
import com.jogamp.graph.font.FontSet;
@@ -118,12 +123,17 @@ public class JavaFontLoader implements FontSet {
}
Font abspath(String fname, int family, int style) {
- final Font f = FontFactory.getFontConstr().create(javaFontPath+fname);
- if(null != f) {
- fontMap.put( ( family << 8 ) | style, f );
+ final String err = "Problem loading font "+fname+", file "+javaFontPath+fname ;
+
+ try {
+ final Font f = FontFactory.get( new File(javaFontPath+fname) );
+ if(null != f) {
+ fontMap.put( ( family << 8 ) | style, f );
+ return f;
+ }
+ throw new GLException(err);
+ } catch (IOException ioe) {
+ throw new GLException(err, ioe);
}
- return f;
-
- }
-
+ }
}
diff --git a/src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java b/src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java
index e09ea85e5..3614add5c 100644
--- a/src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java
+++ b/src/jogl/classes/jogamp/graph/font/UbuntuFontLoader.java
@@ -27,11 +27,15 @@
*/
package jogamp.graph.font;
+import java.io.IOException;
+import javax.media.opengl.GLException;
+
import com.jogamp.common.util.IntObjectHashMap;
import com.jogamp.graph.font.Font;
import com.jogamp.graph.font.FontSet;
import com.jogamp.graph.font.FontFactory;
import com.jogamp.opengl.util.Locator;
+import java.net.URL;
public class UbuntuFontLoader implements FontSet {
@@ -55,6 +59,8 @@ public class UbuntuFontLoader implements FontSet {
};
final static String relPath = "fonts/ubuntu/" ;
+ // debug final static String relPath = "/usr/local/projects/JOGL/jogl/src/jogl/classes/jogamp/graph/font/fonts/ubuntu/" ;
+
private UbuntuFontLoader() {
}
@@ -113,20 +119,22 @@ public class UbuntuFontLoader implements FontSet {
return font;
}
-
- Font abspath(String fname) {
- return FontFactory.getFontConstr().create(
- Locator.getResource(UbuntuFontLoader.class, relPath+fname).getPath() );
- }
-
+
Font abspath(String fname, int family, int style) {
- final Font f = FontFactory.getFontConstr().create(
- Locator.getResource(UbuntuFontLoader.class, relPath+fname).getPath() );
- if(null != f) {
- fontMap.put( ( family << 8 ) | style, f );
+ final String err = "Problem loading font "+fname+", stream "+relPath+fname;
+ try {
+ URL url = Locator.getResource(UbuntuFontLoader.class, relPath+fname);
+ if(null == url) {
+ throw new GLException(err);
+ }
+ final Font f= FontFactory.get ( url ) ;
+ if(null != f) {
+ fontMap.put( ( family << 8 ) | style, f );
+ return f;
+ }
+ throw new GLException(err);
+ } catch(IOException ioe) {
+ throw new GLException(err, ioe);
}
- return f;
- }
-
-
+ }
}
diff --git a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java
index f3bde47d1..179e4ed2c 100644
--- a/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java
+++ b/src/jogl/classes/jogamp/graph/font/typecast/TypecastFontConstructor.java
@@ -29,20 +29,24 @@ package jogamp.graph.font.typecast;
import java.io.File;
import java.io.IOException;
+import java.net.URL;
+
+import javax.media.opengl.GLException;
import jogamp.graph.font.FontConstructor;
import jogamp.graph.font.typecast.ot.OTFontCollection;
+import com.jogamp.common.util.IOUtil;
import com.jogamp.graph.font.Font;
public class TypecastFontConstructor implements FontConstructor {
- public Font create(String path) {
- OTFontCollection fontset;
+ public Font create(File ffile) throws IOException {
+ OTFontCollection fontset;
try {
- fontset = OTFontCollection.create(new File(path));
+ fontset = OTFontCollection.create(ffile);
return new TypecastFont(fontset);
} catch (IOException e) {
e.printStackTrace();
@@ -50,4 +54,16 @@ public class TypecastFontConstructor implements FontConstructor {
return null;
}
+ public Font create(URL furl) throws IOException {
+ final File tf = File.createTempFile( "joglfont", ".ttf");
+ final int len = IOUtil.copyURLToFile(furl, tf);
+ if(len==0) {
+ tf.delete();
+ throw new GLException("Font of stream "+furl+" was zero bytes");
+ }
+ final Font f = create(tf);
+ tf.delete();
+ return f;
+ }
+
} \ No newline at end of file