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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
/* $Id: console.c,v 1.49 2001/12/16 01:29:46 riq Exp $ */
/* Tenes Empanadas Graciela
*
* Copyright (C) 2000 Ricardo Quesada
*
* Author: Ricardo Calixto Quesada <rquesada@core-sdi.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; only version 2 of the License
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
/**
* @file console.c
* Maneja los mensajes que llegan por la consola
*/
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_LIBREADLINE
#include <readline/readline.h>
#include <readline/history.h>
#endif /* HAVE_LIBREADLINE */
#include "server.h"
#undef DEBUG_CONSOLE
#ifdef DEBUG_CONSOLE
# define CONSOLE_DEBUG(x...) PDEBUG(x)
# define STATIC
#else
# define CONSOLE_DEBUG(x...)
# define STATIC static
#endif
#ifdef HAVE_LIBREADLINE
static TEG_STATUS rl_return = TEG_STATUS_SUCCESS;
#endif /* HAVE_LIBREADLINE */
/* prototipos */
STATIC TEG_STATUS con_start(int, char*);
STATIC TEG_STATUS con_status(int, char*);
STATIC TEG_STATUS con_message(int, char*);
STATIC TEG_STATUS con_help(int, char*);
STATIC TEG_STATUS con_test(int, char*);
STATIC TEG_STATUS con_exit(int, char*);
STATIC TEG_STATUS con_save(int, char*);
STATIC TEG_STATUS con_set(int, char*);
STATIC TEG_STATUS con_kick(int, char*);
STATIC TEG_STATUS con_view(int, char *);
STATIC TEG_STATUS con_scores(int, char *);
STATIC TEG_STATUS con_stats(int, char *);
struct {
char *label;
TEG_STATUS (*func) ();
char *help;
} con_tokens[] = {
{ TOKEN_START, con_start, N_("to start playing") },
{ TOKEN_STATUS, con_status, N_("shows status of players") },
{ TOKEN_MESSAGE, con_message, N_("sends a message to all the players") },
{ TOKEN_HELP, con_help, N_("shows help") },
{ TOKEN_TEST, con_test, N_("internal use. Dont use it") },
{ TOKEN_EXIT, con_exit, N_("exits the game") },
{ TOKEN_SAVE, con_save, N_("save the game") },
{ TOKEN_SET, con_set, N_("sets options") },
{ TOKEN_VIEW, con_view, N_("view options") },
{ TOKEN_KICK, con_kick, N_("kick player from the game") },
{ TOKEN_STATS, con_stats, N_("show players statistics") },
{ TOKEN_SCORES, con_scores, N_("show all-time high scores") },
};
#define CONSOLE_TOKENS (sizeof(con_tokens)/sizeof(con_tokens[0]))
/**
* @fn STATIC TEG_STATUS con_exit()
*/
STATIC TEG_STATUS con_exit( int unused, char* unused2)
{
jugador_flush();
#ifdef HAVE_LIBREADLINE
rl_return = TEG_STATUS_GAMEOVER;
#endif /* HAVE_LIBREADLINE */
return TEG_STATUS_GAMEOVER;
}
/**
* @fn STATIC TEG_STATUS con_stats()
* shows player's statistics
*/
STATIC TEG_STATUS con_stats_show( PJUGADOR pJ )
{
stats_score( &pJ->player_stats );
printf(" %i %-4i [ %-3u %-3u ] - [ %-3u %-3u ] %-15s %s\n",
pJ->numjug,
pJ->player_stats.score,
pJ->player_stats.countries_won,
pJ->player_stats.countries_lost,
pJ->player_stats.armies_won,
pJ->player_stats.armies_lost,
pJ->nombre,
pJ->human ? _("yes") : _("no")
);
return TEG_STATUS_SUCCESS;
}
STATIC TEG_STATUS con_stats( int unused, char* unused2)
{
printf (_("Number Score - [Countries: Won Lost] - [Armies: Won Lost] Name Human\n"));
jugador_map(con_stats_show);
return TEG_STATUS_SUCCESS;
}
/* shows all the scores */
STATIC TEG_STATUS con_scores_show( PSCORES pS )
{
int color;
color = ( ( pS->color >= TEG_MAX_PLAYERS || pS->color < 0 ) ? TEG_MAX_PLAYERS : pS->color );
printf(" %4d %s %-15s %-8s %s\n",
pS->stats.score,
pS->date,
pS->name,
_(g_colores[color]),
pS->human ? _("yes") : _("no")
);
return TEG_STATUS_SUCCESS;
}
STATIC TEG_STATUS con_scores( int unused, char* unused2 )
{
printf (_(" score date time name color human\n"));
scores_map( con_scores_show );
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_kick( int fd, char *name )
*/
STATIC TEG_STATUS con_kick( int fd, char *name)
{
if( name && strlen(name) ) {
PJUGADOR pJ;
if( jugador_findbyname( name, &pJ ) == TEG_STATUS_SUCCESS ) {
jugador_del_hard( pJ );
con_text_out_wop(M_ERR,_("Player %s was kicked from the game\n"),name);
netall_printf( TOKEN_KICK"=%s\n",name);
} else
con_text_out_wop(M_ERR,_("Player %s was not found\n"),name);
}
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_save()
*/
STATIC TEG_STATUS con_save( int fd, char *unused)
{
con_text_out_wop(M_INF,_("Not yet implemented\n"));
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_set( int fd, char * str)
*/
STATIC TEG_STATUS con_set(int fd, char*str)
{
return option_parse(fd,str);
}
/**
* @fn STATIC TEG_STATUS con_set( int fd, char * str)
*/
STATIC TEG_STATUS con_view(int fd, char*str)
{
return option_view(fd,str);
}
/**
* @fn STATIC TEG_STATUS con_message( int fd, char *msg )
*/
STATIC TEG_STATUS con_message( int fd, char *msg )
{
if( strlen(msg) !=0 ) {
strip_invalid_msg(msg);
netall_printf(TOKEN_MESSAGE"=(r00t),-1,%s\n",msg);
}
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_status(int fd, char*unused)
*/
STATIC TEG_STATUS con_status(int fd, char*unused)
{
PLIST_ENTRY l = g_list_jugador.Flink;
PJUGADOR pJ;
net_printf(fd,_("players:%d, connections:%d, game number:%d, round:%d, mission:%s\n"),
g_juego.jugadores,
g_juego.conecciones,
g_juego.gamenumber,
g_juego.round_number,
(g_juego.objetivos?_("TRUE"):_("FALSE"))
);
net_printf(fd,_("number, countries, armies, cards, exch, name, human, color, status, address\n"));
while( !IsListEmpty( &g_list_jugador ) && (l != &g_list_jugador) ) {
int color;
pJ = (PJUGADOR) l;
color = (pJ->color==-1) ? TEG_MAX_PLAYERS : pJ->color;
if( pJ->is_player ) {
net_printf(fd,"%d %-3u %-3u %d %d %-15s %s %s %s %s\n",
pJ->numjug,
pJ->tot_paises,
pJ->tot_ejercitos,
pJ->tot_tarjetas,
pJ->tot_canjes,
pJ->nombre,
pJ->human ? _("yes") : _("no"),
_(g_colores[color]),
_(g_estados[pJ->estado]),
pJ->addr
);
} else {
net_printf(fd,"%d %-3d %-3d %d %d %-15s %s %s %s %s\n",
-1,
-1,
-1,
-1,
-1,
pJ->nombre,
pJ->human ? _("yes") : _("no"),
_("n/a"),
_("observer"),
pJ->addr
);
}
l = LIST_NEXT(l);
}
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_start( int fd )
*/
STATIC TEG_STATUS con_start( int fd, char*unused )
{
return token_start( fd );
}
/**
* @fn STATIC TEG_STATUS con_help ( int fd )
*/
STATIC TEG_STATUS con_help ( int fd, char*unused )
{
int i;
for(i=0;i<CONSOLE_TOKENS;i++) {
if(con_tokens[i].func)
net_printf(fd,"'%s' %s\n",con_tokens[i].label,_(con_tokens[i].help));
}
return TEG_STATUS_SUCCESS;
}
TEG_STATUS jugador_dump( PJUGADOR pJ )
{
printf("Nombre: %s\n",pJ->nombre);
printf("fd: %d\n",pJ->fd);
return TEG_STATUS_SUCCESS;
}
/**
* @fn STATIC TEG_STATUS con_test(int fd, char *str)
*/
STATIC TEG_STATUS con_test(int fd, char *str)
{
jugador_map( jugador_dump );
return TEG_STATUS_SUCCESS;
}
/*
* codigo de interpretacion
*/
STATIC TEG_STATUS console_lookup( int fd, PARSER *p )
{
int i;
for(i = 0; i < CONSOLE_TOKENS; i++) {
if(strcmp( p->token, con_tokens[i].label )==0 ){
if (con_tokens[i].func)
return( (con_tokens[i].func)(fd ,p->value));
return TEG_STATUS_TOKENNULL;
}
}
printf(_("Command '%s' not recongnized\n"),p->token);
printf(_("Type '%s' for help\n"),TOKEN_HELP);
return TEG_STATUS_TOKENNOTFOUND;
}
/**
* @fn void con_show_prompt()
*/
void con_show_prompt()
{
if( g_server.with_console ) {
fprintf(stdout,"> ");
fflush(stdout);
}
}
/**
* @fn TEG_STATUS console_parse( int fd, char *str )
*/
TEG_STATUS console_parse( int fd, char *str )
{
int i;
PARSER p;
DELIM igualador={ '=', ' ', '=' };
DELIM separador={ ';', ';', ';' };
p.igualador = &igualador;
p.separador = &separador;
p.data = str;
do {
if( (i=parser_call( &p )) ) {
TEG_STATUS ts = console_lookup( fd, &p );
if( ts != TEG_STATUS_SUCCESS )
return ts;
}
} while( i && p.hay_otro);
return TEG_STATUS_SUCCESS;
}
/**
* @fn TEG_STATUS console_handle( int fd )
*/
TEG_STATUS console_handle( int fd )
{
#ifdef HAVE_LIBREADLINE
#else
int j;
TEG_STATUS ts = TEG_STATUS_SUCCESS;
char str[PROT_MAX_LEN];
#endif
#ifdef HAVE_LIBREADLINE
rl_callback_read_char();
return rl_return;
#else
str[0]=0;
j=net_readline( fd, str, PROT_MAX_LEN );
if( j<1 ) {
return TEG_STATUS_CONNCLOSED;
}
if( j > 1) {
ts = console_parse( fd, str );
con_show_prompt();
return ts;
}
return TEG_STATUS_SUCCESS;
#endif /* !HAVE_LIBREADLINE */
}
/**
* @fn TEG_STATUS con_text_out( int level, char *format, ...)
*/
TEG_STATUS con_text_out( int level, char *format, ...)
{
va_list args;
char buf[PROT_MAX_LEN];
if( g_server.with_console ) {
va_start(args, format);
vsnprintf(buf, sizeof(buf) -1, format, args);
buf[ sizeof(buf) -1 ] = 0;
va_end(args);
fprintf(stdout,buf);
con_show_prompt();
}
return TEG_STATUS_SUCCESS;
}
/**
* @fn TEG_STATUS con_text_out_wop( int level, char *format, ...)
*/
TEG_STATUS con_text_out_wop( int level, char *format, ...)
{
va_list args;
char buf[PROT_MAX_LEN];
if( g_server.with_console ) {
va_start(args, format);
vsnprintf(buf, sizeof(buf) -1, format, args);
buf[ sizeof(buf) -1 ] = 0;
va_end(args);
fprintf(stdout,buf);
}
return TEG_STATUS_SUCCESS;
}
#ifdef HAVE_LIBREADLINE
/**
* @fn void con_readline_input_callback(char *line)
*/
void con_readline_input_callback(char *line)
{
if (line) {
if (*line) {
add_history(line);
console_parse( CONSOLE_FD,line );
}
free(line);
}
}
#endif /* HAVE_LIBREADLINE */
/**
* @fn TEG_STATUS console_init( void )
*/
TEG_STATUS console_init( void )
{
#ifdef HAVE_LIBREADLINE
if( g_server.with_console ) {
rl_initialize();
rl_callback_handler_install("> ", con_readline_input_callback);
}
#endif /* HAVE_LIBREADLINE */
return TEG_STATUS_SUCCESS;
}
/**
* @fn TEG_STATUS console_quit( void )
*/
TEG_STATUS console_quit( void )
{
#ifdef HAVE_LIBREADLINE
if( g_server.with_console )
rl_callback_handler_remove();
#endif /* HAVE_LIBREADLINE */
return TEG_STATUS_SUCCESS;
}
|