hlswmaster-ng/modulelist.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-02-02 16:55:44 +01:00
#include "modulelist.h"
2006-04-16 21:02:41 +02:00
#include "logging.h"
2006-02-02 16:55:44 +01:00
2006-02-05 16:44:38 +01:00
ModuleList::ModuleList(Config& conf)
: conf(conf)
2006-02-02 16:55:44 +01:00
{
}
ModuleList::~ModuleList()
{
while (!mlist.isEmpty())
delete mlist.get();
}
void ModuleList::reg(Module* mod)
{
2006-02-05 16:44:38 +01:00
LogSystem::log(LOG_NOTICE, "Registering module '%s'", mod->getName());
mod->init(&conf);
2006-04-15 19:55:07 +02:00
mlist.add(mod);
2006-02-02 16:55:44 +01:00
}
void ModuleList::scan(MultiSock* msock)
{
Iterator<Module> *it = mlist.createIterator();
while (it->hasNext())
it->next()->scan(msock);
delete it;
}
int ModuleList::parse(NetPkt* pkt, GameList* slist)
{
2006-02-20 12:31:34 +01:00
int retval = PARSE_REJECT;
2006-02-02 16:55:44 +01:00
Iterator<Module> *it = mlist.createIterator();
while (it->hasNext()) {
retval = it->next()->parse(pkt, slist);
2006-02-20 12:31:34 +01:00
if (retval != PARSE_REJECT)
2006-02-02 16:55:44 +01:00
break;
}
delete it;
return retval;
}