new version of fillit.h with details

This commit is contained in:
Manzovince
2019-05-29 13:36:40 +02:00
parent 246906a490
commit fa5f2e7f00
5 changed files with 17 additions and 17 deletions

View File

@@ -6,7 +6,7 @@
/* By: vmanzoni <vmanzoni@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/03/01 13:34:46 by vmanzoni #+# #+# */
/* Updated: 2019/05/29 13:09:41 by vmanzoni ### ########.fr */
/* Updated: 2019/05/29 13:31:37 by vmanzoni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -34,6 +34,10 @@
#define CYN "\x1B[36m"
#define RESET "\x1B[0m"
/*
** Color for full block tetriminos when printing colored map
** (don't forget to comment all #define COLOR above)
*/
//#define RED "\e[41m"
//#define GRN "\e[42m"
//#define YEL "\e[43m"
@@ -52,12 +56,12 @@
** rank : position de 1 a 32 dans l'int du tableau d'int (position % 32)
** num : memorise dans quel int du tableau on se trouve (position / 32)
** test :
** letter :
** dope :
** memory :
** same :
** next :
** start :
** letter : letter of the tetrimino for printing final map
** dope : flags for details, optimisation, printing and error
** memory : positions already tested by a tetrimino in bitwise
** same : pointer to previous identical tetrimino
** next : pointer to next tetrimino
** start : pointer to first tetrimino of input file
*/
typedef struct s_fillist
{