Revert ca83136
[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(false),
32   text(),
33   input(),
34   help(),
35   list(),
36   selected(false),
37   target_menu(MenuStorage::NO_MENU),
38   input_flickering()
39 {
40 }
41
42 void
43 MenuItem::change_text(const  std::string& text_)
44 {
45   text = text_;
46 }
47
48 void
49 MenuItem::change_input(const  std::string& text_)
50 {
51   input = text_;
52 }
53
54 void
55 MenuItem::set_help(const std::string& help_text)
56 {
57   std::string overflow;
58   help = Resources::normal_font->wrap_to_width(help_text, 600, &overflow);
59   while (!overflow.empty())
60   {
61     help += "\n";
62     help += Resources::normal_font->wrap_to_width(overflow, 600, &overflow);
63   }
64 }
65
66 std::string
67 MenuItem::get_input_with_symbol(bool active_item)
68 {
69   if(!active_item) {
70     input_flickering = true;
71   } else {
72     input_flickering = ((int) (real_time / FLICK_CURSOR_TIME)) % 2;
73   }
74
75   char str[1024];
76   if(input_flickering)
77     snprintf(str, sizeof(str), "%s ",input.c_str());
78   else
79     snprintf(str, sizeof(str), "%s_",input.c_str());
80
81   std::string string = str;
82
83   return string;
84 }
85
86 /* EOF */