2025-06-06 18:38:21 +02:00
|
|
|
/* ************************************************************************** */
|
|
|
|
|
/* */
|
|
|
|
|
/* ::: :::::::: */
|
2025-07-17 14:55:04 +02:00
|
|
|
/* consts.h :+: :+: :+: */
|
2025-06-06 18:38:21 +02:00
|
|
|
/* +:+ +:+ +:+ */
|
2025-07-17 14:55:04 +02:00
|
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
2025-06-06 18:38:21 +02:00
|
|
|
/* +#+#+#+#+#+ +#+ */
|
2025-07-17 14:55:04 +02:00
|
|
|
/* Created: 2025/07/17 14:54:36 by kcolin #+# #+# */
|
2025-07-31 14:46:02 +02:00
|
|
|
/* Updated: 2025/07/31 14:42:33 by tchampio ### ########.fr */
|
2025-06-06 18:38:21 +02:00
|
|
|
/* */
|
|
|
|
|
/* ************************************************************************** */
|
|
|
|
|
|
2025-07-17 14:55:04 +02:00
|
|
|
#ifndef CONSTS_H
|
|
|
|
|
# define CONSTS_H
|
2025-06-06 18:38:21 +02:00
|
|
|
|
|
|
|
|
# define HEIGHT 800
|
|
|
|
|
# define WIDTH 800
|
2025-07-28 14:10:01 +02:00
|
|
|
|
2025-07-28 12:16:26 +02:00
|
|
|
# define SIZE 64
|
2025-07-29 10:45:03 +02:00
|
|
|
# define MAP_SIZE 20
|
2025-06-06 18:38:21 +02:00
|
|
|
# define RESSOURCE_DIR "ressources"
|
2025-07-31 14:46:02 +02:00
|
|
|
# define MOVEMENT_SPEED 0.0001
|
|
|
|
|
# define ROTATION_SPEED 0.01
|
2025-07-29 12:14:44 +02:00
|
|
|
# define PLANE_VALUE 0.66
|
2025-07-30 16:40:33 +02:00
|
|
|
# define TEXTURE_SIZE 64
|
2025-07-15 10:33:25 +02:00
|
|
|
# ifdef BONUS
|
|
|
|
|
# define COMPILED_TEXT "Compiled with bonuses"
|
|
|
|
|
# else
|
|
|
|
|
# define COMPILED_TEXT " "
|
|
|
|
|
# endif
|
2025-06-06 18:38:21 +02:00
|
|
|
|
|
|
|
|
#endif
|