/*
 * 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 _PVVMUDCLIENT_H
#define _PVVMUDCLIENT_H

#include <stdlib.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <netdb.h>
#include "gui.H"
#include "glutgui.H"
#include "renderer.H"
#include "console.H"
#include "inputfunction.H"
#include "time.H"
#include "clisrvmanager.H"
#include "timekeeper.H"
#include "option.H"
#include "clientcache.H"
#include "stdinput.H"
#include "clicmdparser.H"

class CPvvmudClient : public CTimeKeeperItem {
public:
  CGUI * m_gui;
  CRenderer * m_renderer;
  CConsole * m_console;
  CCliCmdParser * m_commandParser;

  CCliSrvManager * m_manager;
  CTimeKeeper * m_timeKeeper;
  CInputFunction * m_inputFunction;
  CStdInput * m_stdInput;
  COption * m_option;
  CTime m_lastTime, m_currTime;
  
  //  Cache-objects
  CCliGeometryCache * m_geometryCache;
  CCliTextureCache * m_textureCache;
  CCliMaterialCache * m_materialCache;

  CPvvmudClient(int argc,char *argv[]);
  void run();
  void initGlobalData(COption * option);
  CGeometryCache * getGeometryCache();
  CTextureCache * getTextureCache();
  CMaterialCache * getMaterialCache();

  CConsole * getConsole();
  CGUI * getGUI();
  CCliSrvManager * getManager();
  CTimeKeeper * getTimeKeeper();
  CInputFunction * getInputFunction();
  CStdInput * getStdInput();
  COption * getOption();

  virtual int timeKeeperHB();

  virtual void pollConsole();

};

#endif // _PVVMUDCLIENT_H