framerate tweaks

This commit is contained in:
Sheldon Lee 2020-06-16 19:53:10 +01:00
parent 90d5c8bd63
commit 570643ec39
2 changed files with 2 additions and 10 deletions

2
grid.c
View File

@ -98,7 +98,7 @@ void drawGrid(Grid* grid)
height = grid->size/width; height = grid->size/width;
for (int y = 0; y < height; y++) { for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) { for (int x = 0; x < width; x++) {
if (grid->state[toIndex(grid, x, y)]) mvprintw(y, x, "x"); if (grid->state[toIndex(grid, x, y)]) mvprintw(y, x, "X");
else mvprintw(y, x, " "); else mvprintw(y, x, " ");
} }
} }

10
main.c
View File

@ -27,28 +27,20 @@ int main()
// stdscr created by initscr() // stdscr created by initscr()
getmaxyx(stdscr, height, width); getmaxyx(stdscr, height, width);
Vect2i pos = {0, 0};
Vect2i vel = {1, 1};
//hz //hz
const int FRAME_RATE = 30; const int FRAME_RATE = 10;
const int DELAY = (float)pow(10,6)/(float)FRAME_RATE; const int DELAY = (float)pow(10,6)/(float)FRAME_RATE;
Grid grid; Grid grid;
initGrid(&grid, width, height); initGrid(&grid, width, height);
randomizeGrid(&grid); randomizeGrid(&grid);
putPixel(&grid, pos.x, pos.y);
while (running) { while (running) {
drawGrid(&grid); drawGrid(&grid);
refresh(); refresh();
//moveVect2i(&pos, vel.x, vel.y);
//contain(&pos.x, &vel.x, 0, width-1);
//contain(&pos.y, &vel.y, 0, height-1);
updateGrid(&grid); updateGrid(&grid);
usleep(DELAY); usleep(DELAY);