summaryrefslogtreecommitdiff
path: root/noncore/games/sfcave-sdl/font.cpp
authorandyq <andyq>2003-01-21 20:37:00 (UTC)
committer andyq <andyq>2003-01-21 20:37:00 (UTC)
commit0a6563fcc2f49857c581d9def24407a3a4ef526c (patch) (unidiff)
treef1b82a4bd7582ef2cb722cffb87eecff1e1f96e6 /noncore/games/sfcave-sdl/font.cpp
parent50b5915b48fc5cbacf23e4d2b75d7a266f141a4a (diff)
downloadopie-0a6563fcc2f49857c581d9def24407a3a4ef526c.zip
opie-0a6563fcc2f49857c581d9def24407a3a4ef526c.tar.gz
opie-0a6563fcc2f49857c581d9def24407a3a4ef526c.tar.bz2
Clean up of code - fixed memory leaks (most of them) and added new custom config menu
Diffstat (limited to 'noncore/games/sfcave-sdl/font.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/sfcave-sdl/font.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/noncore/games/sfcave-sdl/font.cpp b/noncore/games/sfcave-sdl/font.cpp
index 2976d48..1988252 100644
--- a/noncore/games/sfcave-sdl/font.cpp
+++ b/noncore/games/sfcave-sdl/font.cpp
@@ -1,40 +1,52 @@
1#include "font.h" 1#include "font.h"
2 2
3#include "constants.h" 3#include "constants.h"
4 4
5BFont *FontHandler :: menuSelFont; 5BFont *FontHandler :: menuSelFont;
6BFont *FontHandler :: menuUnSelFont; 6BFont *FontHandler :: menuUnSelFont;
7BFont *FontHandler :: whiteFont; 7BFont *FontHandler :: whiteFont;
8BFont *FontHandler :: colouredFont; 8BFont *FontHandler :: colouredFont;
9BFont *FontHandler :: helpFont; 9BFont *FontHandler :: helpFont;
10 10
11void FontHandler :: init() 11bool FontHandler :: init()
12{ 12{
13 // Load font images 13 // Load font images
14 // Convert to fonts 14 // Convert to fonts
15 menuSelFont = new BFont( IMAGES_PATH "sel_menu_font.bmp" ); 15 menuSelFont = new BFont( IMAGES_PATH "sel_menu_font.bmp" );
16 menuUnSelFont = new BFont( IMAGES_PATH "unsel_menu_font.bmp" ); 16 menuUnSelFont = new BFont( IMAGES_PATH "unsel_menu_font.bmp" );
17 whiteFont = new BFont( IMAGES_PATH "score_font.bmp" ); 17 whiteFont = new BFont( IMAGES_PATH "score_font.bmp" );
18 helpFont = new BFont( IMAGES_PATH "help_font.bmp" ); 18 helpFont = new BFont( IMAGES_PATH "help_font.bmp" );
19 colouredFont = 0; 19 colouredFont = 0;
20
21 // Check if we are installed correctly (we need fonts to function)
22 if ( menuSelFont == 0 || menuUnSelFont == 0 || whiteFont == 0 || helpFont == 0 )
23 {
24 printf( "One or more fonts are not installed correctly\n" );
25 return false;
26 }
27
28 return true;
20} 29}
21 30
22void FontHandler :: cleanUp() 31void FontHandler :: cleanUp()
23{ 32{
33 if ( menuSelFont )
24 delete menuSelFont; 34 delete menuSelFont;
35 if ( menuUnSelFont )
25 delete menuUnSelFont; 36 delete menuUnSelFont;
37 if ( whiteFont )
26 delete whiteFont; 38 delete whiteFont;
39 if ( helpFont )
27 delete helpFont; 40 delete helpFont;
28
29 if ( colouredFont ) 41 if ( colouredFont )
30 delete colouredFont; 42 delete colouredFont;
31} 43}
32 44
33int FontHandler :: TextWidth( int font, const char *text ) 45int FontHandler :: TextWidth( int font, const char *text )
34{ 46{
35 return getFont( font )->TextWidth( text ); 47 return getFont( font )->TextWidth( text );
36} 48}
37 49
38int FontHandler :: FontHeight( int font ) 50int FontHandler :: FontHeight( int font )
39{ 51{
40 return getFont( font )->FontHeight(); 52 return getFont( font )->FontHeight();