79 lines
1.9 KiB
C++
79 lines
1.9 KiB
C++
/*
|
|
* 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
|
|
*
|
|
*/
|
|
#ifndef _GOS_H
|
|
#define _GOS_H
|
|
|
|
#include "timekeeper.H"
|
|
#include "gossrvsocket.H"
|
|
#include "gossrvsrvsocket.H"
|
|
#include "geocache.H"
|
|
#include "matcache.H"
|
|
#include "texcache.H"
|
|
#include "msggos.H"
|
|
#include "objectlist.H"
|
|
#include "option.H"
|
|
|
|
class CGOSCliManager;
|
|
class CGOSSrvManager;
|
|
|
|
class CGOS : public CTimeKeeperItem {
|
|
|
|
CTimeKeeper * m_timeKeeper;
|
|
|
|
CGOSCliSrvSocket * m_cliSocket;
|
|
CGOSSrvSrvSocket * m_srvSocket;
|
|
|
|
CGeoCache * m_geoCache;
|
|
CMatCache * m_matCache;
|
|
CTexCache * m_texCache;
|
|
|
|
CObjectList * m_cliManagerList;
|
|
// Don't allow a list of servers
|
|
CGOSSrvManager * m_srvManager;
|
|
|
|
public:
|
|
CGOS(COption *option);
|
|
virtual ~CGOS();
|
|
|
|
CInetAddress &getAddress();
|
|
|
|
virtual int timeKeeperHB();
|
|
|
|
void addCliManager( CGOSCliManager * cliManager );
|
|
void removeCliManager( CGOSCliManager * cliManager );
|
|
|
|
void addSrvManager( CGOSSrvManager * srvManager );
|
|
void removeSrvManager( CGOSSrvManager * srvManager );
|
|
|
|
void startSrvSocket();
|
|
void stopSrvSocket();
|
|
|
|
void quit();
|
|
void restart();
|
|
void run();
|
|
|
|
CMsgGeometry * getGeometry(int id);
|
|
CMsgMaterial * getMaterial(int id);
|
|
CMsgTexture * getTexture(int id);
|
|
|
|
};
|
|
|
|
#endif // _GOS_H
|