aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_time.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-06 14:29:47 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-06 14:29:47 +0200
commitdb0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26 (patch)
tree23419411132e5ee23cf247716de11baed5954a1f /src/ft_time.c
parentI think it's fixed (diff)
download42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.gz
42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.bz2
42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.xz
42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.tar.zst
42-cub3d-db0e4bcfe0bcf99d5d21e74e0a1ccc0fc6977a26.zip
Weapons have different velocities
Diffstat (limited to '')
-rw-r--r--src/ft_time.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ft_time.c b/src/ft_time.c
index 88822f5..128d890 100644
--- a/src/ft_time.c
+++ b/src/ft_time.c
@@ -27,10 +27,14 @@ void
{
static clock_t dt = 0;
clock_t curr;
+ int8_t weap_id;
+ weap_id = cl->plist.handles_weapon;
+ weap_id = (weap_id == 2) ? (1) : (weap_id);
+ weap_id = (weap_id == 4) ? (2) : (weap_id);
curr = clock();
dt += curr - before;
- if (dt > 0 && ft_clock_to_ms(dt) > 1000.0)
+ if (dt > 0 && ft_clock_to_ms(dt) > cl->plist.weap_vel[weap_id])
{
cl->plist.fire = 0;
dt = 0;