mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 01:24:36 +02:00
36 lines
1.3 KiB
C++
36 lines
1.3 KiB
C++
//
|
|
// EntityNodeData.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_EntityNodeData_h
|
|
#define hifi_EntityNodeData_h
|
|
|
|
#include <udt/PacketHeaders.h>
|
|
|
|
#include <OctreeQueryNode.h>
|
|
|
|
class EntityNodeData : public OctreeQueryNode {
|
|
public:
|
|
virtual PacketType getMyPacketType() const override { return PacketType::EntityData; }
|
|
|
|
quint64 getLastDeletedEntitiesSentAt() const { return _lastDeletedEntitiesSentAt; }
|
|
void setLastDeletedEntitiesSentAt(quint64 sentAt) { _lastDeletedEntitiesSentAt = sentAt; }
|
|
|
|
// these can only be called from the OctreeSendThread for the given Node
|
|
void insertEntitySentLastFrame(const QUuid& entityID) { _entitiesSentLastFrame.insert(entityID); }
|
|
void removeEntitySentLastFrame(const QUuid& entityID) { _entitiesSentLastFrame.remove(entityID); }
|
|
bool sentEntityLastFrame(const QUuid& entityID) { return _entitiesSentLastFrame.contains(entityID); }
|
|
|
|
private:
|
|
quint64 _lastDeletedEntitiesSentAt { usecTimestampNow() };
|
|
QSet<QUuid> _entitiesSentLastFrame;
|
|
};
|
|
|
|
#endif // hifi_EntityNodeData_h
|