~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to plee-the-bear/src/ptb/frame/impl/frame_password.tpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Plee the Bear
3
 
 
4
 
  Copyright (C) 2005-2009 Julien Jorge, Sebastien Angibaud
5
 
 
6
 
  This program is free software; you can redistribute it and/or modify it
7
 
  under the terms of the GNU General Public License as published by the
8
 
  Free Software Foundation; either version 2 of the License, or (at your
9
 
  option) any later version.
10
 
 
11
 
  This program is distributed in the hope that it will be useful, but WITHOUT
12
 
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
 
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
14
 
  more details.
15
 
 
16
 
  You should have received a copy of the GNU General Public License along
17
 
  with this program; if not, write to the Free Software Foundation, Inc.,
18
 
  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
 
  contact: plee-the-bear@gamned.org
21
 
 
22
 
  Please add the tag [PTB] in the subject of your mails.
23
 
*/
24
 
/**
25
 
 * \file frame_password.tpp
26
 
 * \brief Implementation of the template methods of the ptb::frame_password
27
 
 *        class.
28
 
 * \author Julien Jorge
29
 
 */
30
 
 
31
 
#include "engine/game.hpp"
32
 
 
33
 
#include <claw/string_algorithm.hpp>
34
 
 
35
 
/*----------------------------------------------------------------------------*/
36
 
/**
37
 
 * \brief Execute a 'gamevar' command.
38
 
 * \param command The tokens read on the command line.
39
 
 */
40
 
template<typename T>
41
 
void ptb::frame_password::command_game_variable
42
 
( const std::string& var_value ) const
43
 
{
44
 
  const std::size_t equal( var_value.find_first_of('=') );
45
 
 
46
 
  if ( equal == std::string::npos )
47
 
    claw::logger << claw::log_warning
48
 
                 << "gamevar: bad format."
49
 
                 << " Must be 'gamevar type name=value'."
50
 
                 << std::endl;
51
 
  else
52
 
    {
53
 
      std::string name( var_value.substr(0, equal) );
54
 
      std::string value( var_value.substr(equal+1) );
55
 
 
56
 
      if ( !claw::text::is_of_type<T>(value) )
57
 
        claw::logger << claw::log_warning << "gamevar: incorrect value."
58
 
                     << std::endl;
59
 
      else
60
 
        {
61
 
          std::istringstream iss(value);
62
 
          T v;
63
 
 
64
 
          iss >> v;
65
 
          bear::engine::game::get_instance()
66
 
            .get_game_variables().template set<T>(name, v);
67
 
        }
68
 
    }
69
 
} // frame_password::command_game_variable()