freeglut_glutfont_definitions.c
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:4k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /*
  2.  * freeglut_glutfont_definitions.c
  3.  *
  4.  * Bitmap and stroke fonts displaying.
  5.  *
  6.  * Copyright (c) 2003 Stephen J. Baker (whether he wants it or not).
  7.  * All Rights Reserved.
  8.  * Written by John F. Fay <fayjf@sourceforge.net>, who releases the
  9.  * copyright over to the "freeglut" project lead.
  10.  * Creation date: Mon July 21 2003
  11.  *
  12.  * Permission is hereby granted, free of charge, to any person obtaining a
  13.  * copy of this software and associated documentation files (the "Software"),
  14.  * to deal in the Software without restriction, including without limitation
  15.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  16.  * and/or sell copies of the Software, and to permit persons to whom the
  17.  * Software is furnished to do so, subject to the following conditions:
  18.  *
  19.  * The above copyright notice and this permission notice shall be included
  20.  * in all copies or substantial portions of the Software.
  21.  *
  22.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  23.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  25.  * PAWEL W. OLSZTA BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
  26.  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  27.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  28.  */
  29. /*
  30.  * This file is necessary for the *nix version of "freeglut" because the
  31.  * original GLUT defined its font variables in rather an unusual way.
  32.  * Publicly, in "glut.h", they were defined as "void *".  Privately,
  33.  * in one of the source code files, they were defined as pointers to a
  34.  * structure.  Most compilers and linkers are satisfied with the "void *"
  35.  * and don't go any farther, but some of them balked.  In particular,
  36.  * when compiling with "freeglut" and then trying to run using the GLUT
  37.  * ".so" library, some of them would give an error.  So we are having to
  38.  * create this file to define the variables as pointers to an unusual
  39.  * structure to match GLUT.
  40.  */
  41. /*
  42.  * freeglut_internal.h uses some GL types, but including the GL header portably
  43.  * is a bit tricky, so we include freeglut_std.h here, which contains the
  44.  * necessary machinery. But this poses another problem, caused by the ugly
  45.  * original defintion of the font constants in "classic" GLUT: They are defined
  46.  * as void* externally, so we move them temporarily out of the way by AN EXTREME
  47.  * CPP HACK.
  48.  */
  49. #define glutStrokeRoman glutStrokeRomanIGNOREME
  50. #define glutStrokeMonoRoman glutStrokeMonoRomanIGNOREME
  51. #define glutBitmap9By15 glutBitmap9By15IGNOREME
  52. #define glutBitmap8By13 glutBitmap8By13IGNOREME
  53. #define glutBitmapTimesRoman10 glutBitmapTimesRoman10IGNOREME
  54. #define glutBitmapTimesRoman24 glutBitmapTimesRoman24IGNOREME
  55. #define glutBitmapHelvetica10 glutBitmapHelvetica10IGNOREME
  56. #define glutBitmapHelvetica12 glutBitmapHelvetica12IGNOREME
  57. #define glutBitmapHelvetica18 glutBitmapHelvetica18IGNOREME
  58. #include <GL/freeglut_std.h>
  59. #undef glutStrokeRoman
  60. #undef glutStrokeMonoRoman
  61. #undef glutBitmap9By15
  62. #undef glutBitmap8By13
  63. #undef glutBitmapTimesRoman10
  64. #undef glutBitmapTimesRoman24
  65. #undef glutBitmapHelvetica10
  66. #undef glutBitmapHelvetica12
  67. #undef glutBitmapHelvetica18
  68. #include "freeglut_internal.h"
  69. #if TARGET_HOST_POSIX_X11
  70. struct freeglutStrokeFont
  71. {
  72.   const char *name ;
  73.   int num_chars ;
  74.   void *ch ;
  75.   float top ;
  76.   float bottom ;
  77. };
  78. struct freeglutBitmapFont
  79. {
  80.   const char *name ;
  81.   const int num_chars ;
  82.   const int first ;
  83.   const void *ch ;
  84. };
  85. struct freeglutStrokeFont glutStrokeRoman ;
  86. struct freeglutStrokeFont glutStrokeMonoRoman ;
  87. struct freeglutBitmapFont glutBitmap9By15 ;
  88. struct freeglutBitmapFont glutBitmap8By13 ;
  89. struct freeglutBitmapFont glutBitmapTimesRoman10 ;
  90. struct freeglutBitmapFont glutBitmapTimesRoman24 ;
  91. struct freeglutBitmapFont glutBitmapHelvetica10 ;
  92. struct freeglutBitmapFont glutBitmapHelvetica12 ;
  93. struct freeglutBitmapFont glutBitmapHelvetica18 ;
  94. #endif