1 | #include <iostream> |
---|
2 | #include <string> |
---|
3 | #include "PacketManager.h" |
---|
4 | #include "Client.h" |
---|
5 | |
---|
6 | using namespace network; |
---|
7 | |
---|
8 | void sender(){ |
---|
9 | |
---|
10 | network::PacketGenerator pck; |
---|
11 | const int PORT = 55556; |
---|
12 | std::cout << "Enter address of the server xxx.xxx.xxx.xxx (enter for localhost)" << std::endl; |
---|
13 | std::string str; |
---|
14 | std::getline(std::cin, str); |
---|
15 | std::cout << "You entered: " << str << std::endl; |
---|
16 | if(str.compare("")==0) |
---|
17 | str="127.0.0.1"; |
---|
18 | |
---|
19 | Client client( str, PORT ); |
---|
20 | if ( client.establishConnection() ) |
---|
21 | std::cout << "connection established" << std::endl; |
---|
22 | else std::cout << "problems establishing connection" << std::endl; |
---|
23 | |
---|
24 | while (true) { |
---|
25 | client.tick(0); |
---|
26 | std::cout << "your message: "; |
---|
27 | std::getline( std::cin, str ); |
---|
28 | client.sendChat( str ); |
---|
29 | std::cout << "send message" << std::endl; |
---|
30 | } |
---|
31 | |
---|
32 | |
---|
33 | |
---|
34 | } |
---|
35 | |
---|
36 | void listener(){ |
---|
37 | |
---|
38 | const int PORT = 55556; |
---|
39 | std::cout << "Enter address of the server xxx.xxx.xxx.xxx (enter for localhost)" << std::endl; |
---|
40 | std::string str; |
---|
41 | std::getline(std::cin, str); |
---|
42 | std::cout << "You entered: " << str << std::endl; |
---|
43 | if(str.compare("")==0) |
---|
44 | str="127.0.0.1"; |
---|
45 | |
---|
46 | Client client( str, PORT ); |
---|
47 | if ( client.establishConnection() ) |
---|
48 | std::cout << "connection established" << std::endl; |
---|
49 | else std::cout << "problems establishing connection" << std::endl; |
---|
50 | |
---|
51 | while (true) { |
---|
52 | client.tick(0); |
---|
53 | usleep(100); |
---|
54 | } |
---|
55 | |
---|
56 | |
---|
57 | |
---|
58 | } |
---|
59 | |
---|
60 | |
---|
61 | int main(int argc, char **argv[]){ |
---|
62 | std::string in; |
---|
63 | std::cout << "Please choose: sender(s) oder listener(l)" << std::endl; |
---|
64 | std::getline(std::cin, in); |
---|
65 | if(in.compare("l")==0) |
---|
66 | listener(); |
---|
67 | else if(in.compare("s")==0) |
---|
68 | sender(); |
---|
69 | else |
---|
70 | std::cout << "wrong answer" << std::endl; |
---|
71 | } |
---|