ponytracker/sources/main.c

37 lines
845 B
C
Raw Normal View History

#include <stdio.h>
#include <stdlib.h>
#include "motifs/motifs.h"
#include "melodie/melodie.h"
#define DEF_NBR_TMP 16
#define MAX_PATTERNS 256
// Les fonctions de ce fichiers autres que main sont des fonction de débug.
void afficherMotif(Motif* m, int nbrPortees){
printf("%s :\n",m->nom);
for (int i = 0; i < m->nbrTmp; i++){
for (int j = 0; j < nbrPortees; j++){
printf("%d ",(*m->motif)[j][i].note);
}
printf("\n");
}
}
int main(){
Motif* melodie[MAX_PATTERNS] = {NULL};
Motif* liste = NULL;
int nbrPortees = 1;
courant = 0;
taille = 0;
printf("abwabwa %d\n", getIdMotif(liste));
ajouterMotif(&liste, DEF_NBR_TMP, nbrPortees);
printf("abwabwa %d\n", getIdMotif(liste));
printf("caca %d\n", liste->nbrTmp);
Motif* m = liste;
ajouterMotifVirtuel(melodie,0,m);
afficherMotif(m,nbrPortees);
return EXIT_SUCCESS;
}