godot_voxel/streams/voxel_stream.h

62 lines
2.2 KiB
C
Raw Normal View History

2019-05-25 08:07:38 -07:00
#ifndef VOXEL_STREAM_H
#define VOXEL_STREAM_H
#include "voxel_block_request.h"
2019-04-23 17:29:47 -07:00
#include <core/resource.h>
// Provides access to a source of paged voxel data, which may load and save.
// Must be implemented in a multi-thread-safe way.
// If you are looking for a more specialized API to generate voxels, use VoxelGenerator.
2019-05-25 08:07:38 -07:00
class VoxelStream : public Resource {
GDCLASS(VoxelStream, Resource)
public:
struct Stats {
int file_openings = 0;
int time_spent_opening_files = 0;
};
VoxelStream();
// TODO Rename load_block()
2020-01-21 12:00:29 -08:00
// Queries a block of voxels beginning at the given world-space voxel position and LOD.
// If you use LOD, the result at a given coordinate must always remain the same regardless of it.
// In other words, voxels values must solely depend on their coordinates or fixed parameters.
2019-04-29 13:57:39 -07:00
virtual void emerge_block(Ref<VoxelBuffer> out_buffer, Vector3i origin_in_voxels, int lod);
2020-01-21 12:00:29 -08:00
// TODO Rename unload_block(), or save_block() ?
2019-04-29 13:57:39 -07:00
virtual void immerge_block(Ref<VoxelBuffer> buffer, Vector3i origin_in_voxels, int lod);
// Note: vector is passed by ref for performance. Don't reorder it.
virtual void emerge_blocks(Vector<VoxelBlockRequest> &p_blocks);
2020-01-21 12:00:29 -08:00
// Returns multiple blocks of voxels to the stream.
// Generators usually don't implement it.
// This function is recommended if you save to files, because you can batch their access.
virtual void immerge_blocks(Vector<VoxelBlockRequest> &p_blocks);
// Declares the format expected from this stream
2020-02-14 11:12:13 -08:00
virtual int get_used_channels_mask() const;
2020-08-11 12:29:27 -07:00
// If the stream is thread-safe, the same instance will be used by the streamer across all threads.
// If the stream is not thread-safe:
// - If it is cloneable, the streamer will duplicate the instance for each thread.
// - If it isn't, the streamer will be limited to a single thread.
virtual bool is_thread_safe() const;
virtual bool is_cloneable() const;
Stats get_statistics() const;
virtual bool has_script() const;
protected:
static void _bind_methods();
2019-04-29 13:57:39 -07:00
void _emerge_block(Ref<VoxelBuffer> out_buffer, Vector3 origin_in_voxels, int lod);
void _immerge_block(Ref<VoxelBuffer> buffer, Vector3 origin_in_voxels, int lod);
2020-02-14 11:12:13 -08:00
int _get_used_channels_mask() const;
Stats _stats;
};
2019-05-25 08:16:03 -07:00
#endif // VOXEL_STREAM_H