Gobligine/metaserver/cmd.cpp

563 lines
12 KiB
C++
Raw Normal View History

2005-04-03 10:07:40 -06:00
// _________ __ __
// / _____// |_____________ _/ |______ ____ __ __ ______
// \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
// / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ |
// /_______ /|__| |__| (____ /__| (____ /\___ /|____//____ >
// \/ \/ \//_____/ \/
// ______________________ ______________________
// T H E W A R B E G I N S
// Stratagus - A free fantasy real time strategy game engine
//
2005-09-17 20:18:31 -06:00
/**@name cmd.cpp - Client/Server Command Interpreter. */
2005-04-03 10:07:40 -06:00
//
2005-04-05 19:16:49 -06:00
// (c) Copyright 2005 by Edward Haase and Jimmy Salmon
2005-04-03 10:07:40 -06:00
//
// 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.
2005-04-03 10:15:33 -06:00
//
2005-04-03 10:07:40 -06:00
//@{
/*----------------------------------------------------------------------------
-- Includes
----------------------------------------------------------------------------*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "stratagus.h"
#include "cmd.h"
#include "netdriver.h"
2005-04-17 12:39:41 -06:00
#include "db.h"
#include "games.h"
2005-04-03 10:07:40 -06:00
/*----------------------------------------------------------------------------
-- Functions
----------------------------------------------------------------------------*/
2005-04-17 12:39:41 -06:00
#define GetNextArg(buf, arg) \
do { \
if (*buf == '\"') { \
*arg = ++buf; \
while (*buf != '\"' && *buf) ++buf; \
if (*buf != '\"') return 1; \
*buf++ = '\0'; \
2005-04-26 19:46:20 -06:00
if (**arg == '\0') return 1; \
2005-04-17 12:39:41 -06:00
if (*buf != ' ') return 1; \
} else { \
*arg = buf; \
while (*buf != ' ' && *buf) ++buf; \
if (!*buf) return 1; \
} \
*buf++ = '\0'; \
} while (0)
#define GetLastArg(buf, arg) \
do { \
if (*buf == '\"') { \
*arg = ++buf; \
while (*buf != '\"' && *buf) ++buf; \
if (*buf != '\"') return 1; \
*buf++ = '\0'; \
2005-04-26 19:46:20 -06:00
if (**arg == '\0') return 1; \
2005-04-17 12:39:41 -06:00
if (*buf != ' ' && *buf) return 1; \
} else { \
*arg = buf; \
while (*buf != ' ' && *buf) ++buf; \
} \
} while (0)
2005-04-26 19:46:20 -06:00
#define GetNextAndOptionalArg(buf, arg1, arg2) \
do { \
if (*buf == '\"') { \
*arg1 = ++buf; \
while (*buf != '\"' && *buf) ++buf; \
if (*buf != '\"') return 1; \
*buf++ = '\0'; \
if (**arg1 == '\0') return 1; \
if (*buf != ' ' && *buf) return 1; \
} else { \
*arg1 = buf; \
while (*buf != ' ' && *buf) ++buf; \
} \
if (*buf == ' ') *buf++ = '\0'; \
\
*arg2 = NULL; \
while (*buf == ' ') ++buf; \
if (!*buf) return 0; \
\
GetLastArg(buf, arg2); \
} while (0)
2005-04-17 12:39:41 -06:00
#define SkipSpaces(buf) \
do { \
while (*buf == ' ') ++buf; \
if (!*buf) return 1; \
} while (0)
2005-04-17 13:36:02 -06:00
#define CheckExtraParameter(buf) \
do { \
if (*buf) { \
while (*buf == ' ') ++buf; \
if (*buf) return 1; \
} \
} while (0)
2005-04-17 12:39:41 -06:00
2005-09-25 10:32:15 -06:00
static int Parse1Arg(char *buf, char **arg1)
2005-04-17 12:39:41 -06:00
{
SkipSpaces(buf);
GetLastArg(buf, arg1);
2005-04-17 13:36:02 -06:00
CheckExtraParameter(buf);
2005-04-17 12:39:41 -06:00
return 0;
}
2005-09-25 10:32:15 -06:00
static int Parse1or2Args(char *buf, char **arg1, char **arg2)
2005-04-26 19:46:20 -06:00
{
SkipSpaces(buf);
GetNextAndOptionalArg(buf, arg1, arg2);
CheckExtraParameter(buf);
return 0;
}
2005-09-25 10:32:15 -06:00
static int Parse4Args(char *buf, char **arg1, char **arg2, char **arg3,
char **arg4)
2005-04-17 12:39:41 -06:00
{
SkipSpaces(buf);
GetNextArg(buf, arg1);
SkipSpaces(buf);
GetNextArg(buf, arg2);
SkipSpaces(buf);
GetNextArg(buf, arg3);
SkipSpaces(buf);
GetLastArg(buf, arg4);
2005-04-17 13:36:02 -06:00
CheckExtraParameter(buf);
2005-04-17 12:39:41 -06:00
return 0;
}
2005-09-25 10:32:15 -06:00
#if 0 // not used
static int Parse5Args(char *buf, char **arg1, char **arg2, char **arg3,
char **arg4, char **arg5)
2005-04-17 12:39:41 -06:00
{
SkipSpaces(buf);
GetNextArg(buf, arg1);
SkipSpaces(buf);
GetNextArg(buf, arg2);
SkipSpaces(buf);
GetNextArg(buf, arg3);
SkipSpaces(buf);
GetNextArg(buf, arg4);
SkipSpaces(buf);
GetLastArg(buf, arg5);
2005-04-17 13:36:02 -06:00
CheckExtraParameter(buf);
2005-04-17 12:39:41 -06:00
return 0;
}
2005-09-25 10:32:15 -06:00
#endif
2005-04-17 12:39:41 -06:00
2005-09-25 10:32:15 -06:00
static int Parse5or6Args(char *buf, char **arg1, char **arg2, char **arg3,
char **arg4, char **arg5, char **arg6)
2005-04-26 19:46:20 -06:00
{
SkipSpaces(buf);
GetNextArg(buf, arg1);
SkipSpaces(buf);
GetNextArg(buf, arg2);
SkipSpaces(buf);
GetNextArg(buf, arg3);
SkipSpaces(buf);
GetNextArg(buf, arg4);
SkipSpaces(buf);
GetNextAndOptionalArg(buf, arg5, arg6);
CheckExtraParameter(buf);
return 0;
}
/**
** Parse PING
*/
static void ParsePing(Session *session)
{
Send(session, "PING_OK\n");
}
2005-04-03 10:07:40 -06:00
/**
2005-04-17 12:39:41 -06:00
** Parse USER
2005-04-03 10:07:40 -06:00
*/
2005-09-25 10:32:15 -06:00
static void ParseUser(Session *session, char *buf)
2005-04-03 10:07:40 -06:00
{
2005-09-25 10:32:15 -06:00
char *username;
char *password;
char *gamename;
char *gamever;
2005-04-17 12:39:41 -06:00
char pw[MAX_PASSWORD_LENGTH + 1];
if (Parse4Args(buf, &username, &password, &gamename, &gamever)) {
Send(session, "ERR_BADPARAMETER\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
if (strlen(username) > MAX_USERNAME_LENGTH ||
strlen(password) > MAX_PASSWORD_LENGTH ||
strlen(gamename) > MAX_GAMENAME_LENGTH ||
strlen(gamever) > MAX_VERSION_LENGTH) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
if (!DBFindUser(username, pw)) {
DebugPrint("Username doesn't exist: %s\n" _C_ username);
Send(session, "ERR_NOUSER\n");
return;
}
if (strcmp(pw, password)) {
DebugPrint("Bad password for user %s\n" _C_ username);
Send(session, "ERR_BADPASSWORD\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
DebugPrint("User logged in: %s\n" _C_ username);
strcpy(session->UserData.Name, username);
strcpy(session->UserData.GameName, gamename);
strcpy(session->UserData.Version, gamever);
session->UserData.LoggedIn = 1;
DBUpdateLoginDate(username);
Send(session, "USER_OK\n");
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
/**
** Parse REGISTER
*/
2005-09-25 10:32:15 -06:00
static void ParseRegister(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
2005-09-25 10:32:15 -06:00
char *username;
char *password;
char *gamename;
char *gamever;
2005-04-17 12:39:41 -06:00
char pw[MAX_PASSWORD_LENGTH + 1];
if (Parse4Args(buf, &username, &password, &gamename, &gamever)) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
if (strlen(username) > MAX_USERNAME_LENGTH ||
strlen(password) > MAX_PASSWORD_LENGTH ||
strlen(gamename) > MAX_GAMENAME_LENGTH ||
strlen(gamever) > MAX_VERSION_LENGTH) {
Send(session, "ERR_BADPARAMETER\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
if (DBFindUser(username, pw)) {
DebugPrint("Tried to register existing user: %s\n" _C_ username);
Send(session, "ERR_USEREXISTS\n");
return;
}
DebugPrint("New user registered: %s\n" _C_ username);
session->UserData.LoggedIn = 1;
strcpy(session->UserData.Name, username);
strcpy(session->UserData.GameName, gamename);
strcpy(session->UserData.Version, gamever);
DBAddUser(username, password); // FIXME: if this fails?
Send(session, "REGISTER_OK\n");
}
/**
** Parse CREATEGAME
*/
2005-09-25 10:32:15 -06:00
static void ParseCreateGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
2005-09-25 10:32:15 -06:00
char *description;
char *map;
char *players;
char *ip;
char *port;
char *password;
2005-04-17 12:39:41 -06:00
int players_int;
int port_int;
2005-04-26 19:46:20 -06:00
if (Parse5or6Args(buf, &description, &map, &players, &ip, &port, &password)) {
2005-04-17 12:39:41 -06:00
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
players_int = atoi(players);
port_int = atoi(port);
// FIXME: check ip
if (strlen(description) > MAX_DESCRIPTION_LENGTH ||
strlen(map) > MAX_MAP_LENGTH ||
players_int < 1 || players_int > 16 ||
2005-04-26 19:46:20 -06:00
port_int < 1 || port_int > 66535 ||
(password && strlen(password) > MAX_GAME_PASSWORD_LENGTH)) {
2005-04-17 12:39:41 -06:00
Send(session, "ERR_BADPARAMETER\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-26 19:46:20 -06:00
CreateGame(session, description, map, players, ip, port, password);
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
DebugPrint("%s created a game\n" _C_ session->UserData.Name);
Send(session, "CREATEGAME_OK\n");
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
/**
** Parse CANCELGAME
*/
2005-09-25 10:32:15 -06:00
static void ParseCancelGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
// No args
while (*buf == ' ') ++buf;
if (*buf) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
if (CancelGame(session)) {
Send(session, "ERR_NOGAMECREATED\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
DebugPrint("%s canceled a game\n" _C_ session->UserData.Name);
Send(session, "CANCELGAME_OK\n");
}
/**
** Parse STARTGAME
*/
2005-09-25 10:32:15 -06:00
static void ParseStartGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
// No args
while (*buf == ' ') ++buf;
if (*buf) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
if (StartGame(session)) {
Send(session, "ERR_NOGAMECREATED\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
DebugPrint("%s started a game\n" _C_ session->UserData.Name);
Send(session, "STARTGAME_OK\n");
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
/**
** Parse LISTGAMES
*/
2005-09-25 10:32:15 -06:00
static void ParseListGames(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
// No args
while (*buf == ' ') ++buf;
if (*buf) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
ListGames(session);
Send(session, "LISTGAMES_OK\n");
}
/**
** Parse JOINGAME
*/
2005-09-25 10:32:15 -06:00
static void ParseJoinGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
2005-09-25 10:32:15 -06:00
char *id;
char *password;
2005-04-17 12:39:41 -06:00
int ret;
2005-04-26 19:46:20 -06:00
if (Parse1or2Args(buf, &id, &password)) {
2005-04-17 12:39:41 -06:00
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-26 19:46:20 -06:00
ret = JoinGame(session, atoi(id), password);
2005-04-17 12:39:41 -06:00
if (ret == -1) {
Send(session, "ERR_ALREADYINGAME\n");
return;
} else if (ret == -2) { // ID not found
Send(session, "ERR_BADPARAMETER\n");
return;
} else if (ret == -3) {
2005-04-26 19:46:20 -06:00
if (!password) {
Send(session, "ERR_NEEDPASSWORD\n");
} else {
Send(session, "ERR_BADPASSWORD\n");
}
return;
} else if (ret == -4) {
2005-04-17 12:39:41 -06:00
Send(session, "ERR_GAMEFULL\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
DebugPrint("%s joined game %d\n" _C_ session->UserData.Name _C_ atoi(id));
Send(session, "JOINGAME_OK\n");
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
/**
** Parse PARTGAME
*/
2005-09-25 10:32:15 -06:00
static void ParsePartGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
int ret;
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
// No args
while (*buf == ' ') ++buf;
if (*buf) {
Send(session, "ERR_BADPARAMETER\n");
return;
2005-04-03 10:07:40 -06:00
}
2005-04-17 12:39:41 -06:00
ret = PartGame(session);
if (ret == -1) {
Send(session, "ERR_NOTINGAME\n");
return;
} else if (ret == -2) {
Send(session, "ERR_GAMESTARTED\n");
return;
}
2005-04-03 10:07:40 -06:00
2005-04-17 12:39:41 -06:00
DebugPrint("%s left a game\n" _C_ session->UserData.Name);
Send(session, "PARTGAME_OK\n");
}
/**
** Parse ENDGAME
*/
2005-09-25 10:32:15 -06:00
static void ParseEndGame(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
2005-09-25 10:32:15 -06:00
char *result;
2005-04-17 12:39:41 -06:00
Parse1Arg(buf, &result);
Send(session, "ENDGAME_OK\n");
}
/**
** Parse MSG
*/
2005-09-25 10:32:15 -06:00
static void ParseMsg(Session *session, char *buf)
2005-04-17 12:39:41 -06:00
{
}
/**
** ParseBuffer: Handler client/server interaction.
**
2005-09-17 20:18:31 -06:00
** @param session Current session.
2005-04-17 12:39:41 -06:00
*/
2005-09-25 10:32:15 -06:00
static void ParseBuffer(Session *session)
2005-04-17 12:39:41 -06:00
{
2005-09-25 10:32:15 -06:00
char *buf;
2005-04-17 12:39:41 -06:00
if (!session || session->Buffer[0] == '\0') {
return;
}
buf = session->Buffer;
if (!strncmp(buf, "PING", 4)) {
ParsePing(session);
} else if (!session->UserData.LoggedIn) {
2005-04-17 12:39:41 -06:00
if (!strncmp(buf, "USER ", 5)) {
ParseUser(session, buf + 5);
} else if (!strncmp(buf, "REGISTER ", 9)) {
ParseRegister(session, buf + 9);
} else {
fprintf(stderr, "Unknown command: %s\n", session->Buffer);
Send(session, "ERR_BADCOMMAND\n");
}
} else {
if (!strncmp(buf, "USER ", 5) || !strncmp(buf, "REGISTER ", 9)) {
Send(session, "ERR_ALREADYLOGGEDIN\n");
} else if (!strncmp(buf, "CREATEGAME ", 11)) {
ParseCreateGame(session, buf + 11);
} else if (!strcmp(buf, "CANCELGAME") || !strncmp(buf, "CANCELGAME ", 11)) {
ParseCancelGame(session, buf + 10);
} else if (!strcmp(buf, "STARTGAME") || !strncmp(buf, "STARTGAME ", 10)) {
ParseStartGame(session, buf + 9);
} else if (!strcmp(buf, "LISTGAMES") || !strncmp(buf, "LISTGAMES ", 10)) {
ParseListGames(session, buf + 9);
} else if (!strncmp(buf, "JOINGAME ", 9)) {
ParseJoinGame(session, buf + 9);
} else if (!strcmp(buf, "PARTGAME") || !strncmp(buf, "PARTGAME ", 9)) {
ParsePartGame(session, buf + 8);
} else if (!strncmp(buf, "ENDGAME ", 8)) {
2005-04-17 13:45:34 -06:00
ParseEndGame(session, buf + 8);
2005-04-17 12:39:41 -06:00
} else if (!strncmp(buf, "MSG ", 4)) {
ParseMsg(session, buf + 4);
} else {
fprintf(stderr, "Unknown command: %s\n", session->Buffer);
Send(session, "ERR_BADCOMMAND\n");
}
}
2005-04-03 10:07:40 -06:00
}
/**
2005-04-17 12:39:41 -06:00
** Parse all session buffers
2005-04-03 10:07:40 -06:00
*/
int UpdateParser(void)
{
2005-09-25 10:32:15 -06:00
Session *session;
2005-04-03 10:07:40 -06:00
int len;
2005-09-25 10:32:15 -06:00
char *next;
2005-04-03 10:07:40 -06:00
if (!Pool || !Pool->First) {
2005-04-17 12:39:41 -06:00
// No connections
2005-04-03 10:07:40 -06:00
return 0;
}
2005-04-17 12:39:41 -06:00
for (session = Pool->First; session; session = session->Next) {
2005-04-03 10:07:40 -06:00
// Confirm full message.
2005-04-17 12:39:41 -06:00
while ((next = strpbrk(session->Buffer, "\r\n"))) {
*next++ = '\0';
if (*next == '\r' || *next == '\n') {
++next;
}
ParseBuffer(session);
// Remove parsed message
len = next - session->Buffer;
memmove(session->Buffer, next, sizeof(session->Buffer) - len);
session->Buffer[sizeof(session->Buffer) - len] = '\0';
2005-04-03 10:07:40 -06:00
}
}
return 0;
}
//@}