summaryrefslogtreecommitdiffstats
path: root/src/client_clui/client.cpp
blob: 83f8ef0503826777621f507098b8d4065bc11e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include <ncurses.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "../config.hpp"
#include "user.hpp"

int main(int argc, char *argv[])
{
	initscr();
	noecho();

	int rows, columns;
	getmaxyx(stdscr, rows, columns); 
	if(rows != 24 || columns != 80) {
		endwin();
		printf("Please use terminal with size 24x80\n");
		return 1;
	}

	Client *user = Client::Start(SERVER_IP, SERVER_PORT);
	if(!user) {
		endwin();
		perror("server");
		return 1;
	}

	ChatRoom *room = new ChatRoom();
	user->Run(room);
	delete room;

	endwin();
	return 0;
}