2006-02-02 16:29:30 +01:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 03/2005 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. *
|
|
|
|
***************************************************************************/
|
|
|
|
#include <string.h>
|
|
|
|
#include "plugin.h"
|
|
|
|
|
|
|
|
struct scan_ports port_arr[] = {
|
2006-02-02 16:31:52 +01:00
|
|
|
{ 27960, 27969, 6 }, /* Quake3(6), Elite Force(7) */
|
|
|
|
{ 28960, 28963, 31 }, /* Call of Duty(31) */
|
2006-02-02 16:29:30 +01:00
|
|
|
{ 0,0,0 }
|
|
|
|
};
|
|
|
|
|
2006-02-02 16:31:52 +01:00
|
|
|
static char scanmsg[] = "\xff\xff\xff\xffgetStatus";
|
|
|
|
static char replymsg[] = "\xff\xff\xff\xffstatusResponse";
|
2006-02-02 16:29:30 +01:00
|
|
|
|
|
|
|
int scan(void) {
|
|
|
|
pkt_send_portarr(NULL, port_arr, scanmsg, strlen(scanmsg));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int parse(struct net_pkt *pkt) {
|
|
|
|
int gameid;
|
|
|
|
|
2006-02-02 16:31:52 +01:00
|
|
|
if (!(gameid = pkt_check_portarr(pkt, port_arr)))
|
|
|
|
return 0;
|
|
|
|
|
2006-02-02 16:29:30 +01:00
|
|
|
if (pkt_memcmp(pkt, 0, replymsg, strlen(replymsg)))
|
|
|
|
return 0;
|
|
|
|
|
2006-02-02 16:31:52 +01:00
|
|
|
if (gameid == 6) {
|
|
|
|
if (pkt_memmem(pkt, 0, "\\version\\Q3 ", 12)) {
|
|
|
|
gameid = 6;
|
|
|
|
|
|
|
|
} else if (pkt_memmem(pkt, 0, "\\version\\ST:V ", 14)) {
|
|
|
|
gameid = 7;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2006-02-02 16:29:30 +01:00
|
|
|
|
|
|
|
server_add_pkt(gameid, pkt);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct hlswmaster_plugin plugin = {
|
2006-02-02 16:31:52 +01:00
|
|
|
.name = "q3engine",
|
2006-02-02 16:29:30 +01:00
|
|
|
.scan = &scan,
|
|
|
|
.parse = &parse,
|
|
|
|
};
|
|
|
|
|
|
|
|
void _init(void) {
|
|
|
|
register_plugin(&plugin);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _fini(void) {
|
|
|
|
unregister_plugin(&plugin);
|
|
|
|
}
|