changed worldmap format a bit to be more consistent with level format
[supertux.git] / src / gui / mousecursor.h
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
4 //  Copyright (C) 2004 Ricardo Cruz <rick2@aeiou.pt>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 //
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19 #ifndef SUPERTUX_MOUSECURSOR_H
20 #define SUPERTUX_MOUSECURSOR_H
21
22 #include <string>
23
24 #include "video/surface.h"
25
26 #define MC_STATES_NB 3
27  
28 enum {
29   MC_NORMAL = 0,
30   MC_CLICK,
31   MC_LINK,
32   MC_HIDE
33 };
34
35 /// Mouse cursor.
36 /** Used to create mouse cursors.
37     The mouse cursors can be animated
38     and can be used in four different states.
39     (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
40 class MouseCursor
41 {
42 public:
43   /// Constructor of MouseCursor.
44   /** Expects an imagefile for the cursor and  the number of animation frames it contains. */
45   MouseCursor(std::string cursor_file);
46   ~MouseCursor();
47   /// Get MouseCursor state.
48   /** (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
49   int state();
50   /// Set MouseCursor state.
51   /** (MC_NORMAL, MC_CLICK, MC_LINK or MC_HIDE) */
52   void set_state(int nstate);
53   /// Define the middle of a MouseCursor.
54   /** Useful for cross mouse cursor images in example. */
55   void set_mid(int x, int y);
56
57   /// Draw MouseCursor on screen.
58   void draw(DrawingContext& context);
59
60   /// Return the current cursor.
61   static MouseCursor* current()
62   {        return current_;      };
63   /// Set current cursor.
64   static void set_current(MouseCursor* pcursor)
65   {        current_ = pcursor;      };
66
67 private:
68   int mid_x, mid_y;
69   static MouseCursor* current_;
70   int state_before_click;
71   int cur_state;
72   Surface* cursor;
73 };
74
75 #endif /*SUPERTUX_MOUSECURSOR_H*/