1 Commits

Author SHA1 Message Date
80a9d4d8ec fixed unusual terminal state after quitting 2025-06-30 11:06:57 +03:00

View File

@@ -44,8 +44,7 @@ void startGame(Board &board)
{ {
usleep((1000 / MAX_TIME) * 1000); usleep((1000 / MAX_TIME) * 1000);
#ifndef _WIN32 #ifndef _WIN32
if ((w.ws_row < boardSize.x + 3) || (w.ws_col < boardSize.y + 2)) if((w.ws_row < boardSize.x + 3 )||( w.ws_col < boardSize.y + 2)) {
{
mvprintw(w.ws_col/2, w.ws_row/2, "Your terminal is too small:"); mvprintw(w.ws_col/2, w.ws_row/2, "Your terminal is too small:");
mvprintw(w.ws_col / 2 + 1, w.ws_row/2, "Current size: %dx%d", w.ws_row, w.ws_col); mvprintw(w.ws_col / 2 + 1, w.ws_row/2, "Current size: %dx%d", w.ws_row, w.ws_col);
mvprintw(w.ws_col / 2 + 2, w.ws_row/2, "Min size: %dx%d", boardSize.x + 3, boardSize.y + 2); mvprintw(w.ws_col / 2 + 2, w.ws_row/2, "Min size: %dx%d", boardSize.x + 3, boardSize.y + 2);
@@ -178,10 +177,10 @@ void startGame(Board &board)
cursorX = (cursorX < boardSize.x - 1) ? cursorX + 1 : 0; cursorX = (cursorX < boardSize.x - 1) ? cursorX + 1 : 0;
break; break;
case 'q': case 'q':
exit(0);
echo(); echo();
cbreak(); cbreak();
endwin(); endwin();
exit(0);
break; break;
case 'z': case 'z':
if (!somethingHasBeenDone) if (!somethingHasBeenDone)
@@ -283,13 +282,11 @@ void startGame(Board &board)
{ {
Board newBoard(boardSize.x, boardSize.y, board.getMineCount()); Board newBoard(boardSize.x, boardSize.y, board.getMineCount());
startGame(newBoard); startGame(newBoard);
} } else if(c == 'q') {
else if (c == 'q')
{
exit(0);
echo(); echo();
cbreak(); cbreak();
endwin(); endwin();
exit(0);
} }
}; };
} }
@@ -315,13 +312,11 @@ void startGame(Board &board)
{ {
Board newBoard(boardSize.x, boardSize.y, board.getMineCount()); Board newBoard(boardSize.x, boardSize.y, board.getMineCount());
startGame(newBoard); startGame(newBoard);
} } else if(c == 'q') {
else if (c == 'q')
{
exit(0);
echo(); echo();
cbreak(); cbreak();
endwin(); endwin();
exit(0);
} }
}; };
} }
@@ -329,18 +324,14 @@ void startGame(Board &board)
int main() int main()
{ {
#ifndef _WIN32
signal(SIGWINCH, handleSIGWINCH); signal(SIGWINCH, handleSIGWINCH);
#endif
setlocale(LC_ALL, ""); setlocale(LC_ALL, "");
initscr(); initscr();
noecho(); noecho();
cbreak(); cbreak();
keypad(stdscr, TRUE); keypad(stdscr, TRUE);
nodelay(stdscr, TRUE); nodelay(stdscr, TRUE);
#ifndef _WIN32
ioctl(STDOUT_FILENO, TIOCGWINSZ, &w); ioctl(STDOUT_FILENO, TIOCGWINSZ, &w);
#endif
start_color(); start_color();
init_pair(1, COLOR_BLUE, COLOR_BLACK); init_pair(1, COLOR_BLUE, COLOR_BLACK);