mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-26 02:35:16 +02:00
56 lines
2 KiB
C++
56 lines
2 KiB
C++
//
|
|
// EntityServer.h
|
|
// assignment-client/src/entities
|
|
//
|
|
// Created by Brad Hefta-Gaub on 4/29/14
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_EntityServer_h
|
|
#define hifi_EntityServer_h
|
|
|
|
#include "../octree/OctreeServer.h"
|
|
|
|
#include "EntityItem.h"
|
|
#include "EntityServerConsts.h"
|
|
#include "EntityTree.h"
|
|
|
|
/// Handles assignments of type EntityServer - sending entities to various clients.
|
|
class EntityServer : public OctreeServer, public NewlyCreatedEntityHook {
|
|
Q_OBJECT
|
|
public:
|
|
EntityServer(const QByteArray& packet);
|
|
~EntityServer();
|
|
|
|
// Subclasses must implement these methods
|
|
virtual OctreeQueryNode* createOctreeQueryNode();
|
|
virtual char getMyNodeType() const { return NodeType::EntityServer; }
|
|
virtual PacketType getMyQueryMessageType() const { return PacketTypeEntityQuery; }
|
|
virtual const char* getMyServerName() const { return MODEL_SERVER_NAME; }
|
|
virtual const char* getMyLoggingServerTargetName() const { return MODEL_SERVER_LOGGING_TARGET_NAME; }
|
|
virtual const char* getMyDefaultPersistFilename() const { return LOCAL_MODELS_PERSIST_FILE; }
|
|
virtual PacketType getMyEditNackType() const { return PacketTypeEntityEditNack; }
|
|
virtual QString getMyDomainSettingsKey() const { return QString("entity_server_settings"); }
|
|
|
|
// subclass may implement these method
|
|
virtual void beforeRun();
|
|
virtual bool hasSpecialPacketToSend(const SharedNodePointer& node);
|
|
virtual int sendSpecialPacket(const SharedNodePointer& node, OctreeQueryNode* queryNode, int& packetsSent);
|
|
|
|
virtual void entityCreated(const EntityItem& newEntity, const SharedNodePointer& senderNode);
|
|
virtual void readAdditionalConfiguration(const QJsonObject& settingsSectionObject);
|
|
|
|
public slots:
|
|
void pruneDeletedEntities();
|
|
|
|
protected:
|
|
virtual Octree* createTree();
|
|
|
|
private:
|
|
EntitySimulation* _entitySimulation;
|
|
};
|
|
|
|
#endif // hifi_EntityServer_h
|