X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fphysic.cpp;h=7300b9e3cc35461912f2f41b5ed91a71df004936;hb=828b5e1ef1cb89d830735f24dd79bbd9b09d5b32;hp=ef6d94c24f7234727b2746d224b042c06b0702bd;hpb=2074a5e3f8167dec24989c008ddadda14687a3a6;p=supertux.git diff --git a/src/physic.cpp b/src/physic.cpp index ef6d94c24..7300b9e3c 100644 --- a/src/physic.cpp +++ b/src/physic.cpp @@ -122,7 +122,7 @@ Physic::enable_gravity(bool enable_gravity) } void -Physic::apply(float frame_ratio, float &x, float &y) +Physic::apply(float elapsed_time, float &x, float &y) { float gravity = Sector::current()->gravity; float grav; @@ -131,8 +131,15 @@ Physic::apply(float frame_ratio, float &x, float &y) 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; + x += vx * elapsed_time + ax * elapsed_time * elapsed_time; + y += vy * elapsed_time + (ay + grav) * elapsed_time * elapsed_time; + vx += ax * elapsed_time; + vy += (ay + grav) * elapsed_time; } + +void +Physic::apply(Vector& vector, float elapsed_time) +{ + apply(elapsed_time, vector.x, vector.y); +} +