| 
                Last change
                  on this file since 4764 was
                  4597,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: setClassID implemented in all files 
 
           | 
        
        | 
            File size:
            1.3 KB
           | 
      
      
        
  | 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 "physics_connection.h" | 
|---|
| 19 |  | 
|---|
| 20 | #include "physics_engine.h" | 
|---|
| 21 |  | 
|---|
| 22 | #include "field.h" | 
|---|
| 23 | #include "particle_system.h" | 
|---|
| 24 | #include "physics_interface.h" | 
|---|
| 25 |  | 
|---|
| 26 | using namespace std; | 
|---|
| 27 |  | 
|---|
| 28 | /** | 
|---|
| 29 |    \brief creates a PhysicsConnection | 
|---|
| 30 | */ | 
|---|
| 31 | PhysicsConnection::PhysicsConnection(PhysicsInterface* subject, Field* field) | 
|---|
| 32 | { | 
|---|
| 33 |   this->setClassID(CL_PHYSICS_CONNECTION, "PhysicsConnection"); | 
|---|
| 34 |   this->type = PCON_PhysIField; | 
|---|
| 35 |   this->subject = subject; | 
|---|
| 36 |   this->field = field; | 
|---|
| 37 |  | 
|---|
| 38 |   PhysicsEngine::getInstance()->addConnection(this); | 
|---|
| 39 | } | 
|---|
| 40 |  | 
|---|
| 41 |  | 
|---|
| 42 | /** | 
|---|
| 43 |    \brief standard deconstructor | 
|---|
| 44 |  | 
|---|
| 45 | */ | 
|---|
| 46 | PhysicsConnection::~PhysicsConnection () | 
|---|
| 47 | { | 
|---|
| 48 |   PhysicsEngine::getInstance()->removeConnection(this); | 
|---|
| 49 | } | 
|---|
| 50 |  | 
|---|
| 51 | /** | 
|---|
| 52 |     \brief applies the Force to some Object. | 
|---|
| 53 | */ | 
|---|
| 54 | void PhysicsConnection::apply(void) const | 
|---|
| 55 | { | 
|---|
| 56 |   if (likely(this->type == PCON_PhysIField && this->field->getMagnitude() != 0.0)) | 
|---|
| 57 |       this->subject->applyField(this->field); | 
|---|
| 58 |   else ; | 
|---|
| 59 | } | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.