1
0
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
May B. 9f213f1a7f Better multiplayer 2020-10-21 15:45:53 +02:00
May B. f7a19a7b26 Network teleport 2020-10-20 21:08:40 +02:00
16 changed files with 265 additions and 130 deletions

55
TODO.md
View File

@ -8,21 +8,18 @@
## Hello other
- [ ] Multiplayer
- [ ] Chat
- [~] Authentication
- [x] Compression
- [ ] Encryption
- [x] Embedded
- [x] Standalone
- [ ] VK
- [ ] Pipeline recreate
- [ ] Pipeline cache
- [ ] Reuse descriptors
- [ ] Secondary buffers
## Hello world
- [~] Map stream
- Local prediction
- [ ] Contouring service
- [~] Edit
- Local prediction
@ -30,29 +27,49 @@
- [ ] Iterator ray
- [ ] Cast from chunk center
- [ ] Transparency
- [ ] Entities
## Hello darkness
## Hello universe
- [ ] ECS
- [ ] Area
- [ ] Rotation
- [ ] Universe
- [ ] Galaxy
- [ ] Rotation
- [ ] Orbit system
- [ ] Gravity referential
- [ ] Better generation
- SIMD
- [ ] Dynamic SIMD libs
- [ ] FastNoiseSIMD / HastyNoise double precision
- [ ] https://github.com/Auburn/FastNoise2/releases
- [ ] Surface features
- [ ] Biomes
- https://imgur.com/kM8b5Zq
- https://imgur.com/a/bh2iy
- https://speciesdevblog.files.wordpress.com/2012/11/biomemap.png
- Curvature
- [~] CubeSphere
- [ ] Area corrected CubeSphere
- [ ] Corrected Normals
- [ ] Surface curvature
- [ ] Curvature avare frustum
- [ ] Healpix
- [ ] Surface features
- [ ] Biomes
- https://imgur.com/kM8b5Zq
- https://imgur.com/a/bh2iy
- https://speciesdevblog.files.wordpress.com/2012/11/biomemap.png
- [ ] Galaxy
## Hello industry
- [ ] Multiblock
## Hello darkness
- [ ] Slash screen
- [ ] QUIC protocal
- [ ] Octree
- SIMD
- [ ] Dynamic SIMD libs
- [ ] FastNoiseSIMD / HastyNoise double precision
- [ ] https://github.com/Auburn/FastNoise2/releases
- [ ] Better Lod
- [ ] VK
- [ ] Pipeline recreate
- [ ] Pipeline cache
- [ ] Reuse descriptors
- [ ] Secondary buffers
- [ ] ECS
- [ ] Cross plateforme encoding
- [ ] Config (yaml)
- [ ] HDR

View File

@ -19,7 +19,6 @@ void Client::run(server_handle* const localHandle) {
InputMap inputs(window.getPtr());
Controllable player(window.getPtr(), inputs, options.control);
Camera camera(&player, options.camera);
state.position = player.position;
auto pipeline = render::Renderer::Get();
pipeline->LightInvDir = glm::normalize(glm::vec3(-.5f, 2, -2));
@ -27,6 +26,9 @@ void Client::run(server_handle* const localHandle) {
auto world = world::client::Load(options.connection, localHandle, options.world, options.contouring);
state.contouring = world->getContouring();
world->onTeleport = [&](voxel_pos pos) {
state.position = player.position = pos;
};
do {
window.startFrame();
@ -49,7 +51,7 @@ void Client::run(server_handle* const localHandle) {
if(pos != state.position.as_voxel(options.voxel_density)) {
world->emit(world::action::Move(pos));
}
state.position = player.position;
state.position = pos;
}
camera.update();
pipeline->lookFrom(camera);
@ -178,7 +180,7 @@ void Client::run(server_handle* const localHandle) {
}
window.waitTargetFPS();
} while (!(inputs.isDown(Input::Quit) || window.shouldClose()));
} while (!(inputs.isDown(Input::Quit) || window.shouldClose() || world->isDisconnected()));
options.contouring = state.contouring->getOptions();
world.reset();

View File

@ -1,6 +1,6 @@
#include "Controllable.hpp"
Controllable::Controllable(GLFWwindow *window, const InputMap& inputs, const Controllable::options& opt): position(voxel_pos(100, 0, 0), 1), window(window), inputs(inputs), o(opt){ }
Controllable::Controllable(GLFWwindow *window, const InputMap& inputs, const Controllable::options& opt): position(), window(window), inputs(inputs), o(opt){ }
Controllable::~Controllable() { }
Controllable::axis Controllable::getAxis() const {

View File

@ -51,9 +51,11 @@ void DistantUniverse::update(voxel_pos pos, float deltaTime) {
for (int y = -queryDistance; y <= queryDistance; y++) {
for (int z = -queryDistance; z <= queryDistance; z++) {
const auto dist2 = x * x + y * y + z * z;
if (dist2 <= queryDistance * queryDistance) {
const auto p = diff + chunk_pos(x, y, z);
if (chunks.inRange(p) && chunks.find(p) == chunks.end()) {
const auto p = diff + chunk_pos(x, y, z);
if (dist2 <= queryDistance * queryDistance && chunks.inRange(p)) {
if (chunks.find(p) != chunks.end()) {
contouring->onNotify(std::make_pair(area.first, p), diff, chunks);
} else {
missing.push_back(p);
}
}
@ -81,8 +83,7 @@ void DistantUniverse::pullNetwork(voxel_pos pos) {
const server_packet_type type = static_cast<server_packet_type>(*packet->data);
switch (type) {
case server_packet_type::CAPABILITIES: {
PacketReader(packet).read(serverDistance);
emit(world::action::Move(pos));
PacketReader(packet, true).read(serverDistance);
break;
}
@ -95,6 +96,12 @@ void DistantUniverse::pullNetwork(voxel_pos pos) {
break;
}
case server_packet_type::TELEPORT: {
PacketReader(packet).read(pos);
onTeleport(pos);
break;
}
case server_packet_type::AREAS: {
auto reader = PacketReader(packet, true);
while(!reader.isFull()) {
@ -191,7 +198,13 @@ void DistantUniverse::pullNetwork(voxel_pos pos) {
break;
}
},
[](disconnect_reason){ });
[](disconnect_reason reason){
if (reason == disconnect_reason::UNEXPECTED) {
LOG_E("Connection to server lost");
} else {
LOG_W("Disconnected from server with " << (int)reason);
}
});
}
void DistantUniverse::emit(const action::packet &action) {

View File

@ -18,6 +18,8 @@ namespace world::client {
ray_result raycast(const geometry::Ray &) const override;
bool isDisconnected() const override { return peer.isDisconnected(); }
protected:
void pullNetwork(voxel_pos);

View File

@ -15,7 +15,7 @@ LocalUniverse::LocalUniverse(server_handle *const handle, const std::string& con
Window::wait();
}
handle->onUpdate = std::function([&](const area_<chunk_pos> &pos, const chunk_pos &offset, const world::ChunkContainer &data, geometry::Faces neighbors) {
contouring->onUpdate(pos, offset, data, neighbors);
contouring->onUpdate(pos, this->last_chunk - offset, data, neighbors);
});
}
LocalUniverse::~LocalUniverse() {
@ -23,10 +23,14 @@ LocalUniverse::~LocalUniverse() {
}
void LocalUniverse::update(voxel_pos pos, float) {
if (handle->teleport.has_value() && onTeleport) {
pos = handle->teleport.value();
onTeleport(pos);
handle->teleport = std::nullopt;
}
const auto cur_chunk = glm::divide(pos);
const auto chunkChange = cur_chunk != last_chunk;
if (last_chunk.x == INT_MAX)
emit(world::action::Move(pos));
last_chunk = cur_chunk;
if(chunkChange) {

View File

@ -15,6 +15,8 @@ namespace world::client {
ray_result raycast(const geometry::Ray &ray) const override;
bool isDisconnected() const override { return !handle->running; }
protected:
server_handle *const handle;

View File

@ -24,12 +24,16 @@ namespace world::client {
/// Send action to ServerUniverse
virtual void emit(const action::packet &) = 0;
/// When server teleport player
std::function<void(voxel_pos)> onTeleport;
/// Get current contouring worker
contouring::Abstract* getContouring() const {
return contouring.get();
}
virtual bool isDisconnected() const = 0;
//TODO: move to ClientUniverse
//void getEntitiesModels(const std::function<void(const std::vector<glm::mat4> &, buffer::Abstract *const)> &draw, const std::optional<geometry::Frustum> &frustum, const glm::llvec3 &offset, int density);

View File

@ -173,6 +173,17 @@ namespace data::generational {
}
}
template<typename predicate>
bool contains(predicate fn) const {
for (size_t i = 0; i < entries.size(); i++) {
const auto &entry = entries[i];
if(entry.value.has_value() && fn(id(i, entry.generation), entry.value.value())) {
return true;
}
}
return false;
}
template<typename extractor>
void extract(extractor fn) {
for (size_t i = 0; i < entries.size(); i++) {

View File

@ -97,8 +97,6 @@ public:
break;
}
}
TracyPlot("CltNetUp", (int64_t)host->outgoingBandwidth);
TracyPlot("CltNetDown", (int64_t)host->incomingBandwidth);
TracyPlot("CltNetRTT", (int64_t)peer->roundTripTime);
}
@ -124,6 +122,7 @@ public:
}
constexpr bool isReady() const { return ready; }
constexpr bool isDisconnected() const { return peer->state == ENET_PEER_STATE_DISCONNECTED; }
constexpr salt_t getSalt() const { return salt; }
protected:

View File

@ -7,20 +7,25 @@ namespace net {
class Server {
public:
Server(const connection& ct, size_t connections) {
auto addr = [&] {
if (auto addr = ct.toAddress())
return addr.value();
Server(const connection& ct, int connections) {
if(connections > 0) {
auto addr = [&] {
if (auto addr = ct.toAddress())
return addr.value();
FATAL("Invalid ip address format");
}();
FATAL("Invalid ip address format");
}();
host = enet_host_create(&addr, connections, CHANNEL_COUNT, 0, 0);
if(host == nullptr) {
FATAL("Network server creation failed");
host = enet_host_create(&addr, connections, CHANNEL_COUNT, 1 << 13, 1 << 13);
if(host == nullptr) {
FATAL("Network server creation failed");
}
LOG_I("Listening on " << ct);
} else {
host = nullptr;
LOG_D("Local only server");
}
LOG_I("Listening on " << ct);
}
~Server() {
enet_host_destroy(host);
@ -28,6 +33,9 @@ public:
template<typename C, typename D, typename R>
void pull(C onConnect, D onDisconnect, R onData, int delay = 10, int count = 10) {
if (host == nullptr)
return;
ENetEvent event;
for(int i = 0; i < count && enet_host_service(host, &event, delay) > 0; i++) {
switch(event.type) {
@ -49,8 +57,14 @@ public:
break;
}
}
TracyPlot("SrvNetUp", (int64_t)host->outgoingBandwidth);
TracyPlot("SrvNetDown", (int64_t)host->incomingBandwidth);
TracyPlot("SrvNetUpData", (int64_t)host->totalSentData);
host->totalSentData = 0;
TracyPlot("SrvNetUpPackets", (int64_t)host->totalSentPackets);
host->totalSentPackets = 0;
TracyPlot("SrvNetDownData", (int64_t)host->totalReceivedData);
host->totalReceivedData = 0;
TracyPlot("SrvNetDownPackets", (int64_t)host->totalReceivedPackets);
host->totalReceivedPackets = 0;
}
void disconnect(peer_t *peer, disconnect_reason reason) const {
@ -91,7 +105,8 @@ public:
/// Send to all connected peers
void broadcast(packet_t* packet, channel_type channel) {
enet_host_broadcast(host, (enet_uint8)channel, packet);
if (host != nullptr)
enet_host_broadcast(host, (enet_uint8)channel, packet);
}
void broadcast(server_packet_type type, const void *data, size_t size, channel_type channel, std::optional<enet_uint32> flags = {}) {
broadcast(makePacket(type, data, size, flags.value_or(channel == channel_type::RELIABLE ? ENET_PACKET_FLAG_RELIABLE : 0)).get(), channel);

View File

@ -26,15 +26,18 @@ using packet_t = ENetPacket;
enum class server_packet_type: enet_uint8 {
PERSONAL = 0,
/// Get server salt
/// realable
/// reliable
CHALLENGE = 0,
/// Set client position
/// voxel_pos reliable
TELEPORT = 1,
BROADCASTED = 16,
/// List all areas
/// {area_id, world::Area::params}[] realable
/// {area_id, world::Area::params}[] reliable
AREAS = 16,
/// Full chunk update
/// {area_<chunk_pos>, zstd<chunk rle>} realable
/// {area_<chunk_pos>, zstd<chunk rle>} reliable
CHUNK = 17,
/// Chunk changes
/// {area_id, {chunk_pos, ushort(count), Chunk::Edit[]}[]} notify
@ -42,19 +45,19 @@ enum class server_packet_type: enet_uint8 {
EDITS = 18,
/// World compression dictionary
/// zstd dict realable
/// zstd dict reliable
COMPRESSION = 24,
/// Server capabilities
/// ushort(loadDistance), MAYBE: more realable
/// ushort(loadDistance), MAYBE: more reliable
CAPABILITIES = 25,
};
enum class client_packet_type: enet_uint8 {
/// Interact with voxels
/// actions::FillCube realable
/// actions::FillCube reliable
FILL_CUBE = 0,
/// Request missing chunks
/// area_id, chunk_pos[] realable
/// area_id, chunk_pos[] reliable
MISSING_CHUNKS = 8,
/// Position update

View File

@ -10,4 +10,5 @@ struct server_handle {
std::function<void(const area_<chunk_pos> &pos, const chunk_pos &offset, const world::ChunkContainer &data, geometry::Faces neighbors)> onUpdate;
std::function<void(const world::action::packet &packet)> emit;
std::function<world::Universe::ray_result(const geometry::Ray &ray)> raycast;
std::optional<voxel_pos> teleport;
};

View File

@ -6,8 +6,10 @@ using namespace world::server;
SharedUniverse::SharedUniverse(const options &o, server_handle *const localHandle): Universe(o), localHandle(localHandle) {
// Local player
[[maybe_unused]]
const auto id = entities.at(PLAYER_ENTITY_ID).instances.emplace(Entity::Instance{});
const auto id = entities.at(PLAYER_ENTITY_ID).instances.emplace(Entity::Instance{spawnPoint});
assert(id == PLAYER_ENTITY_ID);
localHandle->teleport = spawnPoint;
movedPlayers.insert(id);
localHandle->areas = (world::client::area_map*)(&areas); //WONT FIX: templated area
localHandle->emit = std::function([&](const world::action::packet &packet) {
@ -33,7 +35,8 @@ SharedUniverse::~SharedUniverse() {
}
void SharedUniverse::loadChunk(area_<chunk_pos> area, chunk_pos diff, const world::ChunkContainer& chunks) {
localHandle->onUpdate(area, diff, chunks, Faces::All);
if(localHandle->onUpdate)
localHandle->onUpdate(area, diff, chunks, Faces::All);
}
void SharedUniverse::updateChunk(area_map::iterator &it, world::ChunkContainer::iterator &it_c, chunk_pos diff, float deltaTime) {
if (const auto neighbors = std::dynamic_pointer_cast<SharedChunk>(it_c->second)->update(deltaTime, true)) {

View File

@ -52,6 +52,7 @@ Universe::Universe(const Universe::options &options): host(options.connection, o
generator::params(std::in_place_type<generator::RoundPlanet::Params>, radius * CHUNK_LENGTH * 3 / 4, 42)});
//far_areas.emplace(Area::params{voxel_pos(0), 1 << 20, generator::params(std::in_place_type<generator::Cave::Params>, 42)});
}
spawnPoint = voxel_pos(100, 0, 0); //TODO: save in index
index.close();
}
@ -174,29 +175,36 @@ void Universe::update(float deltaTime) {
pullNetwork();
if(entities.at(PLAYER_ENTITY_ID).instances.empty())
return;
std::vector<voxel_pos> moves;
{
moves.reserve(movedPlayers.size());
for (const auto& id: movedPlayers) {
if (auto player = findEntity(PLAYER_ENTITY_ID, id))
moves.push_back(player->pos.as_voxel());
}
movedPlayers.clear();
}
const auto pos = entities.at(PLAYER_ENTITY_ID).instances.at(PLAYER_ENTITY_ID).pos.as_voxel();
const auto chunkChange = !movedPlayers.empty();
movedPlayers.clear();
if(chunkChange) {
if (!moves.empty()) {
ZoneScopedN("Far");
bool extracted = false;
far_areas.extract([&](area_id id, Area::params params) {
if (const chunk_pos diff = glm::divide(pos - params.center);
glm::length2(diff) > glm::pow2(loadDistance + params.radius))
return false;
for(const auto& move: moves) {
if(const chunk_pos diff = glm::divide(move - params.center);
glm::length2(diff) <= glm::pow2(loadDistance + params.radius)) {
LOG_I("Load area " << id.index);
areas.emplace(id, std::make_shared<Area>(params));
extracted = true;
return true;
LOG_I("Load area " << id.index);
areas.emplace(id, std::make_shared<Area>(params));
extracted = true;
return true;
}
}
return false;
});
if(extracted)
broadcastAreas();
}
const auto &players = entities.at(PLAYER_ENTITY_ID).instances;
{ // Update alive areas
ZoneScopedN("World");
#if TRACY_ENABLE
@ -208,10 +216,19 @@ void Universe::update(float deltaTime) {
auto it = areas.begin();
while (it != areas.end()) {
ZoneScopedN("Area");
const bool chunkChangeArea = (false && it->first == 1 && it->second->move(glm::vec3(deltaTime))) || chunkChange; // TODO: area.velocity
const chunk_pos diff = glm::divide(pos - it->second->getOffset().as_voxel());
//FIXME: const auto areaChunkChange = it->second->move(glm::vec3(deltaTime));
const auto areaRange = glm::pow2(keepDistance + it->second->getChunks().getRadius());
const auto areaDiff = glm::divide(it->second->getOffset().as_voxel());
std::vector<chunk_pos> inAreaPlayers;
players.iter([&](entity_id, Entity::Instance player) {
const chunk_pos diff = glm::divide(player.pos.as_voxel() - it->second->getOffset().as_voxel());
if (glm::length2(diff) <= areaRange)
inAreaPlayers.push_back(diff);
});
auto &chunks = it->second->setChunks();
if (glm::length2(diff) > glm::pow2(keepDistance + it->second->getChunks().getRadius())) {
if (inAreaPlayers.empty()) {
auto it_c = chunks.begin();
while(it_c != chunks.end()) {
saveQueue.emplace(*it, std::make_pair(it_c->first, std::dynamic_pointer_cast<Chunk>(it_c->second)));
@ -229,35 +246,48 @@ void Universe::update(float deltaTime) {
ZoneScopedN("Alive");
auto it_c = chunks.begin();
while(it_c != chunks.end()) {
if (glm::length2(diff - it_c->first) > glm::pow2(keepDistance)) {
saveQueue.emplace(*it, std::make_pair(it_c->first, std::dynamic_pointer_cast<Chunk>(it_c->second))); //MAYBE: take look
lazyArea = false;
it_c = chunks.erase(it_c);
}else {
updateChunk(it, it_c, diff, deltaTime);
if ([&] {
const auto keepDist = glm::pow2(keepDistance);
for(const auto& diff: inAreaPlayers) {
if (glm::length2(diff - it_c->first) < keepDist)
return true;
}
return false;
}()) {
updateChunk(it, it_c, areaDiff, deltaTime);
++it_c;
#if TRACY_ENABLE
chunk_count++;
#endif
} else {
saveQueue.emplace(*it, std::make_pair(it_c->first, std::dynamic_pointer_cast<Chunk>(it_c->second))); //MAYBE: take look
lazyArea = false;
it_c = chunks.erase(it_c);
}
}
}
if (chunkChangeArea) { // Enqueue missing chunks
{ // Enqueue missing chunks
ZoneScopedN("Missing");
auto handle = loadQueue.inserter();
//TODO: need dist so no easy sphere fill
for (int x = -loadDistance; x <= loadDistance; x++) {
for (int y = -loadDistance; y <= loadDistance; y++) {
for (int z = -loadDistance; z <= loadDistance; z++) {
const auto dist2 = x * x + y * y + z * z;
if (dist2 <= loadDistance * loadDistance) {
const auto p = diff + chunk_pos(x, y, z);
if (chunks.inRange(p) && chunks.find(p) == chunks.end()) {
handle.first(std::make_pair(it->first, p), it->second, -dist2);
lazyArea = false;
for (const auto& to: moves) {
const chunk_pos diff = glm::divide(to - it->second->getOffset().as_voxel());
if (glm::length2(diff) > areaRange)
continue;
//TODO: need dist so no easy sphere fill
for (int x = -loadDistance; x <= loadDistance; x++) {
for (int y = -loadDistance; y <= loadDistance; y++) {
for (int z = -loadDistance; z <= loadDistance; z++) {
const auto dist2 = x * x + y * y + z * z;
if (dist2 <= loadDistance * loadDistance) {
const auto p = diff + chunk_pos(x, y, z);
if (chunks.inRange(p) && chunks.find(p) == chunks.end()) {
handle.first(std::make_pair(it->first, p), it->second, -dist2);
lazyArea = false;
}
}
}
}}}
}}}
}
if(!lazyArea)
loadQueue.notify_all();
}
@ -269,7 +299,14 @@ void Universe::update(float deltaTime) {
region_count += unique->size();
#endif
for (auto it_r = unique->begin(); it_r != unique->end(); ++it_r) {
if (glm::length2(diff - glm::lvec3(it_r->first) * glm::lvec3(REGION_LENGTH)) > glm::pow2(keepDistance + REGION_LENGTH * 2)) {
if([&] {
const auto keepDist = glm::pow2(keepDistance + REGION_LENGTH * 2);
for(const auto& diff: inAreaPlayers) {
if (glm::length2(diff - glm::lvec3(it_r->first) * glm::lvec3(REGION_LENGTH)) <= keepDist)
return false;
}
return true;
}()) {
unique->erase(it_r); //FIXME: may wait for os file access (long)
break; //NOTE: save one only max per frame
}
@ -287,24 +324,29 @@ void Universe::update(float deltaTime) {
TracyPlot("ChunkUnload", static_cast<int64_t>(saveQueue.size()));
#endif
}
{ // Update entities
/* FIXME: { // Update entities
ZoneScopedN("Entities");
#if TRACY_ENABLE
size_t entity_count = 0;
#endif
entities.for_each([&](entity_id, Entity &val) {
entities.for_each([&](entity_id type, Entity &val) {
if (type == PLAYER_ENTITY_ID) //FIXME: update players
return;
val.instances.remove([&](entity_id, Entity::Instance &inst) {
#if TRACY_ENABLE
entity_count++;
#endif
inst.pos += inst.velocity * deltaTime;
return glm::length2(glm::divide(pos - inst.pos.as_voxel())) > glm::pow2(keepDistance);
//MAYBE: Store in region ?
//MAYBE: Save to files
});
});
#if TRACY_ENABLE
TracyPlot("EntityCount", static_cast<int64_t>(entity_count));
#endif
}
}*/
{ // Store loaded chunks
ZoneScopedN("Load");
@ -312,8 +354,7 @@ void Universe::update(float deltaTime) {
for (auto handle = loadedQueue.extractor(); handle.first(loaded);) {
if (const auto it = areas.find(loaded.first.first); it != areas.end()) {
it->second->setChunks().emplace(loaded.first.second, loaded.second);
const chunk_pos diff = glm::divide(pos - it->second->getOffset().as_voxel());
loadChunk(loaded.first, diff, it->second->getChunks());
loadChunk(loaded.first, glm::divide(it->second->getOffset().as_voxel()), it->second->getChunks());
// MAYBE: limit chunks per update
host.broadcast(serializeChunk(loaded), net::channel_type::RELIABLE);
}
@ -334,7 +375,7 @@ void Universe::pullNetwork() {
[&](peer_t *peer, salt_t salt) {
ZoneScopedN("Connect");
LOG_I("Client connect from " << peer->address);
net_client* client = new net_client(salt, entities.at(PLAYER_ENTITY_ID).instances.emplace(Entity::Instance{ }));
net_client* client = new net_client(salt, entities.at(PLAYER_ENTITY_ID).instances.emplace(Entity::Instance{spawnPoint}));
peer->data = client;
const salt_t rnd = std::rand();
@ -343,13 +384,20 @@ void Universe::pullNetwork() {
host.send(peer, server_packet_type::CAPABILITIES, loadDistance, channel_type::RELIABLE);
host.send(peer, server_packet_type::COMPRESSION, dict_content.data(), dict_content.size(), channel_type::RELIABLE);
{
auto player = findEntity(PLAYER_ENTITY_ID, client->instanceId);
host.sendTo(peer, server_packet_type::TELEPORT, player->pos.as_voxel(), channel_type::RELIABLE);
movedPlayers.insert(client->instanceId);
}
broadcastAreas();
},
[](peer_t *peer, disconnect_reason reason) {
[&](peer_t *peer, disconnect_reason reason) {
ZoneScopedN("Disconnect");
LOG_I("Client disconnect from " << peer->address << " with " << (enet_uint32)reason);
if (const auto data = Server::GetPeerData<net_client>(peer); data != nullptr)
if (const auto data = Server::GetPeerData<net_client>(peer)) {
entities.at(PLAYER_ENTITY_ID).instances.free(data->instanceId);
delete data;
}
},
[&](peer_t *peer, packet_t* packet, channel_type) {
ZoneScopedN("Data");
@ -382,25 +430,27 @@ void Universe::pullNetwork() {
break;
}
case client_packet_type::MISSING_CHUNKS: {
const auto pos = entities.at(PLAYER_ENTITY_ID).instances.at(Server::GetPeerData<net_client>(peer)->instanceId).pos.as_voxel();
if (auto player = findEntity(PLAYER_ENTITY_ID,Server::GetPeerData<net_client>(peer)->instanceId )) {
const auto pos = player->pos.as_voxel();
auto reader = PacketReader(packet);
area_id id = *reader.read<area_id>();
if(auto area = areas.find(id); area != areas.end()) {
auto &chunks = area->second->getChunks();
const chunk_pos diff = glm::divide(pos - area->second->getOffset().as_voxel());
while(!reader.isFull()) {
chunk_pos cpos = *reader.read<chunk_pos>();
if(glm::length2(diff - cpos) <= glm::pow2(loadDistance) && chunks.inRange(cpos)) {
if(auto chunk = chunks.find(cpos); chunk != chunks.end()) {
host.send(peer, serializeChunk({std::make_pair(id, cpos), std::dynamic_pointer_cast<Chunk>(chunk->second)}), net::channel_type::RELIABLE);
auto reader = PacketReader(packet);
area_id id = *reader.read<area_id>();
if(auto area = areas.find(id); area != areas.end()) {
auto &chunks = area->second->getChunks();
const chunk_pos diff = glm::divide(pos - area->second->getOffset().as_voxel());
while(!reader.isFull()) {
chunk_pos cpos = *reader.read<chunk_pos>();
if(glm::length2(diff - cpos) <= glm::pow2(loadDistance) && chunks.inRange(cpos)) {
if(auto chunk = chunks.find(cpos); chunk != chunks.end()) {
host.send(peer, serializeChunk({std::make_pair(id, cpos), std::dynamic_pointer_cast<Chunk>(chunk->second)}), net::channel_type::RELIABLE);
}
} else {
LOG_T("Request out of range chunk");
}
} else {
LOG_T("Request out of range chunk");
}
} else {
LOG_T("Bad chunk request");
}
} else {
LOG_T("Bad chunk request");
}
break;
}
@ -531,21 +581,28 @@ entity_instance_id Universe::addEntity(entity_id type, const Entity::Instance &i
return std::make_pair(type, entities.at(type).instances.push(instance));
}
Universe::Entity::Instance* Universe::findEntity(entity_id type, entity_id id) {
if(!entities.contains(type))
return nullptr;
if(!entities.at(type).instances.contains(id))
return nullptr;
return &entities.at(type).instances.at(id);
}
bool Universe::movePlayer(data::generational::id id, glm::ifvec3 pos) {
if(!entities.contains(PLAYER_ENTITY_ID))
return false;
if (auto player = findEntity(PLAYER_ENTITY_ID, id)) {
const auto initialPos = player->pos.as_voxel();
if (initialPos == pos.as_voxel())
return true;
if(!entities.at(PLAYER_ENTITY_ID).instances.contains(id))
return false;
auto &player = entities.at(PLAYER_ENTITY_ID).instances.at(id);
if(player.pos.as_voxel() == pos.as_voxel())
//TODO: check dist + collision from a to b
movedPlayers.insert(id);
player->pos = pos;
return true;
//TODO: check dist + collision from a to b
movedPlayers.push_back(id);
player.pos = pos;
return true;
} else
return false;
}
std::shared_ptr<Chunk> Universe::createChunk(const chunk_pos &pos, const std::unique_ptr<generator::Abstract> &rnd) const {

View File

@ -47,6 +47,7 @@ namespace world::server {
/// Instante entity
entity_instance_id addEntity(entity_id type, const Entity::Instance &instance);
Entity::Instance* findEntity(entity_id type, entity_id id);
/// Move player
bool movePlayer(data::generational::id id, glm::ifvec3 pos);
@ -78,7 +79,8 @@ namespace world::server {
virtual void updateChunk(area_map::iterator&, world::ChunkContainer::iterator&, chunk_pos, float deltaTime);
virtual void loadChunk(area_<chunk_pos>, chunk_pos, const world::ChunkContainer &);
std::vector<data::generational::id> movedPlayers;
robin_hood::unordered_set<data::generational::id> movedPlayers;
voxel_pos spawnPoint;
/// Alive areas containing chunks
area_map areas;