X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fphysic.cpp;h=cdc37879f755c219b8482f3e01f07e731993c03b;hb=8c0b10ba9ff57a36c3747c84a035faca5975556d;hp=3199199570658e19e96aec3a85002cabdd6189a1;hpb=a4c78a43edd48c0908a2f723d194e1aa8c806251;p=supertux.git diff --git a/src/physic.cpp b/src/physic.cpp index 319919957..cdc37879f 100644 --- a/src/physic.cpp +++ b/src/physic.cpp @@ -1,25 +1,29 @@ +// $Id$ // -// C Implementation: physic +// SuperTux +// Copyright (C) 2004 Tobias Glaesser +// Copyright (C) 2006 Matthias Braun // -// Description: +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. // +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. // -// Author: Tobias Glaesser , (C) 2004 -// -// Copyright: See COPYING file that comes with this distribution -// -// -#include +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA +// 02111-1307, USA. +#include -#include "scene.h" -#include "defines.h" -#include "physic.h" -#include "timer.h" -#include "world.h" -#include "level.h" +#include "physic.hpp" Physic::Physic() - : ax(0), ay(0), vx(0), vy(0), gravity_enabled(true) + : ax(0), ay(0), vx(0), vy(0), gravity_enabled_flag(true), gravity(10 * 100) { } @@ -31,65 +35,132 @@ void Physic::reset() { ax = ay = vx = vy = 0; - gravity_enabled = true; + gravity_enabled_flag = true; +} + +void +Physic::set_velocity_x(float nvx) +{ + vx = nvx; +} + +void +Physic::set_velocity_y(float nvy) +{ + vy = nvy; } void Physic::set_velocity(float nvx, float nvy) { - vx = nvx; - vy = -nvy; + vx = nvx; + vy = nvy; +} + +void +Physic::set_velocity(const Vector& vector) +{ + vx = vector.x; + vy = vector.y; +} + +void Physic::inverse_velocity_x() +{ + vx = -vx; +} + +void Physic::inverse_velocity_y() +{ + vy = -vy; } float -Physic::get_velocity_x() +Physic::get_velocity_x() const { return vx; } float -Physic::get_velocity_y() +Physic::get_velocity_y() const +{ + return vy; +} + +Vector +Physic::get_velocity() const { - return -vy; + return Vector(vx, vy); +} + +void +Physic::set_acceleration_x(float nax) +{ + ax = nax; +} + +void +Physic::set_acceleration_y(float nay) +{ + ay = nay; } void Physic::set_acceleration(float nax, float nay) { - ax = nax; - ay = -nay; + ax = nax; + ay = nay; } float -Physic::get_acceleration_x() +Physic::get_acceleration_x() const { - return ax; + return ax; } float -Physic::get_acceleration_y() +Physic::get_acceleration_y() const +{ + return ay; +} + +Vector +Physic::get_acceleration() const { - return -ay; + return Vector(ax, ay); } void Physic::enable_gravity(bool enable_gravity) { - gravity_enabled = enable_gravity; + gravity_enabled_flag = enable_gravity; +} + +bool +Physic::gravity_enabled() const +{ + return gravity_enabled_flag; } void -Physic::apply(float &x, float &y) -{ - float gravity = World::current()->get_level()->gravity; - float grav; - if(gravity_enabled) - grav = gravity / 100.0; - else - grav = 0; - - x += vx * frame_ratio + ax * frame_ratio * frame_ratio; - y += vy * frame_ratio + (ay + grav) * frame_ratio * frame_ratio; - vx += ax * frame_ratio; - vy += (ay + grav) * frame_ratio; +Physic::set_gravity(float gravity) +{ + this->gravity = gravity * 100; +} + +float +Physic::get_gravity() const +{ + return gravity / 100; +} + +Vector +Physic::get_movement(float elapsed_time) +{ + float grav = gravity_enabled_flag ? gravity : 0; + + vx += ax * elapsed_time; + vy += (ay + grav) * elapsed_time; + Vector result(vx * elapsed_time, vy * elapsed_time); + + return result; }