X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_font.c;h=a718fdf9cd6ae5809bf45f1925605b8baed798a7;hb=69f96533fcedaf91c2b6c53da6e1c20fb145b425;hp=52a80c1d57fc764707de63bb6d96aadd8981a161;hpb=98ea79ef777bea593a87aef9600ee3d4fda6e110;p=freeglut diff --git a/src/freeglut_font.c b/src/freeglut_font.c index 52a80c1..a718fdf 100644 --- a/src/freeglut_font.c +++ b/src/freeglut_font.c @@ -29,7 +29,7 @@ #include "config.h" #endif -#include "../include/GL/freeglut.h" +#include #include "freeglut_internal.h" /* @@ -112,7 +112,7 @@ void FGAPIENTRY glutBitmapCharacter( void* fontID, int character ) /* * Find the character we want to draw (???) */ - face = font->Characters[ character - 1 ]; + face = font->Characters[ character ]; glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT ); glPixelStorei( GL_UNPACK_SWAP_BYTES, GL_FALSE ); @@ -133,10 +133,23 @@ void FGAPIENTRY glutBitmapCharacter( void* fontID, int character ) void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string ) { int c; - int numchar = strlen( string ); + int numchar = strlen( (char *) string ); SFG_Font* font = fghFontByID( fontID ); float raster_position[ 4 ]; + glPushAttrib( GL_TRANSFORM_BIT ); + glMatrixMode( GL_MODELVIEW ); + glPushMatrix( ); + glLoadIdentity( ); + glMatrixMode( GL_PROJECTION ); + glPushMatrix( ); + glLoadIdentity( ); + glOrtho( + 0, glutGet( GLUT_WINDOW_WIDTH ), + 0, glutGet( GLUT_WINDOW_HEIGHT ), + -10, 10 + ); + glGetFloatv ( GL_CURRENT_RASTER_POSITION, raster_position ); glPushClientAttrib( GL_CLIENT_PIXEL_STORE_BIT ); glPixelStorei( GL_UNPACK_SWAP_BYTES, GL_FALSE ); @@ -159,7 +172,7 @@ void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string ) } else /* Not an EOL, draw the bitmap character */ { - const GLubyte* face = font->Characters[ string[ c ] - 1 ]; + const GLubyte* face = font->Characters[ string[ c ] ]; glBitmap( face[ 0 ], font->Height, /* Bitmap's width and height */ @@ -168,7 +181,12 @@ void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string ) ( face + 1 ) /* The packed bitmap data... */ ); } + glPopClientAttrib( ); + glPopMatrix( ); + glMatrixMode( GL_MODELVIEW ); + glPopMatrix( ); + glPopAttrib( ); } /* @@ -179,7 +197,7 @@ int FGAPIENTRY glutBitmapWidth( void* fontID, int character ) SFG_Font* font = fghFontByID( fontID ); freeglut_return_val_if_fail( character > 0 && character < 256, 0 ); - return *( font->Characters[ character - 1 ] ); + return *( font->Characters[ character ] ); } /* @@ -189,12 +207,12 @@ int FGAPIENTRY glutBitmapLength( void* fontID, const unsigned char* string ) { int c, length = 0, this_line_length = 0; SFG_Font* font = fghFontByID( fontID ); - int numchar = strlen( string ); + int numchar = strlen( (char *) string ); for( c = 0; c < numchar; c++ ) { if( string[ c ] != '\n' )/* Not an EOL, increment length of line */ - this_line_length += *( font->Characters[ string[ c ] - 1 ]); + this_line_length += *( font->Characters[ string[ c ] ]); else /* EOL; reset the length of this line */ { if( length < this_line_length ) @@ -247,7 +265,7 @@ void FGAPIENTRY glutStrokeCharacter( void* fontID, int character ) void FGAPIENTRY glutStrokeString( void* fontID, const unsigned char *string ) { int c, i, j; - int numchar = strlen( string ); + int numchar = strlen( (char *) string ); float length = 0.0; SFG_StrokeFont* font = fghStrokeByID( fontID ); @@ -280,7 +298,7 @@ void FGAPIENTRY glutStrokeString( void* fontID, const unsigned char *string ) glEnd( ); } - + length += schar->Right; glTranslatef( schar->Right, 0.0, 0.0 ); } @@ -302,7 +320,7 @@ int FGAPIENTRY glutStrokeWidth( void* fontID, int character ) ); schar = font->Characters[ character ]; freeglut_return_val_if_fail( schar, 0 ); - + return ( int )( schar->Right + 0.5 ); } @@ -315,7 +333,7 @@ int FGAPIENTRY glutStrokeLength( void* fontID, const unsigned char* string ) float length = 0.0; float this_line_length = 0.0; SFG_StrokeFont* font = fghStrokeByID( fontID ); - int numchar = strlen( string ); + int numchar = strlen( (char *) string ); for( c = 0; c < numchar; c++ ) if( string[ c ] < font->Quantity )