ncurses-gameoflife/main.c

89 lines
1.6 KiB
C
Raw Normal View History

2020-06-12 09:46:44 +08:00
#include <ncurses.h>
// Delay and timing.
2020-06-12 09:46:44 +08:00
#include <unistd.h>
#include <time.h>
// math
#include <math.h>
// game
#include "game.h"
2020-06-12 09:46:44 +08:00
#include "grid.h"
#include "vect.h"
void showLastPressed(char ch);
2020-06-12 09:46:44 +08:00
int main()
{
// init
2020-06-12 09:46:44 +08:00
initscr();
raw();
2020-06-23 09:34:29 +08:00
noecho();
// Colors
// allows for transparancy when color values in init_pair(); are set to -1 or, no pair specified
// e.g init_pair(1, COLOR_WHITE, -1) would be transparent background but white text
use_default_colors();
start_color();
// cell
init_pair(1, COLOR_BLUE, COLOR_WHITE);
// text
init_pair(2, COLOR_YELLOW, -1);
2020-06-23 09:34:29 +08:00
// cursor
init_pair(3, COLOR_RED, COLOR_RED);
// doesn't wait for user to input.
// timeout(100) waits for 100ms for input.
timeout(0);
2020-06-12 09:46:44 +08:00
curs_set(FALSE);
2020-06-12 09:46:44 +08:00
int width = 0;
int height = 0;
// stdscr is screen created by initscr()
2020-06-12 09:46:44 +08:00
getmaxyx(stdscr, height, width);
// framerate of the game
2020-06-23 09:34:29 +08:00
const int FRAME_RATE = 30;
const float FRAME_TIME = 1.f/(float)FRAME_RATE;
2020-06-12 09:46:44 +08:00
Grid grid;
initGrid(&grid, width, height);
2020-06-15 08:12:14 +08:00
randomizeGrid(&grid);
2020-06-12 09:46:44 +08:00
2020-06-23 09:34:29 +08:00
float t = 0;
while (isRunning()) {
clock_t start_t = clock();
char ch = getch();
handleInput(ch);
// draw grid
drawGrid(&grid);
// draw overlays
showLastPressed(ch);
2020-06-23 09:34:29 +08:00
showCurPos();
2020-06-12 09:46:44 +08:00
refresh();
if (true) updateGrid(&grid);
2020-06-12 09:46:44 +08:00
usleep(pow(10,6)*(FRAME_TIME-t));
float t = (float) (clock()-start_t) / (float) CLOCKS_PER_SEC;
2020-06-12 09:46:44 +08:00
}
endwin();
return 0;
}
void showLastPressed(char ch)
{
static char lastc = ' ';
if (ch != -1) lastc = ch;
2020-06-23 09:34:29 +08:00
attron(COLOR_PAIR(2));
mvprintw(0, 0, "Last Pressed: %c", lastc);
attroff(COLOR_PAIR(2));
}
2020-06-23 09:34:29 +08:00