c29fa90bc88b5b9e9cc17a9ae486324bcc4624e4
[supertux.git] / src / supertux / resources.cpp
1 //  SuperTux
2 //  Copyright (C) 2003 Tobias Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "supertux/resources.hpp"
19
20 #include "gui/mousecursor.hpp"
21 #include "sprite/sprite_manager.hpp"
22 #include "supertux/player_status.hpp"
23 #include "supertux/tile_manager.hpp"
24 #include "video/font.hpp"
25
26 MouseCursor* Resources::mouse_cursor = NULL;
27
28 FontPtr Resources::fixed_font;
29 FontPtr Resources::normal_font;
30 FontPtr Resources::small_font;
31 FontPtr Resources::big_font;
32
33 SurfacePtr Resources::checkbox;
34 SurfacePtr Resources::checkbox_checked;
35 SurfacePtr Resources::back;
36 SurfacePtr Resources::arrow_left;
37 SurfacePtr Resources::arrow_right;
38
39 /* Load graphics/sounds shared between all levels: */
40 void
41 Resources::load_shared()
42 {
43   /* Load the mouse-cursor */
44   mouse_cursor = new MouseCursor("images/engine/menu/mousecursor.png",
45                                  "images/engine/menu/mousecursor-click.png",
46                                  "images/engine/menu/mousecursor-link.png");
47   MouseCursor::set_current(mouse_cursor);
48
49   /* Load global images: */
50   fixed_font.reset(new Font(Font::FIXED, "fonts/white.stf"));
51   normal_font.reset(new Font(Font::VARIABLE, "fonts/white.stf"));
52   small_font.reset(new Font(Font::VARIABLE, "fonts/white-small.stf", 1));
53   big_font.reset(new Font(Font::VARIABLE, "fonts/white-big.stf", 3));
54
55   /* Load menu images */
56   checkbox = Surface::create("images/engine/menu/checkbox-unchecked.png");
57   checkbox_checked = Surface::create("images/engine/menu/checkbox-checked.png");
58   back = Surface::create("images/engine/menu/arrow-back.png");
59   arrow_left = Surface::create("images/engine/menu/arrow-left.png");
60   arrow_right = Surface::create("images/engine/menu/arrow-right.png");
61
62   tile_manager   = new TileManager();
63   sprite_manager = new SpriteManager();
64 }
65
66 /* Free shared data: */
67 void
68 Resources::unload_shared()
69 {
70   /* Free menu images */
71   if(checkbox != NULL)
72     checkbox.reset();
73   if(checkbox_checked != NULL)
74     checkbox_checked.reset();
75   if(back != NULL)
76     back.reset();
77   if(arrow_left != NULL)
78     arrow_left.reset();
79   if(arrow_right != NULL)
80     arrow_right.reset();
81
82   /* Free global images: */
83   if(fixed_font != NULL)
84     fixed_font.reset();
85   if(normal_font != NULL)
86     normal_font.reset();
87   if(small_font != NULL)
88     small_font.reset();
89   if(big_font != NULL)
90     big_font.reset();
91   
92   /* Free tilesets */
93   delete tile_manager;
94   tile_manager = 0;
95
96   if(sprite_manager != NULL)
97   {
98     delete sprite_manager;
99     sprite_manager = NULL;
100   }
101
102   /* Free mouse-cursor */
103   if(mouse_cursor != NULL)
104   {
105     delete mouse_cursor;
106   }
107 }
108
109 /* EOF */