2010-03-31 05:21:17 +00:00
|
|
|
#include <ncurses.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <string.h>
|
2010-04-03 03:32:19 +00:00
|
|
|
#include <locale.h>
|
2010-03-31 20:39:28 +00:00
|
|
|
#include "common.h"
|
2010-04-01 05:28:00 +00:00
|
|
|
#include "../lib/card.h"
|
2010-03-31 05:21:17 +00:00
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
|
|
|
char message[] = "Welcome to tty-solitaire.";
|
|
|
|
int row_number, column_number;
|
|
|
|
|
2010-04-03 03:32:19 +00:00
|
|
|
setlocale(LC_ALL, ""); /* supporting unicode characters */
|
2010-03-31 05:21:17 +00:00
|
|
|
initscr(); /* initialize the terminal in curses mode */
|
|
|
|
raw(); /* disable line buffers */
|
|
|
|
noecho(); /* character echo is unnecessary */
|
|
|
|
keypad(stdscr, TRUE); /* enable F and arrow keys */
|
|
|
|
|
|
|
|
getmaxyx(stdscr, row_number, column_number);
|
|
|
|
mvprintw(row_number / 2 - 1,
|
|
|
|
(column_number - strlen(message)) / 2,
|
|
|
|
"%s\n",
|
|
|
|
message);
|
2010-04-01 06:07:48 +00:00
|
|
|
getch();
|
2010-03-31 05:21:17 +00:00
|
|
|
|
|
|
|
endwin();
|
2010-04-03 03:32:19 +00:00
|
|
|
|
2010-03-31 05:21:17 +00:00
|
|
|
puts("Game finished.");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|