00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 #ifndef __SOFONT_H
00052 #define __SOFONT_H
00053
00054 #include "SDL.h"
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064 class SoFont
00065 {
00066 public:
00067 SoFont();
00068 ~SoFont();
00069
00070 bool load(SDL_Surface *FontSurface);
00071
00072
00073
00074
00075 void PutString(SDL_Surface *Surface, int x, int y, const char *text, SDL_Rect *clip=NULL);
00076 void PutStringWithCursor(SDL_Surface *Surface, int x, int y, const char *text, int cursPos, SDL_Rect *clip=NULL, bool showCurs=true);
00077
00078
00079 int TextWidth(const char *text, int min=0, int max=255);
00080
00081 int FontHeight() { return height; }
00082
00083
00084 void XCenteredString(SDL_Surface *Surface, int y, const char *text, SDL_Rect* clip=NULL);
00085
00086 void CenteredString(SDL_Surface *Surface, const char *text, SDL_Rect* clip=NULL);
00087
00088 void CenteredString(SDL_Surface *Surface, int x, int y, const char *text, SDL_Rect* clip=NULL);
00089
00090
00091 void PutStringCleverCursor(SDL_Surface *Surface, const char *text, int cursPos, SDL_Rect *r, SDL_Rect* clip=NULL, bool showCurs=true);
00092
00093
00094 int TextCursorAt(const char *text, int px);
00095 int CleverTextCursorAt(const char *text, int px, int cursPos, SDL_Rect *r);
00096
00097 # define START_CHAR 33
00098 int getMinChar(){return START_CHAR;}
00099 int getMaxChar(){return max_i;}
00100
00101
00102
00103 void InternalInput( SDL_Surface *Dest, int x, int y, int PixelWidth, char *text);
00104 void Input( SDL_Surface *Dest, int x, int y, int PixelWidth, char *text);
00105
00106 protected:
00107 int height;
00108 SDL_Surface *picture;
00109 int *CharPos;
00110 int *Spacing;
00111
00112 int max_i, spacew, cursShift;
00113 Uint32 background;
00114 bool DoStartNewChar(Sint32 x);
00115 void CleanSurface();
00116 };
00117
00118 #endif