khanat-code-old/code/ryzom/server/src/ai_service/ai_mgr_pet.h
2010-05-08 15:37:08 +02:00

106 lines
3.9 KiB
C++

// Ryzom - MMORPG Framework <http://dev.ryzom.com/projects/ryzom/>
// Copyright (C) 2010 Winch Gate Property Limited
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef RYAI_MGR_PET_H
#define RYAI_MGR_PET_H
#include "ai_mgr.h"
#include "ai_bot_pet.h"
#include "server_share/pet_interface_msg.h"
class CPetOwner;
typedef std::map<NLMISC::CEntityId, uint32> TEntityIdMapUint32;
//////////////////////////////////////////////////////////////////////////////
// CMgrPet //
//////////////////////////////////////////////////////////////////////////////
/// This is the manager class for pets, pack animals and steeds
class CMgrPet
: public CManager
{
public:
CMgrPet(IManagerParent* parent, uint32 alias, std::string const& name, std::string const& filename) ;
void init() { }
void update();
void release() { }
virtual void spawn() { CManager::spawn(); }
void despawnMgr() { CManager::despawnMgr(); }
CStateMachine* getStateMachine() { return NULL; }
void createPetGroup(NLMISC::CEntityId const& petOwnerId);
CGrpPet* getPetGroup(NLMISC::CEntityId const& petOwnerId);
void removePetGroup(NLMISC::CEntityId const& petOwnerId);
AITYPES::TMgrType type() const { return AITYPES::MgrTypePet; }
void serviceEvent(CServiceEvent const& info);
virtual std::string getOneLineInfoString() const { return std::string("Pet manager '") + getName() + "'"; }
private:
TEntityIdMapUint32 _EntityIdToIndex;
};
//////////////////////////////////////////////////////////////////////////////
// CPetSpawnMsgImp //
//////////////////////////////////////////////////////////////////////////////
class CPetSpawnMsgImp
: public CPetSpawnMsg
{
virtual void callback(std::string const& name, NLNET::TServiceId id);
};
//////////////////////////////////////////////////////////////////////////////
// CPetSetOwnerImp //
//////////////////////////////////////////////////////////////////////////////
class CPetSetOwnerImp
: public CPetSetOwner
{
virtual void callback(std::string const& name, NLNET::TServiceId id);
};
//////////////////////////////////////////////////////////////////////////////
// CPetCommandMsgImp //
//////////////////////////////////////////////////////////////////////////////
class CPetCommandMsgImp
: public CPetCommandMsg
{
virtual void callback(std::string const& name, NLNET::TServiceId id);
};
/****************************************************************************/
/* Inlined methods */
/****************************************************************************/
//////////////////////////////////////////////////////////////////////////////
// CMgrPet //
//////////////////////////////////////////////////////////////////////////////
inline
CMgrPet::CMgrPet(IManagerParent* parent, uint32 alias, std::string const& name, std::string const& filename)
: CManager(parent, alias, name, filename)
{
}
#endif