aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_get_music.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-03-02 00:17:42 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-03-02 00:17:42 +0100
commit7f450e0664b7eb103358b0eeb0667033f7fead85 (patch)
tree024a02d21a47074344a2905280e5c4fd78c6eb8b /src/ft_get_music.c
parentPreparing music (diff)
download42-cub3d-7f450e0664b7eb103358b0eeb0667033f7fead85.tar.gz
42-cub3d-7f450e0664b7eb103358b0eeb0667033f7fead85.tar.bz2
42-cub3d-7f450e0664b7eb103358b0eeb0667033f7fead85.tar.xz
42-cub3d-7f450e0664b7eb103358b0eeb0667033f7fead85.tar.zst
42-cub3d-7f450e0664b7eb103358b0eeb0667033f7fead85.zip
Another song
Diffstat (limited to '')
-rw-r--r--src/ft_get_music.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/ft_get_music.c b/src/ft_get_music.c
new file mode 100644
index 0000000..c9119c9
--- /dev/null
+++ b/src/ft_get_music.c
@@ -0,0 +1,38 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_get_music.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/28 18:30:18 by rbousset #+# #+# */
+/* Updated: 2020/02/28 18:30:19 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+int8_t
+ ft_get_music(char **words, t_cub *clist)
+{
+ if (!(*words) || !(*(words + 1)) || (*(words + 2)))
+ {
+ ft_sprintf(clist->errmsg, FT_ERR_ARGS);
+ return (-1);
+ }
+ if (ft_check_ext(*(words + 1), ".wav") < 0)
+ {
+ ft_sprintf(clist->errmsg, FT_ERR_NOT_A_WAV);
+ return (-1);
+ }
+ ft_memdel((void**)&clist->mlist->music_path);
+ if (!(clist->mlist->music_path = ft_strdup(*(words + 1))))
+ {
+ ft_sprintf(clist->errmsg, FT_ERR_ALLOCATE);
+ return (-1);
+ }
+ if (ft_check_not_found(clist->mlist->nlevel_path) < 0)
+ {
+ ft_sprintf(clist->errmsg, FT_ERR_RD_MUSIC);
+ return (-1);
+ }
+ return (0);
+}