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

« back to all changes in this revision

Viewing changes to bear-engine/lib/src/generic_items/link/code/link_remover.cpp

  • 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
  Bear Engine
 
3
 
 
4
  Copyright (C) 2005-2010 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 [Bear] in the subject of your mails.
 
23
*/
 
24
/**
 
25
 * \file link_remover.cpp
 
26
 * \brief Implementation of the bear::link_remover class.
 
27
 * \author Julien Jorge
 
28
 */
 
29
#include "generic_items/link/link_remover.hpp"
 
30
 
 
31
#include "engine/level_globals.hpp"
 
32
 
 
33
#include "engine/export.hpp"
 
34
 
 
35
BASE_ITEM_EXPORT( link_remover, bear )
 
36
 
 
37
/*----------------------------------------------------------------------------*/
 
38
/**
 
39
 * \brief Set a field of type string.
 
40
 * \param name The name of the field.
 
41
 * \param value The new value of the field.
 
42
 * \return false if the field "name" is unknow, true otherwise.
 
43
 */
 
44
bool bear::link_remover::set_string_field
 
45
( const std::string& name, const std::string& value )
 
46
{
 
47
  bool ok(true);
 
48
 
 
49
  if (name == "link_remover.sound")
 
50
    {
 
51
      m_sound_name = value;
 
52
      get_level_globals().load_sound(m_sound_name);
 
53
    }
 
54
  else
 
55
    ok = super::set_string_field(name, value);
 
56
 
 
57
  return ok;
 
58
} // link_remover::set_string_field()
 
59
 
 
60
/*----------------------------------------------------------------------------*/
 
61
/**
 
62
 * \brief Remove the links of a colliding item.
 
63
 * \param that The other item of the collision.
 
64
 * \param info Some informations about the collision.
 
65
 */
 
66
void bear::link_remover::collision_remove_links
 
67
( engine::base_item& that, universe::collision_info& info )
 
68
{
 
69
  that.remove_all_links();
 
70
 
 
71
  if (!m_sound_name.empty())
 
72
    get_level_globals().play_sound(m_sound_name);
 
73
} // link_remover::collision_remove_links()
 
74
 
 
75
/*----------------------------------------------------------------------------*/
 
76
/**
 
77
 * \brief Call collision_remove_links().
 
78
 * \param that The other item of the collision.
 
79
 * \param info Some informations about the collision.
 
80
 */
 
81
void bear::link_remover::collision
 
82
( engine::base_item& that, universe::collision_info& info )
 
83
{
 
84
  collision_remove_links(that, info);
 
85
} // link_remover::collision()