1
0
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
May B. f5c46d5b46 Gitlab CI 2020-11-04 22:29:24 +01:00
May B. f7c2f7069e Remove some useless allocations 2020-11-04 20:25:14 +01:00
May B. 9e9bb8987f Move server full check 2020-11-04 14:50:48 +01:00
30 changed files with 245 additions and 54 deletions

29
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,29 @@
image: gcc
before_script:
- apt-get update
- apt-get install -y --no-install-recommends cmake libssl-dev libvulkan-dev xorg-dev doxygen graphviz
build:
stage: build
script:
- mkdir build # compile
- cd build
- cmake ..
- make -j2 univerxel univerxel-client univerxel-server docs
- mkdir -p ../out/full ../out/client ../out/server/content # package artifacts
- cp -r univerxel content ../out/full
- cp -r univerxel-client content ../out/client
- rm ../out/client/content/cert.pem ../out/client/content/key.pem ../out/client/content/zstd.dict
- cp univerxel-server ../out/server
- cp content/cert.pem content/key.pem content/zstd.dict ../out/server/content
artifacts:
paths:
- out/full
- out/client
- out/server
- build/docs
expire_in: 1 week
# cache:
# paths:
# - "*.o"

20
.vscode/launch.json vendored
View File

@ -41,6 +41,26 @@
}
]
},
{
"name": "Run server (gdb)",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/univerxel-server",
"args": ["server.toml"],
"preLaunchTask": "Build server",
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Activer l'impression en mode Pretty pour gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
{
"name": "Run server (gdb debug)",
"type": "cppdbg",

6
.vscode/tasks.json vendored
View File

@ -100,6 +100,12 @@
"dependsOrder": "sequence",
"dependsOn": ["cmake debug", "make"]
},
{
"label": "Build server",
"group": "build",
"dependsOrder": "sequence",
"dependsOn": ["cmake", "make server"]
},
{
"label": "Build debug server",
"group": "build",

View File

@ -1,5 +1,5 @@
/**
* \file server.cpp
* \file client.cpp
* \brief Univerxel client
* \author Maelys Bois
* \version 0.0.1

View File

@ -24,6 +24,7 @@ inline std::string toHexa(const glm::vec4& rgb) {
return sstr.str();
}
/// Client side configuration
struct options {
public:
options(toml::node_view<toml::node> config) {

View File

@ -370,10 +370,9 @@ namespace contouring {
const auto area_offset = glm::divide(std::get<0>(area.first).as_voxel());
robin_hood::unordered_set<chunk_pos> done;
for (const auto& occ: occlusion) {
const geometry::Ray ray(start, occ, dist);
std::vector<voxel_pos> points; //TODO: iterator
ray.grid(points);
for(auto& point: points) {
geometry::Ray::iterator it(geometry::Ray(start, occ, dist));
glm::llvec3 point;
while (it.next(point)) {
auto it = area.second.find(glm::lvec3(point) - area_offset);
const auto buffer = solid ? it->second.first : it->second.second;
if(it != area.second.end() && buffer != NULL && done.insert(it->first).second) {

View File

@ -61,9 +61,17 @@ int Client::connectionCallback(uint64_t stream_id, uint8_t* bytes, size_t length
case picoquic_callback_stream_fin: {
assert(stream_ctx::IsServerId(stream_id));
auto stream_ctx = (in_stream_ctx *)v_stream_ctx;
const auto is_fin = fin_or_event == picoquic_callback_stream_fin;
/* Data arrival on stream #x, maybe with fin mark */
if (stream_ctx == NULL) { // New stream from server
if (stream_ctx == NULL) {
if (is_fin) { // Single frame packet
if (length > 0) {
onPacket(data::out_view(bytes, length), PacketFlags::TINY);
}
reset(stream_id);
break;
}
// New long stream from server
stream_ctx = receive(stream_id);
}
@ -71,7 +79,7 @@ int Client::connectionCallback(uint64_t stream_id, uint8_t* bytes, size_t length
stream_ctx->buffer.write(bytes, length);
}
if (fin_or_event == picoquic_callback_stream_fin) {
if (is_fin) {
if (onPacket(data::out_view(stream_ctx->buffer.data.data(), stream_ctx->buffer.data.size()), PacketFlags::NONE)) {
close(stream_ctx);
} else {

View File

@ -12,6 +12,7 @@ enum queue: uint8_t {
count
};
/// Network client
class Client final: public Context, public Connection {
public:
Client(const address& ct,

View File

@ -10,6 +10,7 @@
class Window;
class Camera;
/// Graphics pipeline
namespace render {
class Model;
class LodModel;

View File

@ -323,7 +323,7 @@ UI::Actions UI::draw(config::client::options &options, state::state &state, cons
const auto flags = ImGuiInputTextFlags_EnterReturnsTrue;
// | ImGuiInputTextFlags_CallbackCompletion | ImGuiInputTextFlags_CallbackHistory;
ImGui::GetColumnWidth();
if (ImGui::InputText("", state.console.buffer.data(), state.console.buffer.size(), flags /*, TODO: callback, context*/) && strlen(state.console.buffer.data()) > 0)
if (ImGui::InputText("", state.console.buffer.data(), state.console.buffer.size(), flags /*TODO: completion (, callback, context)*/) && strlen(state.console.buffer.data()) > 0)
actions |= Actions::Message;
// Auto-focus on window apparition

View File

@ -65,7 +65,7 @@ std::optional<Image::properties> Image::Read(const std::string& imagepath, std::
default:
return {};
}
//FIXME: miplevels with size < block size (2 last) are corrupted
//WONT-FIX: miplevels with size < block size (2 last) are corrupted
const uint maxMipmapLevels = 1 + std::floor(std::log2(std::max(info.size.height, info.size.width))) - 2;
info.mipmapLevels = std::min(maxMipmapLevels, info.mipmapLevels);

View File

@ -10,6 +10,7 @@
#include "api/Images.hpp"
struct windowOptions;
/// OpenGL graphics pipeline
namespace render::gl {
/// OpenGL rendering

View File

@ -13,7 +13,6 @@ namespace render {
namespace render::gl {
class Renderer;
}
/// OpenGL programs
namespace pass {
/// OpenGL shaders pipeline
class Program {

View File

@ -188,7 +188,7 @@ bool Renderer::Load(Window& window, const renderOptions& opt, const windowOption
appInfo.applicationVersion = VK_MAKE_VERSION(0, 0, 1);
appInfo.pEngineName = "No Engine";
appInfo.engineVersion = VK_MAKE_VERSION(1, 0, 0);
appInfo.apiVersion = VK_API_VERSION_1_2;
appInfo.apiVersion = VK_MAKE_VERSION(1, 2, 0);
VkInstanceCreateInfo createInfo{};
createInfo.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;

View File

@ -3,6 +3,7 @@
#include "forward.hpp"
struct windowOptions;
/// Vulkan graphics pipeline
namespace render::vk {
class Allocator;
class SwapChain;

View File

@ -40,7 +40,7 @@ void DistantUniverse::update(voxel_pos pos, float deltaTime) {
if (glm::length2(diff - it_c->first) > glm::pow2(keepDistance)) {
it_c = chunks.erase(it_c);
} else {
if(const auto neighbors = std::dynamic_pointer_cast<world::client::EdittableChunk>(it_c->second)->update(deltaTime, true /*FIXME: rnd from contouring*/)) {
if(const auto neighbors = std::dynamic_pointer_cast<world::client::EdittableChunk>(it_c->second)->update(deltaTime, true /*MAYBE: random update*/)) {
contouring->onUpdate(std::make_pair(area.first, it_c->first), diff, chunks, neighbors.value());
}
++it_c;

View File

@ -1,15 +1,18 @@
#pragma once
#include <fstream>
#include <vector>
#include "../data/mem.hpp"
#include "../utils/logger.hpp"
namespace data {
/// File loader
class file_content: public std::vector<char> {
public:
// Read first
file_content(const std::vector<std::string>& paths): std::vector<char>() {
/// Read first
file_content(const std::vector<std::string>& paths, data::out_view prefix = data::out_view(nullptr, 0)):
std::vector<char>(), prefix_size(prefix.size())
{
std::ifstream is = [&]() {
for(auto& path: paths) {
std::ifstream is(path, std::ios::in | std::ios::binary | std::ios::ate);
@ -22,10 +25,18 @@ public:
}();
const auto end = is.tellg();
is.seekg(0, std::ios::beg);
resize(end - is.tellg());
is.read(data(), size());
resize(end - is.tellg() + prefix_size);
memcpy(data(), prefix.ptr, prefix_size);
is.read(data() + prefix_size, size());
is.close();
}
size_t prefix_size;
/// Data after prefix
data::out_view content() const {
return data::out_view((const uint8_t*)data() + prefix_size, size() - prefix_size);
}
};
}

View File

@ -4,7 +4,9 @@
#include <vector>
#include <optional>
/// Generation indexing and containers (index, generation)
namespace data::generational {
/// Generation element identifier
struct id {
id(size_t index, size_t generation = 0): index(index), generation(generation) { }
id(): id(0) { }
@ -14,6 +16,7 @@ namespace data::generational {
bool operator==(const id &i) const { return index == i.index && generation == i.generation; }
};
/// Closed generational allocator
class allocator {
public:
allocator() { }
@ -68,6 +71,7 @@ namespace data::generational {
std::vector<size_t> freed;
};
/// Generational container accessible by id
template<typename T>
class vector {
public:
@ -229,6 +233,7 @@ namespace data::generational {
std::vector<size_t> freed;
};
/// Dummy generational container without allocation nor validation. A view to vector
template<typename T>
class view_vector: public std::vector<std::optional<T>> {
public:

View File

@ -2,16 +2,19 @@
#include <vector>
#include <cassert>
#include <cstring>
#include <memory>
namespace data {
/// Map vector to istream
struct vec_istream: std::streambuf {
vec_istream(std::vector<char> &vec) {
this->setg(&vec[0], &vec[0], &vec[0] + vec.size());
}
};
/// Abstract data with moving cursor
struct view {
view(size_t size): siz(size) { }
@ -21,6 +24,7 @@ struct view {
constexpr size_t size() const { return siz; }
constexpr bool isDone() const { return cur >= siz; }
};
/// Vector with in_view interface
struct in_vector {
/// 512 Mébibits
static constexpr size_t MAX_SIZE = 1ul << 26;
@ -40,6 +44,7 @@ struct in_vector {
memcpy(writeTo(len), data, len);
}
};
// Abstract data writer
struct in_view: view {
in_view(uint8_t *ptr, size_t size): view(size), ptr(ptr) {
assert(ptr != nullptr);
@ -56,6 +61,7 @@ struct in_view: view {
memcpy(writeTo(len), data, len);
}
};
/// Abstract data reader
struct out_view: view {
out_view(): out_view(nullptr, 0) { }
out_view(const uint8_t *ptr, size_t size): view(size), ptr(ptr) { }
@ -74,7 +80,9 @@ struct out_view: view {
constexpr const uint8_t* data() const { return ptr; }
constexpr size_t remaining() const { return size() - cur; }
};
/// Pointer to opaque owned memory
using handle_t = std::shared_ptr<const void>;
/// out_view with owned data
struct out_buffer: out_view {
out_buffer(): out_view() { }
out_buffer(const out_view& view, const handle_t& handle):

View File

@ -83,6 +83,55 @@ namespace geometry {
}
points.push_back(current);
}
/// Iterator implementation of grid
struct iterator {
enum class axis { X, Y, Z };
iterator(const Ray& r): current(r.from.as_voxel()),
d(r.dir * r.dist), l(glm::abs(d)),
dir((l.x >= l.y) && (l.x >= l.z) ? axis::X : ((l.y >= l.x) && (l.y >= l.z) ? axis::Y : axis::Z)),
count(dir == axis::X ? l.x : (dir == axis::Y ? l.y : l.z)),
inc(swap(glm::llvec3((d.x < 0) ? -1 : 1, (d.y < 0) ? -1 : 1, (d.z < 0) ? -1 : 1), dir)),
delta(swap(l << 1ll, dir)), err_1(delta.y - count), err_2(delta.z - count) { }
static constexpr inline glm::llvec3 swap(const glm::llvec3& in, const axis dir) { return dir == axis::X ? in :
(dir == axis::Y ? glm::llvec3(in.y, in.z, in.x) : glm::llvec3(in.z, in.x, in.y)); }
static constexpr inline long long& get(glm::llvec3& in, const axis dir, const axis target) {
const axis v = (axis)(((int)dir + (int)target) % 3);
return v == axis::X ? in.x : (v == axis::Y ? in.y : in.z);
}
bool next(glm::llvec3& out) {
if (count < 0)
return false;
count--;
out = current;
if (err_1 > 0) {
get(current, dir, axis::Y) += inc.y;
err_1 -= delta.x;
}
if (err_2 > 0) {
get(current, dir, axis::Z) += inc.z;
err_2 -= delta.x;
}
err_1 += delta.y;
err_2 += delta.z;
get(current, dir, axis::X) += inc.x;
return true;
}
glm::llvec3 current;
const glm::llvec3 d;
const glm::llvec3 l;
const axis dir;
glm::llvec3::value_type count;
const glm::llvec3 inc;
const glm::llvec3 delta;
int err_1;
int err_2;
};
IBox::ContainmentType intersect(const IBox& box) const {
const glm::llvec3 start = from.as_voxel();

View File

@ -7,6 +7,7 @@
namespace net {
/// Abstract stream
struct stream_ctx {
stream_ctx(uint64_t id): stream_id(id) { }
uint64_t stream_id;
@ -17,6 +18,7 @@ struct stream_ctx {
friend bool operator==(const stream_ctx &a, const stream_ctx &b) { return a.stream_id == b.stream_id; }
};
/// Outgoing stream
struct out_stream_ctx: stream_ctx {
out_stream_ctx(uint64_t id, uint8_t queue_id, const data::out_buffer& buf):
stream_ctx(id), buffer(buf), queue_id(queue_id) { }
@ -24,13 +26,16 @@ struct out_stream_ctx: stream_ctx {
data::out_buffer buffer;
uint8_t queue_id;
};
/// Incoming stream
struct in_stream_ctx: stream_ctx {
in_stream_ctx(uint64_t id): stream_ctx(id) { }
data::in_vector buffer;
};
/// Informations about packets
enum class PacketFlags {
NONE = 0,
DATAGRAM = 1 << 0,
TINY = 1 << 1,
};
/// Abstract QUIC context
@ -155,7 +160,6 @@ private:
std::forward_list<in_stream_ctx> incoming;
// MAYBE: add bidirectional streams
// TODO: premanant streams: background, priority
};
}

View File

@ -4,11 +4,13 @@
#include "../utils/logger.hpp"
#include <picoquic/picosocks.h>
/// Network protocol
namespace net {
/// Application Protocol Negotiation
constexpr auto ALPN = "univerxel_quic";
/// Reasons for client server connection to break
enum class disconnect_reason: uint16_t {
UNEXPECTED = 0,
// Client quit
@ -20,6 +22,7 @@ enum class disconnect_reason: uint16_t {
PROTOCOL_VIOLATION = 15,
};
/// Packets from server to client
enum class server_packet_type: uint8_t {
/// MAYBE: HELLO = 0,
@ -50,7 +53,6 @@ enum class server_packet_type: uint8_t {
/// Update entities instances position and velocity
/// {size_t(entity), size_t(count), {size_t(index), ifvec3(pos), vec3(velocity)}[]}[]
/// FIXME: fromat to fit PICOQUIC_MAX_PACKET_SIZE
ENTITIES = 21,
/// World compression dictionary
@ -64,6 +66,7 @@ enum class server_packet_type: uint8_t {
/// char[] (not null terminated)
MESSAGE = 29,
};
/// Packets from client to server
enum class client_packet_type: uint8_t {
/// Interact with voxels
/// actions::FillShape
@ -84,6 +87,7 @@ enum class client_packet_type: uint8_t {
constexpr auto MAX_PENDING_CHUNK_COUNT = 256;
/// Server address as name(ip or dns name) and port
struct address {
std::string host;
int port;
@ -103,9 +107,12 @@ struct address {
return os << ct.host << ':' << ct.port;
}
};
/// Server properties
struct exposure: address {
uint32_t max_connections;
/// TLS private key
std::string key;
/// TLS public key
std::string cert;
};

View File

@ -6,6 +6,8 @@
namespace net {
//TODO: preallocate static data pool
/// Helper to write allocated packets
class PacketWriter final {
public:
PacketWriter(size_t size): buffer((uint8_t*)malloc(size), size) { }
@ -27,6 +29,37 @@ public:
write(&d, sizeof(d));
}
struct varying_part {
varying_part(data::in_view &buffer): buffer(buffer), visible_size(0) { }
~varying_part() {
buffer.siz = buffer.cur + visible_size;
buffer.cur = buffer.siz;
}
data::in_view &buffer;
size_t visible_size;
constexpr size_t size() const { return visible_size; }
void* data() { return buffer.writeTo(0); }
void reserve(size_t target) {
if (target >= buffer.siz - buffer.cur) {
auto old = buffer.ptr;
buffer.ptr = (uint8_t*)malloc(target);
memcpy(buffer.ptr, old, buffer.siz);
free(old);
buffer.siz = target;
}
}
void resize(size_t target) {
reserve(target);
visible_size = target;
}
};
/// Only from resize, write, resize down
varying_part varying() {
return varying_part(buffer);
}
bool isFull() const {
return buffer.isDone();
}
@ -67,6 +100,7 @@ private:
data::in_view buffer;
};
/// Helper to read out_view
class PacketReader final {
public:
PacketReader(const data::out_view& buf): buffer(buf) { }

View File

@ -4,6 +4,7 @@
#include "world/actions.hpp"
#include "geometry/Faces.hpp"
/// Link between world::server::SharedUniverse and world::client::LocalUniverse
struct server_handle {
bool running = false;
const world::client::area_map *areas;

View File

@ -1,8 +1,7 @@
#pragma once
#include <zstd.h>
#include <vector>
#include <cassert>
#include "../data/mem.hpp"
#include "logger.hpp"
namespace zstd {
@ -73,6 +72,7 @@ namespace zstd {
class dict_set {
public:
dict_set(const std::vector<char>& data) { load(data.data(), data.size()); }
dict_set(const data::out_view& data) { load(data.data(), data.size()); }
~dict_set() {
ZSTD_freeCDict(c);
ZSTD_freeDDict(d);

View File

@ -7,20 +7,19 @@ namespace world {
template<class Areas>
Universe::ray_result Raycast(const geometry::Ray& ray, const Areas& areas) {
//TODO: iterator
//MAYBE: ray + offset to get float precision
std::vector<voxel_pos> points;
ray.grid(points);
Universe::ray_result target;
size_t dist = points.size();
size_t dist = UINT32_MAX - 1;
for(auto& area: areas) {
if(ray.intersect(area.second->getBounding()) != geometry::IBox::ContainmentType::Disjoint) {
const auto &offset = area.second->getOffset().as_voxel();
const auto &chunks = area.second->getChunks();
std::shared_ptr<world::Chunk> chunk = nullptr;
chunk_pos chunk_vec(INT_MAX);
for (size_t i = 0; i < dist; i++) {
const auto pos = points[i] - offset;
geometry::Ray::iterator it(ray);
glm::llvec3 point;
for (size_t i = 0; i < dist && it.next(point); i++) {
const auto pos = point - offset;
const chunk_pos cPos = glm::divide(pos);
if(cPos != chunk_vec) {
if (const auto it = chunks.find(cPos); it != chunks.end()) {

View File

@ -5,6 +5,7 @@
namespace config::server {
/// Server side configuration
struct options {
public:
options(toml::node_view<toml::node> config): world() {

View File

@ -7,17 +7,16 @@ namespace net::server {
uint64_t stream_id, uint8_t* bytes, size_t length,
picoquic_call_back_event_t fin_or_event, void* callback_ctx, void* v_stream_ctx) {
if (fin_or_event == picoquic_callback_almost_ready)
return 0; //NOTE: only use full connections
auto server = (Server*)picoquic_get_default_callback_context(picoquic_get_quic_ctx(cnx));
auto peer = (Peer*)callback_ctx;
if (peer == nullptr || peer == (void*)server) {
assert(fin_or_event == picoquic_callback_ready);
peer = server->connect(cnx);
picoquic_set_callback(cnx, connection_callback, peer);
if (fin_or_event != picoquic_callback_almost_ready) {
if (peer == nullptr || peer == (void*)server) {
assert(fin_or_event == picoquic_callback_ready);
peer = server->connect(cnx);
picoquic_set_callback(cnx, connection_callback, peer);
}
assert(peer == nullptr || peer->contains(cnx) || fin_or_event == picoquic_callback_close);
}
assert(peer == nullptr || peer->contains(cnx) || fin_or_event == picoquic_callback_close);
assert(v_stream_ctx == nullptr || ((net::stream_ctx*)v_stream_ctx)->stream_id == stream_id);
return server->connectionCallback(peer, stream_id, bytes, length, fin_or_event, v_stream_ctx);
@ -59,9 +58,17 @@ int Server::connectionCallback(Peer* peer, uint64_t stream_id, uint8_t* bytes, s
case picoquic_callback_stream_fin: {
assert(stream_ctx::IsClientId(stream_id));
auto stream_ctx = (in_stream_ctx *)v_stream_ctx;
const auto is_fin = fin_or_event == picoquic_callback_stream_fin;
/* Data arrival on stream #x, maybe with fin mark */
if (stream_ctx == NULL) { // New stream from peer
if (stream_ctx == NULL) {
if (is_fin) { // Single frame packet
if (length > 0) {
onPacket(peer, data::out_view(bytes, length), PacketFlags::TINY);
}
peer->reset(stream_id);
break;
}
// New long stream from server
stream_ctx = peer->receive(stream_id);
}
@ -69,7 +76,7 @@ int Server::connectionCallback(Peer* peer, uint64_t stream_id, uint8_t* bytes, s
stream_ctx->buffer.write(bytes, length);
}
if (fin_or_event == picoquic_callback_stream_fin) {
if (is_fin) {
if (onPacket(peer, data::out_view(stream_ctx->buffer.data.data(), stream_ctx->buffer.data.size()), PacketFlags::NONE)) {
peer->close(stream_ctx);
} else {
@ -163,8 +170,12 @@ int Server::connectionCallback(Peer* peer, uint64_t stream_id, uint8_t* bytes, s
break;
}
case picoquic_callback_almost_ready:
// NOTE: handled is static callback
assert(peer == nullptr);
// MAYBE: use pre-connect for server status
if (Connection::GetSize(peers) >= max_connections) {
LOG_W("Server is full");
return -1;
}
break;
case picoquic_callback_ready:
/* TODO: Check that the transport parameters are what the sample expects */

View File

@ -50,7 +50,6 @@ public:
picoquic_call_back_event_t fin_or_event, void *v_stream_ctx);
bool isRunning() const { return true; }
constexpr bool isFull(uint32_t val) const { return val >= max_connections; }
template<typename C>
void iterPeers(C call) {

View File

@ -14,12 +14,14 @@
using namespace world::server;
const auto AREAS_FILE = "/areas.idx";
const auto COMPRESSION_PREFIX = (uint8_t)net::server_packet_type::COMPRESSION;
Universe::Universe(const Universe::options &options): host(options.connection,
[&](net::server::Peer* peer) { return onConnect(peer); },
[&](net::server::Peer* peer, bool is_app, uint16_t reason) { return onDisconnect(peer, is_app, reason); },
[&](net::server::Peer* peer, const data::out_view &buf, net::PacketFlags flags) { return onPacket(peer, buf, flags); }
), dict_content({options.folderPath + "/zstd.dict", "content/zstd.dict"}), dicts(dict_content), dict_write_ctx(dicts.make_writer())
), dict_content({options.folderPath + "/zstd.dict", "content/zstd.dict"}, data::out_view(&COMPRESSION_PREFIX, sizeof(COMPRESSION_PREFIX))),
dicts(dict_content.content()), dict_write_ctx(dicts.make_writer())
{
setOptions(options);
folderPath = options.folderPath;
@ -449,17 +451,11 @@ std::optional<uint16_t> Universe::onConnect(net::server::Peer* peer) {
LOG_I("Client connect from " << peer->getAddress());
net_client* client = new net_client(entities.at(PLAYER_ENTITY_ID).instances.emplace(Entity::Instance{spawnPoint, glm::vec3(0)}));
peer->ctx = client;
if (host.isFull(client->instanceId.index)) {
LOG_W("Server is full");
return (uint16_t)net::disconnect_reason::FULL;
}
peer->send(net::PacketWriter::Of(net::server_packet_type::CAPABILITIES, loadDistance));
//TODO: lock while not received
//MAYBE: add net::server_packet_type::COMPRESSION to dict_content: zero copy
peer->send(net::PacketWriter::Of(net::server_packet_type::COMPRESSION, dict_content.data(), dict_content.size()), net::server::queue::CHUNK);
peer->send(data::out_buffer(data::out_view((uint8_t*)dict_content.data(), dict_content.size()), nullptr), net::server::queue::CHUNK);
{
auto player = findEntity(PLAYER_ENTITY_ID, client->instanceId);
auto packet = net::PacketWriter(net::server_packet_type::TELEPORT, sizeof(size_t) + sizeof(voxel_pos));
@ -586,12 +582,12 @@ data::out_buffer Universe::serializeChunk(area_<chunk_pos> id, const std::shared
ZoneScopedN("Chunk");
std::ostringstream out;
data->write(out);
std::vector<char> buffer;
//FIXME: avoid buffer copy
dict_write_ctx.compress(out.str(), buffer);
auto packet = net::PacketWriter(net::server_packet_type::CHUNK, sizeof(id) + buffer.size());
auto packet = net::PacketWriter(net::server_packet_type::CHUNK, sizeof(id));
packet.write(id);
packet.write(buffer.data(), buffer.size());
{
auto vec = packet.varying();
dict_write_ctx.compress(out.str(), vec);
}
return packet.finish();
}
void Universe::broadcastMessage(const std::string& text) {