Switched from passing pointers around to using numeric MenuIds and a factory class
[supertux.git] / src / gui / menu_item.cpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "gui/menu_item.hpp"
18
19 #include <stdio.h>
20
21 #include "supertux/menu/menu_storage.hpp"
22 #include "supertux/resources.hpp"
23 #include "supertux/timer.hpp"
24 #include "video/font.hpp"
25
26 static const float FLICK_CURSOR_TIME = 0.5f;
27
28 MenuItem::MenuItem(MenuItemKind _kind, int _id) :
29   kind(_kind),
30   id(_id),
31   toggled(),
32   text(),
33   input(),
34   help(),
35   list(),
36   selected(),
37   target_menu(),
38   input_flickering()
39 {
40   toggled = false;
41   selected = false;
42   target_menu = MenuStorage::NO_MENU;
43 }
44
45 void
46 MenuItem::change_text(const  std::string& text_)
47 {
48   text = text_;
49 }
50
51 void
52 MenuItem::change_input(const  std::string& text_)
53 {
54   input = text_;
55 }
56
57 void
58 MenuItem::set_help(const std::string& help_text)
59 {
60   std::string overflow;
61   help = Resources::normal_font->wrap_to_width(help_text, 600, &overflow);
62   while (!overflow.empty())
63   {
64     help += "\n";
65     help += Resources::normal_font->wrap_to_width(overflow, 600, &overflow);
66   }
67 }
68
69 std::string
70 MenuItem::get_input_with_symbol(bool active_item)
71 {
72   if(!active_item) {
73     input_flickering = true;
74   } else {
75     input_flickering = ((int) (real_time / FLICK_CURSOR_TIME)) % 2;
76   }
77
78   char str[1024];
79   if(input_flickering)
80     snprintf(str, sizeof(str), "%s ",input.c_str());
81   else
82     snprintf(str, sizeof(str), "%s_",input.c_str());
83
84   std::string string = str;
85
86   return string;
87 }
88
89 /* EOF */