hlswmaster-ng/gameparser.cpp

64 lines
2.2 KiB
C++
Raw Permalink Normal View History

2006-04-16 21:37:00 +02:00
/***************************************************************************
* Copyright (C) 04/2006 by Olaf Rempel *
* razzor@kopf-tisch.de *
* *
* 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; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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. *
***************************************************************************/
2006-04-16 21:02:41 +02:00
#include "gameparser.h"
2006-02-02 16:55:44 +01:00
#include "logging.h"
#include "netpkt.h"
GameParser::GameParser(GameScanner& scanner, ModuleList& modList, GameList& gameList)
: scanner(scanner), modList(modList), gameList(gameList)
2006-02-02 16:55:44 +01:00
{
}
int GameParser::execute(void* arg)
{
2006-03-06 20:13:26 +01:00
NetPkt* pkt;
char buf[64], *p;
int ret;
2006-02-02 16:55:44 +01:00
while (1) {
pkt = scanner.getPkt();
2006-03-06 20:13:26 +01:00
ret = modList.parse(pkt, &gameList);
2006-02-05 16:44:38 +01:00
2006-02-02 16:55:44 +01:00
switch (ret) {
2006-03-06 20:13:26 +01:00
case PARSE_ACCEPT_FAKE:
2006-02-02 16:55:44 +01:00
pkt->show(buf, sizeof(buf));
2006-03-06 20:13:26 +01:00
LogSystem::log(LOG_NOTICE, "not supported Game: %s", buf);
2006-02-02 16:55:44 +01:00
2006-02-20 12:31:34 +01:00
case PARSE_ACCEPT:
2006-02-02 16:55:44 +01:00
delete pkt;
2006-03-05 02:28:19 +01:00
2006-02-20 12:31:34 +01:00
case PARSE_ACCEPT_FREED:
2006-02-02 16:55:44 +01:00
break;
2006-03-06 20:13:26 +01:00
default:
case PARSE_REJECT:
pkt->show(buf, sizeof(buf));
LogSystem::log(LOG_NOTICE, "unknown Packet: %s", buf);
p = pkt->showfull();
LogSystem::log(LOG_DEBUG, "%s", p);
2006-04-15 19:55:07 +02:00
delete [] p;
2006-03-06 20:13:26 +01:00
delete pkt;
break;
2006-03-05 02:28:19 +01:00
}
2006-02-02 16:55:44 +01:00
}
return 0;
}