fixed non-used argument, compiler warnings
[physics.git] / src / Entities / PhysicsEntity.cpp
CommitLineData
e68f847b
PG
1/*
2 * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
ad9f1fb6 18#include "PhysicsEntity.h"
f32a9b7c 19
5e0713e5
PG
20#include <bear/debug.h>
21#include <bear/Vector2.h>
22using namespace bear;
89ca62b2 23
3d1f0813 24#include "effectManager.h"
617dcc71
PG
25
26
27/// ***** Constructors/Destructors *****
ad9f1fb6 28
5f1f55d1 29PhysicsEntity::PhysicsEntity(const Vector2& pos)
d69c6a21 30 : Entity(pos), force(0,0), mass(1), CoR(0.8)
ad9f1fb6 31{
617dcc71 32
ad9f1fb6
PG
33}
34PhysicsEntity::~PhysicsEntity()
35{
617dcc71 36
ad9f1fb6
PG
37}
38
617dcc71
PG
39/// ***** Public Class Methods *****
40
ad9f1fb6
PG
41void PhysicsEntity::update(float time_step)
42{
43 position = positionAt(time_step);
44 velocity = velocityAt(time_step);
45
46 force *= 0;
47}
48
49Vector2 PhysicsEntity::positionAt(float time_step) const
50{
6aad402a
PG
51 Vector2 newPosition = position;
52 Vector2 newVelocity = velocity;
53 Vector2 newForce = force;
54
f206d19d
PG
55 newPosition += effect::positionDelta(this, time_step);
56 newVelocity += effect::velocityDelta(this, time_step);
57 newForce += effect::forceDelta(this, time_step);
6aad402a
PG
58
59 return newForce/mass / 2 * time_step * time_step + newVelocity * time_step + newPosition;
ad9f1fb6
PG
60}
61
62Vector2 PhysicsEntity::velocityAt(float time_step) const
63{
6aad402a
PG
64 Vector2 newForce = force;
65 Vector2 newVelocity = velocity;
66
f206d19d
PG
67 newForce += effect::forceDelta(this, time_step);
68 newVelocity += effect::velocityDelta(this, time_step);
6aad402a
PG
69
70 return newForce/mass / 2 * time_step + newVelocity;
ad9f1fb6
PG
71}
72
73void PhysicsEntity::applyForce(const Vector2& force)
74{
54fe85c5
PG
75 applyForce(force, position);
76}
88085362 77void PhysicsEntity::applyForce(const Vector2& force, const Vector2& /*at*/)
54fe85c5 78{
ad9f1fb6
PG
79 this->force += force;
80}
81
54fe85c5
PG
82void PhysicsEntity::applyImpulse(const Vector2& impulse)
83{
84 applyImpulse(impulse, position);
85}
88085362 86void PhysicsEntity::applyImpulse(const Vector2& impulse, const Vector2& /*at*/)
ad9f1fb6 87{
54fe85c5 88 velocity += impulse;
ad9f1fb6 89}
19c2da50
PG
90
91void PhysicsEntity::applyNudge(const Vector2& vecPush)
92{
93 position += vecPush;
94}