Random stuff that I should have committed ages ago.
[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 #include "lisp/writer.hpp"
23 #include "object_factory.hpp"
24
25 static const float SHAKE_TIME = .8f;
26
27 YetiStalactite::YetiStalactite(const lisp::Lisp& lisp)
28   : Stalactite(lisp)
29 {
30 }
31
32 YetiStalactite::~YetiStalactite()
33 {
34 }
35
36 void
37 YetiStalactite::write(lisp::Writer& writer)
38 {
39   writer.start_list("yeti_stalactite");
40   writer.write("x", start_position.x);
41   writer.write("y", start_position.y);
42   writer.end_list("yeti_stalactite");
43 }
44
45 void
46 YetiStalactite::start_shaking()
47 {
48   timer.start(SHAKE_TIME);
49   state = STALACTITE_SHAKING;
50 }
51
52 bool
53 YetiStalactite::is_hanging()
54 {
55   return state == STALACTITE_HANGING;
56 }
57
58 void
59 YetiStalactite::active_update(float elapsed_time)
60 {
61   if(state == STALACTITE_HANGING)
62     return;
63
64   Stalactite::active_update(elapsed_time);
65 }
66
67 IMPLEMENT_FACTORY(YetiStalactite, "yeti_stalactite")