Hash :
68738f93
Author :
Date :
2008-05-09T10:02:46
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
/*
* FTGL - OpenGL font library
*
* Copyright (c) 2001-2004 Henry Maddocks <ftgl@opengl.geek.nz>
* 2008 Éric Beets <ericbeets@free.fr>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "config.h"
#include "FTInternals.h"
static const FTBBox static_ftbbox;
FTGL_BEGIN_C_DECLS
#define C_TOR(cname, cargs, cxxname, cxxarg, cxxtype) \
FTGLlayout* cname cargs \
{ \
cxxname *l = new cxxname cxxarg; \
if(l->Error()) \
{ \
delete l; \
return NULL; \
} \
FTGLlayout *ftgl = (FTGLlayout *)malloc(sizeof(FTGLlayout)); \
ftgl->ptr = l; \
ftgl->type = cxxtype; \
return ftgl; \
}
// FTSimpleLayout::FTSimpleLayout();
C_TOR(ftglCreateSimpleLayout, (), FTSimpleLayout, (), LAYOUT_SIMPLE);
#define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \
cret cname cargs \
{ \
if(!l || !l->ptr) \
{ \
fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \
cxxerr; \
} \
switch(l->type) \
{ \
case FTGL::LAYOUT_SIMPLE: \
return dynamic_cast<FTSimpleLayout*>(l->ptr)->cxxname cxxarg; \
} \
fprintf(stderr, "FTGL warning: %s not implemented for %d\n", #cname, l->type); \
cxxerr; \
}
// FTLayout::~FTLayout();
void ftglDestroyLayout(FTGLlayout *l)
{
if(!l || !l->ptr)
{
fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
return;
}
switch(l->type)
{
case FTGL::LAYOUT_SIMPLE:
delete dynamic_cast<FTSimpleLayout*>(l->ptr); break;
default:
fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
__FUNCTION__, l->type);
}
l->ptr = NULL;
free(l);
}
// virtual FTBBox FTLayout::BBox(const char* string)
extern "C++" {
C_FUN(static FTBBox, _ftgGetlLayoutBBox, (FTGLlayout *l, const char *s),
return static_ftbbox, BBox, (s));
}
void ftgGetlLayoutBBox(FTGLlayout *l, const char * s, float c[6])
{
FTBBox ret = _ftgGetlLayoutBBox(l, s);
FTPoint lower = ret.Lower(), upper = ret.Upper();
c[0] = lower.Xf(); c[1] = lower.Yf(); c[2] = lower.Zf();
c[3] = upper.Xf(); c[4] = upper.Yf(); c[5] = upper.Zf();
}
// virtual void FTLayout::Render(const char* string, int renderMode);
C_FUN(void, ftglRenderLayout, (FTGLlayout *l, const char *s, int r),
return, Render, (s, r));
// void FTSimpleLayout::RenderSpace(const char *string, const float ExtraSpace = 0.0)
C_FUN(void, ftglRenderLayoutSpace, (FTGLlayout *l, const char *s, float e),
return, RenderSpace, (s, e));
// void SetFont(FTFont *fontInit)
void ftglSetLayoutFont(FTGLlayout *l, FTGLfont *font)
{
if(!l || !l->ptr)
{
//XXX fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __func__);
return;
}
switch(l->type)
{
case FTGL::LAYOUT_SIMPLE:
l->font = font;
return dynamic_cast<FTSimpleLayout*>(l->ptr)->SetFont(font->ptr);
}
fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
__FUNCTION__, l->type);
}
// FTFont *FTSimpleLayout::GetFont()
FTGLfont *ftglGetLayoutFont(FTGLlayout *l)
{
if(!l || !l->ptr)
{
fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
return NULL;
}
return l->font;
}
// void FTSimpleLayout::SetLineLength(const float LineLength);
C_FUN(void, ftglSetLayoutLineLength, (FTGLlayout *l, const float length),
return, SetLineLength, (length));
// float FTSimpleLayout::GetLineLength() const
C_FUN(float, ftglGetLayoutLineLength, (FTGLlayout *l),
return 0.0f, GetLineLength, ());
// void FTSimpleLayout::SetAlignment(const TextAlignment Alignment)
C_FUN(void, ftglSetLayoutAlignment, (FTGLlayout *l, const int a),
return, SetAlignment, ((FTGL::TextAlignment)a));
// TextAlignment FTSimpleLayout::GetAlignment() const
C_FUN(int, ftglGetLayoutAlignement, (FTGLlayout *l),
return FTGL::ALIGN_LEFT, GetAlignment, ());
// void FTSimpleLayout::SetLineSpacing(const float LineSpacing)
C_FUN(void, ftglSetLayoutLineSpacing, (FTGLlayout *l, const float f),
return, SetLineSpacing, (f));
// float FTSimpleLayout::GetLineSpacing() const
C_FUN(float, ftglGetLayoutLineSpacing, (FTGLlayout *l),
return 0.0f, GetLineSpacing, ());
// FT_Error FTLayout::Error() const;
C_FUN(FT_Error, ftglGetLayoutError, (FTGLlayout *l), return -1, Error, ());
FTGL_END_C_DECLS