Bonjour à vous tous.

voila je suis en train de faire un jeux sous console unix, mais je me retrouve toujour avec une erreure de segmentation lorsque le programme excute les lignes de ma fonction deplacevache


PS: désoler mais je ne connais pas le BBcode pour une lecture plus simple du code.

merci d'avance purs vos réponses
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
 
 
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "couleur.h"
 
/*-----------------------mercredi 12 mars 2008 a  01:23-----------------------------*/
 
 /*--------------------------------------------------------------------------------------------------------------------*/
/* structure vache */
 
struct vache_s
{
int age;
int energie;
int vache_x;
int vache_y;
};
typedef struct vache_s vache_t;
 
/* fonction nombres aleatoire */
 
int hasard(int min, int max)
{
 
	/*return (rand()%(max+1));*/
  	return (int) (min + ((float) rand() / RAND_MAX * (max - min + 1)));
 
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
/* calcul de la moyenne avec nouveaux tableaux de valeur */
 
void moyenne(int** tablo,int** tablo2, int x, int y, float valeurcal)
{
float moy;
int max=0;
moy=valeurcal/8;
 
if((tablo[x][y]<255)&&(tablo[x][y]>=0))
{
		if( moy<tablo[x][y]/10 )
		{	
			tablo2[x][y]=tablo[x][y]-1;
		}
		else if (moy>tablo[x][y]/10)
		{
			tablo2[x][y]=tablo[x][y]+1;	
		}
		else
		{
			max = (0.2)*moy;
			tablo2[x][y]=tablo[x][y]+hasard(0,max);
 
				if(tablo[x][y]>=255)
				{
					tablo2[x][y]=255;
				}
				if(tablo[x][y]<0)
				{
					tablo2[x][y]=0;
				}
		}	
 
}
}
 
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
/* fonction affiche le tableaux */
 
void affiche(int taille,int** tablo,vache_t** tablo3)
{
  int i,x;
      printf("\n\n");
  for(i=0;i<10;i++)
    {
      for(x=0;x<10;x++)
	{
	if(tablo3[i][x].energie!=-1)
	{
	couleur("1;40;34"); // vache
	}
	else
	{
	couleur("1;40;33");  //herbe
	}
 
	printf("  %4d  ",tablo[i][x]);
	couleur("0");
	}
 
      printf("\n\n");
    }
    	usleep(100000);
    /*	printf("\033[H\033[2J");*/
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
 
/* depassement dans le tableaux */
 
void depasse(int x,int y, int** tablo,int** tablo2)
{
int a,b;
float calcul;
 
		for(a=x-1;a<x+1;a++)
	    	{
	      		for(b=y-1;b<y+1;b++)
			{
				if (((a>-1)&&(a<10))&&((b>-1)&&(b<10)))
		  		calcul+=tablo[a][b];
		  		moyenne(tablo,tablo2,x,y,calcul);
 
			}
	    	}
 
 
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
/*fonction parcoure de tableaux pour les moyennes*/
 
void parcoure(int** tablo,int** tablo2)
{
	int x,y;
 
	for(x=0;x<10;x++)
	{
		for(y=0;y<10;y++)
		{
 
 
		depasse(x,y,tablo,tablo2);
		}
	}
 
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
/* fonction copie de tableaux */
 
void copietab(int** tablo,int** tablo2)
{
int x,y;
 
	for(x=0;x<10;x++)
	{
		for(y=0;y<10;y++)
		{
			tablo[x][y]=tablo2[x][y];			
		}
	}
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
void chance(int** tablo,int** tablo2)
{
int casealeax,casealeay,max,x;
casealeax=hasard(0,9);
casealeay=hasard(0,9);
max=hasard(0,255);
 x=hasard(1,50);
 
 if(x==50)
   {
   tablo[casealeax][casealeay]=tablo2[casealeax][casealeay]+max;
   }
}
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
 /* creation vache + position dans le tablo*/
 
void creatvache(vache_t** tablo3)
{
	int nb_vache_aleatoire,a;
	int x=hasard(0,9);
	int y=hasard(0,9);
	vache_t vache;
	nb_vache_aleatoire=hasard(40,60);
 
	/* placement */
	for(a=1;a<nb_vache_aleatoire;a++)
		{
 
		  if(tablo3[x][y].energie==-1)
		    {
			vache.energie=150;
			vache.age=1;
			tablo3[x][y]=vache;
			tablo3[x][y].vache_x=x;
			tablo3[x][y].vache_y=y;
			x=hasard(0,9);
			y=hasard(0,9);
		    }
 
 
		} 	
}
 /*--------------------------------------------------------------------------------------------------------------------*/
 
void deplacevache(int** tablo2,vache_t** tablo3,int x, int y)
{
int a,b;
vache_t vache;
 
			if((tablo3[x][y].vache_x!=x)||(tablo3[x][y].vache_y!=y))
			{
 
				tablo2[x][y]=tablo2[x][y]-5;	// herbe manger 
				a=tablo3[x][y].vache_x;		// recup nex position de la vache
				b=tablo3[x][y].vache_y;		// recup nex position de la vache	
				tablo3[a][b]=vache;		// place vache new position
				tablo3[a][b].energie=tablo3[x][y].energie-1; // energie vache -1
				tablo3[a][b].age=tablo3[x][y].age+1;	// age vache +1
				tablo3[x][y].energie=-1;	// old energie vache -1
				tablo3[x][y].age=-1;		// old age vache -1
printf("8");				
			} 
 
 
} 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
void herbemax(int** tablo2,vache_t** tablo3)
{
int a,b;
int x,y;
int max=0;
vache_t vache;
 
	for(x=0;x<10;x++)
	{
	  	for(y=0;y<10;y++)
	  	{
	  		max=tablo2[x][y];
 
	  		if ((tablo3[x][y].age!=-1)&&(tablo3[x][y].energie!=-1)) //parcoure du tableaux de vache
	  		{
	  			for(a=x-1;a<x+1;a++)
	    			{
	      				for(b=y-1;b<y+1;b++)
					{
						if (((a>-1)&&(a<10))&&((b>-1)&&(b<10)))
						{
							if(tablo2[a][b]>tablo2[x][y]) // test du max herbe
							{
								max=tablo2[a][b];
								tablo3[x][y].vache_x=a;
								tablo3[x][y].vache_y=b;
							}			
						}
					}
				}
 
					deplacevache(tablo2,tablo3,x,y);	
 
 
			}
 
	  	}
 
	}
 
 
}
 
 /*-----------------------------------------------------*/
 /*-----------------------------------------------------*/
 /*-----------------------------------------------------*/
/*-----------------------------------------------------*/
int main()
{
 
  /* declaration */
 
  int i,a,x,y; // variable 
  int** tablo; // declaration du tableaux
  int** tablo2;
  vache_t** tablo3;
  int* tablo4;
  int taille=9; //taille du tableaux
  int min=0;
  int max=255;
  int herb_maxfinal=0;
 
  vache_t vache;
  srand(time(NULL));
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
 /* initialisation du tablaux1 */
 
  tablo=(int**)malloc(10*sizeof(int*));
 
  for(a=0;a<10;a++)
    {
      tablo[a]=(int*)malloc(10*sizeof(int));
    }
 
 /* initialisation du tablaux2 */
 
  tablo2=(int**)malloc(10*sizeof(int*));
 
  for(a=0;a<10;a++)
    {
      tablo2[a]=(int*)malloc(10*sizeof(int));
    }
 
 
/* initialisation du tablaux3  */
 
  tablo3=(vache_t**)malloc(10*sizeof(vache_t*));
 
  for(a=0;a<10;a++)
    {
      tablo3[a]=(vache_t*)malloc(10*sizeof(vache_t));
    }
  for(x=0;x<10;x++)
    {
      for(y=0;y<10;y++)
	{
	  tablo3[x][y].energie=-1;
	tablo3[x][y].vache_y=-1;
	tablo3[x][y].vache_x=-1;
	tablo3[x][y].age=-1;
	}
    }
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
  /* corp du programme*/
 
  /* nombre aleatoire dans le tableax */
 
  for(x=0;x<10;x++)
    {
      for(y=0;y<10;y++)
	{
	  tablo[x][y]=hasard(min,max);
	}
    }
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
 
 /*  mise en place des vaches  */
  creatvache(tablo3);
 
 
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
  /* boucle globale */
for(i=0;i<10;i++)
{
		for(x=0;x<11;x++)// 10 tour pour l'herbe
		{
			chance(tablo, tablo2); //appel de la fonction chance
			parcoure(tablo,tablo2); // appelde la fonction parcoure
 
 
 
		}
 
 
		for(y=0;y<2;y++)// 2 tour pour les vaches
		{
			herbemax(tablo2,tablo3);	
		}
 
		//1 tour pour les loups
 
 
 
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
 
 
 
 
 /*--------------------------------------------------------------------------------------------------------------------*/
copietab(tablo,tablo2); //appel de la fonction copie de tableaux
affiche(10,tablo,tablo3); //appel de la fonction affiche
 
  printf("\n\n\n");
}
 
 
 
 
}