home *** CD-ROM | disk | FTP | other *** search
/ Shareware 1 2 the Maxx / sw_1.zip / sw_1 / PROGRAM / CBGRX100.ZIP / CONTRIB / LIBGRX / SRC / BIOSFONT.C < prev    next >
Text File  |  1992-04-10  |  2KB  |  88 lines

  1. /** 
  2.  ** BIOSFONT.C 
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "grx.h"
  25. #include "libgrx.h"
  26. #include "grxfont.h"
  27. #include "grxfile.h"
  28. #include "interrup.h"
  29.  
  30. #include <string.h>
  31.  
  32. static FixedFont bios8x8font  = { 0 };
  33. static FixedFont bios8x14font = { 0 };
  34. static FixedFont bios8x16font = { 0 };
  35.  
  36. GrFont *GrLoadBIOSFont(char *name)
  37. {
  38.     FixedFont *result;
  39.     REGISTERS reg;
  40.     int height;
  41.  
  42.     switch(_GrAdapterType) {
  43.       case GR_VGA:
  44.         if(strcmp(name,"@:pc8x16"FNTEXT) == 0) {
  45.         result     = &bios8x16font;
  46.         height     = 16;
  47.         reg.r_bx = 0x0600;
  48.         break;
  49.         }
  50.       case GR_EGA:
  51.         if(strcmp(name,"@:pc8x14"FNTEXT) == 0) {
  52.         result     = &bios8x14font;
  53.         height     = 14;
  54.         reg.r_bx = 0x0200;
  55.         break;
  56.         }
  57.         if(strcmp(name,"@:pc8x8"FNTEXT) == 0) {
  58.         result     = &bios8x8font;
  59.         height     = 8;
  60.         reg.r_bx = 0x0300;
  61.         break;
  62.         }
  63.       default:
  64.         return(NULL);
  65.     }
  66.     if(result->ff_bits == (char far *)NULL) {
  67.         reg.r_ax = 0x1130;
  68.         int10(®);
  69.         result->h.fnt_isfixed  = TRUE;
  70.         result->h.fnt_width       = 8;
  71.         result->h.fnt_height   = height;
  72.         result->h.fnt_minchar  = 0;
  73.         result->h.fnt_maxchar  = 255;
  74.         result->h.fnt_internal = TRUE;
  75.         strcpy(result->h.fnt_name,name);
  76.         strcpy(result->h.fnt_family,"pc");
  77.         result->ff_chrsize = height;
  78. #ifdef __GNUC__
  79.         result->ff_bits = (char *)reg.r_bp;
  80. #endif
  81. #ifdef __TURBOC__
  82.         result->ff_bits = MK_FP(reg.r_es,reg.r_bp);
  83. #endif
  84.     }
  85.     return((GrFont *)result);
  86. }
  87.  
  88.