First add for buffer font stuff
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
diff --git a/include/FTBufferGlyph.h b/include/FTBufferGlyph.h
new file mode 100755
index 0000000..9795f4d
--- /dev/null
+++ b/include/FTBufferGlyph.h
@@ -0,0 +1,76 @@
+#ifndef __FTBufferGlyph__
+#define __FTBufferGlyph__
+
+
+#include <ft2build.h>
+#include FT_FREETYPE_H
+#include FT_GLYPH_H
+
+#include "FTGL.h"
+#include "FTGlyph.h"
+
+
+/**
+ * FTBufferGlyph is a specialisation of FTGlyph for creating pixmaps.
+ *
+ * @see FTGlyphContainer
+ *
+ */
+class FTGL_EXPORT FTBufferGlyph : public FTGlyph
+{
+ public:
+ /**
+ * Constructor
+ *
+ * @param glyph The Freetype glyph to be processed
+ */
+ FTBufferGlyph( FT_GlyphSlot glyph, unsigned char* clientBuffer);
+
+ /**
+ * Destructor
+ */
+ virtual ~FTBufferGlyph();
+
+ /**
+ * Renders this glyph at the current pen position.
+ *
+ * @param pen The current pen position.
+ * @return The advance distance for this glyph.
+ */
+ virtual float Render( const FTPoint& pen);
+
+ // attributes
+
+ private:
+ /**
+ * The width of the glyph 'image'
+ */
+ int destWidth;
+
+ /**
+ * The height of the glyph 'image'
+ */
+ int destHeight;
+
+ /**
+ * The pitch of the glyph 'image'
+ */
+ unsigned int destPitch;
+
+ /**
+ * Vector from the pen position to the topleft corner of the pixmap
+ */
+ FTPoint pos;
+
+ /**
+ * Pointer to the 'image' data
+ */
+ unsigned char* data;
+
+
+ unsigned char* buffer;
+
+};
+
+
+#endif // __FTBufferGlyph__
diff --git a/include/FTGLBufferFont.h b/include/FTGLBufferFont.h
new file mode 100755
index 0000000..2f74b5c
--- /dev/null
+++ b/include/FTGLBufferFont.h
@@ -0,0 +1,76 @@
+#ifndef __FTGLBufferFont__
+#define __FTGLBufferFont__
+
+
+#include "FTFont.h"
+#include "FTGL.h"
+
+
+class FTGlyph;
+
+
+/**
+ * FTGLBufferFont is a specialisation of the FTFont class for handling
+ * Pixmap (Grey Scale) fonts
+ *
+ * @see FTFont
+ */
+class FTGL_EXPORT FTGLBufferFont : public FTFont
+{
+ public:
+ /**
+ * Open and read a font file. Sets Error flag.
+ *
+ * @param fontname font file name.
+ */
+ FTGLBufferFont( const char* fontname);
+
+ /**
+ * Open and read a font from a buffer in memory. Sets Error flag.
+ *
+ * @param pBufferBytes the in-memory buffer
+ * @param bufferSizeInBytes the length of the buffer in bytes
+ */
+ FTGLBufferFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes);
+
+
+ void SetClientBuffer( unsigned char* b)
+ {
+ buffer = b;
+ }
+
+
+ /**
+ * Destructor
+ */
+ ~FTGLBufferFont();
+
+ /**
+ * Renders a string of characters
+ *
+ * @param string 'C' style string to be output.
+ */
+ void Render( const char* string);
+
+ /**
+ * Renders a string of characters
+ *
+ * @param string wchar_t string to be output.
+ */
+ void Render( const wchar_t* string);
+
+ private:
+ /**
+ * Construct a FTBufferGlyph.
+ *
+ * @param g The glyph index NOT the char code.
+ * @return An FTBufferGlyph or <code>null</code> on failure.
+ */
+ inline virtual FTGlyph* MakeGlyph( unsigned int g);
+
+ unsigned char* buffer;
+};
+
+
+#endif // __FTGLBufferFont__
+
diff --git a/src/FTBufferGlyph.cpp b/src/FTBufferGlyph.cpp
new file mode 100755
index 0000000..2731010
--- /dev/null
+++ b/src/FTBufferGlyph.cpp
@@ -0,0 +1,59 @@
+#include "FTBufferGlyph.h"
+
+FTBufferGlyph::FTBufferGlyph( FT_GlyphSlot glyph, unsigned char* b)
+: FTGlyph( glyph),
+ destWidth(0),
+ destHeight(0),
+ data(0),
+ buffer(b)
+{
+ err = FT_Render_Glyph( glyph, FT_RENDER_MODE_NORMAL);
+ if( err || ft_glyph_format_bitmap != glyph->format)
+ {
+ return;
+ }
+
+ FT_Bitmap bitmap = glyph->bitmap;
+
+ unsigned int srcWidth = bitmap.width;
+ unsigned int srcHeight = bitmap.rows;
+ unsigned int srcPitch = bitmap.pitch;
+
+ destWidth = srcWidth;
+ destHeight = srcHeight;
+ destPitch = srcPitch;
+
+ if( destWidth && destHeight)
+ {
+ data = new unsigned char[destPitch * destHeight];
+ unsigned char* dest = data + (( destHeight - 1) * destPitch);
+
+ unsigned char* src = bitmap.buffer;
+
+ for( unsigned int y = 0; y < srcHeight; ++y)
+ {
+ memcpy( dest, src, srcPitch);
+ dest -= destPitch;
+ src += srcPitch;
+ }
+ }
+
+ pos.x = glyph->bitmap_left;
+ pos.y = srcHeight - glyph->bitmap_top;
+}
+
+
+FTBufferGlyph::~FTBufferGlyph()
+{
+ delete [] data;
+}
+
+
+float FTBufferGlyph::Render( const FTPoint& pen)
+{
+ if( data && buffer)
+ {
+ }
+
+ return advance;
+}
diff --git a/src/FTGLBufferFont.cpp b/src/FTGLBufferFont.cpp
new file mode 100755
index 0000000..b8af0fc
--- /dev/null
+++ b/src/FTGLBufferFont.cpp
@@ -0,0 +1,53 @@
+#include "FTGLBufferFont.h"
+#include "FTBufferGlyph.h"
+
+
+FTGLBufferFont::FTGLBufferFont( const char* fontname)
+: FTFont( fontname),
+ buffer(0)
+{}
+
+
+FTGLBufferFont::FTGLBufferFont( const unsigned char *pBufferBytes, size_t bufferSizeInBytes)
+: FTFont( pBufferBytes, bufferSizeInBytes),
+ buffer(0)
+{}
+
+
+FTGLBufferFont::~FTGLBufferFont()
+{}
+
+
+FTGlyph* FTGLBufferFont::MakeGlyph( unsigned int g)
+{
+ FT_GlyphSlot ftGlyph = face.Glyph( g, FT_LOAD_NO_HINTING);
+
+ if( ftGlyph)
+ {
+ FTBufferGlyph* tempGlyph = new FTBufferGlyph( ftGlyph, buffer);
+ return tempGlyph;
+ }
+
+ err = face.Error();
+ return NULL;
+}
+
+
+void FTGLBufferFont::Render( const char* string)
+{
+ if( NULL != buffer)
+ {
+ FTFont::Render( string);
+ }
+}
+
+
+void FTGLBufferFont::Render( const wchar_t* string)
+{
+ if( NULL != buffer)
+ {
+ FTFont::Render( string);
+ }
+}
+
+