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 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
|
#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;
int etat_vache;
};
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(tablo2[x][y]<=0)
{
tablo2[x][y]=0;
}
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** tablo,vache_t** tablo3, int tabx,int taby)
{
int i,x;
printf("\n\n");
for(i=0;i<tabx;i++)
{
for(x=0;x<taby;x++)
{
if(((tablo3[i][x].energie>0)&&(tablo3[i][x].energie<200))||((tablo3[i][x].age>0)&&(tablo3[i][x].age<200)))
{
couleur("1;40;37"); /* vache*/
}
else
{
couleur("40;32"); /*herbe*/
}
printf(" %4d ",tablo[i][x]);
couleur("0");
}
printf("\n");
}
usleep(1000000);
}
/*--------------------------------------------------------------------------------------------------------------------*/
/* depassement dans le tableaux */
void depasse(int** tablo,int** tablo2, int tabx, int taby)
{
int a,b,x,y;
float calcul;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
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 tabx,int taby)
{
int x,y;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
depasse(x,y,tablo,tablo2, tabx, taby);
}
}
}*/
/*--------------------------------------------------------------------------------------------------------------------*/
/* fonction copie de tableaux */
void copietab(int** tablo,int** tablo2,int tabx,int taby)
{
int x,y;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
tablo[x][y]=tablo2[x][y];
}
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
void chance(int** tablo,int** tablo2,int tabx,int taby)
{
int casealeax,casealeay,max,x;
casealeax=hasard(tabx,taby);
casealeay=hasard(tabx,taby);
max=hasard(0,255);
x=hasard(1,50);
if(x==50)
{
tablo[casealeax][casealeay]+=max;
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
/* creation vache + position dans le tablo*/
void creatvache(vache_t** tablo3,int tabx, int taby)
{
int nb_vache_aleatoire,a;
int x=hasard(tabx,taby);
int y=hasard(tabx,taby);
nb_vache_aleatoire=hasard(40,60);
/* placement */
for(a=1;a<nb_vache_aleatoire;a++)
{
if(tablo3[x][y].energie==-1)
{
tablo3[x][y].energie=200;
tablo3[x][y].age=1;
tablo3[x][y].vache_x=x;
tablo3[x][y].vache_y=y;
tablo3[x][y].etat_vache=1;
x=hasard(tabx,taby);
y=hasard(tabx,taby);
}
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
void deplacevache(int** tablo2,vache_t** tablo3,int tabx,int taby)
{
int a,b,x,y;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
if (((tablo3[x][y].vache_x>-1)&&(tablo3[x][y].vache_x<10))&&((tablo3[x][y].vache_y>-1)&&(tablo3[x][y].vache_y<10)))
{
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 */
/* on déplace la vache */
tablo3[a][b].energie =tablo3[x][y].energie+1; /*energie vache +1*/
tablo3[a][b].age=tablo3[x][y].age+1; /* age vache +1*/
/* on indique la nouvelle position de la vache */
tablo3[a][b].vache_x = a;
tablo3[a][b].vache_y = b;
/* on nettoie l'ancinne position de la vache */
tablo3[x][y].vache_x = -1;
tablo3[x][y].vache_y = -1;
tablo3[x][y].age = -1;
tablo3[x][y].energie = -1;
}
else
{
tablo2[x][y]=tablo2[x][y]-5;
tablo3[x][y].age++;
}
}
}
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
void herbemax(int** tablo2,vache_t** tablo3,int tabx,int taby)
{
int a,b;
int x,y;
int max=0;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
max=tablo2[x][y];
if (tablo3[x][y].etat_vache==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<tabx))&&((b>-1)&&(b<taby)))
{
if(tablo2[a][b]>max) // test du max herbe
{
max=tablo2[a][b];
if ((a>=0)&&(a<tabx))
tablo3[x][y].vache_x=a;
if ((b>=0)&&(b<taby))
tablo3[x][y].vache_y=b;
}
}
}
}
}
}
}
}
void reproducvache(vache_t** tablo3,int tabx,int taby)
{
int a,b,chance;
int x,y,c,d;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
if (((tablo3[x][y].energie>0)&&(tablo3[x][y].energie<201))||((tablo3[x][y].age>0)&&(tablo3[x][y].age<200))) //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<tabx))&&((b>-1)&&(b<taby)))
{
if (((tablo3[x][y].energie>-1)&&(tablo3[x][y].energie<201))||((tablo3[x][y].age>-1)&&(tablo3[x][y].age<200)))
{
chance=hasard(1,50);
if(chance==10)
{
tablo3[x][y].energie=tablo3[x][y].energie/2;
tablo3[a][b].energie=tablo3[a][b].energie/2;
for(c=x;c<x+1;c++)
{
for(d=y;d<y+1;d++)
{
if (((c>-1)&&(c<tabx))&&((d>-1)&&(d<taby)))
{
if((tablo3[c][d].energie==-1)||(tablo3[c][d].age==-1))
{
tablo3[c][d].energie=tablo3[x][y].energie+tablo3[a][b].energie;
tablo3[c][d].age=1;
tablo3[c][d].vache_x=c;
tablo3[c][d].vache_y=d;
c=30;
d=30;
}
}
}
}
}
}
}
}
}
}
}
}
}
void deadvache(vache_t** tablo3,int tabx,int taby)
{
int x,y;
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
if (((tablo3[x][y].energie<0)||(tablo3[x][y].age>200))&&(tablo3[x][y].etat_vache==1)) //parcoure du tableaux de vache
{
tablo3[x][y].energie=-1;
tablo3[x][y].age=-1;
tablo3[x][y].etat_vache=0;
}
}
}
}
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
/*-----------------------------------------------------*/
int main()
{
/* declaration */
int i,a,x,y; // variable
int** tablo; // declaration du tableaux
int** tablo2;
int tabx, taby;
vache_t** tablo3;
printf("Taille du tableau en X : \n");
scanf("%ld",&tabx);
printf("Taille du tableau en y : \n");
scanf("%ld",&taby);
int min=0;
int max=255;
srand(time(NULL));
/*--------------------------------------------------------------------------------------------------------------------*/
/* initialisation du tablaux1 */
tablo=(int**)malloc(tabx*sizeof(int*));
for(a=0;a<tabx;a++)
{
tablo[a]=(int*)malloc(taby*sizeof(int));
}
/* initialisation du tablaux2 */
tablo2=(int**)malloc(tabx*sizeof(int*));
for(a=0;a<tabx;a++)
{
tablo2[a]=(int*)malloc(taby*sizeof(int));
}
/* initialisation du tablaux3 */
tablo3=(vache_t**)malloc(tabx*sizeof(vache_t*));
for(a=0;a<tabx;a++)
{
tablo3[a]=(vache_t*)malloc(taby*sizeof(vache_t));
}
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
tablo3[x][y].energie=-1;
tablo3[x][y].vache_y=0;
tablo3[x][y].vache_x=0;
tablo3[x][y].age=-1;
tablo3[x][y].etat_vache=0;
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
/* corp du programme*/
/* nombre aleatoire dans le tableax */
for(x=0;x<tabx;x++)
{
for(y=0;y<taby;y++)
{
tablo[x][y]=hasard(min,max);
}
}
/*--------------------------------------------------------------------------------------------------------------------*/
/* mise en place des vaches */
creatvache(tablo3, tabx, taby);
/*--------------------------------------------------------------------------------------------------------------------*/
/* boucle globale */
for(i=0;i<300;i++)
{
for(x=0;x<10;x++)// 10 tour pour l'herbe
{
chance(tablo, tablo2, tabx, taby); //appel de la fonction chance
depasse(tablo,tablo2, tabx, taby); // appelde la fonction parcoure
}
for(y=0;y<2;y++)// 2 tour pour les vaches
{
herbemax(tablo2,tablo3, taby, taby);
deplacevache(tablo2,tablo3, tabx, taby);
reproducvache(tablo3, tabx, taby);
deadvache(tablo3, tabx, taby);
copietab(tablo,tablo2,tabx,taby); //appel de la fonction copie de tableaux
affiche(tablo,tablo3, tabx, taby); //appel de la fonction affiche
}
//1 tour pour les loups
/*--------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------*/
printf("\n\n\n");
}
} |
Partager