mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 16:02:58 +02:00
24 lines
759 B
C
24 lines
759 B
C
//
|
|
// OctreeServerConsts.h
|
|
// assignment-client/src/octree
|
|
//
|
|
// Created by Brad Hefta-Gaub on 12/4/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_OctreeServerConsts_h
|
|
#define hifi_OctreeServerConsts_h
|
|
|
|
#include <SharedUtil.h>
|
|
#include <NodeList.h> // for MAX_PACKET_SIZE
|
|
#include <JurisdictionSender.h>
|
|
|
|
const int MAX_FILENAME_LENGTH = 1024;
|
|
const int INTERVALS_PER_SECOND = 60;
|
|
const int OCTREE_SEND_INTERVAL_USECS = (1000 * 1000)/INTERVALS_PER_SECOND;
|
|
const int SENDING_TIME_TO_SPARE = 5 * 1000; // usec of sending interval to spare for calculating voxels
|
|
|
|
#endif // hifi_OctreeServerConsts_h
|