aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ft_draw_circle.c10
-rw-r--r--src/ft_draw_map.c2
-rw-r--r--src/ft_init_winlx.c1
-rw-r--r--src/ft_music.c7
4 files changed, 14 insertions, 6 deletions
diff --git a/src/ft_draw_circle.c b/src/ft_draw_circle.c
index be95617..570543a 100644
--- a/src/ft_draw_circle.c
+++ b/src/ft_draw_circle.c
@@ -16,7 +16,7 @@
#include <math.h>
void
- ft_draw_circle(int32_t a, int32_t b, int32_t color, t_cub *cl)
+ ft_draw_circle(float a, float b, int32_t color, t_cub *cl)
{
float scale;
float i;
@@ -31,10 +31,10 @@ void
while (i < 360)
{
angle = i;
- x1 = scale * cos(angle * 3.14159 / 180);
- y1 = scale * sin(angle * 3.14159 / 180);
- *(int*)(cl->img.ptr + (a + (int)x1) * 4 +
- ((b + (int)y1) * cl->img.sizeline)) = color;
+ x1 = scale * cos(angle * 3.14159265358979323846 / 180);
+ y1 = scale * sin(angle * 3.14159265358979323846 / 180);
+ *(int*)(cl->img.ptr + ((int)a + (int)x1) * 4 +
+ (((int)b + (int)y1) * cl->img.sizeline)) = color;
i += 0.1;
}
i = 0;
diff --git a/src/ft_draw_map.c b/src/ft_draw_map.c
index 4449332..a334fc1 100644
--- a/src/ft_draw_map.c
+++ b/src/ft_draw_map.c
@@ -24,9 +24,9 @@ static uint16_t
static void
ft_draw_player(t_player *plist, t_cub *clist)
{
+ const uint16_t scale = clist->mlist->scale;
const float x = plist->pos_x;
const float y = plist->pos_y;
- const uint16_t scale = clist->mlist->scale;
ft_draw_circle(
(scale / 2) + (x * (scale)),
diff --git a/src/ft_init_winlx.c b/src/ft_init_winlx.c
index cad5795..453988b 100644
--- a/src/ft_init_winlx.c
+++ b/src/ft_init_winlx.c
@@ -28,5 +28,6 @@ int
clist->wlist->inited = 1;
ft_printf("Created window of size %ux%u\nHost OS: %s\n",
clist->wlist->x_size, clist->wlist->y_size, FT_OS);
+ ft_music(clist);
return (0);
}
diff --git a/src/ft_music.c b/src/ft_music.c
new file mode 100644
index 0000000..1787d36
--- /dev/null
+++ b/src/ft_music.c
@@ -0,0 +1,7 @@
+#include <cub3d.h>
+
+void
+ ft_music(t_cub *cl)
+{
+ (void)cl;
+}