elefantes sobre sitios vacíos
This commit is contained in:
parent
56024607f7
commit
bc099eef10
25
screen.c
25
screen.c
@ -46,10 +46,7 @@ void cuadra(WINDOW * win, int width, int height){
|
|||||||
wrefresh(win);
|
wrefresh(win);
|
||||||
}
|
}
|
||||||
|
|
||||||
void generarElefantes(struct coord *buff){
|
struct coord randomCoord(WINDOW * win){
|
||||||
srand ( time(NULL) );
|
|
||||||
|
|
||||||
for(int i = 0; i < ELEFANTES; ++i) {
|
|
||||||
int nWidthMax=width-10;
|
int nWidthMax=width-10;
|
||||||
int nWidthMin=10;
|
int nWidthMin=10;
|
||||||
int nHeightMax=height-10;
|
int nHeightMax=height-10;
|
||||||
@ -58,7 +55,19 @@ void generarElefantes(struct coord *buff){
|
|||||||
int rX = rand() % ((nWidthMax+1)-nWidthMin) + nWidthMin;
|
int rX = rand() % ((nWidthMax+1)-nWidthMin) + nWidthMin;
|
||||||
int rY = rand() % ((nHeightMax+1)-nHeightMin) + nHeightMin;
|
int rY = rand() % ((nHeightMax+1)-nHeightMin) + nHeightMin;
|
||||||
|
|
||||||
struct coord elefante = {rX+2,rY+2};
|
struct coord res = {rX, rY};
|
||||||
|
|
||||||
|
if (mvwinch(win, res.y, res.x) == ' '){
|
||||||
|
return res;
|
||||||
|
} else {
|
||||||
|
randomCoord(win);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void generarElefantes(WINDOW * win, struct coord *buff){
|
||||||
|
|
||||||
|
for(int i = 0; i < ELEFANTES; ++i) {
|
||||||
|
struct coord elefante = randomCoord(win);
|
||||||
buff[i] = elefante;
|
buff[i] = elefante;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -67,6 +76,7 @@ int screen() {
|
|||||||
initscr();
|
initscr();
|
||||||
noecho();
|
noecho();
|
||||||
curs_set(0); //cursor invisible
|
curs_set(0); //cursor invisible
|
||||||
|
srand ( time(NULL) ); //semilla para rand
|
||||||
|
|
||||||
/* int height, width, start_y, start_x; */
|
/* int height, width, start_y, start_x; */
|
||||||
/* height = 40; */
|
/* height = 40; */
|
||||||
@ -87,11 +97,10 @@ int screen() {
|
|||||||
mvwprintw(win, cazador.y, cazador.x, "^");
|
mvwprintw(win, cazador.y, cazador.x, "^");
|
||||||
|
|
||||||
struct coord elefantes[ELEFANTES] = {0};
|
struct coord elefantes[ELEFANTES] = {0};
|
||||||
generarElefantes(elefantes);
|
generarElefantes(win, elefantes);
|
||||||
|
|
||||||
for(int i = 0; i < ELEFANTES; i++){
|
for(int i = 0; i < ELEFANTES; i++){
|
||||||
mvwprintw(win, elefantes[i].y, elefantes[i].x, "?");
|
mvwprintw(win, elefantes[i].y, elefantes[i].x, "?");
|
||||||
|
|
||||||
/* mvwprintw(win, i+1, 1, "elefante x:%i, y:%i",elefantes[i].x, elefantes[i].y); */
|
/* mvwprintw(win, i+1, 1, "elefante x:%i, y:%i",elefantes[i].x, elefantes[i].y); */
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,8 +163,6 @@ int screen() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
endwin(); // dealocate memory and end ncurses
|
endwin(); // dealocate memory and end ncurses
|
||||||
|
Loading…
Reference in New Issue
Block a user