mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-13 08:47:23 +02:00
33 lines
1 KiB
C++
33 lines
1 KiB
C++
//
|
|
// OctreePacketProcessor.h
|
|
// interface/src/octree
|
|
//
|
|
// Created by Brad Hefta-Gaub on 8/12/13.
|
|
// Copyright 2013 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_OctreePacketProcessor_h
|
|
#define hifi_OctreePacketProcessor_h
|
|
|
|
#include <ReceivedPacketProcessor.h>
|
|
|
|
/// Handles processing of incoming voxel packets for the interface application. As with other ReceivedPacketProcessor classes
|
|
/// the user is responsible for reading inbound packets and adding them to the processing queue by calling queueReceivedPacket()
|
|
class OctreePacketProcessor : public ReceivedPacketProcessor {
|
|
Q_OBJECT
|
|
public:
|
|
OctreePacketProcessor();
|
|
|
|
signals:
|
|
void packetVersionMismatch();
|
|
|
|
protected:
|
|
virtual void processPacket(QSharedPointer<NLPacket> packet, SharedNodePointer sendingNode);
|
|
|
|
private slots:
|
|
void handleOctreePacket(QSharedPointer<NLPacket> packet, SharedNodePointer senderNode);
|
|
};
|
|
#endif // hifi_OctreePacketProcessor_h
|