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