aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_draw_handweap.c
blob: ae756e8e8d11c45927d4e29961f341d9334c56bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   ft_draw_handweap.c                                 :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: rbousset <marvin@42.fr>                    +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/02/22 20:02:47 by rbousset          #+#    #+#             */
/*   Updated: 2020/02/22 20:02:48 by rbousset         ###   ########lyon.fr   */
/*                                                                            */
/* ************************************************************************** */

#include <cub3d.h>
#include <stdint.h>

static void
	ft_put_weapon_image(int8_t w_id, int16_t y, int16_t x, t_cub *cl)
{
	*(cl->img.ptr + x * 4 + (cl->img.sizeline * y)) =
		(uint8_t)*(cl->tweap[w_id].ptr + cl->tweap[w_id].tex_x * 4 + 4 *
		cl->tweap[w_id].img_w * cl->tweap[w_id].tex_y);
	*(cl->img.ptr + x * 4 + (cl->img.sizeline * y) + 1) =
		(uint8_t)*(cl->tweap[w_id].ptr + cl->tweap[w_id].tex_x * 4 + 4 *
		cl->tweap[w_id].img_w * cl->tweap[w_id].tex_y + 1);
	*(cl->img.ptr + x * 4 + (cl->img.sizeline * y) + 2) =
		(uint8_t)*(cl->tweap[w_id].ptr + cl->tweap[w_id].tex_x * 4 + 4 *
		cl->tweap[w_id].img_w * cl->tweap[w_id].tex_y + 2);
}

#include <libft.h>
void
	ft_draw_handweap(t_cub *cl)
{
	const int8_t	w_id = cl->plist.handles_weapon;
	int32_t			x_ratio;
	int32_t			y_ratio;
	int16_t			x;
	int16_t			y;

	x_ratio = (int32_t)((cl->tweap[w_id].img_w << 16) / cl->wlist.x_size) + 1;
	y_ratio = (int32_t)((cl->tweap[w_id].img_h << 16) / cl->wlist.y_size) + 1;
	y = 0;
	while (y < (int16_t)cl->wlist.y_size)
	{
		cl->tweap[w_id].tex_y = ((y * y_ratio) >> 16);
		x = 0;
		while (x < (int16_t)cl->wlist.x_size)
		{
			cl->tweap[w_id].tex_x = ((x * x_ratio) >> 16);
			if (cl->tweap[w_id].ptr[cl->tweap[w_id].tex_x * 4 + 4 *
				cl->tweap[w_id].img_h * cl->tweap[w_id].tex_y])
			ft_put_weapon_image(w_id, y, x, cl);
			x++;
		}
		y++;
	}
}