Split gui/menu.?pp
[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 <math.h>
20
21 #include "control/joystickkeyboardcontroller.hpp"
22 #include "supertux/main.hpp"
23 #include "supertux/mainloop.hpp"
24 #include "supertux/resources.hpp"
25 #include "supertux/timer.hpp"
26 #include "util/gettext.hpp"
27 #include "video/drawing_context.hpp"
28
29 static const float FLICK_CURSOR_TIME   = 0.5f;
30
31 MenuItem::MenuItem(MenuItemKind _kind, int _id) :
32   kind(_kind),
33   id(_id),
34   toggled(),
35   text(),
36   input(),
37   help(),
38   list(),
39   selected(),
40   target_menu(),
41   input_flickering()
42 {
43   toggled = false;
44   selected = false;
45   target_menu = 0;
46 }
47
48 void
49 MenuItem::change_text(const  std::string& text_)
50 {
51   text = text_;
52 }
53
54 void
55 MenuItem::change_input(const  std::string& text_)
56 {
57   input = text_;
58 }
59
60 void
61 MenuItem::set_help(const std::string& help_text)
62 {
63   std::string overflow;
64   help = normal_font->wrap_to_width(help_text, 600, &overflow);
65   while (!overflow.empty())
66   {
67     help += "\n";
68     help += normal_font->wrap_to_width(overflow, 600, &overflow);
69   }
70 }
71
72 std::string
73 MenuItem::get_input_with_symbol(bool active_item)
74 {
75   if(!active_item) {
76     input_flickering = true;
77   } else {
78     input_flickering = ((int) (real_time / FLICK_CURSOR_TIME)) % 2;
79   }
80
81   char str[1024];
82   if(input_flickering)
83     snprintf(str, sizeof(str), "%s ",input.c_str());
84   else
85     snprintf(str, sizeof(str), "%s_",input.c_str());
86
87   std::string string = str;
88
89   return string;
90 }
91
92 /* EOF */