-Started to move stuff from library back to main game
[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.h"
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::start_shaking()
36 {
37   timer.start(SHAKE_TIME);
38   state = STALACTITE_SHAKING;
39 }
40
41 bool
42 YetiStalactite::is_hanging()
43 {
44   return state == STALACTITE_HANGING;
45 }
46
47 void
48 YetiStalactite::active_action(float elapsed_time)
49 {
50   if(state == STALACTITE_HANGING)
51     return;
52
53   Stalactite::active_action(elapsed_time);
54 }
55
56 IMPLEMENT_FACTORY(YetiStalactite, "yeti_stalactite")