]> git.mxchange.org Git - flightgear.git/blob - src/AIModel/AIStatic.cxx
Merge branch 'master' of git://gitorious.org/fg/flightgear into next
[flightgear.git] / src / AIModel / AIStatic.cxx
1 // FGAIStatic - FGAIBase-derived class creates an AI static object
2 //
3 // Written by David Culp, started Jun 2005.
4 //
5 // Copyright (C) 2005  David P. Culp - davidculp2@comcast.net
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20
21 #ifdef HAVE_CONFIG_H
22 #  include <config.h>
23 #endif
24
25 #include <Main/fg_props.hxx>
26 #include <Main/globals.hxx>
27 #include <Scenery/scenery.hxx>
28 #include <string>
29 #include <math.h>
30
31 using std::string;
32
33 #include "AIStatic.hxx"
34
35
36 FGAIStatic::FGAIStatic() : FGAIBase(otStatic) {
37 }
38
39
40 FGAIStatic::~FGAIStatic() {
41 }
42
43 bool FGAIStatic::init(bool search_in_AI_path) {
44    return FGAIBase::init(search_in_AI_path);
45 }
46
47 void FGAIStatic::bind() {
48     FGAIBase::bind();
49 }
50
51 void FGAIStatic::unbind() {
52     FGAIBase::unbind();
53 }
54
55
56 void FGAIStatic::update(double dt) {
57    FGAIBase::update(dt);
58    Transform();
59 }
60