~ubuntu-branches/ubuntu/precise/supertuxkart/precise

« back to all changes in this revision

Viewing changes to src/gui/difficulty.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gonéri Le Bouder, Gonéri Le Bouder, Eddy Petrişor
  • Date: 2006-09-08 22:59:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060908225925-3spug0pnh9ekwlpw
Tags: 0.2-1
[ Gonéri Le Bouder ]
* new upstream release candidate
 + Closes: #388021
 + remove supertuxkart.sh
 + add supertuxkart(|-data).install
 + clean up
 + remove deps on ${shlibs:Depends}, ${misc:Depends} for supertuxkart-data
* fix French comment was tagged de_DE
* fix not-binnmuable-any-depends-all
* fix FTBFS on 64bit arch
 + Closes: #370810

[ Eddy Petrişor ]
* added Romanian translation to desktop file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  $Id: difficulty.cpp 694 2006-08-29 07:42:36Z hiker $
 
2
//
 
3
//  SuperTuxKart - a fun racing game with go-kart
 
4
//  Copyright (C) 2006 SuperTuxKart-Team
 
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
 
 
20
#include "difficulty.hpp"
 
21
#include "race_manager.hpp"
 
22
#include "widget_set.hpp"
 
23
#include "menu_manager.hpp"
 
24
 
 
25
enum WidgetTokens {
 
26
  WTOK_HARD,
 
27
  WTOK_MEDIUM,
 
28
  WTOK_EASY,
 
29
  WTOK_BACK
 
30
};
 
31
 
 
32
Difficulty::Difficulty() {
 
33
  menu_id = widgetSet -> vstack(0);
 
34
 
 
35
  widgetSet -> label(menu_id, "Choose your skill level", GUI_LRG, GUI_ALL, 0, 0);
 
36
  
 
37
  int va = widgetSet -> varray(menu_id);
 
38
  widgetSet -> space(menu_id);
 
39
  widgetSet -> space(menu_id);
 
40
  widgetSet -> state(va, "Racer",  GUI_MED, WTOK_HARD, 0);
 
41
  widgetSet -> state(va, "Driver", GUI_MED, WTOK_MEDIUM, 0);
 
42
  widgetSet -> start(va, "Novice", GUI_MED, WTOK_EASY, 0);
 
43
  widgetSet -> space(menu_id);
 
44
  widgetSet -> state(menu_id, "Press <ESC> to go back", GUI_SML, WTOK_BACK, 0);
 
45
 
 
46
  widgetSet -> layout(menu_id, 0, 0);
 
47
}   // Difficulty
 
48
 
 
49
// -----------------------------------------------------------------------------
 
50
Difficulty::~Difficulty() {
 
51
        widgetSet -> delete_widget(menu_id) ;
 
52
}   // ~Difficulty
 
53
        
 
54
// -----------------------------------------------------------------------------
 
55
void Difficulty::select() {
 
56
  switch ( widgetSet -> token (widgetSet -> click()) ) {
 
57
    case WTOK_EASY:
 
58
      race_manager->setDifficulty(RD_EASY);
 
59
                menu_manager->pushMenu(MENUID_CHARSEL_P1);
 
60
      break;
 
61
    case WTOK_MEDIUM:
 
62
      race_manager->setDifficulty(RD_MEDIUM);
 
63
      menu_manager->pushMenu(MENUID_CHARSEL_P1);
 
64
      break;
 
65
    case WTOK_HARD:
 
66
      race_manager->setDifficulty(RD_HARD);
 
67
      menu_manager->pushMenu(MENUID_CHARSEL_P1);
 
68
      break;
 
69
    case WTOK_BACK:
 
70
      menu_manager->popMenu();
 
71
      break;
 
72
    default: break;
 
73
  }   // switch
 
74
}   // select
 
75
 
 
76