Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/physics/physics_connection.cc @ 4338

Last change on this file since 4338 was 4338, checked in by bensch, 19 years ago

orxonox/trunk: merged branches/physics back to the trunk
merged with command
svn merge -r 3866:HEAD . ../../trunk/
many conflict that i tried to resolv
@patrick: i hope i did not interfere with your stuff :/

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
22using namespace std;
23
24
25
26PhysicsConnection::PhysicsConnection(ParticleSystem* particleSystem, Field* field)
27{
28  this->type = PCON_ParticlesField;
29  this->particleSystem = particleSystem;
30  this->field = field;
31
32  PhysicsEngine::getInstance()->addConnection(this);
33}
34
35
36/**
37   \brief standard deconstructor
38
39*/
40PhysicsConnection::~PhysicsConnection () 
41{
42  PhysicsEngine::getInstance()->removeConnection(this);
43}
44
45/**
46    \brief applies the Force to some Object.
47    \param dt The time to apply in Seconds
48*/
49void PhysicsConnection::apply(const float& dt) const
50{
51  switch(this->type)
52    {
53    case PCON_IPhysField:
54     
55      break;
56
57    case PCON_ParticlesField:
58      this->particleSystem->applyField(dt, this->field);
59
60      break;
61     
62    case PCON_IPhysIPhys:
63
64      break;
65    }
66}
Note: See TracBrowser for help on using the repository browser.