| Line |   | 
|---|
| 1 | /* | 
|---|
| 2 |    orxonox - the future of 3D-vertical-scrollers | 
|---|
| 3 |  | 
|---|
| 4 |    Copyright (C) 2004 orx | 
|---|
| 5 |  | 
|---|
| 6 |    This program is free software; you can redistribute it and/or modify | 
|---|
| 7 |    it under the terms of the GNU General Public License as published by | 
|---|
| 8 |    the Free Software Foundation; either version 2, or (at your option) | 
|---|
| 9 |    any later version. | 
|---|
| 10 |  | 
|---|
| 11 |    ### File Specific: | 
|---|
| 12 |    main-programmer: Benjamin Grauer | 
|---|
| 13 |    co-programmer: ... | 
|---|
| 14 | */ | 
|---|
| 15 |  | 
|---|
| 16 | //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ | 
|---|
| 17 |  | 
|---|
| 18 | #include "gravity.h" | 
|---|
| 19 |  | 
|---|
| 20 | #include "load_param.h" | 
|---|
| 21 | #include "factory.h" | 
|---|
| 22 |  | 
|---|
| 23 | using namespace std; | 
|---|
| 24 |  | 
|---|
| 25 | CREATE_FACTORY(Gravity); | 
|---|
| 26 |  | 
|---|
| 27 | /** | 
|---|
| 28 |    \brief standard constructor | 
|---|
| 29 |    \todo this constructor is not jet implemented - do it | 
|---|
| 30 | */ | 
|---|
| 31 | Gravity::Gravity () | 
|---|
| 32 | { | 
|---|
| 33 |    this->setClassName("Gravity"); | 
|---|
| 34 | } | 
|---|
| 35 |  | 
|---|
| 36 | Gravity::Gravity(const TiXmlElement* root) | 
|---|
| 37 | { | 
|---|
| 38 |   this->setClassName("Gravity"); | 
|---|
| 39 |  | 
|---|
| 40 |   this->loadParams(root); | 
|---|
| 41 | } | 
|---|
| 42 |  | 
|---|
| 43 | /** | 
|---|
| 44 |    \brief standard deconstructor | 
|---|
| 45 |  | 
|---|
| 46 | */ | 
|---|
| 47 | Gravity::~Gravity () | 
|---|
| 48 | { | 
|---|
| 49 |   // delete what has to be deleted here | 
|---|
| 50 | } | 
|---|
| 51 |  | 
|---|
| 52 | void Gravity::loadParams(const TiXmlElement* root) | 
|---|
| 53 | { | 
|---|
| 54 |   static_cast<Field*>(this)->loadParams(root); | 
|---|
| 55 | } | 
|---|
| 56 |  | 
|---|
| 57 | /** | 
|---|
| 58 |    \brief calculates the Gravity on any point in space | 
|---|
| 59 |    \param data The Position of the Point in space to attache gravity to. | 
|---|
| 60 |    \returns The force. | 
|---|
| 61 | */ | 
|---|
| 62 | Vector Gravity::calcForce(const Vector& data) const | 
|---|
| 63 | { | 
|---|
| 64 |   return Vector(0,-1,0) * this->getMagnitude(); | 
|---|
| 65 | } | 
|---|
| 66 |  | 
|---|
| 67 |  | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.