* Updated Czech translation
[supertux.git] / src / badguy / yeti_stalactite.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
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
19 //  02111-1307, USA.
20
21 #include "yeti_stalactite.hpp"
22
23 static const float SHAKE_TIME = .8;
24
25 YetiStalactite::YetiStalactite(const lisp::Lisp& lisp)
26   : Stalactite(lisp)
27 {
28 }
29
30 YetiStalactite::~YetiStalactite()
31 {
32 }
33
34 void
35 YetiStalactite::write(lisp::Writer& writer)
36 {
37   writer.start_list("yeti_stalactite");
38   writer.write_float("x", start_position.x);
39   writer.write_float("y", start_position.y);
40   writer.end_list("yeti_stalactite");
41 }
42
43 void
44 YetiStalactite::start_shaking()
45 {
46   timer.start(SHAKE_TIME);
47   state = STALACTITE_SHAKING;
48 }
49
50 bool
51 YetiStalactite::is_hanging()
52 {
53   return state == STALACTITE_HANGING;
54 }
55
56 void
57 YetiStalactite::active_update(float elapsed_time)
58 {
59   if(state == STALACTITE_HANGING)
60     return;
61
62   Stalactite::active_update(elapsed_time);
63 }
64
65 IMPLEMENT_FACTORY(YetiStalactite, "yeti_stalactite")