* Clean up the C bindings by splitting FTGlue.cpp into FTLayoutGlue.cpp, FTGlyphGlue.cpp (unused yet) and FTFontGlue.cpp. C methods previously scattered all around are now located in one of these 3 files. * Hide extern "C" and namespace C constructs in a single FTGL_BEGIN_C_DECLS macro. * Use namespace FTGL all around instead of a mix of C and FTGL namespaces.
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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
diff --git a/include/FTFont.h b/include/FTFont.h
index ab3c673..f61a565 100644
--- a/include/FTFont.h
+++ b/include/FTFont.h
@@ -23,11 +23,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef __FTFont__
-#define __FTFont__
-
-#include <ft2build.h>
-#include FT_FREETYPE_H
+#ifndef __FTFont__
+#define __FTFont__
#include <ftgl.h>
@@ -45,15 +42,15 @@ class FTFontImpl;
* appropriate type.
*
* It is good practice after using these functions to test the error
- * code returned. <code>FT_Error Error()</code>. Check the freetype file fterrdef.h
- * for error definitions.
+ * code returned. <code>FT_Error Error()</code>. Check the freetype file
+ * fterrdef.h for error definitions.
*
* @see FTFace
* @see FTSize
*/
class FTGL_EXPORT FTFont
{
- /* Allow FTLayout classes to access DoRender and CheckGlyph */
+ /* Allow FTLayout classes to access this->impl. */
friend class FTLayoutImpl;
public:
@@ -321,12 +318,10 @@ class FTGL_EXPORT FTFont
protected:
FTFontImpl *impl;
};
+
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
+FTGL_BEGIN_C_DECLS
FTGL_EXPORT void ftglDestroyFont(FTGLfont*);
@@ -356,10 +351,7 @@ FTGL_EXPORT void ftglRenderMode (FTGLfont*, const char *, int);
FTGL_EXPORT FT_Error ftglError (FTGLfont*);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_END_C_DECLS
#endif // __FTFont__
diff --git a/include/FTGLBitmapFont.h b/include/FTGLBitmapFont.h
index 6ff99ae..606cb76 100644
--- a/include/FTGLBitmapFont.h
+++ b/include/FTGLBitmapFont.h
@@ -64,15 +64,9 @@ class FTGL_EXPORT FTGLBitmapFont : public FTFont
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-FTGL_EXPORT FTGLfont *ftglCreateBitmapFont(const char *fontname);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreateBitmapFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLBitmapFont__
diff --git a/include/FTGLExtrdFont.h b/include/FTGLExtrdFont.h
index 7fd4794..da4fcbb 100644
--- a/include/FTGLExtrdFont.h
+++ b/include/FTGLExtrdFont.h
@@ -64,15 +64,9 @@ class FTGL_EXPORT FTGLExtrdFont : public FTFont
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-FTGL_EXPORT FTGLfont *ftglCreateExtrdFont(const char *fontname);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreateExtrdFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLExtrdFont__
diff --git a/include/FTGLOutlineFont.h b/include/FTGLOutlineFont.h
index 5c293f9..2c4b5f3 100644
--- a/include/FTGLOutlineFont.h
+++ b/include/FTGLOutlineFont.h
@@ -64,16 +64,8 @@ class FTGL_EXPORT FTGLOutlineFont : public FTFont
#endif //__cplusplus
-#ifdef __cplusplus
-namespace C {
-extern "C" {
-#endif
-
-FTGL_EXPORT FTGLfont *ftglCreateOutlineFont(const char *fontname);
-
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreateOutlineFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLOutlineFont__
diff --git a/include/FTGLPixmapFont.h b/include/FTGLPixmapFont.h
index 4bbeab8..12cb293 100644
--- a/include/FTGLPixmapFont.h
+++ b/include/FTGLPixmapFont.h
@@ -60,15 +60,9 @@ class FTGL_EXPORT FTGLPixmapFont : public FTFont
~FTGLPixmapFont();
};
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-FTGL_EXPORT FTGLfont *ftglCreatePixmapFont(const char *fontname);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreatePixmapFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLPixmapFont__
diff --git a/include/FTGLPolygonFont.h b/include/FTGLPolygonFont.h
index a34e7f3..bb77574 100644
--- a/include/FTGLPolygonFont.h
+++ b/include/FTGLPolygonFont.h
@@ -64,15 +64,9 @@ class FTGL_EXPORT FTGLPolygonFont : public FTFont
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-FTGL_EXPORT FTGLfont *ftglCreatePolygonFont(const char *fontname);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreatePolygonFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLPolygonFont__
diff --git a/include/FTGLTextureFont.h b/include/FTGLTextureFont.h
index 278c1c5..3e812a4 100644
--- a/include/FTGLTextureFont.h
+++ b/include/FTGLTextureFont.h
@@ -64,15 +64,9 @@ class FTGL_EXPORT FTGLTextureFont : public FTFont
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-FTGL_EXPORT FTGLfont *ftglCreateTextureFont(const char *fontname);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLfont *ftglCreateTextureFont(const char *fontname);
+FTGL_END_C_DECLS
#endif // __FTGLTextureFont__
diff --git a/include/FTLayout.h b/include/FTLayout.h
index fcce92a..77f1445 100644
--- a/include/FTLayout.h
+++ b/include/FTLayout.h
@@ -70,10 +70,7 @@ class FTGL_EXPORT FTLayout
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
+FTGL_BEGIN_C_DECLS
FTGL_EXPORT void ftglDestroyLayout(FTGLlayout*);
@@ -100,10 +97,7 @@ FTGL_EXPORT int ftglLayoutGetAlignement (FTGLlayout *);
FTGL_EXPORT void ftglLayoutSetLineSpacing (FTGLlayout *, const float);
FTGL_EXPORT float ftglLayoutGetLineSpacing (FTGLlayout *);
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_END_C_DECLS
#endif /* __FTLayout__ */
diff --git a/include/FTSimpleLayout.h b/include/FTSimpleLayout.h
index c66bc70..26fb6c1 100644
--- a/include/FTSimpleLayout.h
+++ b/include/FTSimpleLayout.h
@@ -122,17 +122,9 @@ class FTGL_EXPORT FTSimpleLayout : public FTLayout
#endif //__cplusplus
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
-
-FTGL_EXPORT FTGLlayout *ftglCreateSimpleLayout();
-
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_BEGIN_C_DECLS
+ FTGL_EXPORT FTGLlayout *ftglCreateSimpleLayout();
+FTGL_END_C_DECLS
#endif /* __FTSimpleLayout__ */
diff --git a/include/ftgl.h b/include/ftgl.h
index 225c822..cde4e52 100644
--- a/include/ftgl.h
+++ b/include/ftgl.h
@@ -26,24 +26,31 @@
#ifndef __ftgl__
#define __ftgl__
+/* We need the Freetype headers */
+#include <ft2build.h>
+#include FT_FREETYPE_H
+
+/* Floating point types used by the library */
typedef double FTGL_DOUBLE;
typedef float FTGL_FLOAT;
+/* Macros used to declare C-linkage types and symbols */
#ifdef __cplusplus
-extern "C" {
-namespace C {
+# define FTGL_BEGIN_C_DECLS extern "C" { namespace FTGL {
+# define FTGL_END_C_DECLS } }
+#else
+# define FTGL_BEGIN_C_DECLS
+# define FTGL_END_C_DECLS
#endif
-struct _FTGLFont;
-typedef struct _FTGLfont FTGLfont;
+FTGL_BEGIN_C_DECLS
-struct _FTGLlayout;
-typedef struct _FTGLlayout FTGLlayout;
+ struct _FTGLFont;
+ typedef struct _FTGLfont FTGLfont;
+ struct _FTGLlayout;
+ typedef struct _FTGLlayout FTGLlayout;
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_END_C_DECLS
#ifdef __cplusplus
namespace FTGL
@@ -53,7 +60,7 @@ namespace FTGL
RENDER_FRONT = 0x01,
RENDER_BACK = 0x02,
RENDER_SIDE = 0x04,
- } ftglRenderMode;
+ } RenderMode;
typedef enum
{
diff --git a/src/FTFont.cpp b/src/FTFont.cpp
index 5af2e19..4ecfd47 100644
--- a/src/FTFont.cpp
+++ b/src/FTFont.cpp
@@ -106,11 +106,6 @@ FTFont::~FTFont()
}
-//
-// FTLayoutImpl
-//
-
-
bool FTFont::Attach(const char* fontFilePath)
{
if(impl->face.Attach(fontFilePath))
diff --git a/src/FTFontGlue.cpp b/src/FTFontGlue.cpp
new file mode 100644
index 0000000..489fc7b
--- /dev/null
+++ b/src/FTFontGlue.cpp
@@ -0,0 +1,242 @@
+/*
+ * 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"
+
+FTGL_BEGIN_C_DECLS
+
+static inline FTGLfont *createFTFont(FTGL::FontType type, const char *fontname)
+{
+ FTGLfont *ftgl = (FTGLfont*)malloc(sizeof(FTGLfont));
+ ftgl->type = type;
+ switch(type)
+ {
+ case FTGL::FONT_BITMAP:
+ ftgl->ptr = new FTGLBitmapFont(fontname);
+ break;
+ case FTGL::FONT_PIXMAP:
+ ftgl->ptr = new FTGLPixmapFont(fontname);
+ break;
+ case FTGL::FONT_OUTLINE:
+ ftgl->ptr = new FTGLOutlineFont(fontname);
+ break;
+ case FTGL::FONT_POLYGON:
+ ftgl->ptr = new FTGLPolygonFont(fontname);
+ break;
+ case FTGL::FONT_EXTRUDE:
+ ftgl->ptr = new FTGLExtrdFont(fontname);
+ break;
+ case FTGL::FONT_TEXTURE:
+ ftgl->ptr = new FTGLTextureFont(fontname);
+ break;
+ }
+
+ if(ftgl->ptr->Error())
+ {
+ delete ftgl->ptr;
+ free(ftgl);
+ return NULL;
+ }
+
+ return ftgl;
+}
+
+// FTGLBitmapFont::FTGLBitmapFont();
+FTGLfont* ftglCreateBitmapFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_BITMAP, fontname);
+ return ftgl;
+}
+
+// FTGLExtrdFont::FTGLExtrdFont();
+FTGLfont* ftglCreateExtrdFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_EXTRUDE, fontname);
+ return ftgl;
+}
+
+// FTGLOutlineFont::FTGLOutlineFont();
+FTGLfont* ftglCreateOutlineFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_OUTLINE, fontname);
+ return ftgl;
+}
+
+// FTGLPixmapFont::FTGLPixmapFont();
+FTGLfont* ftglCreatePixmapFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_PIXMAP, fontname);
+ return ftgl;
+}
+
+// FTGLPolygonFont::FTGLPolygonFont();
+FTGLfont* ftglCreatePolygonFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_POLYGON, fontname);
+ return ftgl;
+}
+
+// FTGLTextureFont::FTGLTextureFont();
+FTGLfont* ftglCreateTextureFont(const char *fontname)
+{
+ FTGLfont *ftgl = createFTFont(FTGL::FONT_TEXTURE, fontname);
+ return ftgl;
+}
+
+#define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \
+ cret cname cargs \
+ { \
+ if(!f || !f->ptr) \
+ { \
+ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \
+ cxxerr; \
+ } \
+ switch(f->type) \
+ { \
+ case FTGL::FONT_BITMAP: \
+ return dynamic_cast<FTGLBitmapFont*>(f->ptr)->cxxname cxxarg; \
+ case FTGL::FONT_EXTRUDE: \
+ return dynamic_cast<FTGLExtrdFont*>(f->ptr)->cxxname cxxarg; \
+ case FTGL::FONT_OUTLINE: \
+ return dynamic_cast<FTGLOutlineFont*>(f->ptr)->cxxname cxxarg; \
+ case FTGL::FONT_PIXMAP: \
+ return dynamic_cast<FTGLPixmapFont*>(f->ptr)->cxxname cxxarg; \
+ case FTGL::FONT_POLYGON: \
+ return dynamic_cast<FTGLPolygonFont*>(f->ptr)->cxxname cxxarg; \
+ case FTGL::FONT_TEXTURE: \
+ return dynamic_cast<FTGLTextureFont*>(f->ptr)->cxxname cxxarg; \
+ } \
+ fprintf(stderr, "FTGL warning: %s not implemented for %d\n", #cname, f->type); \
+ cxxerr; \
+ }
+
+// FTFont::~FTFont();
+void ftglDestroyFont(FTGLfont *f)
+{
+ if(!f || !f->ptr)
+ {
+ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
+ return;
+ }
+ switch(f->type)
+ {
+ case FTGL::FONT_BITMAP:
+ delete dynamic_cast<FTGLBitmapFont*>(f->ptr); break;
+ case FTGL::FONT_EXTRUDE:
+ delete dynamic_cast<FTGLExtrdFont*>(f->ptr); break;
+ case FTGL::FONT_OUTLINE:
+ delete dynamic_cast<FTGLOutlineFont*>(f->ptr); break;
+ case FTGL::FONT_PIXMAP:
+ delete dynamic_cast<FTGLPixmapFont*>(f->ptr); break;
+ case FTGL::FONT_POLYGON:
+ delete dynamic_cast<FTGLPolygonFont*>(f->ptr); break;
+ case FTGL::FONT_TEXTURE:
+ delete dynamic_cast<FTGLTextureFont*>(f->ptr); break;
+ default:
+ fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
+ __FUNCTION__, f->type);
+ break;
+ }
+
+ f->ptr = NULL;
+}
+
+// bool FTFont::Attach(const char* fontFilePath);
+C_FUN(int, ftglAttachFile, (FTGLfont *f, const char* path),
+ return 0, Attach, (path));
+
+// bool FTFont::Attach(const unsigned char *pBufferBytes,
+// size_t bufferSizeInBytes);
+C_FUN(int, ftglAttachData, (FTGLfont *f, const unsigned char *p, size_t s),
+ return 0, Attach, (p, s));
+
+// bool FTFont::CharMap(FT_Encoding encoding);
+C_FUN(int, ftglCharMap, (FTGLfont *f, FT_Encoding enc),
+ return 0, CharMap, (enc));
+
+// unsigned int FTFont::CharMapCount();
+C_FUN(unsigned int, ftglCharMapCount, (FTGLfont *f),
+ return 0, CharMapCount, ());
+
+// FT_Encoding* FTFont::CharMapList();
+C_FUN(FT_Encoding *, ftglCharMapList, (FTGLfont* f),
+ return NULL, CharMapList, ());
+
+// virtual bool FTFont::FaceSize(const unsigned int size,
+// const unsigned int res = 72);
+C_FUN(int, ftglSetFaceSize, (FTGLfont *f, unsigned int s),
+ return 0, FaceSize, (s));
+C_FUN(int, ftglSetFaceSizeRes, (FTGLfont *f, unsigned int s, unsigned int r),
+ return 0, FaceSize, (s, r));
+
+// unsigned int FTFont::FaceSize() const;
+// XXX: need to call FaceSize() as FTFont::FaceSize() because of FTGLTexture
+C_FUN(unsigned int, ftglGetFaceSize, (FTGLfont *f),
+ return 0, FTFont::FaceSize, ());
+
+// virtual void FTFont::Depth(float depth);
+C_FUN(void, ftglSetDepth, (FTGLfont *f, float d), return, Depth, (d));
+
+// virtual void FTFont::Outset(float front, float back);
+C_FUN(void, ftglSetOutset, (FTGLfont *f, float front, float back),
+ return, FTFont::Outset, (front, back));
+
+// void FTFont::UseDisplayList(bool useList);
+C_FUN(void, ftglUseDisplayList, (FTGLfont *f, int l),
+ return, UseDisplayList, (l));
+
+// float FTFont::Ascender() const;
+C_FUN(float, ftglAscender, (FTGLfont *f), return 0.f, Ascender, ());
+
+// float FTFont::Descender() const;
+C_FUN(float, ftglDescender, (FTGLfont *f), return 0.f, Descender, ());
+
+// float FTFont::LineHeight() const;
+C_FUN(float, ftglLineHeight, (FTGLfont *f), return 0.f, LineHeight, ());
+
+// void FTFont::BBox(const char* string, float& llx, float& lly, float& llz,
+// float& urx, float& ury, float& urz);
+C_FUN(void, ftglBBox, (FTGLfont *f, const char* s, float c[6]),
+ return, BBox, (s, c[0], c[1], c[2], c[3], c[4], c[5]));
+
+// float FTFont::Advance(const char* string);
+C_FUN(float, ftglAdvance, (FTGLfont *f, const char* s),
+ return 0.f, Advance, (s));
+
+// virtual void FTFont::Render(const char* string);
+C_FUN(void, ftglRender, (FTGLfont *f, const char * s), return, Render, (s));
+
+// virtual void Render(const char* string, int renderMode);
+C_FUN(void, ftglRenderMode, (FTGLfont *f, const char *s, int r),
+ return, Render, (s, r));
+
+// FT_Error FTFont::Error() const;
+C_FUN(FT_Error, ftglError, (FTGLfont *f), return -1, Error, ());
+
+FTGL_END_C_DECLS
+
diff --git a/src/FTGLBitmapFont.cpp b/src/FTGLBitmapFont.cpp
index 019bf12..01208d4 100644
--- a/src/FTGLBitmapFont.cpp
+++ b/src/FTGLBitmapFont.cpp
@@ -122,13 +122,3 @@ void FTGLBitmapFontImpl::Render(const wchar_t* string)
RenderI(string);
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreateBitmapFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_BITMAP, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGLExtrdFont.cpp b/src/FTGLExtrdFont.cpp
index af38f93..e2fedac 100644
--- a/src/FTGLExtrdFont.cpp
+++ b/src/FTGLExtrdFont.cpp
@@ -102,13 +102,3 @@ FTGlyph* FTGLExtrdFontImpl::MakeGlyph(unsigned int glyphIndex)
return NULL;
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreateExtrdFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_EXTRUDE, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGLOutlineFont.cpp b/src/FTGLOutlineFont.cpp
index 79de09f..25b8539 100644
--- a/src/FTGLOutlineFont.cpp
+++ b/src/FTGLOutlineFont.cpp
@@ -124,13 +124,3 @@ void FTGLOutlineFontImpl::Render(const wchar_t* string)
RenderI(string);
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreateOutlineFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_OUTLINE, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGLPixmapFont.cpp b/src/FTGLPixmapFont.cpp
index dd8f9f5..d1d1eb9 100644
--- a/src/FTGLPixmapFont.cpp
+++ b/src/FTGLPixmapFont.cpp
@@ -137,13 +137,3 @@ void FTGLPixmapFontImpl::Render(const wchar_t* string)
RenderI(string);
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreatePixmapFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_PIXMAP, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGLPolygonFont.cpp b/src/FTGLPolygonFont.cpp
index 8075adc..cb85688 100644
--- a/src/FTGLPolygonFont.cpp
+++ b/src/FTGLPolygonFont.cpp
@@ -99,13 +99,3 @@ FTGlyph* FTGLPolygonFontImpl::MakeGlyph(unsigned int g)
return NULL;
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreatePolygonFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_POLYGON, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGLTextureFont.cpp b/src/FTGLTextureFont.cpp
index 2bea85a..561bb0b 100644
--- a/src/FTGLTextureFont.cpp
+++ b/src/FTGLTextureFont.cpp
@@ -238,13 +238,3 @@ void FTGLTextureFontImpl::Render(const wchar_t* string)
RenderI(string);
}
-
-namespace C
-{
- extern "C" FTGLfont* ftglCreateTextureFont(const char *fontname)
- {
- FTGLfont *ftgl = createFTFont(FTGL::FONT_TEXTURE, fontname);
- return ftgl;
- }
-}
-
diff --git a/src/FTGlue.cpp b/src/FTGlue.cpp
deleted file mode 100644
index 9febd34..0000000
--- a/src/FTGlue.cpp
+++ /dev/null
@@ -1,281 +0,0 @@
-/*
- * 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"
-
-namespace C
-{
-
-//
-// C wrappers for FTFont
-//
-
-#define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \
- cret cname cargs \
- { \
- if(!f || !f->ptr) \
- { \
- fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \
- cxxerr; \
- } \
- switch(f->type) \
- { \
- case FTGL::FONT_BITMAP: \
- return dynamic_cast<FTGLBitmapFont*>(f->ptr)->cxxname cxxarg; \
- case FTGL::FONT_EXTRUDE: \
- return dynamic_cast<FTGLExtrdFont*>(f->ptr)->cxxname cxxarg; \
- case FTGL::FONT_OUTLINE: \
- return dynamic_cast<FTGLOutlineFont*>(f->ptr)->cxxname cxxarg; \
- case FTGL::FONT_PIXMAP: \
- return dynamic_cast<FTGLPixmapFont*>(f->ptr)->cxxname cxxarg; \
- case FTGL::FONT_POLYGON: \
- return dynamic_cast<FTGLPolygonFont*>(f->ptr)->cxxname cxxarg; \
- case FTGL::FONT_TEXTURE: \
- return dynamic_cast<FTGLTextureFont*>(f->ptr)->cxxname cxxarg; \
- } \
- fprintf(stderr, "FTGL warning: %s not implemented for %d\n", #cname, f->type); \
- cxxerr; \
- }
-
-// FTFont::~FTFont();
-void ftglDestroyFont(FTGLfont *f)
-{
- if(!f || !f->ptr)
- {
- fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
- return;
- }
- switch(f->type)
- {
- case FTGL::FONT_BITMAP:
- delete dynamic_cast<FTGLBitmapFont*>(f->ptr); break;
- case FTGL::FONT_EXTRUDE:
- delete dynamic_cast<FTGLExtrdFont*>(f->ptr); break;
- case FTGL::FONT_OUTLINE:
- delete dynamic_cast<FTGLOutlineFont*>(f->ptr); break;
- case FTGL::FONT_PIXMAP:
- delete dynamic_cast<FTGLPixmapFont*>(f->ptr); break;
- case FTGL::FONT_POLYGON:
- delete dynamic_cast<FTGLPolygonFont*>(f->ptr); break;
- case FTGL::FONT_TEXTURE:
- delete dynamic_cast<FTGLTextureFont*>(f->ptr); break;
- default:
- fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
- __FUNCTION__, f->type);
- break;
- }
-
- f->ptr = NULL;
-}
-
-// bool FTFont::Attach(const char* fontFilePath);
-C_FUN(int, ftglAttachFile, (FTGLfont *f, const char* path),
- return 0, Attach, (path));
-
-// bool FTFont::Attach(const unsigned char *pBufferBytes,
-// size_t bufferSizeInBytes);
-C_FUN(int, ftglAttachData, (FTGLfont *f, const unsigned char *p, size_t s),
- return 0, Attach, (p, s));
-
-// bool FTFont::CharMap(FT_Encoding encoding);
-C_FUN(int, ftglCharMap, (FTGLfont *f, FT_Encoding enc),
- return 0, CharMap, (enc));
-
-// unsigned int FTFont::CharMapCount();
-C_FUN(unsigned int, ftglCharMapCount, (FTGLfont *f),
- return 0, CharMapCount, ());
-
-// FT_Encoding* FTFont::CharMapList();
-C_FUN(FT_Encoding *, ftglCharMapList, (FTGLfont* f),
- return NULL, CharMapList, ());
-
-// virtual bool FTFont::FaceSize(const unsigned int size,
-// const unsigned int res = 72);
-C_FUN(int, ftglSetFaceSize, (FTGLfont *f, unsigned int s),
- return 0, FaceSize, (s));
-C_FUN(int, ftglSetFaceSizeRes, (FTGLfont *f, unsigned int s, unsigned int r),
- return 0, FaceSize, (s, r));
-
-// unsigned int FTFont::FaceSize() const;
-// XXX: need to call FaceSize() as FTFont::FaceSize() because of FTGLTexture
-C_FUN(unsigned int, ftglGetFaceSize, (FTGLfont *f),
- return 0, FTFont::FaceSize, ());
-
-// virtual void FTFont::Depth(float depth);
-C_FUN(void, ftglSetDepth, (FTGLfont *f, float d), return, Depth, (d));
-
-// virtual void FTFont::Outset(float front, float back);
-C_FUN(void, ftglSetOutset, (FTGLfont *f, float front, float back),
- return, FTFont::Outset, (front, back));
-
-// void FTFont::UseDisplayList(bool useList);
-C_FUN(void, ftglUseDisplayList, (FTGLfont *f, int l),
- return, UseDisplayList, (l));
-
-// float FTFont::Ascender() const;
-C_FUN(float, ftglAscender, (FTGLfont *f), return 0.f, Ascender, ());
-
-// float FTFont::Descender() const;
-C_FUN(float, ftglDescender, (FTGLfont *f), return 0.f, Descender, ());
-
-// float FTFont::LineHeight() const;
-C_FUN(float, ftglLineHeight, (FTGLfont *f), return 0.f, LineHeight, ());
-
-// void FTFont::BBox(const char* string, float& llx, float& lly, float& llz,
-// float& urx, float& ury, float& urz);
-C_FUN(void, ftglBBox, (FTGLfont *f, const char* s, float c[6]),
- return, BBox, (s, c[0], c[1], c[2], c[3], c[4], c[5]));
-
-// float FTFont::Advance(const char* string);
-C_FUN(float, ftglAdvance, (FTGLfont *f, const char* s),
- return 0.f, Advance, (s));
-
-// virtual void FTFont::Render(const char* string);
-C_FUN(void, ftglRender, (FTGLfont *f, const char * s), return, Render, (s));
-
-// virtual void Render(const char* string, int renderMode);
-C_FUN(void, ftglRenderMode, (FTGLfont *f, const char *s, int r),
- return, Render, (s, r));
-
-// FT_Error FTFont::Error() const;
-C_FUN(FT_Error, ftglError, (FTGLfont *f), return -1, Error, ());
-
-#undef C_FUN
-
-//
-// C wrappers for FTLayout
-//
-
-#define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \
- cret cname cargs \
- { \
- if(!f || !f->ptr) \
- { \
- fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \
- cxxerr; \
- } \
- switch(f->type) \
- { \
- case FTGL::LAYOUT_SIMPLE: \
- return dynamic_cast<FTSimpleLayout*>(f->ptr)->cxxname cxxarg; \
- } \
- fprintf(stderr, "FTGL warning: %s not implemented for %d\n", #cname, f->type); \
- cxxerr; \
- }
-
-// FTLayout::~FTLayout();
-void ftglDestroyLayout(FTGLlayout *f)
-{
- if(!f || !f->ptr)
- {
- fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
- return;
- }
- switch(f->type)
- {
- case FTGL::LAYOUT_SIMPLE:
- delete dynamic_cast<FTSimpleLayout*>(f->ptr); break;
- default:
- fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
- __FUNCTION__, f->type);
- }
-
- f->ptr = NULL;
-}
-
-// virtual void BBox(const char* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz)
-C_FUN(void, ftglLayoutBBox, (FTGLlayout *f, const char * s, float c[6]),
- return, BBox, (s, c[0], c[1], c[2], c[3], c[4], c[5]));
-
-// virtual void Render(const char* string);
-C_FUN(void, ftglLayoutRender, (FTGLlayout *f, const char *s),
- return, Render, (s));
-
-// virtual void Render(const char* string, int renderMode);
-C_FUN(void, ftglLayoutRenderMode, (FTGLlayout *f, const char *s, int r),
- return, Render, (s, r));
-
-// void RenderSpace(const char *string, const float ExtraSpace = 0.0)
-C_FUN(void, ftglLayoutRenderSpace, (FTGLlayout *f, const char *s, float e),
- return, RenderSpace, (s, e));
-
-// void SetFont(FTFont *fontInit)
-void ftglLayoutSetFont(FTGLlayout *f, FTGLfont *font)
-{
- if(!f || !f->ptr)
- {
- //XXX fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __func__);
- return;
- }
- switch(f->type)
- {
- case FTGL::LAYOUT_SIMPLE:
- f->font = font;
- return dynamic_cast<FTSimpleLayout*>(f->ptr)->SetFont(font->ptr);
- }
- fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
- __FUNCTION__, f->type);
-}
-
-// FTFont *GetFont()
-FTGLfont *ftglLayoutGetFont(FTGLlayout *f)
-{
- if(!f || !f->ptr)
- {
- fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
- return NULL;
- }
- return f->font;
-}
-
-// void SetLineLength(const float LineLength);
-C_FUN(void, ftglLayoutSetLineLength, (FTGLlayout *f, const float length),
- return, SetLineLength, (length));
-
-// float GetLineLength() const
-C_FUN(float, ftglLayoutGetLineLength, (FTGLlayout *f),
- return 0.0f, GetLineLength, ());
-
-// void SetAlignment(const TextAlignment Alignment)
-C_FUN(void, ftglLayoutSetAlignment, (FTGLlayout *f, FTGL::TextAlignment a),
- return, SetAlignment, (a));
-
-// TextAlignment GetAlignment() const
-C_FUN(FTGL::TextAlignment, ftglLayoutGetAlignement, (FTGLlayout *f),
- return FTGL::ALIGN_LEFT, GetAlignment, ());
-
-// void SetLineSpacing(const float LineSpacing)
-C_FUN(void, ftglLayoutSetLineSpacing, (FTGLlayout *f, const float l),
- return, SetLineSpacing, (l));
-
-// float GetLineSpacing() const
-C_FUN(float, ftglLayoutGetLineSpacing, (FTGLlayout *f),
- return 0.0f, GetLineSpacing, ());
-
-} // namespace C
-
diff --git a/src/FTGlyphGlue.cpp b/src/FTGlyphGlue.cpp
new file mode 100644
index 0000000..b5b31ec
--- /dev/null
+++ b/src/FTGlyphGlue.cpp
@@ -0,0 +1,38 @@
+/*
+ * 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"
+
+FTGL_BEGIN_C_DECLS
+
+//
+// C wrappers for FTGlyph
+//
+
+FTGL_END_C_DECLS
+
diff --git a/src/FTInternals.h b/src/FTInternals.h
index 138de30..0b58c51 100644
--- a/src/FTInternals.h
+++ b/src/FTInternals.h
@@ -88,11 +88,7 @@
#endif
#endif
-
-#ifdef __cplusplus
-extern "C" {
-namespace C {
-#endif
+FTGL_BEGIN_C_DECLS
struct _FTGLfont
{
@@ -100,42 +96,6 @@ struct _FTGLfont
FTGL::FontType type;
};
-static inline FTGLfont *createFTFont(FTGL::FontType type, const char *fontname)
-{
- FTGLfont *ftgl = (FTGLfont*)malloc(sizeof(FTGLfont));
- ftgl->type = type;
- switch(type)
- {
- case FTGL::FONT_BITMAP:
- ftgl->ptr = new FTGLBitmapFont(fontname);
- break;
- case FTGL::FONT_PIXMAP:
- ftgl->ptr = new FTGLPixmapFont(fontname);
- break;
- case FTGL::FONT_OUTLINE:
- ftgl->ptr = new FTGLOutlineFont(fontname);
- break;
- case FTGL::FONT_POLYGON:
- ftgl->ptr = new FTGLPolygonFont(fontname);
- break;
- case FTGL::FONT_EXTRUDE:
- ftgl->ptr = new FTGLExtrdFont(fontname);
- break;
- case FTGL::FONT_TEXTURE:
- ftgl->ptr = new FTGLTextureFont(fontname);
- break;
- }
-
- if(ftgl->ptr->Error())
- {
- delete ftgl->ptr;
- free(ftgl);
- return NULL;
- }
-
- return ftgl;
-}
-
struct _FTGLlayout
{
FTLayout *ptr;
@@ -143,24 +103,7 @@ struct _FTGLlayout
FTGL::LayoutType type;
};
-static inline FTGLlayout *createFTLayout(FTGL::LayoutType type)
-{
- FTGLlayout *layout = (FTGLlayout*)malloc(sizeof(FTGLlayout));
- layout->font = NULL;
- layout->type = type;
- switch(type)
- {
- case FTGL::LAYOUT_SIMPLE:
- layout->ptr = new FTSimpleLayout();
- break;
- }
- return layout;
-}
-
-#ifdef __cplusplus
-}
-}
-#endif
+FTGL_END_C_DECLS
#endif //__FTINTERNALS_H__
diff --git a/src/FTLayoutGlue.cpp b/src/FTLayoutGlue.cpp
new file mode 100644
index 0000000..3ed890f
--- /dev/null
+++ b/src/FTLayoutGlue.cpp
@@ -0,0 +1,161 @@
+/*
+ * 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"
+
+FTGL_BEGIN_C_DECLS
+
+static inline FTGLlayout *createFTLayout(FTGL::LayoutType type)
+{
+ FTGLlayout *layout = (FTGLlayout*)malloc(sizeof(FTGLlayout));
+ layout->font = NULL;
+ layout->type = type;
+ switch(type)
+ {
+ case FTGL::LAYOUT_SIMPLE:
+ layout->ptr = new FTSimpleLayout();
+ break;
+ }
+ return layout;
+}
+
+// FTSimpleLayout::FTSimpleLayout();
+FTGLlayout* ftglCreateSimpleLayout()
+{
+ FTGLlayout *layout = createFTLayout(FTGL::LAYOUT_SIMPLE);
+ return layout;
+}
+
+#define C_FUN(cret, cname, cargs, cxxerr, cxxname, cxxarg) \
+ cret cname cargs \
+ { \
+ if(!f || !f->ptr) \
+ { \
+ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", #cname); \
+ cxxerr; \
+ } \
+ switch(f->type) \
+ { \
+ case FTGL::LAYOUT_SIMPLE: \
+ return dynamic_cast<FTSimpleLayout*>(f->ptr)->cxxname cxxarg; \
+ } \
+ fprintf(stderr, "FTGL warning: %s not implemented for %d\n", #cname, f->type); \
+ cxxerr; \
+ }
+
+// FTLayout::~FTLayout();
+void ftglDestroyLayout(FTGLlayout *f)
+{
+ if(!f || !f->ptr)
+ {
+ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
+ return;
+ }
+ switch(f->type)
+ {
+ case FTGL::LAYOUT_SIMPLE:
+ delete dynamic_cast<FTSimpleLayout*>(f->ptr); break;
+ default:
+ fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
+ __FUNCTION__, f->type);
+ }
+
+ f->ptr = NULL;
+}
+
+// virtual void BBox(const char* string, float& llx, float& lly, float& llz, float& urx, float& ury, float& urz)
+C_FUN(void, ftglLayoutBBox, (FTGLlayout *f, const char * s, float c[6]),
+ return, BBox, (s, c[0], c[1], c[2], c[3], c[4], c[5]));
+
+// virtual void Render(const char* string);
+C_FUN(void, ftglLayoutRender, (FTGLlayout *f, const char *s),
+ return, Render, (s));
+
+// virtual void Render(const char* string, int renderMode);
+C_FUN(void, ftglLayoutRenderMode, (FTGLlayout *f, const char *s, int r),
+ return, Render, (s, r));
+
+// void RenderSpace(const char *string, const float ExtraSpace = 0.0)
+C_FUN(void, ftglLayoutRenderSpace, (FTGLlayout *f, const char *s, float e),
+ return, RenderSpace, (s, e));
+
+// void SetFont(FTFont *fontInit)
+void ftglLayoutSetFont(FTGLlayout *f, FTGLfont *font)
+{
+ if(!f || !f->ptr)
+ {
+ //XXX fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __func__);
+ return;
+ }
+ switch(f->type)
+ {
+ case FTGL::LAYOUT_SIMPLE:
+ f->font = font;
+ return dynamic_cast<FTSimpleLayout*>(f->ptr)->SetFont(font->ptr);
+ }
+ fprintf(stderr, "FTGL warning: %s not implemented for %d\n",
+ __FUNCTION__, f->type);
+}
+
+// FTFont *GetFont()
+FTGLfont *ftglLayoutGetFont(FTGLlayout *f)
+{
+ if(!f || !f->ptr)
+ {
+ fprintf(stderr, "FTGL warning: NULL pointer in %s\n", __FUNCTION__);
+ return NULL;
+ }
+ return f->font;
+}
+
+// void SetLineLength(const float LineLength);
+C_FUN(void, ftglLayoutSetLineLength, (FTGLlayout *f, const float length),
+ return, SetLineLength, (length));
+
+// float GetLineLength() const
+C_FUN(float, ftglLayoutGetLineLength, (FTGLlayout *f),
+ return 0.0f, GetLineLength, ());
+
+// void SetAlignment(const TextAlignment Alignment)
+C_FUN(void, ftglLayoutSetAlignment, (FTGLlayout *f, FTGL::TextAlignment a),
+ return, SetAlignment, (a));
+
+// TextAlignment GetAlignment() const
+C_FUN(FTGL::TextAlignment, ftglLayoutGetAlignement, (FTGLlayout *f),
+ return FTGL::ALIGN_LEFT, GetAlignment, ());
+
+// void SetLineSpacing(const float LineSpacing)
+C_FUN(void, ftglLayoutSetLineSpacing, (FTGLlayout *f, const float l),
+ return, SetLineSpacing, (l));
+
+// float GetLineSpacing() const
+C_FUN(float, ftglLayoutGetLineSpacing, (FTGLlayout *f),
+ return 0.0f, GetLineSpacing, ());
+
+FTGL_END_C_DECLS
+
diff --git a/src/FTSimpleLayout.cpp b/src/FTSimpleLayout.cpp
index d6b79c6..4224de4 100644
--- a/src/FTSimpleLayout.cpp
+++ b/src/FTSimpleLayout.cpp
@@ -461,12 +461,3 @@ void FTSimpleLayoutImpl::RenderSpace(const wchar_t *string, const int start,
RenderSpaceI(string, start, end, renderMode, ExtraSpace);
}
-namespace C
-{
- extern "C" FTGLlayout* ftglCreateSimpleLayout()
- {
- FTGLlayout *layout = createFTLayout(FTGL::LAYOUT_SIMPLE);
- return layout;
- }
-}
-
diff --git a/src/Makefile.am b/src/Makefile.am
index fb1c621..0505ad5 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -10,6 +10,7 @@ libftgl_la_SOURCES = \
FTExtrdGlyph.cpp FTExtrdGlyph.h \
FTFace.cpp FTFace.h \
FTFont.cpp FTFontImpl.h \
+ FTFontGlue.cpp \
FTGLBitmapFont.cpp FTGLBitmapFontImpl.h \
FTGLExtrdFont.cpp FTGLExtrdFontImpl.h \
FTGLOutlineFont.cpp FTGLOutlineFontImpl.h \
@@ -18,8 +19,9 @@ libftgl_la_SOURCES = \
FTGLTextureFont.cpp FTGLTextureFontImpl.h \
FTGlyph.cpp FTGlyph.h \
FTGlyphContainer.cpp FTGlyphContainer.h \
- FTGlue.cpp \
+ FTGlyphGlue.cpp \
FTLayout.cpp FTLayoutImpl.h \
+ FTLayoutGlue.cpp \
FTLibrary.cpp FTLibrary.h \
FTList.h \
FTOutlineGlyph.cpp FTOutlineGlyph.h \