Blame view

test2.c 3.36 KB
579e0a0f   mahmoudrabia   rapport intermedi...
1
2
3
4
  #include<SDL/SDL.h>
  #include<SDL/SDL_ttf.h>
  #include"Graphique/libgraph.h"
  #include<stdbool.h>
750af9c2   mahmoudrabia   rapport intermedi...
5
  #include "test2.h"
579e0a0f   mahmoudrabia   rapport intermedi...
6
7
  #include <stdio.h>
  #include <stdlib.h>
750af9c2   mahmoudrabia   rapport intermedi...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
  #define  TAILLE_X     700
  #define  TAILLE_DESC  40
  #define  LARGEUR_MONS 30
  #define  HAUTEUR_MONS 30
  #define  LARGEUR_VAIS 35
  #define  SPEED        1
  #define  MISS_SPEED   5
  #define  LARGEUR_MISS 5
  #define  HAUTEUR_MISS 10
  
  
  
  
  l_entite* create_l_entite(int x,int y,int speed,int image)
  { 
    l_entite* monster_1 =(l_entite*)malloc(sizeof(l_entite));
    (monster_1->ent).image=image;
    (monster_1->ent).x    =x;
    (monster_1->ent).y    =y;
    (monster_1->ent).speed=speed;
    monster_1->next       = NULL;
    return monster_1;
579e0a0f   mahmoudrabia   rapport intermedi...
30
31
  }
  
750af9c2   mahmoudrabia   rapport intermedi...
32
33
34
35
36
37
38
  entite create_entite(entite ent,int x,int y, int speed, int image)
  {
    (ent).image=image;
    (ent).x    =x;
    (ent).y    =y;
    (ent).speed=speed;
    return ent;
579e0a0f   mahmoudrabia   rapport intermedi...
39
40
41
  }
  
  
750af9c2   mahmoudrabia   rapport intermedi...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
    
  void add_entite (l_entite** head,int x,int y,int speed,int image)
  {
   
    l_entite* new_monster = create_l_entite( x, y,speed,image);
    if (head==NULL)
       {
       *head=new_monster;
      }
    else
      {
       l_entite* current =*head;
        while (current->next != NULL)
  	{ current=current->next;
  	}
        current->next=new_monster;
579e0a0f   mahmoudrabia   rapport intermedi...
58
      }
579e0a0f   mahmoudrabia   rapport intermedi...
59
60
61
  }
  
  
750af9c2   mahmoudrabia   rapport intermedi...
62
63
64
65
66
67
68
  void display_l_entite(l_entite* mons)
  {
   l_entite* ptr= mons;
    while(ptr != NULL)
      {
        afficherLutin((ptr->ent).image,(ptr->ent).x,(ptr->ent).y);
        ptr=ptr->next;
579e0a0f   mahmoudrabia   rapport intermedi...
69
      }
579e0a0f   mahmoudrabia   rapport intermedi...
70
71
  }
  
750af9c2   mahmoudrabia   rapport intermedi...
72
73
74
75
  void display_entite(entite ent)
   {
      afficherLutin((ent).image,(ent).x,(ent).y);
   }
579e0a0f   mahmoudrabia   rapport intermedi...
76
  
579e0a0f   mahmoudrabia   rapport intermedi...
77
78
  
  
750af9c2   mahmoudrabia   rapport intermedi...
79
  void moveMonster(l_entite* monstre)
579e0a0f   mahmoudrabia   rapport intermedi...
80
  {
750af9c2   mahmoudrabia   rapport intermedi...
81
82
83
84
85
86
87
88
89
90
91
92
93
    int max =  TAILLE_X - LARGEUR_MONS;
    l_entite* currentMonster = monstre;
    while (currentMonster != NULL)
      {
        (currentMonster->ent).x += (currentMonster->ent).speed;
  
        if ( (currentMonster->ent).x < 0 || (currentMonster->ent).x > max)
  	{
  	  (currentMonster->ent).speed = -(currentMonster->ent).speed;
  	  (currentMonster->ent).y += TAILLE_DESC ;
  	}
        
        currentMonster = currentMonster->next;
579e0a0f   mahmoudrabia   rapport intermedi...
94
      }
579e0a0f   mahmoudrabia   rapport intermedi...
95
  }
750af9c2   mahmoudrabia   rapport intermedi...
96
97
  int main()
  {
579e0a0f   mahmoudrabia   rapport intermedi...
98
  
750af9c2   mahmoudrabia   rapport intermedi...
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
    l_entite* W_monster = NULL;
    l_entite* B_monster = NULL;
    l_entite* l_missile = NULL;
    entite    vaisseau;
    entite    missile;
    entite    missile_ref;
    creerSurface(TAILLE_X,TAILLE_Y,"Space Invaders");
  
  
    
    int ZB=lutinTexte("Space invaders", COULEUR_BLEU);
    int M1=chargerLutin("Graphique/invader_monstre1_2.bmp", COULEUR_BLEU);
    int M2=chargerLutin("Graphique/invader_monstre2_1.bmp", COULEUR_BLEU);
    int V =chargerLutin("Graphique/invader_canon.bmp", COULEUR_BLEU);
    int MI =chargerLutin("Graphique/invader_missile.bmp", COULEUR_BLEU);
  
  
  
    W_monster   =create_l_entite(0,0,1,M1);
    B_monster   =create_l_entite(0,100,1,M2);
    vaisseau    =create_entite(vaisseau,0.5*TAILLE_X,0.95*TAILLE_Y,1,V);
    missile_ref =create_entite(missile_ref,vaisseau.x + (LARGEUR_VAIS/2),400,1,MI);
    l_missile   =create_l_entite( vaisseau.x + (LARGEUR_VAIS/2),(vaisseau).y,1,MI);
  
    int i=0;int a =60;
    for (i=0;i<4;i++)
       {  
         add_entite(&W_monster,((W_monster->ent).x)+a,(W_monster->ent).y,1,M1);
         add_entite(&B_monster,((B_monster->ent).x)+a,(B_monster->ent).y,1,M2);
         a+=60;
       }
  
  
      
    while(1)
      {
        evenement ev;
        char      touche;
         l_missile = NULL;
        lireEvenement(&ev,&touche,NULL);
        if(ev==quitter)
  	{break;
  	}
        rectanglePlein (0,0,TAILLE_X,TAILLE_Y,COULEUR_NOIR);
        display_l_entite(W_monster);
        display_l_entite(B_monster);
        display_entite(vaisseau);
        moveMonster( W_monster);
        moveMonster( B_monster);
        }
       }