]> git.pond.sub.org Git - empserver/blob - src/client/main.c
client: Add readline support to empire client
[empserver] / src / client / main.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2015, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  main.c: client main function
28  *
29  *  Known contributors to this file:
30  *     Dave Pare, 1986
31  *     Steve McClure, 1998
32  *     Ron Koenderink, 2004-2007
33  *     Markus Armbruster, 2005-2010
34  *     Tom Dickson-Hunt, 2010
35  */
36
37 #include <config.h>
38
39 #include <stdlib.h>
40 #include <string.h>
41 #ifdef _WIN32
42 #include <windows.h>
43 #include <shlobj.h>
44 #include "sys/socket.h"
45 #else
46 #include <pwd.h>
47 #endif
48 #include <unistd.h>
49 #include "misc.h"
50 #include "version.h"
51
52 #ifdef _WIN32
53 #define getuid() 0
54 #define getpwuid(uid) ((void)(uid), w32_getpw())
55 #define sysdep_init() w32_sysdep_init()
56
57 struct passwd {
58     char *pw_name;
59     char *pw_dir;
60 };
61
62 static struct passwd *w32_getpw(void);
63 static void w32_sysdep_init(void);
64 #else  /* !_WIN32 */
65 #define sysdep_init() ((void)0)
66 #endif  /* !_WIN32 */
67
68 static void
69 print_usage(char *program_name)
70 {
71     printf("Usage: %s [OPTION]...[COUNTRY [PASSWORD]]\n"
72            "  -2 FILE         Append log of session to FILE\n"
73            "  -k              Kill connection\n"
74            "  -r              Restricted mode, no redirections\n"
75            "  -s [HOST:]PORT  Specify server HOST and PORT\n"
76            "  -u              Use UTF-8\n"
77 #ifdef HAVE_READLINE_HISTORY
78            "  -H              Save readline command history to file\n"
79 #endif /* HAVE_READLINE_HISTORY */
80            "  -h              display this help and exit\n"
81            "  -v              display version information and exit\n",
82            program_name);
83 }
84
85 int
86 main(int argc, char **argv)
87 {
88     int opt;
89     char *auxfname = NULL;
90     int use_history_file = 0;
91     int send_kill = 0;
92     char *host = NULL;
93     char *port = NULL;
94     int utf8 = 0;
95     char **ap;
96     char *country;
97     char *passwd;
98     char *uname;
99     char *udir;
100     char *colon;
101     int sock;
102
103     while ((opt = getopt(argc, argv, "2:krs:uHhv")) != EOF) {
104         switch (opt) {
105         case '2':
106             auxfname = optarg;
107             break;
108 #ifdef HAVE_READLINE_HISTORY
109         case 'H':
110             use_history_file = 1;
111             break;
112 #endif /* HAVE_READLINE_HISTORY */
113         case 'k':
114             send_kill = 1;
115             break;
116         case 'r':
117             restricted = 1;
118             break;
119         case 's':
120             port = strdup(optarg);
121             colon = strrchr(port, ':');
122             if (colon) {
123                 *colon = 0;
124                 host = port;
125                 port = colon + 1;
126             }
127             break;
128         case 'u':
129             utf8 = eight_bit_clean = 1;
130             break;
131         case 'h':
132             print_usage(argv[0]);
133             exit(0);
134         case 'v':
135             printf("%s\n\n%s", version, legal);
136             exit(0);
137         default:
138             fprintf(stderr, "Try -h for help.\n");
139             exit(1);
140         }
141     }
142
143     ap = argv + optind;
144     if (*ap)
145         country = *ap++;
146     else
147         country = getenv("COUNTRY");
148     if (*ap)
149         passwd = *ap++;
150     else
151         passwd = getenv("PLAYER");
152     if (!port)
153         port = getenv("EMPIREPORT");
154     if (!port)
155         port = empireport;
156     if (!host)
157         host = getenv("EMPIREHOST");
158     if (!host)
159         host = empirehost;
160     uname = getenv("LOGNAME");
161     udir = getenv("HOME");
162     if (!uname || !udir) {
163         struct passwd *pwd;
164
165         pwd = getpwuid(getuid());
166         if (pwd == NULL) {
167             fprintf(stderr, "You don't exist.  Go away\n");
168             exit(1);
169         }
170         if (!uname)
171             uname = pwd->pw_name;
172         if (!udir)
173             udir = pwd->pw_dir;
174     }
175     if (*ap) {
176         fprintf(stderr, "%s: extra operand %s\n", argv[0], *ap);
177         fprintf(stderr, "Try -h for help.\n");
178         exit(1);
179     }
180
181     getsose();
182     if (auxfname && (auxfp = fopen(auxfname, "a")) == NULL) {
183         fprintf(stderr, "Unable to open %s for append\n", auxfname);
184         exit(1);
185     }
186
187     sysdep_init();
188
189     sock = tcp_connect(host, port);
190
191     if (use_history_file) {
192         history_file = malloc(1024);
193         strncpy(history_file, udir, 1000);
194         strcat(history_file, "/.empire.history");
195     }
196
197     if (!login(sock, uname, country, passwd, send_kill, utf8))
198         exit(1);
199
200     if (play(sock) < 0)
201         exit(1);
202
203     return 0;
204 }
205
206 #ifdef _WIN32
207 /*
208  * Get Windows user name and directory
209  */
210 static struct passwd *
211 w32_getpw(void)
212 {
213     static char unamebuf[128];
214     static char udirbuf[MAX_PATH];
215     static struct passwd pwd;
216     DWORD unamesize;
217
218     unamesize = sizeof(unamebuf);
219     if (GetUserName(unamebuf, &unamesize)) {
220         pwd.pw_name = unamebuf;
221         if (unamesize == 0 || strlen(unamebuf) == 0)
222             pwd.pw_name = "nobody";
223     } else
224         pwd.pw_name = "nobody";
225     if (SUCCEEDED(SHGetFolderPathA(NULL, CSIDL_PROFILE, NULL, 0, udirbuf))
226         && strlen(udirbuf) == 0)
227         pwd.pw_dir = udirbuf;
228     return &pwd;
229 }
230
231 static void
232 w32_sysdep_init(void)
233 {
234     int err;
235
236     /*
237      * stdout is unbuffered under Windows if connected to a character
238      * device, and putchar() screws up when printing multibyte strings
239      * bytewise to an unbuffered stream.  Switch stdout to line-
240      * buffered mode.  Unfortunately, ISO C allows implementations to
241      * screw that up, and of course Windows does.  Manual flushing
242      * after each prompt is required.
243      */
244     setvbuf(stdout, NULL, _IOLBF, 4096);
245
246     err = w32_socket_init();
247     if (err != 0) {
248         fprintf(stderr, "WSAStartup Failed, error code %d\n", err);
249         exit(1);
250     }
251 }
252 #endif