Changeset 5e693e8 in network-game for client


Ignore:
Timestamp:
Nov 24, 2012, 2:48:40 PM (12 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
94ebbd9
Parents:
e08572c
git-author:
dportnoy <dmp1488@…> (11/24/12 14:11:41)
git-committer:
dportnoy <dmp1488@…> (11/24/12 14:48:40)
Message:

Added a makefile for the client and made the WSA functions only work on Windows platforms

Location:
client
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • client/.gitignore

    re08572c r5e693e8  
    44Client.sdf
    55Client.opensdf
     6client
  • client/Client/main.cpp

    re08572c r5e693e8  
    44
    55#if defined WINDOWS
    6         #include <winsock2.h>
    7         #include <WS2tcpip.h>
     6   #include <winsock2.h>
     7   #include <WS2tcpip.h>
    88#elif defined LINUX
    9         #include <sys/types.h>
    10         #include <unistd.h>
    11         #include <sys/socket.h>
    12         #include <netinet/in.h>
    13         #include <netdb.h>
     9   #include <sys/types.h>
     10   #include <unistd.h>
     11   #include <sys/socket.h>
     12   #include <netinet/in.h>
     13   #include <netdb.h>
     14   #include <cstring>
    1415#endif
    1516
     
    3031using namespace std;
    3132
     33void initWinSock();
     34void shutdownWinSock();
    3235void error(const char *);
    3336
    3437int main(int argc, char *argv[])
    3538{
    36         int sock, n;
    37         struct sockaddr_in server, from;
    38         struct hostent *hp;
    39         char buffer[256];
    40         NETWORK_MSG msgTo, msgFrom;
     39   int sock, n;
     40   struct sockaddr_in server, from;
     41   struct hostent *hp;
     42   char buffer[256];
     43   NETWORK_MSG msgTo, msgFrom;
    4144
    42         if (argc != 3) {
    43                 cout << "Usage: server port" << endl;
    44                 exit(1);
    45         }
     45   if (argc != 3) {
     46      cout << "Usage: server port" << endl;
     47      exit(1);
     48   }
    4649
    47         WORD wVersionRequested;
    48         WSADATA wsaData;
    49         int wsaerr;
     50   initWinSock();
     51       
     52   sock = socket(AF_INET, SOCK_DGRAM, 0);
     53   if (sock < 0)
     54      error("socket");
    5055
    51         wVersionRequested = MAKEWORD(2, 2);
    52         wsaerr = WSAStartup(wVersionRequested, &wsaData);
     56   server.sin_family = AF_INET;
     57   hp = gethostbyname(argv[1]);
     58   if (hp==0)
     59      error("Unknown host");
     60
     61   memcpy((char *)&server.sin_addr, (char *)hp->h_addr, hp->h_length);
     62   server.sin_port = htons(atoi(argv[2]));
     63
     64   strcpy(msgTo.buffer, "Hello");
     65   n=sendMessage(&msgTo, sock, &server);
     66   if (n < 0)
     67      error("sendMessage");
     68
     69   n = receiveMessage(&msgFrom, sock, &from);
     70   if (n < 0)
     71      error("receiveMessage");
    5372       
    54         if (wsaerr != 0) {
    55                 cout << "The Winsock dll not found." << endl;
    56                 exit(1);
    57         }else
    58                 cout << "The Winsock dll was found." << endl;
     73   cout << msgFrom.buffer << endl;
     74
     75   while(true) {
     76      cout << "Please enter a message (or q to quit): ";
     77      cin.getline(msgTo.buffer, 256);
     78               
     79      if (strcmp(msgTo.buffer, "q") == 0) {
     80         break;
     81      }
     82
     83      n=sendMessage(&msgTo, sock, &server);
     84      if (n < 0)
     85         error("sendMessage");
     86
     87      n = receiveMessage(&msgFrom, sock, &from);
     88      if (n < 0)
     89         error("receiveMessage");
     90
     91      cout << msgFrom.buffer << endl;
     92   }
     93
     94#if defined WINDOWS
     95   closesocket(sock);
     96#elif defined LINUX
     97   close(sock);
     98#endif
     99
     100   shutdownWinSock();
     101
     102   cout << "Thank you for playing!" << endl;
     103   getchar();
     104
     105   return 0;
     106}
     107
     108void initWinSock()
     109{
     110#if defined WINDOWS
     111   WORD wVersionRequested;
     112   WSADATA wsaData;
     113   int wsaerr;
     114
     115   wVersionRequested = MAKEWORD(2, 2);
     116   wsaerr = WSAStartup(wVersionRequested, &wsaData);
    59117       
    60         sock= socket(AF_INET, SOCK_DGRAM, 0);
    61         if (sock < 0)
    62                 error("socket");
     118   if (wsaerr != 0) {
     119      cout << "The Winsock dll not found." << endl;
     120      exit(1);
     121   }else
     122      cout << "The Winsock dll was found." << endl;
     123#endif
     124}
    63125
    64         server.sin_family = AF_INET;
    65         hp = gethostbyname(argv[1]);
    66         if (hp==0)
    67                 error("Unknown host");
    68 
    69         memcpy((char *)&server.sin_addr, (char *)hp->h_addr, hp->h_length);
    70         server.sin_port = htons(atoi(argv[2]));
    71 
    72         strcpy(msgTo.buffer, "Hello");
    73         n=sendMessage(&msgTo, sock, &server);
    74         if (n < 0)
    75                 error("sendMessage");
    76 
    77         n = receiveMessage(&msgFrom, sock, &from);
    78         if (n < 0)
    79                 error("receiveMessage");
    80        
    81         cout << msgFrom.buffer << endl;
    82 
    83         while(true) {
    84                 cout << "Please enter a message (or q to quit): ";
    85                 cin.getline(msgTo.buffer, 256);
    86                
    87                 if (strcmp(msgTo.buffer, "q") == 0) {
    88                         break;
    89                 }
    90 
    91                 n=sendMessage(&msgTo, sock, &server);
    92                 if (n < 0)
    93                         error("sendMessage");
    94 
    95                 n = receiveMessage(&msgFrom, sock, &from);
    96                 if (n < 0)
    97                         error("receiveMessage");
    98        
    99                 cout << msgFrom.buffer << endl;
    100         }
    101 
    102         closesocket(sock);
    103 
    104         WSACleanup();
    105 
    106         cout << "Thank you for playing!" << endl;
    107         getchar();
    108 
    109         return 0;
     126void shutdownWinSock()
     127{
     128#if defined WINDOWS
     129   WSACleanup();
     130#endif
    110131}
    111132
     
    113134void error(const char *msg)
    114135{
    115     perror(msg);
    116         WSACleanup();
    117     exit(1);
     136   perror(msg);
     137   shutdownWinSock();
     138   exit(1);
    118139}
Note: See TracChangeset for help on using the changeset viewer.