diff --git a/README.md b/README.md index bc2d133c85951c6670da2aba4f41cf684f303864..86329021609234cf2d65b44c6a2927d8a0fbb289 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,12 @@ Trello : https://trello.com/b/YGhNeYX3/projet-apprentissage-par-renforcement │ ├── Belkhiri │ │ ├── x_fenetre │ │ └── snakes -│ ├── Beret +│ ├── Beret +│ │ └── x_fenetre │ └── Meyer -│ └── x_fenetre +│ ├── x_fenetre +│ ├── pave_de_serpents +│ └── jeu_de_la_vie └── travail_de_groupe ├── chef_oeuvre └── jeu_appren_par_renfo diff --git a/travail_individuel/Beret/snakes/Makefile b/travail_individuel/Beret/snakes/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..8a82e304f1ceab181d7729d8f1e264013cc7eaf3 --- /dev/null +++ b/travail_individuel/Beret/snakes/Makefile @@ -0,0 +1,10 @@ +CC=gcc + +main:main.o + $(CC) -o main main.o -lm -lSDL2 + @echo "=> Lancer le programme avec ./main" + +main.o:main.c + $(CC) -c main.c -g -Wall -Wextra +clean: + rm -rf main main.o \ No newline at end of file diff --git a/travail_individuel/Beret/fichier.txt b/travail_individuel/Beret/snakes/main.c similarity index 100% rename from travail_individuel/Beret/fichier.txt rename to travail_individuel/Beret/snakes/main.c diff --git a/travail_individuel/Beret/1exercice/Makefile b/travail_individuel/Beret/x_fenetre/Makefile similarity index 100% rename from travail_individuel/Beret/1exercice/Makefile rename to travail_individuel/Beret/x_fenetre/Makefile diff --git a/travail_individuel/Beret/1exercice/main.c b/travail_individuel/Beret/x_fenetre/main.c similarity index 97% rename from travail_individuel/Beret/1exercice/main.c rename to travail_individuel/Beret/x_fenetre/main.c index d4d6373195912d3243d41e6d7a85981431d948df..c0b0f2e62db5b91406a06c46c8916f51e9fcf975 100644 --- a/travail_individuel/Beret/1exercice/main.c +++ b/travail_individuel/Beret/x_fenetre/main.c @@ -1,101 +1,101 @@ -#include <SDL2/SDL.h> -#include <math.h> -#include <stdio.h> -#include <string.h> - -int main(int argc, char **argv) { - (void)argc; - (void)argv; - int x=0; - - - - SDL_Window - *window_1 = NULL,*window_2=NULL, *window_3=NULL,*window_4=NULL; // Future fenêtre de gauche - - /* Initialisation de la SDL + gestion de l'échec possible */ - if (SDL_Init(SDL_INIT_VIDEO) != 0) { - SDL_Log("Error : SDL initialisation - %s\n", - SDL_GetError()); // l'initialisation de la SDL a échoué - exit(EXIT_FAILURE); - } - - SDL_DisplayMode DM; - SDL_GetCurrentDisplayMode(0, &DM); - int Width = DM.w; - - /* Création de la fenêtre de gauche */ - window_1 = SDL_CreateWindow( - "Vague", // codage en utf8, donc accents possibles - x,300 + 100*cos(x/10), - 100,100, - SDL_WINDOW_RESIZABLE); - - if (window_1 == NULL) { - SDL_Log("Error : SDL window 1 creation - %s\n", - SDL_GetError()); // échec de la création de la fenêtre - SDL_Quit(); // On referme la SDL - exit(EXIT_FAILURE); - } - window_2 = SDL_CreateWindow( - "vague2", // codage en utf8, donc accents possibles - x-10,300 + 110*cos((x-10)/10), // à droite de la fenêtre de gauche - 80, 80, // largeur = 500, hauteur = 300 - 0); - - if (window_2 == NULL) { - SDL_Log("Error : SDL window 2 creation - %s\n", - SDL_GetError()); // échec de la création de la deuxième fenêtre - SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite - SDL_Quit(); - exit(EXIT_FAILURE); - } - window_3 = SDL_CreateWindow( - "vague3", // codage en utf8, donc accents possibles - x-20,300 + 130*cos((x-20)/10), // à droite de la fenêtre de gauche - 60, 60, // largeur = 500, hauteur = 300 - 0); - - if (window_3 == NULL) { - SDL_Log("Error : SDL window 3 creation - %s\n", - SDL_GetError()); // échec de la création de la deuxième fenêtre - SDL_DestroyWindow(window_2); - SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite - SDL_Quit(); - exit(EXIT_FAILURE); - } - - window_4 = SDL_CreateWindow( - "vague4", // codage en utf8, donc accents possibles - x-30,300 + 150*cos((x-30)/10), // à droite de la fenêtre de gauche - 40, 40, // largeur = 500, hauteur = 300 - 0); - - if (window_4 == NULL) { - SDL_Log("Error : SDL window 4 creation - %s\n", - SDL_GetError()); // échec de la création de la deuxième fenêtre - SDL_DestroyWindow(window_3); - SDL_DestroyWindow(window_2); - SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite - SDL_Quit(); - exit(EXIT_FAILURE); - } - while (x<Width){ - SDL_SetWindowPosition(window_1,x,300 + 100*cos((x)/10)); - SDL_SetWindowPosition(window_2,x-10,300 + 100*cos((x-10)/10)); - SDL_SetWindowPosition(window_3,x-20,300 + 100*cos((x-20)/10)); - SDL_SetWindowPosition(window_4,x-30,300 + 100*cos((x-30)/10)); - x=x+10; - - SDL_Delay(150); // Pause exprimée en ms - } - - SDL_DestroyWindow(window_4); - SDL_DestroyWindow(window_3); - SDL_DestroyWindow(window_2); - SDL_DestroyWindow(window_1); - - SDL_Quit(); // la SDL - - return 0; +#include <SDL2/SDL.h> +#include <math.h> +#include <stdio.h> +#include <string.h> + +int main(int argc, char **argv) { + (void)argc; + (void)argv; + int x=0; + + + + SDL_Window + *window_1 = NULL,*window_2=NULL, *window_3=NULL,*window_4=NULL; // Future fenêtre de gauche + + /* Initialisation de la SDL + gestion de l'échec possible */ + if (SDL_Init(SDL_INIT_VIDEO) != 0) { + SDL_Log("Error : SDL initialisation - %s\n", + SDL_GetError()); // l'initialisation de la SDL a échoué + exit(EXIT_FAILURE); + } + + SDL_DisplayMode DM; + SDL_GetCurrentDisplayMode(0, &DM); + int Width = DM.w; + + /* Création de la fenêtre de gauche */ + window_1 = SDL_CreateWindow( + "Vague", // codage en utf8, donc accents possibles + x,300 + 100*cos(x/10), + 100,100, + SDL_WINDOW_RESIZABLE); + + if (window_1 == NULL) { + SDL_Log("Error : SDL window 1 creation - %s\n", + SDL_GetError()); // échec de la création de la fenêtre + SDL_Quit(); // On referme la SDL + exit(EXIT_FAILURE); + } + window_2 = SDL_CreateWindow( + "vague2", // codage en utf8, donc accents possibles + x-10,300 + 110*cos((x-10)/10), // à droite de la fenêtre de gauche + 80, 80, // largeur = 500, hauteur = 300 + 0); + + if (window_2 == NULL) { + SDL_Log("Error : SDL window 2 creation - %s\n", + SDL_GetError()); // échec de la création de la deuxième fenêtre + SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite + SDL_Quit(); + exit(EXIT_FAILURE); + } + window_3 = SDL_CreateWindow( + "vague3", // codage en utf8, donc accents possibles + x-20,300 + 130*cos((x-20)/10), // à droite de la fenêtre de gauche + 60, 60, // largeur = 500, hauteur = 300 + 0); + + if (window_3 == NULL) { + SDL_Log("Error : SDL window 3 creation - %s\n", + SDL_GetError()); // échec de la création de la deuxième fenêtre + SDL_DestroyWindow(window_2); + SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite + SDL_Quit(); + exit(EXIT_FAILURE); + } + + window_4 = SDL_CreateWindow( + "vague4", // codage en utf8, donc accents possibles + x-30,300 + 150*cos((x-30)/10), // à droite de la fenêtre de gauche + 40, 40, // largeur = 500, hauteur = 300 + 0); + + if (window_4 == NULL) { + SDL_Log("Error : SDL window 4 creation - %s\n", + SDL_GetError()); // échec de la création de la deuxième fenêtre + SDL_DestroyWindow(window_3); + SDL_DestroyWindow(window_2); + SDL_DestroyWindow(window_1); // la première fenétre (qui elle a été créée) doit être détruite + SDL_Quit(); + exit(EXIT_FAILURE); + } + while (x<Width){ + SDL_SetWindowPosition(window_1,x,300 + 100*cos((x)/10)); + SDL_SetWindowPosition(window_2,x-10,300 + 100*cos((x-10)/10)); + SDL_SetWindowPosition(window_3,x-20,300 + 100*cos((x-20)/10)); + SDL_SetWindowPosition(window_4,x-30,300 + 100*cos((x-30)/10)); + x=x+10; + + SDL_Delay(150); // Pause exprimée en ms + } + + SDL_DestroyWindow(window_4); + SDL_DestroyWindow(window_3); + SDL_DestroyWindow(window_2); + SDL_DestroyWindow(window_1); + + SDL_Quit(); // la SDL + + return 0; } \ No newline at end of file diff --git a/travail_individuel/Meyer/jeu_de_la_vie/.vscode/c_cpp_properties.json b/travail_individuel/Meyer/jeu_de_la_vie/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..4d5b55df0634dd59212f0d153967b2f7af421e22 --- /dev/null +++ b/travail_individuel/Meyer/jeu_de_la_vie/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/SDL2" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++14", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/travail_individuel/Meyer/jeu_de_la_vie/main b/travail_individuel/Meyer/jeu_de_la_vie/main new file mode 100755 index 0000000000000000000000000000000000000000..225f7985487aff34b31046767a595cf7adcc6f40 Binary files /dev/null and b/travail_individuel/Meyer/jeu_de_la_vie/main differ diff --git a/travail_individuel/Meyer/jeu_de_la_vie/main.c b/travail_individuel/Meyer/jeu_de_la_vie/main.c new file mode 100644 index 0000000000000000000000000000000000000000..ff7b0b31d23a1f203dc3bc84dc6dc4d09e689d99 --- /dev/null +++ b/travail_individuel/Meyer/jeu_de_la_vie/main.c @@ -0,0 +1,209 @@ +#include <stdio.h> +#include <stdlib.h> +#include <SDL2/SDL.h> + +#define TAILLE_MONDE_DELIMITE 20 +#define TAILLE_TABLEAU_REGLES 9 + +int survie[TAILLE_TABLEAU_REGLES] = {0, 0, 1, 1, 0, 0, 0, 0, 0}; +int naissance[TAILLE_TABLEAU_REGLES] = {0, 0, 0, 1, 0, 0, 0, 0, 0}; + +SDL_Window *window; +int width = 700; +int height = 700; +SDL_Renderer *renderer; +SDL_Rect rect; +SDL_Event event; +int running = 1; +int tailleAffichage = 30; + +void initSDL2(){ + + SDL_Init(SDL_INIT_VIDEO); + + window = SDL_CreateWindow( + "Jeu de la vie : monde délimité", + SDL_WINDOWPOS_CENTERED, + SDL_WINDOWPOS_CENTERED, + width, + height, + SDL_WINDOW_RESIZABLE + ); + + if(window == 0){ + fprintf(stderr, "Erreur d'initialisation de la SDL : %s\n", SDL_GetError()); + } + + renderer = SDL_CreateRenderer( + window, + -1, + SDL_RENDERER_ACCELERATED + ); + + if (renderer == 0) { + fprintf(stderr, "Erreur d'initialisation de la SDL : %s\n", SDL_GetError()); + SDL_DestroyRenderer(renderer); // Attention : on suppose que les NULL sont maintenus !! + renderer = NULL; + } + +} + +void destroySDL2(){ + SDL_DestroyRenderer(renderer); + SDL_DestroyWindow(window); + SDL_Quit(); +} + +void initMonde(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE]){ + int i = 0; + int j = 0; + + for(i=0; i<TAILLE_MONDE_DELIMITE; i++){ + for(j=0; j<TAILLE_MONDE_DELIMITE; j++){ + monde[i][j] = 0; + } + } +} + +void afficheMonde(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE]){ + int i = 0; + int j = 0; + + for(i=0; i<TAILLE_MONDE_DELIMITE; i++){ + for(j=0; j<TAILLE_MONDE_DELIMITE; j++){ + switch(monde[i][j]){ + case 0: + SDL_SetRenderDrawColor(renderer, 255, 255, 255, 0); + break; + case 1: + SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0); + break; + default: + printf("Problème valeur tableau monde.\n"); + break; + } + rect.x = tailleAffichage*i; + rect.y = tailleAffichage*j; + rect.w = tailleAffichage-2; + rect.h = tailleAffichage-2; + SDL_RenderFillRect(renderer, &rect); + } + } +} + +void afficherEcran(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE]){ + + SDL_SetRenderDrawColor(renderer, 0, 16, 158, 0); + SDL_RenderClear(renderer); + + afficheMonde(monde); + + SDL_RenderPresent(renderer); +} + +void changeCellule(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE], int clic_x, int clic_y){ + int ligne = clic_y/tailleAffichage; + int colonne = clic_x/tailleAffichage; + if(0 == monde[colonne][ligne]){ + monde[colonne][ligne] = 1; + }else{ + monde[colonne][ligne] = 0; + } +} + +int nombreVoisinsVivants(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE], int cel_x, int cel_y){ + int nbrVoisinsVivants = 0; + if(cel_x==0 && cel_y==0){ + nbrVoisinsVivants = monde[cel_x+1][cel_y] + monde[cel_x][cel_y+1] + monde[cel_x+1][cel_y+1]; + } else if(cel_x==0 && cel_y==TAILLE_MONDE_DELIMITE-1){ + nbrVoisinsVivants = monde[cel_x+1][cel_y] + monde[cel_x][cel_y-1] + monde[cel_x+1][cel_y-1]; + }else if(cel_x==TAILLE_MONDE_DELIMITE-1 && cel_y==0 ){ + nbrVoisinsVivants = monde[cel_x-1][cel_y] + monde[cel_x][cel_y+1] + monde[cel_x-1][cel_y+1]; + }else if(cel_x==TAILLE_MONDE_DELIMITE-1 && cel_y==TAILLE_MONDE_DELIMITE-1){ + nbrVoisinsVivants = monde[cel_x-1][cel_y] + monde[cel_x][cel_y-1] + monde[cel_x-1][cel_y-1]; + }else if(cel_x==0){ + nbrVoisinsVivants = monde[cel_x][cel_y-1] + monde[cel_x+1][cel_y-1] + monde[cel_x+1][cel_y] + monde[cel_x+1][cel_y+1] + monde[cel_x][cel_y+1]; + }else if(cel_x==TAILLE_MONDE_DELIMITE-1){ + nbrVoisinsVivants = monde[cel_x][cel_y-1] + monde[cel_x-1][cel_y-1] + monde[cel_x-1][cel_y] + monde[cel_x-1][cel_y+1] + monde[cel_x][cel_y+1]; + }else if(cel_y==0){ + nbrVoisinsVivants = monde[cel_x-1][cel_y] + monde[cel_x-1][cel_y+1] + monde[cel_x][cel_y+1] + monde[cel_x+1][cel_y+1] + monde[cel_x+1][cel_y]; + }else if(cel_y==TAILLE_MONDE_DELIMITE-1){ + nbrVoisinsVivants = monde[cel_x-1][cel_y] + monde[cel_x-1][cel_y-1] + monde[cel_x][cel_y-1] + monde[cel_x+1][cel_y-1] + monde[cel_x+1][cel_y]; + }else{ + nbrVoisinsVivants = monde[cel_x-1][cel_y-1] + monde[cel_x][cel_y-1] + monde[cel_x+1][cel_y-1] + monde[cel_x+1][cel_y] + + monde[cel_x+1][cel_y+1] + monde[cel_x][cel_y+1] + monde[cel_x-1][cel_y+1] + monde[cel_x-1][cel_y]; + } + return nbrVoisinsVivants; +} + +void reglesEvolutions(int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE]){ + int i = 0; + int j = 0; + int nbrVoisinsVivants = 0; + for(i=0; i<TAILLE_MONDE_DELIMITE; i++){ + for(j=0; j<TAILLE_MONDE_DELIMITE; j++){ + nbrVoisinsVivants = nombreVoisinsVivants(monde, i, j); + if(monde[i][j]==1 && survie[nbrVoisinsVivants]==0){ + monde[i][j] = 0; + }else if(monde[i][j]==0 && naissance[nbrVoisinsVivants]==1){ + monde[i][j] = 1; + } + } + } +} + +int main() { + + int monde[TAILLE_MONDE_DELIMITE][TAILLE_MONDE_DELIMITE]; + + initSDL2(); + + initMonde(monde); + + while (running) { + while (SDL_PollEvent(&event)){ + switch(event.type){ + case SDL_WINDOWEVENT: + printf("window event\n"); + switch (event.window.event){ + case SDL_WINDOWEVENT_CLOSE: + printf("appui sur la croix\n"); + break; + case SDL_WINDOWEVENT_SIZE_CHANGED: + width = event.window.data1; + height = event.window.data2; + printf("Size : %d%d\n", width, height); + break; + } + break; + case SDL_MOUSEBUTTONDOWN: + printf("Appui :%d %d\n", event.button.x, event.button.y); + changeCellule(monde, event.button.x, event.button.y); + break; + case SDL_KEYDOWN: + switch(event.key.keysym.sym){ + case SDLK_RIGHT: + printf("goo calcul!\n"); + reglesEvolutions(monde); + break; + case SDLK_s: + printf("stop calcul...\n"); + break; + default: + printf("une touche est tapee\n"); + break; + } + break; + case SDL_QUIT : + printf("on quitte\n"); + running = 0; + break; + } + //parfois on dessine ici + afficherEcran(monde); + } + SDL_Delay(10); + } + destroySDL2(); + return 0; +} \ No newline at end of file diff --git a/travail_individuel/Meyer/jeu_de_la_vie/makefile b/travail_individuel/Meyer/jeu_de_la_vie/makefile new file mode 100644 index 0000000000000000000000000000000000000000..9e978d1309fe9b051df7c0c3bdd1e125a4aa5612 --- /dev/null +++ b/travail_individuel/Meyer/jeu_de_la_vie/makefile @@ -0,0 +1,11 @@ +CC=gcc + +main:main.o + $(CC) -o main main.o -lm -lSDL2 + @echo "=> Lancer le programme avec ./main" + +main.o:main.c + $(CC) -c main.c -g -Wall -Wextra + +clean: + rm -rf main main.o diff --git a/travail_individuel/Meyer/pave_de_serpents/.vscode/c_cpp_properties.json b/travail_individuel/Meyer/pave_de_serpents/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..4d5b55df0634dd59212f0d153967b2f7af421e22 --- /dev/null +++ b/travail_individuel/Meyer/pave_de_serpents/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/SDL2" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++14", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/travail_individuel/Meyer/pave_de_serpents/.vscode/settings.json b/travail_individuel/Meyer/pave_de_serpents/.vscode/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..236a91b402122022af296ef7d154061e140897b5 --- /dev/null +++ b/travail_individuel/Meyer/pave_de_serpents/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "sdl.h": "c" + } +} \ No newline at end of file diff --git a/travail_individuel/Meyer/pave_de_serpents/main b/travail_individuel/Meyer/pave_de_serpents/main index 0130edc9e30a444de3016821db2bb91eb1982ae1..5cae36a48590b4722e3e84b904b26e72c5ab66ad 100755 Binary files a/travail_individuel/Meyer/pave_de_serpents/main and b/travail_individuel/Meyer/pave_de_serpents/main differ diff --git a/travail_individuel/Meyer/pave_de_serpents/main.c b/travail_individuel/Meyer/pave_de_serpents/main.c index cbf26667f7b73b16bae5130e0243e23ecf9b2875..860bb73398edb294eee2e1acde40fd85f4bacf58 100644 --- a/travail_individuel/Meyer/pave_de_serpents/main.c +++ b/travail_individuel/Meyer/pave_de_serpents/main.c @@ -1,14 +1,14 @@ #include <SDL2/SDL.h> #include <stdio.h> #include <stdlib.h> +#include <math.h> +#define PI 3.141592654 int main(int argc, char **argv) { (void)argc; (void)argv; - int vainqueur = 0; - SDL_Window *window = NULL; @@ -25,8 +25,14 @@ int main(int argc, char **argv) SDL_Renderer *renderer; SDL_Rect rect; - int pale_1_x; - int pale_1_y; + int pale_1_x = 300; + int pale_1_y = 300; + + int pale_2_x = 700; + int pale_2_y = 300; + + int pale_3_x = 250; + int pale_3_y = 500; if (SDL_GetDesktopDisplayMode(0, &mode) != 0) { @@ -70,67 +76,86 @@ int main(int argc, char **argv) exit(EXIT_FAILURE); } - // dessin - /* couleur de fond */ - SDL_SetRenderDrawColor(renderer, 157, 224, 144, 255); - SDL_RenderClear(renderer); - - //sol - SDL_SetRenderDrawColor(renderer, 49, 150, 29, 255); - rect.w = window_width; - rect.h = window_height/3; - rect.x = 0; - rect.y = window_height - window_height/3; - SDL_RenderFillRect(renderer, &rect); - - /* bloc du moulin */ - SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255); - rect.w = 150; - rect.h = 250; - rect.x = (window_width - rect.w)/2; - rect.y = window_height - rect.h - 150; - SDL_RenderFillRect(renderer, &rect); - - /*triangle moulin*/ - SDL_SetRenderDrawColor(renderer, 255, 0, 0, 255); - rect.w = 150; - rect.h = 50; - rect.x = (window_width - rect.w)/2; - rect.y = window_height - rect.h - 400; - SDL_RenderFillRect(renderer, &rect); - - //pales du moulin - //pale 1 du moulin - pale_1_x = 50; - pale_1_y = 50; - SDL_SetRenderDrawColor(renderer, 163, 82, 2, 255); - SDL_RenderDrawLine(renderer, - (window_width - rect.w)/2, - window_height - rect.h - 400, - pale_1_x, - pale_1_y); - - - - /* afficher à l'ecran */ - SDL_RenderPresent(renderer); - - - - // départ de la course - /*while (vainqueur == 0) - { - - if (cercle.x > display_width) - { - vainqueur = 1; - } - }*/ - - // ecrire victoire - + int i = 20; + + while(i>0){ + + // dessin + /* couleur de fond */ + SDL_SetRenderDrawColor(renderer, 157, 224, 144, 255); + SDL_RenderClear(renderer); + + //sol + SDL_SetRenderDrawColor(renderer, 49, 150, 29, 255); + rect.w = window_width; + rect.h = window_height/3; + rect.x = 0; + rect.y = window_height - window_height/3; + SDL_RenderFillRect(renderer, &rect); + + /* bloc du moulin */ + SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255); + rect.w = 150; + rect.h = 250; + rect.x = (window_width - rect.w)/2; + rect.y = window_height - rect.h - 150; + SDL_RenderFillRect(renderer, &rect); + + /*triangle moulin*/ + SDL_SetRenderDrawColor(renderer, 255, 0, 0, 255); + rect.w = 150; + rect.h = 50; + rect.x = (window_width - rect.w)/2; + rect.y = window_height - rect.h - 400; + SDL_RenderFillRect(renderer, &rect); + + //pales du moulin + //pale 1 du moulin + int theta = 40; + int px = window_width/2; + int py = window_height - rect.h - 375; + float c = cos(theta), s = sin(theta); + float dx = pale_1_x - px, dy = pale_1_y - py; + pale_1_x = pale_1_x + c * dx - s * dy; + pale_1_y = pale_1_y + s * dx + c * dy; + + SDL_SetRenderDrawColor(renderer, 163, 82, 2, 255); + SDL_RenderDrawLine(renderer, + px, + py, + pale_1_x, + pale_1_y); + + //pale 2 du moulin + dx = pale_2_x - px, dy = pale_2_y - py; + pale_2_x = pale_2_x + c * dx - s * dy; + pale_2_y = pale_2_y + s * dx + c * dy; + SDL_SetRenderDrawColor(renderer, 163, 82, 2, 255); + SDL_RenderDrawLine(renderer, + px, + py, + pale_2_x, + pale_2_y); + + //pale 3 du moulin + dx = pale_3_x - px, dy = pale_3_y - py; + pale_3_x = pale_3_x + c * dx - s * dy; + pale_3_y = pale_3_y + s * dx + c * dy; + SDL_SetRenderDrawColor(renderer, 163, 82, 2, 255); + SDL_RenderDrawLine(renderer, + px, + py, + pale_3_x, + pale_3_y); + + /* afficher à l'ecran */ + SDL_RenderPresent(renderer); + SDL_Delay(1000); + SDL_RenderClear(renderer); + i = i - 2; + } - SDL_Delay(2000); + SDL_DestroyRenderer(renderer); // fermer fenetre SDL_DestroyWindow(window); // la fenêtre diff --git a/travail_individuel/Meyer/pave_de_serpents/moulin_a_serpents.gif b/travail_individuel/Meyer/pave_de_serpents/moulin_a_serpents.gif new file mode 100644 index 0000000000000000000000000000000000000000..dfff5e4b015785619ebb0494c9039690a727023b Binary files /dev/null and b/travail_individuel/Meyer/pave_de_serpents/moulin_a_serpents.gif differ diff --git a/travail_individuel/Meyer/x_fenetre/.vscode/c_cpp_properties.json b/travail_individuel/Meyer/x_fenetre/.vscode/c_cpp_properties.json new file mode 100644 index 0000000000000000000000000000000000000000..4d5b55df0634dd59212f0d153967b2f7af421e22 --- /dev/null +++ b/travail_individuel/Meyer/x_fenetre/.vscode/c_cpp_properties.json @@ -0,0 +1,17 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/SDL2" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "cppStandard": "gnu++14", + "intelliSenseMode": "linux-gcc-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/travail_individuel/Meyer/x_fenetre/.vscode/settings.json b/travail_individuel/Meyer/x_fenetre/.vscode/settings.json new file mode 100644 index 0000000000000000000000000000000000000000..088a016fe65a59c2cfcbb56823ba698a0d776631 --- /dev/null +++ b/travail_individuel/Meyer/x_fenetre/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "files.associations": { + "main.C": "cpp", + "cmath": "cpp" + } +} \ No newline at end of file diff --git a/travail_individuel/Meyer/x_fenetre/x_fenetre_rocket.gif b/travail_individuel/Meyer/x_fenetre/x_fenetre_rocket.gif new file mode 100644 index 0000000000000000000000000000000000000000..71985403f68d26b557688643f36554010083a4d3 Binary files /dev/null and b/travail_individuel/Meyer/x_fenetre/x_fenetre_rocket.gif differ