Recovered from microbel
This commit is contained in:
113
server/driver/srvlistenerlist.C
Normal file
113
server/driver/srvlistenerlist.C
Normal file
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* PVVMUD a 3D MUD
|
||||
* Copyright (C) 1998-1999 Programvareverkstedet (pvv@pvv.org)
|
||||
*
|
||||
* 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 "pvvmud.H"
|
||||
#include "srvlistenerlist.H"
|
||||
#include "srvworldmanager.H"
|
||||
|
||||
CSrvListenerList::CSrvListenerList(){
|
||||
}
|
||||
|
||||
void CSrvListenerList::add( CSrvWorldManager * listener ){
|
||||
addLast((CObject*)listener);
|
||||
}
|
||||
|
||||
void CSrvListenerList::remove( CSrvWorldManager * listener ){
|
||||
CObjectList::remove((CObject*)listener);
|
||||
}
|
||||
|
||||
void CSrvListenerList::sendAnimation(CWorldAnimation * animation ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
listener->sendAnimation(animation);
|
||||
item = item->getNext();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
void CSrvListenerList::addCell(CWorldObject * cell ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
listener->sendAddCell((CSrvObject*)cell);
|
||||
item = item->getNext();
|
||||
}
|
||||
}
|
||||
|
||||
void CSrvListenerList::removeCell(CWorldObject * cell ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
listener->sendRemoveCell((CSrvObject*)cell);
|
||||
item = item->getNext();
|
||||
}
|
||||
}
|
||||
|
||||
void CSrvListenerList::addObject( CWorldObject * object ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
listener->sendAddObject((CSrvObject*)object);
|
||||
item = item->getNext();
|
||||
}
|
||||
}
|
||||
|
||||
void CSrvListenerList::removeObject( CWorldObject * object ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
listener->sendRemoveObject((CSrvObject*)object);
|
||||
item = item->getNext();
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
void CSrvListenerList::updatePosition( CWorldObject * object ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
item = item->getNext();
|
||||
listener->sendUpdatePosition( (CSrvObject*)object );
|
||||
}
|
||||
}
|
||||
|
||||
void CSrvListenerList::updateDirection( CWorldObject * object ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
item = item->getNext();
|
||||
listener->sendUpdateDirection( (CSrvObject*)object );
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
void CSrvListenerList::updateHierarchy( CWorldObject * object ){
|
||||
CObjectListItem * item = getFirst();
|
||||
while (item != NULL){
|
||||
CSrvWorldManager * listener = (CSrvWorldManager*)item->getObject();
|
||||
item = item->getNext();
|
||||
listener->sendUpdateHierarchy( (CSrvObject*)object );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user