mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
"Awareness" refers to an entity's view of the surrounding world with regards to how the entity could navigate. We use Recast/Detour to build a navmesh for the entity. However, since each world can have many NPCs, each one with their own mind, we don't want to keep a complete navmesh for each single mind. This will quickly become expensive. Therefore we want to share awarenesses between multiple entities of the same type. So, for example, all fishes handled by the same ai client will share one single awareness of the world. This to some degree involves some cheating, since AI minds now might get knowledge of the world they otherwise wouldn't have. We consider this to not be such a big issue. If this is unacceptable for some worlds these should then disable awareness sharing and take the resource hit.
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
/*
|
|
Copyright (C) 2013 Erik Ogenvik
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef POSSESSIONCLIENT_H_
|
|
#define POSSESSIONCLIENT_H_
|
|
|
|
#include "BaseClient.h"
|
|
#include "LocatedEntityRegistry.h"
|
|
#include "common/OperationsDispatcher.h"
|
|
#include <map>
|
|
#include <unordered_map>
|
|
|
|
class MindKit;
|
|
class PossessionAccount;
|
|
|
|
/**
|
|
* Manages possession requests from the server and spawns new AI clients.
|
|
*/
|
|
class PossessionClient: public BaseClient, public LocatedEntityRegistry
|
|
{
|
|
public:
|
|
PossessionClient(MindKit& mindFactory);
|
|
virtual ~PossessionClient();
|
|
|
|
bool idle();
|
|
double secondsUntilNextOp() const;
|
|
bool isQueueDirty() const;
|
|
void markQueueAsClean();
|
|
|
|
void createAccount(const std::string& accountId);
|
|
|
|
virtual void addLocatedEntity(LocatedEntity* mind);
|
|
virtual void removeLocatedEntity(LocatedEntity* mind);
|
|
|
|
protected:
|
|
|
|
virtual void operation(const Operation & op, OpVector & res);
|
|
void operationFromEntity(const Operation & op, LocatedEntity& locatedEntity);
|
|
double getTime() const;
|
|
|
|
|
|
MindKit& m_mindFactory;
|
|
|
|
PossessionAccount* m_account;
|
|
|
|
OperationsDispatcher m_operationsDispatcher;
|
|
|
|
std::unordered_map<long, LocatedEntity*> m_minds;
|
|
|
|
};
|
|
|
|
#endif /* POSSESSIONCLIENT_H_ */
|