2018-06-30 15:18:27 +02:00
|
|
|
#include "draw2d.h"
|
|
|
|
#include "ffr/ffr.h"
|
2018-07-17 01:13:58 +02:00
|
|
|
#include "engine/blob.h"
|
2016-05-10 08:24:31 +02:00
|
|
|
#include "engine/crc32.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "engine/engine.h"
|
2016-05-10 08:24:31 +02:00
|
|
|
#include "engine/fs/disk_file_device.h"
|
|
|
|
#include "engine/fs/file_system.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "engine/fs/ifile_device.h"
|
2016-05-10 08:24:31 +02:00
|
|
|
#include "engine/geometry.h"
|
2018-07-22 15:22:36 +02:00
|
|
|
#include "engine/job_system.h"
|
2016-05-10 08:24:31 +02:00
|
|
|
#include "engine/log.h"
|
|
|
|
#include "engine/lua_wrapper.h"
|
2018-07-29 12:40:58 +02:00
|
|
|
#include "engine/math_utils.h"
|
2018-07-15 17:35:41 +02:00
|
|
|
#include "engine/mt/atomic.h"
|
2018-09-29 15:14:46 +02:00
|
|
|
#include "engine/mt/sync.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "engine/path.h"
|
2016-05-10 08:24:31 +02:00
|
|
|
#include "engine/profiler.h"
|
2018-08-22 20:53:54 +02:00
|
|
|
#include "engine/resource_manager.h"
|
2018-08-23 22:35:38 +02:00
|
|
|
#include "engine/simd.h"
|
2018-07-29 18:36:32 +02:00
|
|
|
#include "engine/timer.h"
|
2016-04-22 18:33:06 +02:00
|
|
|
#include "engine/universe/universe.h"
|
2018-07-08 00:44:45 +02:00
|
|
|
#include "engine/viewport.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "font_manager.h"
|
|
|
|
#include "material.h"
|
|
|
|
#include "model.h"
|
2018-08-23 22:35:38 +02:00
|
|
|
#include "particle_system.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "pipeline.h"
|
2018-07-17 01:13:58 +02:00
|
|
|
#include "pose.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "renderer.h"
|
|
|
|
#include "render_scene.h"
|
|
|
|
#include "shader.h"
|
|
|
|
#include "shader_manager.h"
|
2018-07-22 15:22:36 +02:00
|
|
|
#include "terrain.h"
|
2018-06-30 15:18:27 +02:00
|
|
|
#include "texture.h"
|
2018-07-05 15:54:14 +02:00
|
|
|
#include "texture_manager.h"
|
2018-07-22 15:22:36 +02:00
|
|
|
#include <algorithm>
|
2018-07-06 21:31:44 +02:00
|
|
|
#include <cmath>
|
2018-09-29 15:14:46 +02:00
|
|
|
#include <Windows.h> // TODO
|
2018-07-22 15:22:36 +02:00
|
|
|
|
2015-07-04 15:22:28 +02:00
|
|
|
namespace Lumix
|
|
|
|
{
|
|
|
|
|
2016-02-14 16:49:37 +01:00
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
template <typename T>
|
|
|
|
struct MTBucketArray
|
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
enum {
|
|
|
|
BUCKET_SIZE = 16384,
|
|
|
|
MAX_COUNT = BUCKET_SIZE / sizeof(T)
|
|
|
|
};
|
2018-09-29 15:14:46 +02:00
|
|
|
struct Bucket {
|
2018-10-10 00:17:59 +02:00
|
|
|
T* values;
|
2018-09-29 15:14:46 +02:00
|
|
|
int count = 0;
|
2018-10-10 00:17:59 +02:00
|
|
|
MTBucketArray* array;
|
2018-09-29 15:14:46 +02:00
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
void end() { array->end(*this); }
|
2018-09-29 15:14:46 +02:00
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
void push(const T& value)
|
2018-09-29 15:14:46 +02:00
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
values[count] = value;
|
|
|
|
++count;
|
|
|
|
if (count == MAX_COUNT) {
|
|
|
|
array->end(*this);
|
|
|
|
*this = array->begin();
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
MTBucketArray(IAllocator& allocator)
|
2018-10-10 00:17:59 +02:00
|
|
|
: m_counts(allocator)
|
2018-09-29 15:14:46 +02:00
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
m_mem = (u8*)VirtualAlloc(nullptr, 1024 * 1024 * 8, MEM_RESERVE, PAGE_READWRITE);
|
|
|
|
m_end = m_mem;
|
|
|
|
m_counts.reserve(1024 * 1024 * 8 / BUCKET_SIZE);
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
~MTBucketArray()
|
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
VirtualFree(m_mem, 0, MEM_RELEASE);
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
Bucket begin()
|
2018-09-29 15:14:46 +02:00
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
Bucket b;
|
|
|
|
b.array = this;
|
|
|
|
|
|
|
|
m_mutex.lock();
|
|
|
|
m_counts.emplace();
|
|
|
|
b.values = (T*)m_end;
|
|
|
|
m_end += BUCKET_SIZE;
|
|
|
|
m_mutex.unlock();
|
|
|
|
// TODO make sure BUCKET_SIZE is multiple of page size
|
|
|
|
VirtualAlloc(b.values, BUCKET_SIZE, MEM_COMMIT, PAGE_READWRITE);
|
|
|
|
return b;
|
|
|
|
}
|
2018-09-29 15:14:46 +02:00
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
void end(const Bucket& bucket)
|
|
|
|
{
|
|
|
|
const int bucket_idx = int(((u8*)bucket.values - m_mem) / BUCKET_SIZE);
|
|
|
|
MT::SpinLock lock(m_mutex);
|
|
|
|
m_counts[bucket_idx] = bucket.count;
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
void merge()
|
2018-09-29 15:14:46 +02:00
|
|
|
{
|
2018-10-10 00:17:59 +02:00
|
|
|
int b = 0, e = int((m_end - m_mem) / BUCKET_SIZE) - 1;
|
|
|
|
if (m_end == m_mem) return;
|
2018-09-29 15:14:46 +02:00
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
for(;;) {
|
|
|
|
while (b != e && m_counts[b] == MAX_COUNT) {
|
|
|
|
++b;
|
|
|
|
}
|
|
|
|
if (b == e) {
|
|
|
|
for(int i = 0; i <= e; ++i) m_total_count += m_counts[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
const int s = Math::minimum(m_counts[e], MAX_COUNT - m_counts[b]);
|
|
|
|
memcpy(&m_mem[b * BUCKET_SIZE + m_counts[b] * sizeof(T)], &m_mem[e * BUCKET_SIZE + (m_counts[e] - s) * sizeof(T)], s * sizeof(T));
|
|
|
|
m_counts[b] += s;
|
|
|
|
m_counts[e] -= s;
|
|
|
|
if (m_counts[e] == 0) --e;
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
int size() const { return m_total_count; }
|
|
|
|
T* ptr() const { return (T*)m_mem; }
|
|
|
|
|
|
|
|
MT::SpinMutex m_mutex;
|
|
|
|
u8* m_mem;
|
|
|
|
u8* m_end;
|
|
|
|
Array<int> m_counts;
|
|
|
|
int m_total_count = 0;
|
2018-09-29 15:14:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
static const float SHADOW_CAM_NEAR = 50.0f;
|
|
|
|
static const float SHADOW_CAM_FAR = 5000.0f;
|
|
|
|
|
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
ResourceType PipelineResource::TYPE("pipeline");
|
|
|
|
|
|
|
|
|
|
|
|
void PipelineResource::unload()
|
|
|
|
{
|
|
|
|
content.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool PipelineResource::load(FS::IFile& file)
|
|
|
|
{
|
|
|
|
content.resize((int)file.size());
|
|
|
|
file.read(content.begin(), content.size());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PipelineResourceManager::PipelineResourceManager(IAllocator& allocator)
|
|
|
|
: ResourceManager(allocator)
|
|
|
|
, m_allocator(allocator)
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
Resource* PipelineResourceManager::createResource(const Path& path)
|
|
|
|
{
|
|
|
|
return LUMIX_NEW(m_allocator, PipelineResource)(path, *this, m_allocator);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void PipelineResourceManager::destroyResource(Resource& resource)
|
|
|
|
{
|
|
|
|
return LUMIX_DELETE(m_allocator, static_cast<PipelineResource*>(&resource));
|
|
|
|
}
|
|
|
|
|
|
|
|
PipelineResource::PipelineResource(const Path& path, ResourceManager& owner, IAllocator& allocator)
|
|
|
|
: Resource(path, owner, allocator)
|
|
|
|
, content(allocator)
|
|
|
|
{}
|
2018-08-19 17:35:37 +02:00
|
|
|
struct PipelineImpl final : Pipeline
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct CommandSet
|
|
|
|
{
|
|
|
|
CommandSet(IAllocator& allocator) : cmds(allocator) {}
|
|
|
|
Array<Array<u8>> cmds;
|
|
|
|
};
|
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
PipelineImpl(Renderer& renderer, PipelineResource* resource, const char* define, IAllocator& allocator)
|
2018-07-01 23:37:56 +02:00
|
|
|
: m_allocator(allocator)
|
|
|
|
, m_renderer(renderer)
|
2018-09-09 17:58:25 +02:00
|
|
|
, m_resource(resource)
|
2015-07-23 23:17:51 +02:00
|
|
|
, m_lua_state(nullptr)
|
2018-06-30 15:18:27 +02:00
|
|
|
, m_custom_commands_handlers(allocator)
|
2018-07-06 21:31:44 +02:00
|
|
|
, m_define(define)
|
2016-06-16 19:24:15 +02:00
|
|
|
, m_scene(nullptr)
|
2018-02-03 19:41:47 +01:00
|
|
|
, m_is_first_render(true)
|
2018-06-30 15:18:27 +02:00
|
|
|
, m_draw2d(allocator)
|
2018-07-11 23:35:34 +02:00
|
|
|
, m_output(-1)
|
2018-06-30 15:18:27 +02:00
|
|
|
, m_renderbuffers(allocator)
|
2018-07-05 15:54:14 +02:00
|
|
|
, m_shaders(allocator)
|
2018-10-12 00:12:44 +02:00
|
|
|
, m_command_sets(allocator)
|
2014-05-20 23:35:09 +02:00
|
|
|
{
|
2018-07-29 18:36:32 +02:00
|
|
|
m_timer = Timer::create(m_allocator);
|
2018-07-08 18:16:16 +02:00
|
|
|
m_viewport.w = m_viewport.h = 800;
|
2018-08-22 20:53:54 +02:00
|
|
|
ResourceManagerHub& rm = renderer.getEngine().getResourceManager();
|
|
|
|
m_draw2d_shader = rm.load<Shader>(Path("pipelines/draw2d.shd"));
|
|
|
|
m_debug_shape_shader = rm.load<Shader>(Path("pipelines/debug_shape.shd"));
|
2018-10-20 01:55:30 +02:00
|
|
|
m_text_mesh_shader = rm.load<Shader>(Path("pipelines/text_mesh.shd"));
|
2018-07-05 15:54:14 +02:00
|
|
|
TextureManager& texture_manager = renderer.getTextureManager();
|
2018-10-13 00:20:19 +02:00
|
|
|
m_default_cubemap = rm.load<Texture>(Path("textures/common/default_probe.dds"));
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
FontAtlas& font_atlas = m_renderer.getFontManager().getFontAtlas();
|
|
|
|
m_draw2d.FontTexUvWhitePixel = font_atlas.TexUvWhitePixel;
|
|
|
|
m_draw2d.Clear();
|
|
|
|
m_draw2d.PushClipRectFullScreen();
|
|
|
|
m_draw2d.PushTextureID(font_atlas.TexID);
|
2018-07-15 17:35:41 +02:00
|
|
|
|
2018-10-06 12:15:05 +02:00
|
|
|
m_position_uniform = ffr::allocUniform("u_position", ffr::UniformType::VEC3, 1);
|
|
|
|
m_lod_uniform = ffr::allocUniform("u_lod", ffr::UniformType::INT, 1);
|
2018-09-05 20:45:06 +02:00
|
|
|
m_position_radius_uniform = ffr::allocUniform("u_pos_radius", ffr::UniformType::VEC4, 1);
|
2018-07-22 15:22:36 +02:00
|
|
|
m_terrain_params_uniform = ffr::allocUniform("u_terrain_params", ffr::UniformType::VEC4, 1);
|
2018-10-06 12:15:05 +02:00
|
|
|
m_rel_camera_pos_uniform = ffr::allocUniform("u_rel_camera_pos", ffr::UniformType::VEC3, 1);
|
2018-07-22 15:22:36 +02:00
|
|
|
m_terrain_scale_uniform = ffr::allocUniform("u_terrain_scale", ffr::UniformType::VEC4, 1);
|
|
|
|
m_terrain_matrix_uniform = ffr::allocUniform("u_terrain_matrix", ffr::UniformType::MAT4, 1);
|
2018-07-15 17:35:41 +02:00
|
|
|
m_model_uniform = ffr::allocUniform("u_model", ffr::UniformType::MAT4, 1);
|
2018-07-17 01:13:58 +02:00
|
|
|
m_bones_uniform = ffr::allocUniform("u_bones", ffr::UniformType::MAT4, 196);
|
2018-07-15 17:35:41 +02:00
|
|
|
m_canvas_size_uniform = ffr::allocUniform("u_canvas_size", ffr::UniformType::VEC2, 1);
|
|
|
|
m_texture_uniform = ffr::allocUniform("u_texture", ffr::UniformType::INT, 1);
|
|
|
|
m_irradiance_map_uniform = ffr::allocUniform("u_irradiancemap", ffr::UniformType::INT, 1);
|
|
|
|
m_radiance_map_uniform = ffr::allocUniform("u_radiancemap", ffr::UniformType::INT, 1);
|
|
|
|
m_material_params_uniform = ffr::allocUniform("u_material_params", ffr::UniformType::VEC4, 1);
|
2018-07-29 12:40:58 +02:00
|
|
|
m_material_color_uniform = ffr::allocUniform("u_material_color", ffr::UniformType::VEC4, 1);
|
2018-09-05 20:45:06 +02:00
|
|
|
|
|
|
|
float cube_verts[] = {
|
|
|
|
-1, -1, -1,
|
|
|
|
1, -1, -1,
|
|
|
|
1, -1, 1,
|
|
|
|
-1, -1, 1,
|
|
|
|
-1, 1, -1,
|
|
|
|
1, 1, -1,
|
|
|
|
1, 1, 1,
|
|
|
|
-1, 1, 1
|
|
|
|
};
|
|
|
|
const Renderer::MemRef vb_mem = m_renderer.copy(cube_verts, sizeof(cube_verts));
|
|
|
|
m_cube_vb = m_renderer.createBuffer(vb_mem);
|
|
|
|
|
|
|
|
u16 cube_indices[] = {
|
|
|
|
0, 1, 2,
|
|
|
|
0, 2, 3,
|
|
|
|
4, 6, 5,
|
|
|
|
4, 7, 6,
|
|
|
|
0, 4, 5,
|
|
|
|
0, 5, 1,
|
|
|
|
2, 6, 7,
|
|
|
|
2, 7, 3,
|
|
|
|
0, 3, 7,
|
|
|
|
0, 7, 4,
|
2018-09-15 09:55:46 +02:00
|
|
|
1, 6, 2,
|
|
|
|
1, 5, 6
|
2018-09-05 20:45:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const Renderer::MemRef ib_mem = m_renderer.copy(cube_indices, sizeof(cube_indices));
|
|
|
|
m_cube_ib = m_renderer.createBuffer(ib_mem);
|
2018-09-09 17:58:25 +02:00
|
|
|
|
|
|
|
m_resource->onLoaded<PipelineImpl, &PipelineImpl::onStateChanged>(this);
|
2016-01-28 15:19:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
~PipelineImpl()
|
2016-01-28 15:19:56 +01:00
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
freeCommandSets();
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
m_draw2d_shader->getResourceManager().unload(*m_draw2d_shader);
|
2018-07-01 23:37:56 +02:00
|
|
|
m_debug_shape_shader->getResourceManager().unload(*m_debug_shape_shader);
|
2018-10-20 01:55:30 +02:00
|
|
|
m_text_mesh_shader->getResourceManager().unload(*m_text_mesh_shader);
|
2018-07-05 15:54:14 +02:00
|
|
|
m_default_cubemap->getResourceManager().unload(*m_default_cubemap);
|
|
|
|
|
|
|
|
for(ShaderRef& shader : m_shaders) {
|
|
|
|
shader.res->getResourceManager().unload(*shader.res);
|
|
|
|
}
|
2018-07-29 18:36:32 +02:00
|
|
|
Timer::destroy(m_timer);
|
2018-10-22 23:50:02 +02:00
|
|
|
if (m_resource) m_resource->getResourceManager().unload(*m_resource);
|
2015-07-23 23:17:51 +02:00
|
|
|
}
|
2014-05-20 23:35:09 +02:00
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void callInitScene()
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_getfield(m_lua_state, -1, "initScene");
|
|
|
|
if (lua_type(m_lua_state, -1) == LUA_TFUNCTION)
|
2014-05-20 23:35:09 +02:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_pushlightuserdata(m_lua_state, this);
|
|
|
|
if (lua_pcall(m_lua_state, 1, 0, 0) != 0)
|
2014-05-20 23:35:09 +02:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
g_log_error.log("lua") << lua_tostring(m_lua_state, -1);
|
|
|
|
lua_pop(m_lua_state, 1);
|
2014-05-20 23:35:09 +02:00
|
|
|
}
|
2018-06-30 15:18:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lua_pop(m_lua_state, 1);
|
2014-05-20 23:35:09 +02:00
|
|
|
}
|
2015-07-23 23:17:51 +02:00
|
|
|
}
|
2014-05-20 23:35:09 +02:00
|
|
|
|
2015-05-16 13:17:20 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2016-02-22 22:56:46 +01:00
|
|
|
void cleanup()
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
|
|
|
if (m_lua_state)
|
|
|
|
{
|
2016-04-25 15:33:16 +02:00
|
|
|
luaL_unref(m_renderer.getEngine().getState(), LUA_REGISTRYINDEX, m_lua_thread_ref);
|
2016-02-24 01:10:34 +01:00
|
|
|
luaL_unref(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
2015-07-23 23:17:51 +02:00
|
|
|
m_lua_state = nullptr;
|
|
|
|
}
|
2016-02-22 22:56:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-10-03 22:08:41 +02:00
|
|
|
void setDefine()
|
|
|
|
{
|
2018-07-06 21:31:44 +02:00
|
|
|
if (m_define == "") return;
|
|
|
|
StaticString<256> tmp(m_define, " = true");
|
2017-10-03 22:08:41 +02:00
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
bool errors = luaL_loadbuffer(m_lua_state, tmp, stringLength(tmp.data), m_resource->getPath().c_str()) != 0;
|
2017-10-03 22:08:41 +02:00
|
|
|
if (errors)
|
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
g_log_error.log("Renderer") << m_resource->getPath().c_str() << ": " << lua_tostring(m_lua_state, -1);
|
2017-10-03 22:08:41 +02:00
|
|
|
lua_pop(m_lua_state, 1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_setfenv(m_lua_state, -2);
|
|
|
|
errors = lua_pcall(m_lua_state, 0, 0, 0) != 0;
|
2017-10-03 22:08:41 +02:00
|
|
|
if (errors)
|
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
g_log_error.log("Renderer") << m_resource->getPath().c_str() << ": " << lua_tostring(m_lua_state, -1);
|
2017-10-03 22:08:41 +02:00
|
|
|
lua_pop(m_lua_state, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void executeCustomCommand(const char* name)
|
|
|
|
{
|
|
|
|
u32 name_hash = crc32(name);
|
|
|
|
for(CustomCommandHandler& handler : m_custom_commands_handlers)
|
|
|
|
{
|
|
|
|
if(handler.hash == name_hash)
|
|
|
|
{
|
|
|
|
handler.callback.invoke();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void exposeCustomCommandToLua(const CustomCommandHandler& handler)
|
|
|
|
{
|
|
|
|
if (!m_lua_state) return;
|
|
|
|
|
|
|
|
char tmp[1024];
|
|
|
|
copyString(tmp, "function ");
|
|
|
|
catString(tmp, handler.name);
|
2018-07-05 15:54:14 +02:00
|
|
|
catString(tmp, "() executeCustomCommand(\"");
|
2018-06-30 15:18:27 +02:00
|
|
|
catString(tmp, handler.name);
|
|
|
|
catString(tmp, "\") end");
|
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
bool errors = luaL_loadbuffer(m_lua_state, tmp, stringLength(tmp), "exposeCustomCommandToLua") != 0;
|
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_setfenv(m_lua_state, -2);
|
2018-06-30 15:18:27 +02:00
|
|
|
errors = errors || lua_pcall(m_lua_state, 0, 0, 0) != 0;
|
|
|
|
|
|
|
|
if (errors)
|
|
|
|
{
|
|
|
|
g_log_error.log("Renderer") << lua_tostring(m_lua_state, -1);
|
|
|
|
lua_pop(m_lua_state, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
|
|
|
|
void onStateChanged(Resource::State, Resource::State new_state, Resource&)
|
2016-02-22 22:56:46 +01:00
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
if (new_state != Resource::State::READY) return;
|
2016-02-22 22:56:46 +01:00
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
2016-02-24 01:10:34 +01:00
|
|
|
m_lua_state = lua_newthread(m_renderer.getEngine().getState());
|
2016-04-25 15:33:16 +02:00
|
|
|
m_lua_thread_ref = luaL_ref(m_renderer.getEngine().getState(), LUA_REGISTRYINDEX);
|
|
|
|
|
2016-02-24 01:10:34 +01:00
|
|
|
lua_newtable(m_lua_state);
|
|
|
|
lua_pushvalue(m_lua_state, -1);
|
|
|
|
m_lua_env = luaL_ref(m_lua_state, LUA_REGISTRYINDEX);
|
|
|
|
lua_pushvalue(m_lua_state, -1);
|
|
|
|
lua_setmetatable(m_lua_state, -2);
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_pushvalue(m_lua_state, LUA_GLOBALSINDEX);
|
2016-02-24 01:10:34 +01:00
|
|
|
lua_setfield(m_lua_state, -2, "__index");
|
|
|
|
|
2016-03-31 16:58:42 +02:00
|
|
|
if (m_renderer.getEngine().getDiskFileDevice())
|
|
|
|
{
|
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_pushstring(m_lua_state, m_renderer.getEngine().getDiskFileDevice()->getBasePath());
|
|
|
|
lua_setfield(m_lua_state, -2, "LUA_PATH");
|
|
|
|
}
|
|
|
|
|
2016-02-24 01:10:34 +01:00
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
2016-02-15 15:50:24 +01:00
|
|
|
lua_pushlightuserdata(m_lua_state, this);
|
2016-02-24 01:10:34 +01:00
|
|
|
lua_setfield(m_lua_state, -2, "this");
|
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
registerLuaAPI(m_lua_state);
|
2018-06-30 15:18:27 +02:00
|
|
|
for (auto& handler : m_custom_commands_handlers)
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
exposeCustomCommandToLua(handler);
|
2015-07-23 23:17:51 +02:00
|
|
|
}
|
2015-02-14 00:13:34 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
setDefine();
|
2014-05-20 23:35:09 +02:00
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
const char* content = m_resource->content.begin();
|
|
|
|
const int content_size = m_resource->content.size();
|
2018-06-30 15:18:27 +02:00
|
|
|
bool errors =
|
2018-09-09 17:58:25 +02:00
|
|
|
luaL_loadbuffer(m_lua_state, content, content_size, m_resource->getPath().c_str()) != 0;
|
2018-06-30 15:18:27 +02:00
|
|
|
if (errors)
|
2015-05-16 13:17:20 +02:00
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
g_log_error.log("Renderer") << m_resource->getPath().c_str() << ": " << lua_tostring(m_lua_state, -1);
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_pop(m_lua_state, 1);
|
|
|
|
return;
|
2018-03-13 14:56:33 +01:00
|
|
|
}
|
2018-06-30 15:18:27 +02:00
|
|
|
|
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_setfenv(m_lua_state, -2);
|
|
|
|
errors = lua_pcall(m_lua_state, 0, 0, 0) != 0;
|
|
|
|
if (errors)
|
2018-03-13 14:56:33 +01:00
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
g_log_error.log("Renderer") << m_resource->getPath().c_str() << ": " << lua_tostring(m_lua_state, -1);
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_pop(m_lua_state, 1);
|
|
|
|
return;
|
2016-02-16 10:17:37 +01:00
|
|
|
}
|
|
|
|
|
2018-07-08 18:16:16 +02:00
|
|
|
m_viewport.w = m_viewport.h = 800;
|
2018-06-30 15:18:27 +02:00
|
|
|
if (m_scene) callInitScene();
|
2018-04-24 00:55:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void clearBuffers()
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
for (Renderbuffer& rb : m_renderbuffers) {
|
|
|
|
++rb.frame_counter;
|
|
|
|
}
|
2015-07-04 15:22:28 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
for(int i = m_renderbuffers.size() - 1; i >= 0; --i) {
|
2018-08-19 22:01:20 +02:00
|
|
|
if (m_renderbuffers[i].frame_counter > 1) {
|
2018-07-14 10:03:38 +02:00
|
|
|
m_renderer.destroy(m_renderbuffers[i].handle);
|
2018-06-30 15:18:27 +02:00
|
|
|
m_renderbuffers.eraseFast(i);
|
|
|
|
}
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
2016-10-22 18:08:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-19 22:01:20 +02:00
|
|
|
virtual void setViewport(const Viewport& viewport) override
|
|
|
|
{
|
|
|
|
m_viewport = viewport;
|
|
|
|
}
|
2018-07-08 00:44:45 +02:00
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
bool render() override
|
|
|
|
{
|
2015-07-23 23:17:51 +02:00
|
|
|
PROFILE_FUNCTION();
|
2015-07-04 15:22:28 +02:00
|
|
|
|
2018-10-07 18:00:48 +02:00
|
|
|
if (!isReady() || !m_scene || m_viewport.w <= 0 || m_viewport.h <= 0) {
|
2018-07-06 21:31:44 +02:00
|
|
|
m_is_first_render = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
if (m_is_first_render) {
|
2018-02-03 19:41:47 +01:00
|
|
|
// m_draw2d might accumulate too much data to render while pipeline was not ready
|
|
|
|
// so we clear it on the first frame
|
|
|
|
m_is_first_render = false;
|
|
|
|
m_draw2d.Clear();
|
|
|
|
}
|
2015-05-16 13:17:20 +02:00
|
|
|
|
2016-01-28 15:19:56 +01:00
|
|
|
m_stats = {};
|
2018-08-19 22:01:20 +02:00
|
|
|
clearBuffers();
|
2018-07-11 23:35:34 +02:00
|
|
|
|
|
|
|
for(Renderbuffer& rb : m_renderbuffers) {
|
|
|
|
if(!rb.use_realtive_size) continue;
|
|
|
|
const uint w = uint(rb.relative_size.x * m_viewport.w + 0.5f);
|
|
|
|
const uint h = uint(rb.relative_size.y * m_viewport.h + 0.5f);
|
|
|
|
if(rb.width != w || rb.height != h) {
|
|
|
|
rb.width = w;
|
|
|
|
rb.height = h;
|
|
|
|
m_renderer.destroy(rb.handle);
|
2018-10-28 17:38:15 +01:00
|
|
|
rb.handle = m_renderer.createTexture(w, h, 1, rb.format, 0, {0, 0}, "render_buffer");
|
2018-07-11 23:35:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Renderer::GlobalState state;
|
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
const Matrix view = m_viewport.getViewRotation();
|
2018-07-11 23:35:34 +02:00
|
|
|
const Matrix projection = m_viewport.getProjection(ffr::isHomogenousDepth());
|
|
|
|
state.camera_projection = projection;
|
2018-07-29 18:36:32 +02:00
|
|
|
state.camera_inv_projection = projection;
|
|
|
|
state.camera_inv_projection.inverse();
|
2018-07-11 23:35:34 +02:00
|
|
|
state.camera_view = view;
|
2018-07-26 23:53:14 +02:00
|
|
|
state.camera_inv_view = view.fastInverted();
|
2018-07-11 23:35:34 +02:00
|
|
|
state.camera_view_projection = projection * view;
|
|
|
|
state.camera_inv_view_projection = state.camera_view_projection;
|
|
|
|
state.camera_inv_view_projection.inverse();
|
2018-07-29 18:36:32 +02:00
|
|
|
state.time = m_timer->getTimeSinceStart();
|
2018-09-05 20:45:06 +02:00
|
|
|
state.framebuffer_size.x = m_viewport.w;
|
|
|
|
state.framebuffer_size.y = m_viewport.h;
|
2018-07-11 23:35:34 +02:00
|
|
|
|
2018-08-19 17:35:37 +02:00
|
|
|
const EntityPtr global_light = m_scene->getActiveGlobalLight();
|
2018-07-11 23:35:34 +02:00
|
|
|
if(global_light.isValid()) {
|
2018-08-19 17:35:37 +02:00
|
|
|
EntityRef gl = (EntityRef)global_light;
|
|
|
|
state.light_direction = Vec4(m_scene->getUniverse().getRotation(gl).rotate(Vec3(0, 0, -1)), 456);
|
|
|
|
state.light_color = m_scene->getGlobalLightColor(gl);
|
|
|
|
state.light_intensity = m_scene->getGlobalLightIntensity(gl);
|
|
|
|
state.light_indirect_intensity = m_scene->getGlobalLightIndirectIntensity(gl);
|
2018-07-11 23:35:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
m_renderer.setGlobalState(state);
|
2018-07-14 10:03:38 +02:00
|
|
|
|
2018-09-03 16:04:47 +02:00
|
|
|
LuaWrapper::DebugGuard lua_debug_guard(m_lua_state);
|
2018-07-14 10:03:38 +02:00
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_getfield(m_lua_state, -1, "main");
|
2018-08-29 12:36:19 +02:00
|
|
|
if (lua_type(m_lua_state, -1) != LUA_TFUNCTION) {
|
|
|
|
lua_pop(m_lua_state, 2);
|
|
|
|
return false;
|
2018-07-11 23:35:34 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 12:36:19 +02:00
|
|
|
LuaWrapper::pcall(m_lua_state, 0);
|
|
|
|
lua_pop(m_lua_state, 1);
|
2018-10-12 00:12:44 +02:00
|
|
|
freeCommandSets();
|
2018-07-08 18:16:16 +02:00
|
|
|
return true;
|
2015-07-23 23:17:51 +02:00
|
|
|
}
|
2015-05-15 22:38:34 +02:00
|
|
|
|
2015-07-04 15:22:28 +02:00
|
|
|
|
2018-07-01 23:37:56 +02:00
|
|
|
void renderDebugLines()
|
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-07-14 17:52:06 +02:00
|
|
|
{
|
|
|
|
Cmd(IAllocator& allocator) : lines(allocator) {}
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
const Array<DebugLine>& src_lines = pipeline->m_scene->getDebugLines();
|
|
|
|
lines.resize(src_lines.size());
|
|
|
|
copyMemory(&lines[0], &src_lines[0], lines.size() * sizeof(lines[0]));
|
2018-08-09 22:35:00 +02:00
|
|
|
render_data = pipeline->m_debug_shape_shader->m_render_data;
|
2018-07-14 17:52:06 +02:00
|
|
|
}
|
2018-07-01 23:37:56 +02:00
|
|
|
|
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
void execute() override {
|
2018-08-09 22:35:00 +02:00
|
|
|
ffr::pushDebugGroup("debug lines");
|
|
|
|
const Shader::Program& shader = Shader::getProgram(render_data, 0);
|
2018-07-14 17:52:06 +02:00
|
|
|
struct BaseVertex {
|
|
|
|
Vec3 pos;
|
|
|
|
u32 color;
|
|
|
|
};
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
Array<BaseVertex> vertices(pipeline->m_allocator);
|
|
|
|
vertices.resize(lines.size() * 2);
|
|
|
|
for (int j = 0, n = lines.size(); j < n; ++j) {
|
|
|
|
const DebugLine& line = lines[j];
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
vertices[j * 2].color = line.color;
|
2018-09-16 18:35:57 +02:00
|
|
|
vertices[j * 2].pos = (line.from - viewport_pos).toFloat();
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
vertices[j * 2 + 1].color = line.color;
|
2018-09-16 18:35:57 +02:00
|
|
|
vertices[j * 2 + 1].pos = (line.to - viewport_pos).toFloat();
|
2018-07-14 17:52:06 +02:00
|
|
|
}
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-14 17:52:06 +02:00
|
|
|
ffr::VertexDecl vertex_decl;
|
|
|
|
vertex_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
vertex_decl.addAttribute(4, ffr::AttributeType::U8, true, false);
|
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setUniformMatrix4f(pipeline->m_model_uniform, &Matrix::IDENTITY.m11);
|
2018-07-01 23:37:56 +02:00
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setState(0);
|
|
|
|
ffr::useProgram(shader.handle);
|
2018-07-22 22:57:29 +02:00
|
|
|
|
|
|
|
const Renderer::TransientSlice vb = pipeline->m_renderer.allocTransient(vertices.byte_size());
|
|
|
|
ffr::update(vb.buffer, vertices.begin(), vb.offset, vb.size);
|
|
|
|
|
|
|
|
ffr::setVertexBuffer(&vertex_decl, vb.buffer, vb.offset, nullptr);
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setIndexBuffer(ffr::INVALID_BUFFER);
|
|
|
|
ffr::drawArrays(0, lines.size() * 2, ffr::PrimitiveType::LINES);
|
2018-08-09 22:35:00 +02:00
|
|
|
ffr::popDebugGroup();
|
2018-07-14 17:52:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Array<DebugLine> lines;
|
|
|
|
PipelineImpl* pipeline;
|
2018-09-16 18:35:57 +02:00
|
|
|
DVec3 viewport_pos;
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* render_data;
|
2018-07-14 17:52:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
const Array<DebugLine>& lines = m_scene->getDebugLines();
|
|
|
|
if (lines.empty() || !m_debug_shape_shader->isReady()) return;
|
|
|
|
|
|
|
|
IAllocator& allocator = m_renderer.getAllocator();
|
|
|
|
Cmd* cmd = LUMIX_NEW(allocator, Cmd)(allocator);
|
|
|
|
cmd->pipeline = this;
|
2018-08-09 22:35:00 +02:00
|
|
|
cmd->viewport_pos = m_viewport.pos;
|
2018-07-14 17:52:06 +02:00
|
|
|
m_renderer.push(cmd);
|
2018-07-01 23:37:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void renderDebugShapes()
|
|
|
|
{
|
|
|
|
renderDebugLines();
|
|
|
|
/*renderDebugTriangles();
|
|
|
|
renderDebugPoints();*/
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void render2D()
|
2016-01-12 19:37:00 +01:00
|
|
|
{
|
2018-07-14 21:55:32 +02:00
|
|
|
auto resetDraw2D = [this](){
|
2018-06-30 15:18:27 +02:00
|
|
|
m_draw2d.Clear();
|
|
|
|
m_draw2d.PushClipRectFullScreen();
|
|
|
|
FontAtlas& atlas = m_renderer.getFontManager().getFontAtlas();
|
|
|
|
m_draw2d.FontTexUvWhitePixel = atlas.TexUvWhitePixel;
|
|
|
|
m_draw2d.PushTextureID(atlas.TexID);
|
|
|
|
};
|
2016-01-12 13:52:14 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
if (!m_draw2d_shader->isReady()) {
|
|
|
|
resetDraw2D();
|
|
|
|
return;
|
|
|
|
}
|
2016-01-12 19:37:00 +01:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
if (m_draw2d.IdxBuffer.size() == 0) {
|
2018-06-30 15:18:27 +02:00
|
|
|
resetDraw2D();
|
|
|
|
return;
|
2016-01-12 19:37:00 +01:00
|
|
|
}
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-07-14 21:55:32 +02:00
|
|
|
{
|
|
|
|
Renderer::MemRef idx_buffer_mem;
|
|
|
|
Renderer::MemRef vtx_buffer_mem;
|
|
|
|
int num_indices;
|
|
|
|
int num_vertices;
|
|
|
|
Array<Draw2D::DrawCmd> cmd_buffer;
|
|
|
|
|
|
|
|
Cmd(IAllocator& allocator) : cmd_buffer(allocator) {}
|
|
|
|
|
|
|
|
void setup()
|
|
|
|
{
|
|
|
|
size.set((float)pipeline->m_viewport.w, (float)pipeline->m_viewport.h);
|
|
|
|
|
|
|
|
Draw2D& draw2d = pipeline->m_draw2d;
|
2016-01-12 19:37:00 +01:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
num_indices = draw2d.IdxBuffer.size();
|
|
|
|
num_vertices = draw2d.VtxBuffer.size();
|
2016-01-15 00:05:53 +01:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
idx_buffer_mem = pipeline->m_renderer.copy(&draw2d.IdxBuffer[0], num_indices * sizeof(ImDrawIdx));
|
|
|
|
vtx_buffer_mem = pipeline->m_renderer.copy(&draw2d.VtxBuffer[0], num_vertices * sizeof(ImDrawVert));
|
|
|
|
cmd_buffer.resize(draw2d.CmdBuffer.size());
|
|
|
|
copyMemory(&cmd_buffer[0], draw2d.CmdBuffer.begin(), sizeof(cmd_buffer[0]) * cmd_buffer.size());
|
2016-01-15 00:05:53 +01:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
draw2d.Clear();
|
|
|
|
draw2d.PushClipRectFullScreen();
|
|
|
|
FontAtlas& atlas = pipeline->m_renderer.getFontManager().getFontAtlas();
|
|
|
|
draw2d.FontTexUvWhitePixel = atlas.TexUvWhitePixel;
|
|
|
|
draw2d.PushTextureID(atlas.TexID);
|
2018-08-09 22:35:00 +02:00
|
|
|
|
|
|
|
shader = pipeline->m_draw2d_shader->m_render_data;
|
2018-07-14 21:55:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void execute()
|
|
|
|
{
|
|
|
|
ffr::VertexDecl vertex_decl;
|
|
|
|
vertex_decl.addAttribute(2, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
vertex_decl.addAttribute(2, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
vertex_decl.addAttribute(4, ffr::AttributeType::U8, true, false);
|
2018-07-15 17:35:41 +02:00
|
|
|
|
|
|
|
ffr::BufferHandle vb = ffr::allocBufferHandle();
|
|
|
|
ffr::BufferHandle ib = ffr::allocBufferHandle();
|
|
|
|
ffr::createBuffer(vb, vtx_buffer_mem.size, vtx_buffer_mem.data);
|
|
|
|
ffr::createBuffer(ib, idx_buffer_mem.size, idx_buffer_mem.data);
|
2018-07-14 21:55:32 +02:00
|
|
|
pipeline->m_renderer.free(idx_buffer_mem);
|
|
|
|
pipeline->m_renderer.free(vtx_buffer_mem);
|
|
|
|
|
|
|
|
ffr::pushDebugGroup("draw2d");
|
2018-08-09 22:35:00 +02:00
|
|
|
ffr::ProgramHandle prg = Shader::getProgram(shader, 0).handle;
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setUniform2f(pipeline->m_canvas_size_uniform, &size.x);
|
|
|
|
ffr::setVertexBuffer(&vertex_decl, vb, 0, nullptr);
|
|
|
|
ffr::setIndexBuffer(ib);
|
2018-07-14 21:55:32 +02:00
|
|
|
|
|
|
|
u32 elem_offset = 0;
|
|
|
|
const Draw2D::DrawCmd* pcmd_begin = cmd_buffer.begin();
|
|
|
|
const Draw2D::DrawCmd* pcmd_end = cmd_buffer.end();
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 blend_state = ffr::getBlendStateBits(ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA, ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA);
|
|
|
|
ffr::setState(blend_state);
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setUniform1i(pipeline->m_texture_uniform, 0);
|
|
|
|
ffr::useProgram(prg);
|
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
ASSERT(pcmd_begin <= pcmd_end - 1); // TODO compute correct offsets
|
|
|
|
for (const Draw2D::DrawCmd* pcmd = pcmd_begin; pcmd != pcmd_end; pcmd++) {
|
|
|
|
if (0 == pcmd->ElemCount) continue;
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
ffr::scissor(uint(Math::maximum(pcmd->ClipRect.x, 0.0f)),
|
|
|
|
uint(Math::maximum(pcmd->ClipRect.y, 0.0f)),
|
|
|
|
uint(Math::minimum(pcmd->ClipRect.z, 65535.0f) - Math::maximum(pcmd->ClipRect.x, 0.0f)),
|
|
|
|
uint(Math::minimum(pcmd->ClipRect.w, 65535.0f) - Math::maximum(pcmd->ClipRect.y, 0.0f)));
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
const Texture* atlas_texture = pipeline->m_renderer.getFontManager().getAtlasTexture();
|
|
|
|
ffr::TextureHandle texture_id = atlas_texture->handle;
|
|
|
|
if (pcmd->TextureId) texture_id = *(ffr::TextureHandle*)pcmd->TextureId;
|
|
|
|
if(!texture_id.isValid()) texture_id = atlas_texture->handle;
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::bindTexture(0, texture_id);
|
2018-07-14 21:55:32 +02:00
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::drawTriangles(num_indices);
|
2018-07-14 21:55:32 +02:00
|
|
|
|
|
|
|
elem_offset += pcmd->ElemCount;
|
|
|
|
}
|
|
|
|
ffr::popDebugGroup();
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::destroy(vb);
|
|
|
|
ffr::destroy(ib);
|
2018-07-14 21:55:32 +02:00
|
|
|
}
|
2016-01-30 10:06:58 +01:00
|
|
|
|
2018-07-14 21:55:32 +02:00
|
|
|
Vec2 size;
|
|
|
|
PipelineImpl* pipeline;
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* shader;
|
2018-07-14 21:55:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
IAllocator& allocator = m_renderer.getAllocator();
|
|
|
|
Cmd* cmd = LUMIX_NEW(allocator, Cmd)(allocator);
|
|
|
|
cmd->pipeline = this;
|
|
|
|
m_renderer.push(cmd);
|
2016-01-15 00:05:53 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void setScene(RenderScene* scene) override
|
2016-01-15 00:05:53 +01:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
m_scene = scene;
|
|
|
|
if (m_lua_state && m_scene) callInitScene();
|
2016-01-15 00:05:53 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
RenderScene* getScene() const override { return m_scene; }
|
2016-01-15 00:05:53 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
CustomCommandHandler& addCustomCommandHandler(const char* name) override
|
2016-01-15 00:05:53 +01:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
auto& handler = m_custom_commands_handlers.emplace();
|
|
|
|
copyString(handler.name, name);
|
|
|
|
handler.hash = crc32(name);
|
|
|
|
exposeCustomCommandToLua(handler);
|
|
|
|
return handler;
|
2016-01-15 00:05:53 +01:00
|
|
|
}
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
|
|
|
|
static ffr::TextureFormat getFormat(const char* name)
|
|
|
|
{
|
|
|
|
static const struct
|
|
|
|
{
|
|
|
|
const char* name;
|
|
|
|
ffr::TextureFormat value;
|
|
|
|
} FORMATS[] = {
|
|
|
|
{"depth32", ffr::TextureFormat::D32},
|
|
|
|
{"depth24", ffr::TextureFormat::D24},
|
|
|
|
{"depth24stencil8", ffr::TextureFormat::D24S8},
|
|
|
|
{"rgba8", ffr::TextureFormat::RGBA8},
|
2018-07-05 15:54:14 +02:00
|
|
|
{"srgba", ffr::TextureFormat::SRGBA},
|
|
|
|
{"srgb", ffr::TextureFormat::SRGB},
|
2018-09-25 18:33:38 +02:00
|
|
|
{"rgba16", ffr::TextureFormat::RGBA16},
|
2018-06-30 15:18:27 +02:00
|
|
|
{"rgba16f", ffr::TextureFormat::RGBA16F},
|
|
|
|
{"r16f", ffr::TextureFormat::R16F},
|
|
|
|
{"r16", ffr::TextureFormat::R16},
|
|
|
|
{"r32f", ffr::TextureFormat::R32F},
|
|
|
|
};
|
2016-01-15 00:05:53 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
for (auto& i : FORMATS)
|
|
|
|
{
|
|
|
|
if (equalStrings(i.name, name)) return i.value;
|
|
|
|
}
|
|
|
|
g_log_error.log("Renderer") << "Uknown texture format " << name;
|
|
|
|
return ffr::TextureFormat::RGBA8;
|
2016-02-14 16:49:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
int createRenderbuffer(float w, float h, bool relative, const char* format_str)
|
2016-02-15 15:50:24 +01:00
|
|
|
{
|
2018-07-11 23:35:34 +02:00
|
|
|
const uint rb_w = uint(relative ? w * m_viewport.w + 0.5f : w);
|
|
|
|
const uint rb_h = uint(relative ? h * m_viewport.h + 0.5f : h);
|
2018-06-30 15:18:27 +02:00
|
|
|
const ffr::TextureFormat format = getFormat(format_str);
|
2016-02-15 15:50:24 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
for (int i = 0, n = m_renderbuffers.size(); i < n; ++i)
|
|
|
|
{
|
|
|
|
Renderbuffer& rb = m_renderbuffers[i];
|
|
|
|
if (rb.frame_counter == 0) continue;
|
|
|
|
if (rb.width != rb_w) continue;
|
|
|
|
if (rb.height != rb_h) continue;
|
|
|
|
if (rb.format != format) continue;
|
2016-02-15 15:50:24 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
rb.frame_counter = 0;
|
|
|
|
return i;
|
|
|
|
}
|
2017-10-09 13:33:24 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
Renderbuffer& rb = m_renderbuffers.emplace();
|
2018-07-11 23:35:34 +02:00
|
|
|
rb.use_realtive_size = relative;
|
|
|
|
rb.relative_size.set(w, h);
|
2018-06-30 15:18:27 +02:00
|
|
|
rb.frame_counter = 0;
|
|
|
|
rb.width = rb_w;
|
|
|
|
rb.height = rb_h;
|
|
|
|
rb.format = format;
|
2018-10-28 17:38:15 +01:00
|
|
|
rb.handle = m_renderer.createTexture(rb_w, rb_h, 1, format, 0, {0, 0}, "render_buffer");
|
2015-07-23 23:17:51 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
return m_renderbuffers.size() - 1;
|
|
|
|
}
|
2017-10-04 13:23:34 +02:00
|
|
|
|
2015-10-24 15:27:48 +02:00
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
static int renderTerrains(lua_State* L)
|
|
|
|
{
|
|
|
|
PROFILE_FUNCTION();
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
2018-10-28 17:38:15 +01:00
|
|
|
const CameraParams cp = checkCameraParams(L, 1);
|
2018-08-23 22:35:38 +02:00
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
IAllocator& allocator = pipeline->m_renderer.getAllocator();
|
|
|
|
RenderTerrainsCommand* cmd = LUMIX_NEW(allocator, RenderTerrainsCommand)(allocator);
|
|
|
|
|
2018-10-28 17:38:15 +01:00
|
|
|
if (lua_gettop(L) > 1 && lua_istable(L, 2)) {
|
2018-07-22 15:22:36 +02:00
|
|
|
lua_pushnil(L);
|
2018-10-28 17:38:15 +01:00
|
|
|
while (lua_next(L, 2) != 0) {
|
2018-07-22 15:22:36 +02:00
|
|
|
if(lua_type(L, -1) != LUA_TNUMBER) {
|
|
|
|
g_log_error.log("Renderer") << "Incorrect global textures arguments of renderTerrains";
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lua_type(L, -2) != LUA_TSTRING) {
|
|
|
|
g_log_error.log("Renderer") << "Incorrect global textures arguments of renderTerrains";
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd->m_global_textures_count > lengthOf(cmd->m_global_textures)) {
|
|
|
|
g_log_error.log("Renderer") << "Too many textures in renderTerrains call";
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
lua_pop(L, 2);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* uniform = lua_tostring(L, -2);
|
|
|
|
const int rb_idx = (int)lua_tointeger(L, -1);
|
|
|
|
auto& t = cmd->m_global_textures[cmd->m_global_textures_count];
|
|
|
|
t.texture = pipeline->m_renderbuffers[rb_idx].handle;
|
|
|
|
t.uniform = ffr::allocUniform(uniform, ffr::UniformType::INT, 1);
|
|
|
|
++cmd->m_global_textures_count;
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-28 17:38:15 +01:00
|
|
|
if (lua_gettop(L) > 2 && lua_istable(L, 3)) {
|
|
|
|
cmd->m_render_state = getState(L, 3);
|
2018-10-28 01:11:15 +02:00
|
|
|
}
|
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
cmd->m_pipeline = pipeline;
|
|
|
|
cmd->m_camera_params = cp;
|
2018-10-21 18:05:43 +02:00
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
pipeline->m_renderer.push(cmd);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
|
|
|
|
static int renderParticles(lua_State* L)
|
2018-07-14 10:03:38 +02:00
|
|
|
{
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
2018-07-22 15:22:36 +02:00
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
2018-08-29 12:36:19 +02:00
|
|
|
const CameraParams cp = checkCameraParams(L ,1);
|
2018-07-14 10:03:38 +02:00
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
2018-08-29 12:36:19 +02:00
|
|
|
PROFILE_FUNCTION();
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-08-23 22:35:38 +02:00
|
|
|
{
|
|
|
|
Cmd(IAllocator& allocator)
|
|
|
|
: m_data(allocator)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
const auto& emitters = m_pipeline->m_scene->getParticleEmitters();
|
2018-07-14 10:03:38 +02:00
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
int byte_size = 0;
|
|
|
|
for (ParticleEmitter* emitter : emitters) {
|
|
|
|
byte_size += emitter->getInstanceDataSizeBytes();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_data.reserve(sizeof(int) * emitters.size() + byte_size);
|
|
|
|
|
|
|
|
for (ParticleEmitter* emitter : emitters) {
|
|
|
|
if (!emitter->getResource() || !emitter->getResource()->isReady()) continue;
|
2018-08-29 12:36:19 +02:00
|
|
|
|
|
|
|
const int size = emitter->getInstanceDataSizeBytes();
|
|
|
|
if (size == 0) continue;
|
2018-08-26 18:19:50 +02:00
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
const Material* material = emitter->getResource()->getMaterial();
|
|
|
|
m_data.write(material->getShader()->m_render_data);
|
2018-08-29 12:36:19 +02:00
|
|
|
m_data.write(size);
|
|
|
|
m_data.write(emitter->getInstancesCount());
|
2018-08-26 18:19:50 +02:00
|
|
|
float* instance_data = (float*)m_data.skip(size);
|
|
|
|
emitter->fillInstanceData(m_camera_params.pos, instance_data);
|
2018-08-23 22:35:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
2018-08-26 18:19:50 +02:00
|
|
|
ffr::pushDebugGroup("particles");
|
2018-08-23 22:35:38 +02:00
|
|
|
InputBlob blob(m_data);
|
|
|
|
ffr::VertexDecl instance_decl;
|
2018-08-26 18:19:50 +02:00
|
|
|
instance_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 blend_state = ffr::getBlendStateBits(ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA, ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA);
|
|
|
|
ffr::setState(blend_state);
|
2018-08-23 22:35:38 +02:00
|
|
|
while(blob.getPosition() < blob.getSize()) {
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* shader_data = blob.read<ShaderRenderData*>();
|
2018-08-23 22:35:38 +02:00
|
|
|
const int byte_size = blob.read<int>();
|
|
|
|
const int instances_count = blob.read<int>();
|
|
|
|
const Renderer::TransientSlice transient = m_pipeline->m_renderer.allocTransient(byte_size);
|
2018-08-26 18:19:50 +02:00
|
|
|
if ((int)transient.size < byte_size) {
|
|
|
|
g_log_warning.log("Renderer") << "Not enough memory reserved to render all particles.";
|
|
|
|
break;
|
|
|
|
}
|
2018-08-23 22:35:38 +02:00
|
|
|
|
|
|
|
const void* mem = blob.skip(byte_size);
|
|
|
|
ffr::update(transient.buffer, mem, transient.offset, byte_size);
|
|
|
|
|
|
|
|
const Shader::Program& prog = Shader::getProgram(shader_data, 0);
|
|
|
|
ffr::useProgram(prog.handle);
|
2018-10-14 17:46:42 +02:00
|
|
|
ffr::setInstanceBuffer(instance_decl, transient.buffer, transient.offset, 0, nullptr);
|
2018-08-26 18:19:50 +02:00
|
|
|
ffr::drawTriangleStripArraysInstanced(0, 4, instances_count);
|
2018-08-23 22:35:38 +02:00
|
|
|
}
|
2018-08-26 18:19:50 +02:00
|
|
|
ffr::popDebugGroup();
|
2018-08-23 22:35:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
OutputBlob m_data;
|
|
|
|
PipelineImpl* m_pipeline;
|
2018-08-26 18:19:50 +02:00
|
|
|
CameraParams m_camera_params;
|
2018-08-23 22:35:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
Cmd* cmd = LUMIX_NEW(pipeline->m_allocator, Cmd)(pipeline->m_allocator);
|
|
|
|
cmd->m_pipeline = pipeline;
|
2018-08-26 18:19:50 +02:00
|
|
|
cmd->m_camera_params = cp;
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
pipeline->m_renderer.push(cmd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct CameraParams
|
|
|
|
{
|
2018-09-16 18:35:57 +02:00
|
|
|
ShiftedFrustum frustum;
|
|
|
|
DVec3 pos;
|
2018-08-23 22:35:38 +02:00
|
|
|
float lod_multiplier;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static CameraParams checkCameraParams(lua_State* L, int idx)
|
|
|
|
{
|
2018-07-14 10:03:38 +02:00
|
|
|
CameraParams cp;
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
lua_getfield(L, idx, "frustum");
|
2018-07-14 10:03:38 +02:00
|
|
|
if (!lua_istable(L, -1)) {
|
|
|
|
lua_pop(L, 1);
|
|
|
|
luaL_error(L, "Frustum is not a table");
|
|
|
|
}
|
|
|
|
float* points = cp.frustum.xs;
|
2018-09-16 18:35:57 +02:00
|
|
|
if(!LuaWrapper::checkField(L, -1, "origin", &cp.frustum.origin)) {
|
|
|
|
lua_pop(L, 1);
|
|
|
|
luaL_error(L, "Frustum without origin");
|
|
|
|
}
|
2018-07-14 10:03:38 +02:00
|
|
|
for (int i = 0; i < 32 + 24; ++i) {
|
|
|
|
lua_rawgeti(L, -1, i + 1);
|
|
|
|
if(!LuaWrapper::isType<float>(L, -1)) {
|
|
|
|
lua_pop(L, 2);
|
|
|
|
luaL_error(L, "Frustum must contain exactly 24 floats");
|
|
|
|
}
|
|
|
|
points[i] = LuaWrapper::toType<float>(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
2018-10-12 00:12:44 +02:00
|
|
|
lua_pop(L, 1);
|
2018-07-14 10:03:38 +02:00
|
|
|
cp.frustum.setPlanesFromPoints();
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
if(!LuaWrapper::checkField(L, idx, "lod_multiplier", &cp.lod_multiplier)) {
|
2018-07-14 10:03:38 +02:00
|
|
|
luaL_error(L, "Missing lod_multiplier in camera params");
|
|
|
|
}
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
if(!LuaWrapper::checkField(L, idx, "position", &cp.pos)) {
|
2018-07-14 10:03:38 +02:00
|
|
|
luaL_error(L, "Missing position in camera params");
|
|
|
|
}
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
2018-09-05 20:45:06 +02:00
|
|
|
|
|
|
|
static int bindTextures(lua_State* L)
|
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob {
|
2018-09-05 20:45:06 +02:00
|
|
|
void setup() override {}
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
for(int i = 0; i < m_textures_count; ++i) {
|
|
|
|
ffr::bindTexture(m_offset + i, m_textures[i].handle);
|
|
|
|
ffr::setUniform1i(m_textures[i].uniform, i + m_offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct {
|
|
|
|
ffr::TextureHandle handle;
|
|
|
|
ffr::UniformHandle uniform;
|
|
|
|
} m_textures[16];
|
|
|
|
int m_offset = 0;
|
|
|
|
int m_textures_count = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
LuaWrapper::checkTableArg(L, 1);
|
|
|
|
|
|
|
|
const int offset = lua_gettop(L) > 1 ? LuaWrapper::checkArg<int>(L, 2) : 0;
|
|
|
|
|
|
|
|
Cmd* cmd = LUMIX_NEW(pipeline->m_renderer.getAllocator(), Cmd);
|
|
|
|
cmd->m_offset = offset;
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 1) != 0) {
|
|
|
|
if(lua_type(L, -1) != LUA_TNUMBER) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
return luaL_error(L, "%s", "Incorrect texture arguments of bindTextures");
|
|
|
|
}
|
|
|
|
|
|
|
|
if(lua_type(L, -2) != LUA_TSTRING) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
return luaL_error(L, "%s", "Incorrect texture arguments of bindTextures");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd->m_textures_count > lengthOf(cmd->m_textures)) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
|
|
|
return luaL_error(L, "%s", "Too many texture in bindTextures call");
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* uniform_name = lua_tostring(L, -2);
|
|
|
|
cmd->m_textures[cmd->m_textures_count].uniform = ffr::allocUniform(uniform_name, ffr::UniformType::INT, 1);
|
|
|
|
|
|
|
|
const int rb_idx = (int)lua_tointeger(L, -1);
|
|
|
|
cmd->m_textures[cmd->m_textures_count].handle = pipeline->m_renderbuffers[rb_idx].handle;
|
|
|
|
++cmd->m_textures_count;
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
pipeline->m_renderer.push(cmd);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int renderEnvProbeVolumes(lua_State* L)
|
|
|
|
{
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
const int shader_id = LuaWrapper::checkArg<int>(L, 1);
|
|
|
|
const Shader* shader = [&] {
|
|
|
|
for (const ShaderRef& s : pipeline->m_shaders) {
|
|
|
|
if(s.id == shader_id) {
|
|
|
|
return s.res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (Shader*)nullptr;
|
|
|
|
}();
|
|
|
|
if (!shader) {
|
|
|
|
return luaL_error(L, "Unknown shader id %d in renderEnvProbeVolumes.", shader_id);
|
|
|
|
}
|
|
|
|
const CameraParams cp = checkCameraParams(L, 2);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : public Renderer::RenderJob
|
2018-09-05 20:45:06 +02:00
|
|
|
{
|
|
|
|
struct Probe
|
|
|
|
{
|
|
|
|
Vec3 pos;
|
|
|
|
ffr::TextureHandle texture;
|
|
|
|
};
|
|
|
|
|
|
|
|
Cmd(IAllocator& allocator) : m_probes(allocator) {}
|
|
|
|
|
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
m_pipeline->getScene()->getEnvironmentProbes(m_probes);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
PROFILE_FUNCTION();
|
|
|
|
if(m_probes.empty()) return;
|
|
|
|
|
|
|
|
ffr::pushDebugGroup("environment");
|
|
|
|
const Shader::Program& prog = Shader::getProgram(m_shader, 0);
|
|
|
|
if(!prog.handle.isValid()) return;
|
|
|
|
|
|
|
|
const int pos_radius_uniform_loc = ffr::getUniformLocation(prog.handle, m_pos_radius_uniform);
|
|
|
|
|
|
|
|
ffr::VertexDecl decl;
|
|
|
|
decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
|
|
|
|
ffr::setVertexBuffer(&decl, m_vb, 0, nullptr);
|
|
|
|
ffr::setIndexBuffer(m_ib);
|
|
|
|
ffr::useProgram(prog.handle);
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 blend_state = ffr::getBlendStateBits(ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA, ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA);
|
|
|
|
ffr::setState(u64(ffr::StateFlags::DEPTH_TEST) | u64(ffr::StateFlags::CULL_BACK) | blend_state);
|
2018-09-05 20:45:06 +02:00
|
|
|
const int irradiance_map_loc = ffr::getUniformLocation(prog.handle, m_irradiance_map_uniform);
|
|
|
|
const int radiance_map_loc = ffr::getUniformLocation(prog.handle, m_radiance_map_uniform);
|
2018-09-16 18:35:57 +02:00
|
|
|
const DVec3 cam_pos = m_camera_params.pos;
|
2018-09-05 20:45:06 +02:00
|
|
|
for (const EnvProbeInfo& probe : m_probes) {
|
2018-09-16 18:35:57 +02:00
|
|
|
const Vec4 pos_radius((probe.position - cam_pos).toFloat(), probe.radius);
|
2018-09-05 20:45:06 +02:00
|
|
|
ffr::bindTexture(0, probe.radiance);
|
|
|
|
ffr::applyUniform1i(irradiance_map_loc, 0);
|
|
|
|
ffr::bindTexture(1, probe.radiance);
|
|
|
|
ffr::applyUniform1i(radiance_map_loc, 1);
|
|
|
|
ffr::applyUniform4f(pos_radius_uniform_loc, &pos_radius.x);
|
|
|
|
ffr::drawTriangles(36);
|
|
|
|
}
|
|
|
|
ffr::popDebugGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
ffr::BufferHandle m_ib;
|
|
|
|
ffr::BufferHandle m_vb;
|
|
|
|
ffr::UniformHandle m_pos_radius_uniform;
|
|
|
|
ffr::UniformHandle m_irradiance_map_uniform;
|
|
|
|
ffr::UniformHandle m_radiance_map_uniform;
|
|
|
|
CameraParams m_camera_params;
|
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
Array<EnvProbeInfo> m_probes;
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* m_shader;
|
2018-09-05 20:45:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if(shader->isReady()) {
|
|
|
|
IAllocator& allocator = pipeline->m_renderer.getAllocator();
|
|
|
|
Cmd* cmd = LUMIX_NEW(allocator, Cmd)(allocator);
|
|
|
|
cmd->m_pipeline = pipeline;
|
|
|
|
cmd->m_shader = shader->m_render_data;
|
|
|
|
cmd->m_ib = pipeline->m_cube_ib;
|
|
|
|
cmd->m_vb = pipeline->m_cube_vb;
|
|
|
|
cmd->m_camera_params = cp;
|
|
|
|
cmd->m_irradiance_map_uniform = pipeline->m_irradiance_map_uniform;
|
|
|
|
cmd->m_radiance_map_uniform = pipeline->m_radiance_map_uniform;
|
|
|
|
cmd->m_pos_radius_uniform = pipeline->m_position_radius_uniform;
|
|
|
|
pipeline->m_renderer.push(cmd);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-23 22:35:38 +02:00
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
static int prepareCommands(lua_State* L)
|
2018-08-23 22:35:38 +02:00
|
|
|
{
|
|
|
|
PROFILE_FUNCTION();
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
LuaWrapper::checkTableArg(L, 1);
|
|
|
|
const CameraParams cp = checkCameraParams(L, 1);
|
|
|
|
|
|
|
|
IAllocator& allocator = pipeline->m_renderer.getAllocator();
|
2018-10-13 15:08:58 +02:00
|
|
|
PrepareCommandsRenderJob* cmd = LUMIX_NEW(allocator, PrepareCommandsRenderJob)(allocator);
|
2018-10-12 00:12:44 +02:00
|
|
|
|
2018-09-25 18:33:38 +02:00
|
|
|
LuaWrapper::checkTableArg(L, 2);
|
2018-08-23 22:35:38 +02:00
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
const int table_len = (int)lua_objlen(L, 2);
|
|
|
|
cmd->m_bucket_count = table_len;
|
|
|
|
for(int i = 0; i < table_len; ++i) {
|
|
|
|
lua_rawgeti(L, 2, i + 1);
|
|
|
|
if(!lua_istable(L, -1)) {
|
2018-10-13 15:08:58 +02:00
|
|
|
LUMIX_DELETE(allocator, cmd);
|
2018-10-27 23:47:46 +02:00
|
|
|
return luaL_argerror(L, 2, "Incorrect bucket configuration");
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
2018-10-27 23:47:46 +02:00
|
|
|
lua_getfield(L, -1, "layers");
|
|
|
|
if(!lua_istable(L, -1)) {
|
|
|
|
LUMIX_DELETE(allocator, cmd);
|
|
|
|
return luaL_argerror(L, 2, "layers is not a table");
|
|
|
|
}
|
|
|
|
const int layers_array_len = (int)lua_objlen(L, -1);
|
|
|
|
for(int j = 0; j < layers_array_len; ++j) {
|
|
|
|
lua_rawgeti(L, -1, j + 1);
|
|
|
|
if(!lua_isstring(L, -1)) {
|
|
|
|
LUMIX_DELETE(allocator, cmd);
|
|
|
|
return luaL_argerror(L, 2, "items in layers must be strings");
|
|
|
|
}
|
|
|
|
const char* layer_name = lua_tostring(L, -1);
|
|
|
|
const int layer = pipeline->m_renderer.getLayerIdx(layer_name);
|
|
|
|
cmd->m_bucket_map[layer] = i;
|
2018-08-23 22:35:38 +02:00
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
lua_pop(L, 1);
|
|
|
|
|
|
|
|
char tmp[64];
|
|
|
|
if (LuaWrapper::getOptionalStringField(L, -1, "sort", tmp, lengthOf(tmp))) {
|
|
|
|
cmd->m_bucket_sort_order[i] = equalIStrings(tmp, "depth")
|
|
|
|
? PrepareCommandsRenderJob::SortOrder::DEPTH
|
|
|
|
: PrepareCommandsRenderJob::SortOrder::DEFAULT;
|
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
2018-07-14 10:03:38 +02:00
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
for(int i = 0; i < cmd->m_bucket_count; ++i) {
|
|
|
|
CommandSet* cmd_set = LUMIX_NEW(allocator, CommandSet)(allocator);
|
2018-07-14 10:03:38 +02:00
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
pipeline->m_command_sets.push(cmd_set);
|
|
|
|
cmd->m_command_sets[i] = cmd_set;
|
|
|
|
LuaWrapper::push(L, cmd_set);
|
|
|
|
}
|
2018-07-29 10:53:13 +02:00
|
|
|
cmd->m_camera_params = cp;
|
|
|
|
cmd->m_pipeline = pipeline;
|
2018-10-13 15:08:58 +02:00
|
|
|
const int num_cmd_sets = cmd->m_bucket_count;
|
2018-07-14 10:03:38 +02:00
|
|
|
pipeline->m_renderer.push(cmd);
|
2018-10-12 00:12:44 +02:00
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
return num_cmd_sets;
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
static int drawArray(lua_State* L)
|
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob {
|
2018-08-09 22:35:00 +02:00
|
|
|
void setup() override { m_render_data = m_shader->isReady() ? m_shader->m_render_data : nullptr; }
|
2018-07-14 10:03:38 +02:00
|
|
|
void execute() override
|
|
|
|
{
|
2018-08-09 22:35:00 +02:00
|
|
|
if (!m_render_data) return;
|
2018-10-28 01:11:15 +02:00
|
|
|
|
2018-08-09 22:35:00 +02:00
|
|
|
ffr::ProgramHandle prg = Shader::getProgram(m_render_data, m_define_mask).handle;
|
2018-10-28 01:11:15 +02:00
|
|
|
if(!prg.isValid()) return;
|
|
|
|
|
2018-10-28 13:10:27 +01:00
|
|
|
ffr::setState(m_render_state);
|
2018-10-28 01:11:15 +02:00
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
for(int i = 0; i < m_textures_count; ++i) {
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::bindTexture(i, m_textures[i].handle);
|
|
|
|
ffr::setUniform1i(m_textures[i].uniform, i);
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 0; i < m_uniforms_count; ++i) {
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setUniform4f(m_uniforms[i].handle, &m_uniforms[i].value.x);
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::setVertexBuffer(nullptr, ffr::INVALID_BUFFER, 0, nullptr);
|
|
|
|
ffr::useProgram(prg);
|
|
|
|
ffr::setIndexBuffer(ffr::INVALID_BUFFER);
|
|
|
|
ffr::drawArrays(m_indices_offset, m_indices_count, ffr::PrimitiveType::TRIANGLE_STRIP);
|
2018-07-14 10:03:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct {
|
|
|
|
ffr::TextureHandle handle;
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::UniformHandle uniform;
|
2018-07-14 10:03:38 +02:00
|
|
|
} m_textures[16];
|
|
|
|
int m_textures_count = 0;
|
|
|
|
struct {
|
|
|
|
Vec4 value;
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::UniformHandle handle;
|
2018-07-14 10:03:38 +02:00
|
|
|
} m_uniforms[16];
|
|
|
|
int m_uniforms_count = 0;
|
|
|
|
Shader* m_shader;
|
|
|
|
int m_indices_count;
|
|
|
|
int m_indices_offset;
|
2018-07-29 18:36:32 +02:00
|
|
|
u32 m_define_mask = 0;
|
2018-10-28 13:10:27 +01:00
|
|
|
u64 m_render_state;
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* m_render_data = nullptr;
|
2018-08-09 22:35:00 +02:00
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
2018-07-05 15:54:14 +02:00
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
2018-07-22 15:22:36 +02:00
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
const int indices_offset = LuaWrapper::checkArg<int>(L, 1);
|
|
|
|
const int indices_count = LuaWrapper::checkArg<int>(L, 2);
|
|
|
|
int shader_id = LuaWrapper::checkArg<int>(L, 3);
|
2018-07-22 22:57:29 +02:00
|
|
|
if(lua_gettop(L) > 3) {
|
|
|
|
LuaWrapper::checkTableArg(L, 4);
|
|
|
|
}
|
|
|
|
if(lua_gettop(L) > 4) {
|
|
|
|
LuaWrapper::checkTableArg(L, 5);
|
|
|
|
}
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 rs = [&](){
|
2018-10-28 01:11:15 +02:00
|
|
|
if(lua_gettop(L) > 6) {
|
|
|
|
LuaWrapper::checkTableArg(L, 7);
|
|
|
|
return getState(L, 7);
|
|
|
|
}
|
2018-10-28 13:10:27 +01:00
|
|
|
return (u64)ffr::StateFlags::DEPTH_WRITE | (u64)ffr::StateFlags::DEPTH_TEST;
|
2018-10-28 01:11:15 +02:00
|
|
|
}();
|
2018-07-05 15:54:14 +02:00
|
|
|
|
|
|
|
Shader* shader = nullptr;
|
|
|
|
for (const ShaderRef& s : pipeline->m_shaders) {
|
|
|
|
if(s.id == shader_id) {
|
|
|
|
shader = s.res;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!shader) {
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "Unknown shader id %d in drawArrays.", shader_id);
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (shader->isFailure()) {
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "Shader %s failed to load. `drawArrays` has no effect.", shader->getPath().c_str());
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
if (!shader->isReady()) return 0;
|
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
Cmd* cmd = LUMIX_NEW(pipeline->m_renderer.getAllocator(), Cmd);
|
2018-07-22 22:57:29 +02:00
|
|
|
if(lua_gettop(L) > 3) {
|
2018-07-05 15:54:14 +02:00
|
|
|
lua_pushnil(L);
|
2018-07-22 22:57:29 +02:00
|
|
|
while (lua_next(L, 4) != 0) {
|
|
|
|
if(lua_type(L, -1) != LUA_TNUMBER) {
|
2018-07-14 10:03:38 +02:00
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect texture arguments of drawArrays");
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(lua_type(L, -2) != LUA_TSTRING) {
|
2018-07-22 22:57:29 +02:00
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect texture arguments of drawArrays");
|
2018-07-22 22:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cmd->m_textures_count > lengthOf(cmd->m_textures)) {
|
2018-07-14 10:03:38 +02:00
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Too many texture in drawArray call");
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
const char* uniform_name = lua_tostring(L, -2);
|
2018-07-22 22:57:29 +02:00
|
|
|
cmd->m_textures[cmd->m_textures_count].uniform = ffr::allocUniform(uniform_name, ffr::UniformType::INT, 1);
|
|
|
|
|
|
|
|
const int rb_idx = (int)lua_tointeger(L, -1);
|
|
|
|
cmd->m_textures[cmd->m_textures_count].handle = pipeline->m_renderbuffers[rb_idx].handle;
|
|
|
|
++cmd->m_textures_count;
|
|
|
|
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (lua_istable(L, 5)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 5) != 0) {
|
|
|
|
if(lua_type(L, -1) != LUA_TTABLE) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect uniform arguments of drawArrays");
|
2018-07-22 22:57:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if(lua_type(L, -2) != LUA_TSTRING) {
|
2018-07-14 10:03:38 +02:00
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect uniform arguments of drawArrays");
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
2018-07-22 22:57:29 +02:00
|
|
|
|
|
|
|
const char* uniform_name = lua_tostring(L, -2);
|
|
|
|
cmd->m_uniforms[cmd->m_uniforms_count].handle = ffr::allocUniform(uniform_name, ffr::UniformType::VEC4, 1);
|
|
|
|
float* value = &cmd->m_uniforms[cmd->m_uniforms_count].value.x;
|
|
|
|
for(int i = 0; i < 4; ++i) {
|
|
|
|
lua_rawgeti(L, -1, 1 + i);
|
|
|
|
if (lua_type(L, -1) != LUA_TNUMBER) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect uniform arguments of drawArrays. Uniforms can only be Vec4.");
|
2018-07-22 22:57:29 +02:00
|
|
|
}
|
|
|
|
value[i] = (float)lua_tonumber(L, -1);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
++cmd->m_uniforms_count;
|
2018-07-05 15:54:14 +02:00
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
2018-07-29 18:36:32 +02:00
|
|
|
|
|
|
|
if (lua_isstring(L, 6)) {
|
|
|
|
const char* define = lua_tostring(L, 6);
|
|
|
|
cmd->m_define_mask = 1 << pipeline->m_renderer.getShaderDefineIdx(define);
|
|
|
|
}
|
|
|
|
else if (lua_istable(L, 6)) {
|
|
|
|
lua_pushnil(L);
|
|
|
|
while (lua_next(L, 6) != 0) {
|
|
|
|
if(lua_type(L, -1) != LUA_TSTRING) {
|
|
|
|
LUMIX_DELETE(pipeline->m_renderer.getAllocator(), cmd);
|
2018-08-05 18:00:30 +02:00
|
|
|
return luaL_error(L, "%s", "Incorrect uniform arguments of drawArrays");
|
2018-07-29 18:36:32 +02:00
|
|
|
}
|
|
|
|
const char* define = lua_tostring(L, -1);
|
|
|
|
cmd->m_define_mask |= 1 << pipeline->m_renderer.getShaderDefineIdx(define);
|
|
|
|
lua_pop(L, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
2018-09-16 18:35:57 +02:00
|
|
|
|
2018-10-28 01:11:15 +02:00
|
|
|
cmd->m_render_state = rs;
|
2018-07-14 10:03:38 +02:00
|
|
|
cmd->m_shader = shader;
|
|
|
|
cmd->m_indices_count = indices_count;
|
|
|
|
cmd->m_indices_offset = indices_offset;
|
|
|
|
pipeline->m_renderer.push(cmd);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2018-07-06 21:31:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
static void pushCameraParams(lua_State* L, const CameraParams& params)
|
|
|
|
{
|
|
|
|
lua_createtable(L, 0, 4);
|
|
|
|
|
|
|
|
lua_createtable(L, 32+24, 0);
|
|
|
|
const float* frustum = params.frustum.xs;
|
|
|
|
for(int i = 0; i < 32+24; ++i) {
|
|
|
|
LuaWrapper::push(L, frustum[i]);
|
|
|
|
lua_rawseti(L, -2, i + 1);
|
|
|
|
}
|
2018-09-16 18:35:57 +02:00
|
|
|
LuaWrapper::push(L, params.frustum.origin);
|
|
|
|
lua_setfield(L, -2, "origin");
|
2018-07-06 21:31:44 +02:00
|
|
|
lua_setfield(L, -2, "frustum");
|
|
|
|
|
|
|
|
LuaWrapper::setField(L, -2, "position", params.pos);
|
|
|
|
LuaWrapper::setField(L, -2, "lod_multiplier", params.lod_multiplier);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int getCameraParams(lua_State* L)
|
|
|
|
{
|
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
2018-07-22 15:22:36 +02:00
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
|
|
|
RenderScene* scene = pipeline->m_scene;
|
|
|
|
|
|
|
|
CameraParams cp;
|
|
|
|
|
2018-07-08 00:44:45 +02:00
|
|
|
cp.pos = pipeline->m_viewport.pos;
|
|
|
|
cp.frustum = pipeline->m_viewport.getFrustum();
|
|
|
|
cp.lod_multiplier = scene->getCameraLODMultiplier(pipeline->m_viewport.fov, pipeline->m_viewport.is_ortho);
|
2018-07-06 21:31:44 +02:00
|
|
|
pushCameraParams(L, cp);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-16 18:35:57 +02:00
|
|
|
static void findExtraShadowcasterPlanes(const Vec3& light_forward, const Frustum& camera_frustum, const DVec3& camera_position, Frustum* shadow_camera_frustum)
|
2018-07-06 21:31:44 +02:00
|
|
|
{
|
2018-09-16 18:35:57 +02:00
|
|
|
/*static const Frustum::Planes planes[] = {
|
2018-07-06 21:31:44 +02:00
|
|
|
Frustum::Planes::LEFT, Frustum::Planes::TOP, Frustum::Planes::RIGHT, Frustum::Planes::BOTTOM };
|
|
|
|
bool prev_side = dotProduct(light_forward, camera_frustum.getNormal(planes[lengthOf(planes) - 1])) < 0;
|
|
|
|
int out_plane = (int)Frustum::Planes::EXTRA0;
|
|
|
|
Vec3 camera_frustum_center = camera_frustum.computeBoundingSphere().position;
|
|
|
|
for (int i = 0; i < lengthOf(planes); ++i)
|
|
|
|
{
|
|
|
|
bool side = dotProduct(light_forward, camera_frustum.getNormal(planes[i])) < 0;
|
|
|
|
if (prev_side != side)
|
|
|
|
{
|
|
|
|
Vec3 n0 = camera_frustum.getNormal(planes[i]);
|
|
|
|
Vec3 n1 = camera_frustum.getNormal(planes[(i + lengthOf(planes) - 1) % lengthOf(planes)]);
|
|
|
|
Vec3 line_dir = crossProduct(n1, n0);
|
|
|
|
Vec3 n = crossProduct(light_forward, line_dir);
|
|
|
|
float d = -dotProduct(camera_position, n);
|
|
|
|
if (dotProduct(camera_frustum_center, n) + d < 0)
|
|
|
|
{
|
|
|
|
n = -n;
|
|
|
|
d = -dotProduct(camera_position, n);
|
|
|
|
}
|
|
|
|
shadow_camera_frustum->setPlane((Frustum::Planes)out_plane, n, d);
|
|
|
|
++out_plane;
|
|
|
|
if (out_plane >(int)Frustum::Planes::EXTRA1) break;
|
|
|
|
}
|
|
|
|
prev_side = side;
|
2018-09-16 18:35:57 +02:00
|
|
|
}*/
|
|
|
|
// TODO
|
|
|
|
ASSERT(false);
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static Vec3 shadowmapTexelAlign(const Vec3& shadow_cam_pos,
|
|
|
|
float shadowmap_width,
|
|
|
|
float frustum_radius,
|
|
|
|
const Matrix& light_mtx)
|
|
|
|
{
|
|
|
|
Matrix inv = light_mtx;
|
|
|
|
inv.fastInverse();
|
|
|
|
Vec3 out = inv.transformPoint(shadow_cam_pos);
|
|
|
|
float align = 2 * frustum_radius / (shadowmap_width * 0.5f - 2);
|
|
|
|
out.x -= fmodf(out.x, align);
|
|
|
|
out.y -= fmodf(out.y, align);
|
|
|
|
out = light_mtx.transformPoint(out);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-20 01:55:30 +02:00
|
|
|
void renderTextMeshes()
|
|
|
|
{
|
|
|
|
if (!m_text_mesh_shader->isReady()) return;
|
|
|
|
if (m_text_mesh_shader->m_texture_slot_count < 1) return;
|
|
|
|
|
|
|
|
struct RenderJob : Renderer::RenderJob
|
|
|
|
{
|
|
|
|
RenderJob(IAllocator& allocator) : m_vertices(allocator) {}
|
|
|
|
|
|
|
|
|
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
const Quat& rot = m_pipeline->m_viewport.rot;
|
|
|
|
const DVec3& pos = m_pipeline->m_viewport.pos;
|
|
|
|
m_pipeline->m_scene->getTextMeshesVertices(m_vertices, pos, rot);
|
|
|
|
Renderer& renderer = m_pipeline->m_renderer;
|
|
|
|
Texture* atlas = renderer.getFontManager().getAtlasTexture();
|
|
|
|
m_atlas = atlas ? atlas->handle : ffr::INVALID_TEXTURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
const Shader::Program& p = Shader::getProgram(m_shader, 0);
|
|
|
|
if(!p.handle.isValid()) return;
|
|
|
|
|
|
|
|
Renderer& renderer = m_pipeline->m_renderer;
|
|
|
|
const Renderer::TransientSlice transient = renderer.allocTransient(m_vertices.byte_size());
|
|
|
|
ffr::update(transient.buffer, m_vertices.begin(), transient.offset, transient.size);
|
|
|
|
ffr::setUniform1i(m_texture_uniform, 0);
|
|
|
|
ffr::useProgram(p.handle);
|
|
|
|
ffr::VertexDecl decl;
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 blend_state = ffr::getBlendStateBits(ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA, ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA);
|
|
|
|
ffr::setState((u64)ffr::StateFlags::DEPTH_WRITE | (u64)ffr::StateFlags::DEPTH_TEST | blend_state);
|
2018-10-20 01:55:30 +02:00
|
|
|
ffr::bindTexture(0, m_atlas);
|
|
|
|
decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
decl.addAttribute(4, ffr::AttributeType::U8, true, false);
|
|
|
|
decl.addAttribute(2, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
ffr::setVertexBuffer(&decl, transient.buffer, transient.offset, nullptr);
|
|
|
|
ffr::drawArrays(0, m_vertices.size(), ffr::PrimitiveType::TRIANGLES);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ffr::TextureHandle m_atlas;
|
|
|
|
ShaderRenderData* m_shader;
|
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
ffr::UniformHandle m_texture_uniform;
|
|
|
|
Array<TextMeshVertex> m_vertices;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
IAllocator& allocator = m_renderer.getAllocator();
|
|
|
|
RenderJob* job = LUMIX_NEW(allocator, RenderJob)(allocator);
|
|
|
|
job->m_pipeline = this;
|
|
|
|
job->m_shader = m_text_mesh_shader->m_render_data;
|
|
|
|
job->m_texture_uniform = m_text_mesh_shader->m_texture_slots[0].uniform_handle;
|
|
|
|
m_renderer.push(job);
|
2018-10-20 21:35:03 +02:00
|
|
|
}
|
|
|
|
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
void renderLocalLights(const char* define, int shader_idx, CommandSet* cmd_set)
|
|
|
|
{
|
|
|
|
struct RenderJob : Renderer::RenderJob
|
|
|
|
{
|
|
|
|
void setup() override {}
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
// inline in debug
|
|
|
|
#define READ(T, N) \
|
|
|
|
T N = *(T*)cmd; \
|
|
|
|
cmd += sizeof(T); \
|
|
|
|
do {} while(false)
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
PROFILE_FUNCTION();
|
|
|
|
if(m_cmd_set->cmds.empty()) return;
|
|
|
|
|
|
|
|
ffr::VertexDecl instance_decl;
|
|
|
|
instance_decl.addAttribute(4, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
instance_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
instance_decl.addAttribute(1, ffr::AttributeType::FLOAT, false, false);
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
ffr::VertexDecl decl;
|
|
|
|
decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
for (const Array<u8>& cmds : m_cmd_set->cmds) {
|
|
|
|
const u8* cmd = cmds.begin();
|
|
|
|
const u8* cmd_end = cmds.end();
|
|
|
|
while (cmd != cmd_end) {
|
|
|
|
const RenderableTypes type = *(RenderableTypes*)cmd;
|
|
|
|
cmd += sizeof(type);
|
|
|
|
switch(type) {
|
|
|
|
case RenderableTypes::LOCAL_LIGHT: {
|
|
|
|
READ(u16, instances_count);
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-20 21:35:03 +02:00
|
|
|
const u8* instance_data = cmd;
|
|
|
|
cmd += instance_decl.size * instances_count;
|
|
|
|
|
|
|
|
const Shader::Program& prog = Shader::getProgram(m_shader, m_define_mask);
|
|
|
|
if (prog.handle.isValid()) {
|
|
|
|
ffr::useProgram(prog.handle);
|
|
|
|
ffr::setState((u64)ffr::StateFlags::DEPTH_TEST);
|
|
|
|
ffr::setIndexBuffer(m_pipeline->m_cube_ib);
|
|
|
|
ffr::setVertexBuffer(&decl, m_pipeline->m_cube_vb, 0, nullptr);
|
|
|
|
|
|
|
|
const Renderer::TransientSlice instance_buffer = m_pipeline->m_renderer.allocTransient(instances_count * instance_decl.size);
|
|
|
|
ffr::update(instance_buffer.buffer, instance_data, instance_buffer.offset, instance_buffer.size);
|
|
|
|
ffr::setInstanceBuffer(instance_decl, instance_buffer.buffer, instance_buffer.offset, 1, nullptr);
|
|
|
|
ffr::drawTrianglesInstanced(0, 36, instances_count);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default: ASSERT(false); return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#undef READ
|
|
|
|
}
|
|
|
|
|
|
|
|
ShaderRenderData* m_shader;
|
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
CommandSet* m_cmd_set;
|
|
|
|
u32 m_define_mask;
|
|
|
|
};
|
|
|
|
|
|
|
|
ShaderRenderData* shader = [&]() -> ShaderRenderData* {
|
|
|
|
for (const ShaderRef& s : m_shaders) {
|
|
|
|
if(s.id == shader_idx) {
|
|
|
|
return ((Shader*)s.res)->m_render_data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}();
|
|
|
|
|
|
|
|
if(!shader) return;
|
|
|
|
|
|
|
|
RenderJob* job = LUMIX_NEW(m_renderer.getAllocator(), RenderJob);
|
|
|
|
job->m_define_mask = define[0] ? 1 << m_renderer.getShaderDefineIdx(define) : 0;
|
|
|
|
job->m_pipeline = this;
|
|
|
|
job->m_cmd_set = cmd_set;
|
|
|
|
job->m_shader = shader;
|
|
|
|
m_renderer.push(job);
|
|
|
|
}
|
2018-10-20 01:55:30 +02:00
|
|
|
|
2018-10-28 13:10:27 +01:00
|
|
|
|
|
|
|
static u64 getState(lua_State* L, int idx)
|
|
|
|
{
|
2018-10-28 01:11:15 +02:00
|
|
|
ffr::StencilFuncs stencil_func = ffr::StencilFuncs::DISABLE;
|
|
|
|
u8 stencil_write_mask = 0xff;
|
|
|
|
u8 stencil_ref = 0;
|
|
|
|
u8 stencil_mask = 0;
|
|
|
|
ffr::StencilOps stencil_sfail = ffr::StencilOps::KEEP;
|
|
|
|
ffr::StencilOps stencil_zfail = ffr::StencilOps::KEEP;
|
|
|
|
ffr::StencilOps stencil_zpass = ffr::StencilOps::KEEP;
|
|
|
|
|
2018-10-28 13:10:27 +01:00
|
|
|
u64 rs = (u64)ffr::StateFlags::DEPTH_TEST | (u64)ffr::StateFlags::DEPTH_WRITE;
|
2018-10-28 01:11:15 +02:00
|
|
|
char tmp[64];
|
|
|
|
if (LuaWrapper::getOptionalStringField(L, idx, "blending", tmp, lengthOf(tmp))) {
|
2018-10-28 13:10:27 +01:00
|
|
|
rs = tmp[0] ? ffr::getBlendStateBits(ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA, ffr::BlendFactors::SRC_ALPHA, ffr::BlendFactors::ONE_MINUS_SRC_ALPHA) : 0;
|
2018-10-28 01:11:15 +02:00
|
|
|
}
|
2018-10-28 13:10:27 +01:00
|
|
|
|
|
|
|
LuaWrapper::getOptionalFlagField(L, idx, "depth_test", &rs, (u64)ffr::StateFlags::DEPTH_TEST, true);
|
|
|
|
LuaWrapper::getOptionalFlagField(L, idx, "depth_write", &rs, (u64)ffr::StateFlags::DEPTH_WRITE, true);
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_func", reinterpret_cast<u8*>(&stencil_func));
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_write_mask", &stencil_write_mask);
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_ref", &stencil_ref);
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_mask", &stencil_mask);
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_sfail", reinterpret_cast<u8*>(&stencil_sfail));
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_zfail", reinterpret_cast<u8*>(&stencil_zfail));
|
|
|
|
LuaWrapper::getOptionalField(L, idx, "stencil_zpass", reinterpret_cast<u8*>(&stencil_zpass));
|
|
|
|
|
|
|
|
rs |= ffr::getStencilStateBits(stencil_write_mask, stencil_func, stencil_ref, stencil_mask, stencil_sfail, stencil_zfail, stencil_zpass);
|
|
|
|
|
2018-10-28 01:11:15 +02:00
|
|
|
return rs;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
static int renderBucket(lua_State* L)
|
2018-10-12 00:12:44 +02:00
|
|
|
{
|
|
|
|
struct RenderJob : Renderer::RenderJob
|
|
|
|
{
|
|
|
|
void setup() override {}
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
2018-10-13 15:08:58 +02:00
|
|
|
// inline in debug
|
|
|
|
#define READ(T, N) \
|
|
|
|
T N = *(T*)cmd; \
|
|
|
|
cmd += sizeof(T); \
|
|
|
|
do {} while(false)
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
PROFILE_FUNCTION();
|
|
|
|
if(m_cmd_set->cmds.empty()) return;
|
|
|
|
|
|
|
|
ffr::VertexDecl instance_decl;
|
|
|
|
instance_decl.addAttribute(4, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
instance_decl.addAttribute(4, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
ffr::VertexDecl decal_decl;
|
|
|
|
decal_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
|
2018-10-13 23:24:44 +02:00
|
|
|
ffr::VertexDecl decal_instance_decl;
|
|
|
|
decal_instance_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
decal_instance_decl.addAttribute(4, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
decal_instance_decl.addAttribute(3, ffr::AttributeType::FLOAT, false, false);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
Renderer& renderer = m_pipeline->m_renderer;
|
|
|
|
|
|
|
|
int drawcalls_count = 0;
|
|
|
|
|
|
|
|
const u32 instanced_mask = m_define_mask | (1 << m_pipeline->m_renderer.getShaderDefineIdx("INSTANCED"));
|
|
|
|
const u32 skinned_mask = m_define_mask | (1 << m_pipeline->m_renderer.getShaderDefineIdx("SKINNED"));
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 render_states = m_render_state;
|
2018-10-12 00:12:44 +02:00
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
for (const Array<u8>& cmds : m_cmd_set->cmds) {
|
|
|
|
const u8* cmd = cmds.begin();
|
2018-10-12 00:12:44 +02:00
|
|
|
const u8* cmd_end = cmds.end();
|
|
|
|
while (cmd != cmd_end) {
|
|
|
|
const RenderableTypes type = *(RenderableTypes*)cmd;
|
|
|
|
cmd += sizeof(type);
|
|
|
|
switch(type) {
|
|
|
|
case RenderableTypes::MESH:
|
|
|
|
case RenderableTypes::MESH_GROUP: {
|
2018-10-13 15:08:58 +02:00
|
|
|
READ(const Mesh::RenderData*, mesh);
|
|
|
|
READ(const Material::RenderData*, material);
|
|
|
|
READ(const u16, instances_count);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
const float* instance_data = (const float*)cmd;
|
|
|
|
cmd += sizeof(Vec4) * 2 * instances_count;
|
2018-10-27 23:47:46 +02:00
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
ShaderRenderData* shader = material->shader;
|
2018-10-28 17:38:15 +01:00
|
|
|
for (int i = 0; i < 16; ++i) ffr::bindTexture(i, ffr::INVALID_TEXTURE);
|
2018-10-12 00:12:44 +02:00
|
|
|
for (int i = 0; i < material->textures_count; ++i) {
|
|
|
|
const ffr::TextureHandle handle = material->textures[i];
|
|
|
|
const ffr::UniformHandle uniform = shader->texture_uniforms[i];
|
2018-10-27 23:47:46 +02:00
|
|
|
ffr::bindTexture(i, handle);
|
|
|
|
ffr::setUniform1i(uniform, i);
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const Shader::Program& prog = Shader::getProgram(shader, instanced_mask);
|
|
|
|
if(prog.handle.isValid()) {
|
2018-10-27 23:47:46 +02:00
|
|
|
ffr::setState(material->render_states | render_states);
|
2018-10-12 00:12:44 +02:00
|
|
|
const Vec4 params(material->roughness, material->metallic, material->emission, 0);
|
|
|
|
ffr::setUniform4f(m_pipeline->m_material_params_uniform, ¶ms.x);
|
|
|
|
ffr::setUniform4f(m_pipeline->m_material_color_uniform, &material->color.x);
|
|
|
|
|
|
|
|
ffr::useProgram(prog.handle);
|
|
|
|
|
|
|
|
int attribute_map[16];
|
|
|
|
for (uint i = 0; i < mesh->vertex_decl.attributes_count; ++i) {
|
|
|
|
attribute_map[i] = prog.attribute_by_semantics[(int)mesh->attributes_semantic[i]];
|
|
|
|
}
|
|
|
|
ffr::setVertexBuffer(&mesh->vertex_decl, mesh->vertex_buffer_handle, 0, prog.use_semantics ? attribute_map : nullptr);
|
|
|
|
ffr::setIndexBuffer(mesh->index_buffer_handle);
|
|
|
|
|
|
|
|
const Renderer::TransientSlice instance_buffer = m_pipeline->m_renderer.allocTransient(instances_count * sizeof(Vec4) * 2);
|
|
|
|
ffr::update(instance_buffer.buffer, instance_data, instance_buffer.offset, instance_buffer.size);
|
2018-10-14 17:46:42 +02:00
|
|
|
|
|
|
|
int instance_map[16];
|
|
|
|
for (uint i = 0; i < instance_decl.attributes_count; ++i) {
|
|
|
|
instance_map[i] = prog.attribute_by_semantics[(int)Mesh::AttributeSemantic::INSTANCE0 + i];
|
|
|
|
}
|
|
|
|
|
|
|
|
ffr::setInstanceBuffer(instance_decl, instance_buffer.buffer, instance_buffer.offset, mesh->vertex_decl.attributes_count, instance_map);
|
2018-10-12 00:12:44 +02:00
|
|
|
ffr::drawTrianglesInstanced(0, mesh->indices_count, instances_count);
|
2018-10-13 23:24:44 +02:00
|
|
|
++drawcalls_count;
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RenderableTypes::SKINNED: {
|
2018-10-13 15:08:58 +02:00
|
|
|
READ(const Mesh::RenderData*, mesh);
|
|
|
|
READ(const Material::RenderData*, material);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
const float* model_mtx = (const float*)cmd;
|
|
|
|
cmd += sizeof(Matrix);
|
2018-10-13 15:08:58 +02:00
|
|
|
|
|
|
|
READ(const int, bones_count);
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
const float* bones = (const float*)cmd;
|
|
|
|
cmd += sizeof(Matrix) * bones_count;
|
|
|
|
|
|
|
|
ShaderRenderData* shader = material->shader;
|
|
|
|
for (int i = 0; i < material->textures_count; ++i) {
|
|
|
|
const ffr::TextureHandle handle = material->textures[i];
|
|
|
|
const ffr::UniformHandle uniform = shader->texture_uniforms[i];
|
|
|
|
ffr::bindTexture(i, handle);
|
|
|
|
ffr::setUniform1i(uniform, i);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Shader::Program& prog = Shader::getProgram(shader, skinned_mask);
|
|
|
|
if(prog.handle.isValid()) {
|
2018-10-27 23:47:46 +02:00
|
|
|
ffr::setState(material->render_states | render_states);
|
2018-10-12 00:12:44 +02:00
|
|
|
const Vec4 params(material->roughness, material->metallic, material->emission, 0);
|
|
|
|
ffr::setUniform4f(m_pipeline->m_material_params_uniform, ¶ms.x);
|
|
|
|
ffr::setUniform4f(m_pipeline->m_material_color_uniform, &material->color.x);
|
|
|
|
ffr::setUniformMatrix4f(m_pipeline->m_model_uniform, model_mtx);
|
|
|
|
|
|
|
|
ffr::useProgram(prog.handle);
|
|
|
|
|
|
|
|
const int loc = ffr::getUniformLocation(prog.handle, m_pipeline->m_bones_uniform);
|
|
|
|
if (loc >= 0) ffr::applyUniformMatrix4fv(loc, bones_count, bones);
|
|
|
|
|
|
|
|
int attribute_map[16];
|
|
|
|
for (uint i = 0; i < mesh->vertex_decl.attributes_count; ++i) {
|
|
|
|
attribute_map[i] = prog.attribute_by_semantics[(int)mesh->attributes_semantic[i]];
|
|
|
|
}
|
|
|
|
ffr::setVertexBuffer(&mesh->vertex_decl, mesh->vertex_buffer_handle, 0, prog.use_semantics ? attribute_map : nullptr);
|
|
|
|
ffr::setIndexBuffer(mesh->index_buffer_handle);
|
|
|
|
ffr::drawTriangles(mesh->indices_count);
|
2018-10-13 23:24:44 +02:00
|
|
|
++drawcalls_count;
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
case RenderableTypes::DECAL: {
|
|
|
|
READ(Material::RenderData*, material);
|
2018-10-13 23:24:44 +02:00
|
|
|
READ(u16, instances_count);
|
|
|
|
|
|
|
|
ShaderRenderData* shader = material->shader;
|
|
|
|
for (int i = 0; i < material->textures_count; ++i) {
|
|
|
|
const ffr::TextureHandle handle = material->textures[i];
|
|
|
|
const ffr::UniformHandle uniform = shader->texture_uniforms[i];
|
|
|
|
ffr::bindTexture(i, handle);
|
|
|
|
ffr::setUniform1i(uniform, i);
|
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
|
2018-10-13 23:24:44 +02:00
|
|
|
const u8* instance_data = cmd;
|
|
|
|
cmd += decal_instance_decl.size * instances_count;
|
|
|
|
|
|
|
|
const Shader::Program& prog = Shader::getProgram(shader, m_define_mask);
|
2018-10-13 15:08:58 +02:00
|
|
|
if (prog.handle.isValid()) {
|
|
|
|
ffr::useProgram(prog.handle);
|
2018-10-27 23:47:46 +02:00
|
|
|
ffr::setState(material->render_states | render_states);
|
2018-10-13 15:08:58 +02:00
|
|
|
ffr::setIndexBuffer(m_pipeline->m_cube_ib);
|
|
|
|
ffr::setVertexBuffer(&decal_decl, m_pipeline->m_cube_vb, 0, nullptr);
|
2018-10-13 23:24:44 +02:00
|
|
|
|
|
|
|
const Renderer::TransientSlice instance_buffer = m_pipeline->m_renderer.allocTransient(instances_count * decal_instance_decl.size);
|
|
|
|
ffr::update(instance_buffer.buffer, instance_data, instance_buffer.offset, instance_buffer.size);
|
2018-10-14 17:46:42 +02:00
|
|
|
ffr::setInstanceBuffer(decal_instance_decl, instance_buffer.buffer, instance_buffer.offset, 1, nullptr);
|
2018-10-13 23:24:44 +02:00
|
|
|
ffr::drawTrianglesInstanced(0, 36, instances_count);
|
|
|
|
++drawcalls_count;
|
2018-10-13 15:08:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2018-10-12 00:12:44 +02:00
|
|
|
default: ASSERT(false); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
#undef READ
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
u32 m_define_mask = 0;
|
2018-10-28 13:10:27 +01:00
|
|
|
u64 m_render_state;
|
2018-10-12 00:12:44 +02:00
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
CommandSet* m_cmd_set;
|
|
|
|
};
|
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
|
|
|
CommandSet* cmd_set = LuaWrapper::checkArg<CommandSet*>(L, 1);
|
|
|
|
LuaWrapper::checkTableArg(L, 2);
|
|
|
|
|
|
|
|
RenderJob* job = LUMIX_NEW(pipeline->m_renderer.getAllocator(), RenderJob);
|
|
|
|
|
|
|
|
char tmp[64];
|
|
|
|
if (LuaWrapper::getOptionalStringField(L, 2, "define", tmp, lengthOf(tmp))) {
|
|
|
|
job->m_define_mask = tmp[0] ? 1 << pipeline->m_renderer.getShaderDefineIdx(tmp) : 0;
|
|
|
|
}
|
2018-10-28 01:11:15 +02:00
|
|
|
|
2018-10-28 13:10:27 +01:00
|
|
|
job->m_render_state = getState(L, 2);
|
2018-10-27 23:47:46 +02:00
|
|
|
job->m_pipeline = pipeline;
|
2018-10-12 00:12:44 +02:00
|
|
|
job->m_cmd_set = cmd_set;
|
2018-10-27 23:47:46 +02:00
|
|
|
pipeline->m_renderer.push(job);
|
|
|
|
return 0;
|
2018-10-12 00:12:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
static int getShadowCameraParams(lua_State* L)
|
|
|
|
{
|
2018-09-16 18:35:57 +02:00
|
|
|
/*const int pipeline_idx = lua_upvalueindex(1);
|
2018-07-06 21:31:44 +02:00
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
2018-07-22 15:22:36 +02:00
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx);
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
|
|
|
|
|
|
|
const int slice = LuaWrapper::checkArg<int>(L, 1);
|
|
|
|
const int shadowmap_width = LuaWrapper::checkArg<int>(L, 2);
|
|
|
|
|
|
|
|
RenderScene* scene = pipeline->m_scene;
|
|
|
|
|
|
|
|
const Universe& universe = scene->getUniverse();
|
2018-08-19 17:35:37 +02:00
|
|
|
const EntityPtr light = scene->getActiveGlobalLight();
|
|
|
|
const Vec4 cascades = light.isValid() ? scene->getShadowmapCascades((EntityRef)light) : Vec4(3, 10, 60, 150);
|
|
|
|
const Matrix light_mtx = light.isValid() ? universe.getMatrix((EntityRef)light) : Matrix::IDENTITY;
|
2018-07-06 21:31:44 +02:00
|
|
|
|
2018-07-08 00:44:45 +02:00
|
|
|
const float camera_height = (float)pipeline->m_viewport.h;
|
|
|
|
const float camera_fov = pipeline->m_viewport.fov;
|
|
|
|
const float camera_ratio = pipeline->m_viewport.w / camera_height;
|
2018-07-06 21:31:44 +02:00
|
|
|
const float split_distances[] = {0.1f, cascades.x, cascades.y, cascades.z, cascades.w};
|
|
|
|
|
|
|
|
Frustum camera_frustum;
|
2018-07-08 00:44:45 +02:00
|
|
|
camera_frustum.computePerspective(pipeline->m_viewport.pos,
|
|
|
|
pipeline->m_viewport.rot * Vec3(0, 0, -1),
|
|
|
|
pipeline->m_viewport.rot * Vec3(0, 1, 0),
|
2018-07-06 21:31:44 +02:00
|
|
|
camera_fov,
|
|
|
|
camera_ratio,
|
|
|
|
split_distances[slice],
|
|
|
|
split_distances[slice + 1]);
|
|
|
|
|
|
|
|
const Sphere frustum_bounding_sphere = camera_frustum.computeBoundingSphere();
|
|
|
|
const float bb_size = frustum_bounding_sphere.radius;
|
2018-07-08 00:44:45 +02:00
|
|
|
const Vec3 light_forward = light_mtx.getZVector();
|
2018-07-06 21:31:44 +02:00
|
|
|
|
|
|
|
Vec3 shadow_cam_pos = frustum_bounding_sphere.position;
|
|
|
|
shadow_cam_pos = shadowmapTexelAlign(shadow_cam_pos, 0.5f * shadowmap_width - 2, bb_size, light_mtx);
|
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
Renderer::GlobalState global_state = pipeline->m_renderer.getGlobalState();
|
2018-07-06 21:31:44 +02:00
|
|
|
|
|
|
|
Matrix projection_matrix;
|
|
|
|
projection_matrix.setOrtho(-bb_size, bb_size, -bb_size, bb_size, SHADOW_CAM_NEAR, SHADOW_CAM_FAR, ffr::isHomogenousDepth(), true);
|
|
|
|
shadow_cam_pos -= light_forward * SHADOW_CAM_FAR * 0.5f;
|
|
|
|
Matrix view_matrix;
|
|
|
|
view_matrix.lookAt(shadow_cam_pos, shadow_cam_pos + light_forward, light_mtx.getYVector());
|
|
|
|
|
|
|
|
const float ymul = ffr::isOriginBottomLeft() ? 0.5f : -0.5f;
|
|
|
|
const Matrix bias_matrix(
|
|
|
|
0.5, 0.0, 0.0, 0.0,
|
|
|
|
0.0, ymul, 0.0, 0.0,
|
|
|
|
0.0, 0.0, 1.0, 0.0,
|
|
|
|
0.5, 0.5, 0.0, 1.0);
|
|
|
|
|
|
|
|
global_state.shadowmap_matrices[slice] = bias_matrix * projection_matrix * view_matrix;
|
|
|
|
|
|
|
|
global_state.shadow_view_projection = projection_matrix * view_matrix;
|
2018-07-14 10:03:38 +02:00
|
|
|
pipeline->m_renderer.setGlobalState(global_state);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
CameraParams cp;
|
|
|
|
cp.lod_multiplier = 1;
|
2018-07-08 00:44:45 +02:00
|
|
|
cp.pos = pipeline->m_viewport.pos;
|
2018-07-06 21:31:44 +02:00
|
|
|
cp.frustum.computeOrtho(shadow_cam_pos
|
|
|
|
, -light_forward
|
|
|
|
, light_mtx.getYVector()
|
|
|
|
, bb_size
|
|
|
|
, bb_size
|
|
|
|
, SHADOW_CAM_NEAR
|
|
|
|
, SHADOW_CAM_FAR);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
2018-07-08 00:44:45 +02:00
|
|
|
findExtraShadowcasterPlanes(light_forward, camera_frustum, pipeline->m_viewport.pos, &cp.frustum);
|
2018-07-06 21:31:44 +02:00
|
|
|
|
|
|
|
pushCameraParams(L, cp);
|
2018-09-16 18:35:57 +02:00
|
|
|
return 1;*/
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
ASSERT(false);
|
|
|
|
return 0;
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-15 17:35:41 +02:00
|
|
|
|
2018-07-08 18:16:16 +02:00
|
|
|
|
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
static int setRenderTargets(lua_State* L)
|
2018-06-30 15:18:27 +02:00
|
|
|
{
|
2018-07-05 15:54:14 +02:00
|
|
|
const int pipeline_idx = lua_upvalueindex(1);
|
|
|
|
if (lua_type(L, pipeline_idx) != LUA_TLIGHTUSERDATA) {
|
2018-07-22 15:22:36 +02:00
|
|
|
LuaWrapper::argError<PipelineImpl*>(L, pipeline_idx );
|
2018-07-05 15:54:14 +02:00
|
|
|
}
|
|
|
|
PipelineImpl* pipeline = LuaWrapper::toType<PipelineImpl*>(L, pipeline_idx);
|
2015-07-23 23:17:51 +02:00
|
|
|
|
2018-09-15 09:55:46 +02:00
|
|
|
const int rb_count = lua_gettop(L);
|
2018-07-08 18:16:16 +02:00
|
|
|
int rbs[16];
|
2018-06-30 15:18:27 +02:00
|
|
|
if(rb_count > lengthOf(rbs)) {
|
2018-07-05 15:54:14 +02:00
|
|
|
g_log_error.log("Renderer") << "Too many render buffers in " << pipeline->getPath();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if(rb_count <= 0) {
|
|
|
|
g_log_error.log("Renderer") << "createFramebuffer without arguments in " << pipeline->getPath();
|
2018-06-30 15:18:27 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2015-07-23 23:17:51 +02:00
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-07-15 17:35:41 +02:00
|
|
|
{
|
|
|
|
void setup() override { }
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
PROFILE_FUNCTION();
|
|
|
|
const ffr::FramebufferHandle fb = pipeline->m_renderer.getFramebuffer();
|
|
|
|
|
|
|
|
ffr::update(fb, count, rbs);
|
|
|
|
ffr::setFramebuffer(fb, true);
|
|
|
|
ffr::viewport(0, 0, w, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
PipelineImpl* pipeline;
|
|
|
|
ffr::TextureHandle rbs[16];
|
|
|
|
uint count;
|
|
|
|
uint w;
|
|
|
|
uint h;
|
|
|
|
};
|
|
|
|
|
|
|
|
Cmd* cmd = LUMIX_NEW(pipeline->m_renderer.getAllocator(), Cmd);
|
2018-06-30 15:18:27 +02:00
|
|
|
for(int i = 0; i < rb_count; ++i) {
|
2018-09-15 09:55:46 +02:00
|
|
|
const int rb_idx = LuaWrapper::checkArg<int>(L, i + 1);
|
2018-07-14 10:03:38 +02:00
|
|
|
cmd->rbs[i] = pipeline->m_renderbuffers[rb_idx].handle;
|
2018-06-30 15:18:27 +02:00
|
|
|
}
|
2014-07-07 23:37:40 +02:00
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
cmd->pipeline = pipeline;
|
|
|
|
cmd->count = rb_count;
|
|
|
|
cmd->w = pipeline->m_viewport.w;
|
|
|
|
cmd->h = pipeline->m_viewport.h;
|
|
|
|
pipeline->m_renderer.push(cmd);
|
2018-07-06 21:31:44 +02:00
|
|
|
|
2018-07-22 22:57:29 +02:00
|
|
|
return 0;
|
2018-06-30 15:18:27 +02:00
|
|
|
}
|
2014-07-07 23:37:40 +02:00
|
|
|
|
2015-07-04 15:22:28 +02:00
|
|
|
|
2018-10-21 18:05:43 +02:00
|
|
|
void prepareTerrainTextures(int shader_idx)
|
|
|
|
{
|
|
|
|
struct RenderJob : Renderer::RenderJob
|
|
|
|
{
|
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
Terrain* terrain = m_pipeline->m_scene->getTerrain(m_entity);
|
|
|
|
m_framebuffer = ffr::INVALID_FRAMEBUFFER;
|
|
|
|
|
|
|
|
if (!terrain) return;
|
|
|
|
if (!terrain->getSplatmap()) return;
|
2018-10-28 17:38:15 +01:00
|
|
|
if (!terrain->getAlbedomap()) return;
|
2018-10-21 18:05:43 +02:00
|
|
|
|
|
|
|
m_framebuffer = m_pipeline->m_renderer.getFramebuffer();
|
|
|
|
|
|
|
|
m_rel_camera_pos_uniform = m_pipeline->m_rel_camera_pos_uniform;
|
|
|
|
m_splatmap = terrain->getSplatmap()->handle;
|
2018-10-28 17:38:15 +01:00
|
|
|
m_albedomap = terrain->getAlbedomap()->handle;
|
2018-10-21 18:05:43 +02:00
|
|
|
m_output = terrain->m_textures;
|
|
|
|
m_lod_uniform = m_pipeline->m_lod_uniform;
|
|
|
|
Universe& universe = m_pipeline->m_scene->getUniverse();
|
|
|
|
m_rel_cam_pos = universe.getRotation(m_entity).rotate((m_pipeline->m_viewport.pos - universe.getPosition(m_entity)).toFloat());
|
|
|
|
}
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
if (!m_framebuffer.isValid()) return;
|
|
|
|
|
|
|
|
const Shader::Program& p = Shader::getProgram(m_shader, 0);
|
|
|
|
if (!p.handle.isValid()) return;
|
|
|
|
|
|
|
|
for (int i = 0; i < Terrain::TEXTURES_COUNT; ++i) {
|
|
|
|
ffr::bindLayer(m_framebuffer, m_output, i);
|
|
|
|
ffr::setFramebuffer(m_framebuffer, true);
|
|
|
|
const float clear_color[] = { 0, 0, 0, 0};
|
|
|
|
ffr::viewport(0, 0, 1024, 1024);
|
|
|
|
ffr::clear((uint)ffr::ClearFlags::COLOR, clear_color, 0);
|
|
|
|
|
2018-10-30 23:35:13 +01:00
|
|
|
const int s = 1 << i;
|
|
|
|
// round
|
|
|
|
IVec2 from = IVec2((m_rel_cam_pos.xz() + Vec2(0.5f * s)) / float(s)) - IVec2(32);
|
|
|
|
from.x = from.x & ~1;
|
|
|
|
from.y = from.y & ~1;
|
|
|
|
IVec2 to = from + IVec2(64);
|
|
|
|
// clamp
|
|
|
|
const IVec2 from_unclamped = from;
|
|
|
|
const IVec2 to_unclamped = to;
|
|
|
|
|
|
|
|
from.x = Math::clamp(from.x, 0, 1024 / s);
|
|
|
|
from.y = Math::clamp(from.y, 0, 1024 / s);
|
|
|
|
to.x = Math::clamp(to.x, 0, 1024 / s);
|
|
|
|
to.y = Math::clamp(to.y, 0, 1024 / s);
|
|
|
|
|
|
|
|
if (from.x == to.x || from.y == to.y) continue;
|
|
|
|
|
|
|
|
const IVec4 from_to(from, to);
|
|
|
|
|
2018-10-21 18:05:43 +02:00
|
|
|
ffr::bindTexture(0, m_splatmap);
|
2018-10-28 17:38:15 +01:00
|
|
|
ffr::bindTexture(1, m_albedomap);
|
|
|
|
ffr::setUniform1i(ffr::allocUniform("u_splatmap", ffr::UniformType::INT, 1), 0);
|
|
|
|
ffr::setUniform1i(ffr::allocUniform("u_albedo", ffr::UniformType::INT, 1), 1);
|
2018-10-21 18:05:43 +02:00
|
|
|
ffr::setUniform1i(m_lod_uniform, i);
|
2018-10-30 23:35:13 +01:00
|
|
|
ffr::setUniform4i(ffr::allocUniform("u_from_to", ffr::UniformType::IVEC4, 1), &from_to.x);
|
|
|
|
ffr::setUniform1i(ffr::allocUniform("u_step", ffr::UniformType::INT, 1), s);
|
2018-10-21 18:05:43 +02:00
|
|
|
ffr::useProgram(p.handle);
|
|
|
|
|
|
|
|
ffr::drawArrays(0, 4, ffr::PrimitiveType::TRIANGLE_STRIP);
|
|
|
|
}
|
|
|
|
|
|
|
|
ffr::generateMipmaps(m_output);
|
|
|
|
}
|
|
|
|
|
|
|
|
ffr::FramebufferHandle m_framebuffer;
|
|
|
|
ffr::TextureHandle m_splatmap;
|
2018-10-28 17:38:15 +01:00
|
|
|
ffr::TextureHandle m_albedomap;
|
2018-10-21 18:05:43 +02:00
|
|
|
ffr::UniformHandle m_rel_camera_pos_uniform;
|
|
|
|
ffr::UniformHandle m_lod_uniform;
|
|
|
|
ffr::TextureHandle m_output;
|
|
|
|
Vec3 m_rel_cam_pos;
|
|
|
|
|
|
|
|
EntityRef m_entity;
|
|
|
|
ShaderRenderData* m_shader;
|
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
};
|
|
|
|
|
|
|
|
const Shader* shader = [&] {
|
|
|
|
for (const ShaderRef& s : m_shaders) {
|
|
|
|
if(s.id == shader_idx) return s.res;
|
|
|
|
}
|
|
|
|
return (Shader*)nullptr;
|
|
|
|
}();
|
|
|
|
|
|
|
|
if (!shader || !shader->isReady()) return;
|
|
|
|
|
|
|
|
const EntityPtr e = m_scene->getFirstTerrain();
|
|
|
|
if (!e.isValid()) return;
|
|
|
|
|
|
|
|
RenderJob* job = LUMIX_NEW(m_renderer.getAllocator(), RenderJob);
|
|
|
|
job->m_pipeline = this;
|
|
|
|
job->m_shader = shader->m_render_data;
|
|
|
|
job->m_entity = (EntityRef)e;
|
|
|
|
m_renderer.push(job);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
struct RenderTerrainsCommand : Renderer::RenderJob
|
2018-07-06 21:31:44 +02:00
|
|
|
{
|
2018-07-22 15:22:36 +02:00
|
|
|
RenderTerrainsCommand(IAllocator& allocator)
|
|
|
|
: m_allocator(allocator)
|
2018-10-27 13:13:51 +02:00
|
|
|
, m_instances(allocator)
|
2018-07-22 15:22:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void setup() override
|
|
|
|
{
|
|
|
|
Array<TerrainInfo> infos(m_allocator);
|
|
|
|
m_pipeline->m_scene->getTerrainInfos(m_camera_params.frustum, m_camera_params.pos, infos);
|
2018-10-27 13:13:51 +02:00
|
|
|
if(infos.empty()) return;
|
2018-07-22 15:22:36 +02:00
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
m_instances.reserve(infos.size());
|
|
|
|
for (TerrainInfo& info : infos) {
|
|
|
|
if (!info.terrain->m_heightmap) continue;
|
|
|
|
if (!info.terrain->m_heightmap->isReady()) continue;
|
2018-10-28 17:38:15 +01:00
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
Instance& inst = m_instances.emplace();
|
|
|
|
inst.pos = (info.position - m_camera_params.pos).toFloat();
|
|
|
|
inst.rot = info.rot;
|
|
|
|
inst.shader = info.shader->m_render_data;
|
|
|
|
inst.heightmap = info.terrain->m_heightmap->handle;
|
2018-10-28 17:38:15 +01:00
|
|
|
inst.slices = info.terrain->m_textures;
|
2018-07-22 15:22:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void execute() override
|
|
|
|
{
|
2018-10-06 12:15:05 +02:00
|
|
|
const u32 deferred_define_mask = 1 << m_pipeline->m_renderer.getShaderDefineIdx("DEFERRED");
|
|
|
|
const u8 edge_define_idx = m_pipeline->m_renderer.getShaderDefineIdx("EDGE");
|
2018-10-27 13:13:51 +02:00
|
|
|
|
2018-10-28 13:10:27 +01:00
|
|
|
const u64 state = m_render_state;
|
2018-10-28 01:11:15 +02:00
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
for (Instance& inst : m_instances) {
|
|
|
|
auto& p = Shader::getProgram(inst.shader, deferred_define_mask);
|
|
|
|
auto& p_edge = Shader::getProgram(inst.shader, deferred_define_mask | (1 << edge_define_idx));
|
|
|
|
|
|
|
|
if (!p.handle.isValid()) continue;
|
|
|
|
if (!p_edge.handle.isValid()) continue;
|
|
|
|
|
|
|
|
const Vec3 pos = inst.pos;
|
|
|
|
const Vec3 lpos = inst.rot.conjugated().rotate(-inst.pos);
|
|
|
|
|
|
|
|
ffr::setUniform3f(m_pipeline->m_position_uniform, &pos.x);
|
|
|
|
ffr::setUniform3f(m_pipeline->m_rel_camera_pos_uniform, &lpos.x);
|
2018-10-21 18:05:43 +02:00
|
|
|
|
|
|
|
ffr::setUniform1i(ffr::allocUniform("u_hm", ffr::UniformType::INT, 1), 0);
|
2018-10-28 17:38:15 +01:00
|
|
|
ffr::setUniform1i(ffr::allocUniform("u_slices", ffr::UniformType::INT, 1), 1);
|
|
|
|
ffr::bindTexture(0, inst.heightmap);
|
|
|
|
ffr::bindTexture(1, inst.slices);
|
2018-10-21 18:05:43 +02:00
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
ffr::useProgram(p.handle);
|
|
|
|
ffr::setState(state);
|
|
|
|
const int loc = ffr::getUniformLocation(p.handle, m_pipeline->m_lod_uniform);
|
2018-10-30 23:35:13 +01:00
|
|
|
const int loc2 = ffr::getUniformLocation(p.handle, ffr::allocUniform("u_from_to", ffr::UniformType::IVEC4, 1));
|
|
|
|
const int loc3 = ffr::getUniformLocation(p.handle, ffr::allocUniform("u_uv_from_to", ffr::UniformType::IVEC4, 1));
|
|
|
|
IVec4 prev_from_to;
|
|
|
|
for (int i = 0; ; ++i) {
|
|
|
|
const int s = 1 << i;
|
|
|
|
// round
|
|
|
|
IVec2 from = IVec2((lpos.xz() + Vec2(0.5f * s)) / float(s)) - IVec2(32);
|
|
|
|
from.x = from.x & ~1;
|
|
|
|
from.y = from.y & ~1;
|
|
|
|
IVec2 to = from + IVec2(64);
|
|
|
|
// clamp
|
|
|
|
const IVec2 from_unclamped = from;
|
|
|
|
const IVec2 to_unclamped = to;
|
|
|
|
|
|
|
|
from.x = Math::clamp(from.x, 0, 1024 / s);
|
|
|
|
from.y = Math::clamp(from.y, 0, 1024 / s);
|
|
|
|
to.x = Math::clamp(to.x, 0, 1024 / s);
|
|
|
|
to.y = Math::clamp(to.y, 0, 1024 / s);
|
2018-07-22 15:22:36 +02:00
|
|
|
|
2018-10-30 23:35:13 +01:00
|
|
|
|
|
|
|
auto draw_rect = [loc, loc2, loc3, i, from, to](const IVec2& subfrom, const IVec2& subto){
|
|
|
|
if (subfrom.x >= subto.x || subfrom.y >= subto.y) return;
|
|
|
|
const IVec4 from_to(subfrom, subto);
|
|
|
|
const Vec4 uv_from_to(
|
|
|
|
(subfrom.x - from.x) / float(to.x - from.x),
|
|
|
|
(subfrom.y - from.y) / float(to.y - from.y),
|
|
|
|
(subto.x - from.x) / float(to.x - from.x),
|
|
|
|
(subto.y - from.y) / float(to.y - from.y)
|
|
|
|
);
|
|
|
|
ffr::applyUniform4f(loc3, &uv_from_to.x);
|
|
|
|
ffr::applyUniform4i(loc2, &from_to.x);
|
|
|
|
ffr::applyUniform1i(loc, i);
|
|
|
|
ffr::drawArrays(0, (subto.x - subfrom.x) * (subto.y - subfrom.y), ffr::PrimitiveType::POINTS);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
if (prev_from_to.y > from.y * 2) draw_rect(from, IVec2(to.x, prev_from_to.y / 2));
|
|
|
|
if (prev_from_to.w < to.y * 2) draw_rect(IVec2(from.x, prev_from_to.w / 2), to);
|
|
|
|
|
|
|
|
if (prev_from_to.z < to.x * 2) draw_rect(IVec2(prev_from_to.z / 2, prev_from_to.y / 2), IVec2(to.x, prev_from_to.w / 2));
|
|
|
|
if (prev_from_to.x > from.x * 2) draw_rect(IVec2(from.x, prev_from_to.y / 2), IVec2(prev_from_to.x / 2, prev_from_to.w / 2));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
draw_rect(from, to);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (from.x <= 0 && from.y <= 0 && to.x * s >= 1024 && to.y * s >= 1024) break;
|
|
|
|
|
|
|
|
prev_from_to = IVec4(from, to);
|
|
|
|
}
|
|
|
|
/*
|
2018-10-27 13:13:51 +02:00
|
|
|
ffr::useProgram(p_edge.handle);
|
|
|
|
ffr::setState(state);
|
|
|
|
const int loc_edge = ffr::getUniformLocation(p_edge.handle, m_pipeline->m_lod_uniform);
|
|
|
|
for(int i = 0; i < 6; ++i) {
|
|
|
|
ffr::applyUniform1i(loc_edge, i);
|
|
|
|
ffr::drawArrays(0, 64, ffr::PrimitiveType::POINTS);
|
2018-10-30 23:35:13 +01:00
|
|
|
}*/
|
2018-07-22 15:22:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
struct Instance
|
2018-07-22 15:22:36 +02:00
|
|
|
{
|
2018-10-27 13:13:51 +02:00
|
|
|
Vec3 pos;
|
|
|
|
Quat rot;
|
2018-09-25 18:33:38 +02:00
|
|
|
ShaderRenderData* shader;
|
2018-10-27 13:13:51 +02:00
|
|
|
ffr::TextureHandle heightmap;
|
2018-10-28 17:38:15 +01:00
|
|
|
ffr::TextureHandle slices;
|
2018-07-17 01:13:58 +02:00
|
|
|
};
|
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
IAllocator& m_allocator;
|
|
|
|
PipelineImpl* m_pipeline;
|
|
|
|
CameraParams m_camera_params;
|
2018-10-28 13:10:27 +01:00
|
|
|
u64 m_render_state;
|
2018-10-27 13:13:51 +02:00
|
|
|
Array<Instance> m_instances;
|
2018-07-22 15:22:36 +02:00
|
|
|
struct {
|
|
|
|
ffr::TextureHandle texture;
|
|
|
|
ffr::UniformHandle uniform;
|
|
|
|
} m_global_textures[16];
|
|
|
|
int m_global_textures_count = 0;
|
|
|
|
|
|
|
|
};
|
2018-07-17 01:13:58 +02:00
|
|
|
|
2018-07-22 15:22:36 +02:00
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
struct PrepareCommandsRenderJob : Renderer::RenderJob
|
2018-07-22 15:22:36 +02:00
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
PrepareCommandsRenderJob(IAllocator& allocator)
|
2018-07-29 10:53:13 +02:00
|
|
|
: m_allocator(allocator)
|
2018-10-13 15:08:58 +02:00
|
|
|
{
|
|
|
|
memset(m_bucket_map, 0xff, sizeof(m_bucket_map));
|
|
|
|
}
|
2018-07-28 14:51:09 +02:00
|
|
|
|
2018-07-29 10:53:13 +02:00
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
void radixSort(u64* _keys, u64* _values, int size)
|
2018-07-29 10:53:13 +02:00
|
|
|
{
|
2018-09-15 15:06:37 +02:00
|
|
|
PROFILE_FUNCTION();
|
2018-09-23 18:18:18 +02:00
|
|
|
PROFILE_INT("count", size);
|
|
|
|
if(size == 0) return;
|
2018-07-29 10:53:13 +02:00
|
|
|
// from https://github.com/bkaradzic/bx
|
|
|
|
enum {
|
|
|
|
RADIXSORT_BITS = 11,
|
|
|
|
RADIXSORT_HISTOGRAM_SIZE = 1 << RADIXSORT_BITS,
|
|
|
|
RADIXSORT_BIT_MASK = RADIXSORT_HISTOGRAM_SIZE - 1
|
|
|
|
};
|
|
|
|
|
|
|
|
Array<u64> tmp_keys(m_allocator); // TODO more suitable allocator
|
2018-09-29 15:14:46 +02:00
|
|
|
Array<u64> tmp_values(m_allocator);
|
2018-07-29 10:53:13 +02:00
|
|
|
tmp_keys.resize(size);
|
|
|
|
tmp_values.resize(size);
|
|
|
|
|
|
|
|
u64* keys = _keys;
|
|
|
|
u64* tempKeys = tmp_keys.begin();
|
2018-09-29 15:14:46 +02:00
|
|
|
u64* values = _values;
|
|
|
|
u64* tempValues = tmp_values.begin();
|
2018-07-29 10:53:13 +02:00
|
|
|
|
|
|
|
u32 histogram[RADIXSORT_HISTOGRAM_SIZE];
|
|
|
|
u16 shift = 0;
|
2018-10-10 00:17:59 +02:00
|
|
|
for (int pass = 0; pass < 6; ++pass) {
|
2018-07-29 10:53:13 +02:00
|
|
|
memset(histogram, 0, sizeof(u32) * RADIXSORT_HISTOGRAM_SIZE);
|
|
|
|
|
|
|
|
bool sorted = true;
|
|
|
|
u64 key = keys[0];
|
|
|
|
u64 prevKey = key;
|
|
|
|
for (int i = 0; i < size; ++i, prevKey = key) {
|
|
|
|
key = keys[i];
|
|
|
|
const u16 index = (key >> shift) & RADIXSORT_BIT_MASK;
|
|
|
|
++histogram[index];
|
|
|
|
sorted &= prevKey <= key;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sorted) {
|
|
|
|
if (pass & 1) {
|
|
|
|
// Odd number of passes needs to do copy to the destination.
|
|
|
|
memcpy(_keys, tmp_keys.begin(), tmp_keys.byte_size());
|
|
|
|
memcpy(_values, tmp_values.begin(), tmp_values.byte_size());
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 offset = 0;
|
|
|
|
for (int i = 0; i < RADIXSORT_HISTOGRAM_SIZE; ++i) {
|
|
|
|
const u32 count = histogram[i];
|
|
|
|
histogram[i] = offset;
|
|
|
|
offset += count;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
const u64 key = keys[i];
|
|
|
|
const u16 index = (key >> shift) & RADIXSORT_BIT_MASK;
|
|
|
|
const u32 dest = histogram[index]++;
|
|
|
|
tempKeys[dest] = key;
|
|
|
|
tempValues[dest] = values[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
u64* const swapKeys = tempKeys;
|
|
|
|
tempKeys = keys;
|
|
|
|
keys = swapKeys;
|
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
u64* const swapValues = tempValues;
|
2018-07-29 10:53:13 +02:00
|
|
|
tempValues = values;
|
|
|
|
values = swapValues;
|
|
|
|
|
|
|
|
shift += RADIXSORT_BITS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-26 20:21:04 +02:00
|
|
|
struct CreateSortKeys
|
2018-09-23 18:18:18 +02:00
|
|
|
{
|
2018-10-07 18:00:48 +02:00
|
|
|
static void execute(void* data)
|
2018-09-26 20:21:04 +02:00
|
|
|
{
|
2018-10-07 18:00:48 +02:00
|
|
|
PROFILE_BLOCK("sort_keys");
|
|
|
|
CreateSortKeys* ctx = (CreateSortKeys*)data;
|
|
|
|
PROFILE_INT("num", ctx->count);
|
2018-10-13 15:08:58 +02:00
|
|
|
const u8* bucket_map = ctx->cmd->m_bucket_map;
|
2018-10-27 23:47:46 +02:00
|
|
|
const SortOrder* bucket_sort_order = ctx->cmd->m_bucket_sort_order;
|
2018-10-07 18:00:48 +02:00
|
|
|
RenderScene* scene = ctx->cmd->m_pipeline->m_scene;
|
|
|
|
const ModelInstance* model_instances = scene->getModelInstances();
|
|
|
|
const u32* renderables = ctx->renderables;
|
2018-10-10 00:17:59 +02:00
|
|
|
MTBucketArray<u64>::Bucket sort_keys = ctx->sort_keys;
|
|
|
|
MTBucketArray<u64>::Bucket subrenderables = ctx->subrenderables;
|
2018-10-07 18:00:48 +02:00
|
|
|
const Universe::EntityData* entity_data = scene->getUniverse().getEntityData();
|
|
|
|
const DVec3 camera_pos = ctx->camera_pos;
|
|
|
|
for (int i = 0, c = ctx->count; i < c; ++i) {
|
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const DVec3 pos = entity_data[e.index].transform.pos;
|
|
|
|
const float squared_length = float((pos - camera_pos).squaredLength());
|
|
|
|
const ModelInstance& mi = model_instances[e.index];
|
|
|
|
const RenderableTypes type = RenderableTypes(renderables[i] >> 24);
|
|
|
|
switch (type) {
|
2018-10-13 15:08:58 +02:00
|
|
|
case RenderableTypes::MESH: {
|
|
|
|
const Mesh& mesh = mi.meshes[0];
|
|
|
|
const u8 bucket = bucket_map[mesh.layer];
|
2018-10-27 23:47:46 +02:00
|
|
|
const u32 depth_bits = Math::floatFlip(*(u32*)&squared_length);
|
2018-10-13 15:08:58 +02:00
|
|
|
if (bucket < 0xff) {
|
2018-10-27 23:47:46 +02:00
|
|
|
if(bucket_sort_order[bucket] == SortOrder::DEPTH) {
|
|
|
|
const u64 key = mesh.sort_key | ((u64)bucket << 56) | ((u64)depth_bits << 24);
|
|
|
|
sort_keys.push(key);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
const u64 key = ((u64)mesh.sort_key << 32) | ((u64)bucket << 56) | depth_bits;
|
|
|
|
sort_keys.push(mesh.sort_key | ((u64)bucket << 56));
|
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
subrenderables.push(renderables[i]);
|
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
break;
|
2018-10-13 15:08:58 +02:00
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
case RenderableTypes::SKINNED:
|
|
|
|
case RenderableTypes::MESH_GROUP:
|
2018-10-13 23:24:44 +02:00
|
|
|
// TODO bucket
|
2018-10-13 15:08:58 +02:00
|
|
|
const LODMeshIndices lod = mi.model->getLODMeshIndices(squared_length);
|
2018-10-07 18:00:48 +02:00
|
|
|
for(int mesh_idx = lod.from; mesh_idx <= lod.to; ++mesh_idx) {
|
|
|
|
sort_keys.push(mi.meshes[mesh_idx].sort_key);
|
|
|
|
subrenderables.push(renderables[i] | ((u64)mesh_idx << 32));
|
|
|
|
}
|
|
|
|
break;
|
2018-10-13 23:24:44 +02:00
|
|
|
case RenderableTypes::DECAL: {
|
2018-10-20 21:35:03 +02:00
|
|
|
// TODO camera inside decal volume
|
2018-10-13 23:24:44 +02:00
|
|
|
const Material* material = scene->getDecalMaterial(e);
|
|
|
|
const int layer = material->getLayer();
|
|
|
|
const u8 bucket = bucket_map[layer];
|
|
|
|
if (bucket < 0xff) {
|
|
|
|
// TODO material can have the same sort key as mesh
|
|
|
|
sort_keys.push(material->getSortKey() | ((u64)bucket << 56));
|
|
|
|
subrenderables.push(renderables[i]);
|
|
|
|
}
|
2018-10-10 23:41:26 +02:00
|
|
|
break;
|
2018-10-13 23:24:44 +02:00
|
|
|
}
|
2018-10-20 21:35:03 +02:00
|
|
|
case RenderableTypes::LOCAL_LIGHT: {
|
|
|
|
// TODO camera inside light volume
|
|
|
|
if(ctx->local_light_bucket < 0xff) {
|
|
|
|
sort_keys.push(((u64)ctx->local_light_bucket << 56));
|
|
|
|
subrenderables.push(renderables[i]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
default: ASSERT(false); break;
|
2018-09-26 20:21:04 +02:00
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
}
|
2018-10-10 00:17:59 +02:00
|
|
|
sort_keys.end();
|
|
|
|
subrenderables.end();
|
2018-09-23 22:59:47 +02:00
|
|
|
}
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
MTBucketArray<u64>::Bucket sort_keys;
|
|
|
|
MTBucketArray<u64>::Bucket subrenderables;
|
2018-09-29 15:14:46 +02:00
|
|
|
DVec3 camera_pos;
|
2018-09-26 20:21:04 +02:00
|
|
|
u32* renderables;
|
2018-10-20 21:35:03 +02:00
|
|
|
u8 local_light_bucket;
|
2018-09-26 20:21:04 +02:00
|
|
|
int count;
|
2018-10-12 00:12:44 +02:00
|
|
|
PrepareCommandsRenderJob* cmd;
|
2018-09-26 20:21:04 +02:00
|
|
|
};
|
2018-09-23 22:59:47 +02:00
|
|
|
|
|
|
|
|
2018-09-26 20:21:04 +02:00
|
|
|
struct CreateCommands
|
|
|
|
{
|
2018-10-07 18:00:48 +02:00
|
|
|
static void execute(void* data)
|
2018-09-23 22:59:47 +02:00
|
|
|
{
|
2018-10-13 15:08:58 +02:00
|
|
|
// because of inlining in debug
|
|
|
|
#define WRITE(x) do { \
|
|
|
|
memcpy(out, &(x), sizeof(x)); \
|
|
|
|
out += sizeof(x); \
|
|
|
|
} while(false)
|
|
|
|
|
|
|
|
#define WRITE_FN(x) do { \
|
|
|
|
auto* p = x; \
|
|
|
|
memcpy(out, &p, sizeof(p)); \
|
|
|
|
out += sizeof(p); \
|
|
|
|
} while(false)
|
|
|
|
|
2018-10-07 18:00:48 +02:00
|
|
|
PROFILE_BLOCK("create cmds");
|
|
|
|
CreateCommands* ctx = (CreateCommands*)data;
|
|
|
|
PROFILE_INT("num", ctx->count);
|
|
|
|
const Universe& universe = ctx->cmd->m_pipeline->m_scene->getUniverse();
|
2018-10-13 23:24:44 +02:00
|
|
|
ctx->output->resize(ctx->count * (sizeof(RenderableTypes) + sizeof(Mesh::RenderData*) + sizeof(Material::RenderData*) + sizeof(Vec3) + sizeof(Quat) + sizeof(Vec3) + sizeof(u16) + sizeof(float)));
|
2018-10-28 11:01:49 +01:00
|
|
|
const u64 instance_key_mask = ctx->cmd->m_bucket_sort_order[ctx->bucket] == PrepareCommandsRenderJob::SortOrder::DEPTH ? 0xffFFff : 0xffFFff00000000;
|
2018-10-07 18:00:48 +02:00
|
|
|
u8* out = ctx->output->begin();
|
|
|
|
const u64* LUMIX_RESTRICT renderables = ctx->renderables;
|
|
|
|
const u64* LUMIX_RESTRICT sort_keys = ctx->sort_keys;
|
2018-10-13 15:08:58 +02:00
|
|
|
RenderScene* scene = ctx->cmd->m_pipeline->m_scene;
|
|
|
|
const ModelInstance* LUMIX_RESTRICT model_instances = scene->getModelInstances();
|
2018-10-07 18:00:48 +02:00
|
|
|
const Universe::EntityData* LUMIX_RESTRICT entity_data = universe.getEntityData();
|
|
|
|
const DVec3 camera_pos = ctx->camera_pos;
|
|
|
|
for (int i = 0, c = ctx->count; i < c; ++i) {
|
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const RenderableTypes type = RenderableTypes((renderables[i] >> 24) & 0xff);
|
|
|
|
*(RenderableTypes*)out = type;
|
|
|
|
out += sizeof(type);
|
|
|
|
switch(type) {
|
|
|
|
case RenderableTypes::MESH_GROUP:
|
|
|
|
case RenderableTypes::MESH: {
|
|
|
|
const u32 mesh_idx = renderables[i] >> 32;
|
|
|
|
const ModelInstance* LUMIX_RESTRICT mi = &model_instances[e.index];
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE(mi->meshes[mesh_idx].render_data);
|
|
|
|
WRITE_FN(mi->meshes[mesh_idx].material->getRenderData());
|
2018-10-07 18:00:48 +02:00
|
|
|
u16* instance_count = (u16*)out;
|
|
|
|
int start_i = i;
|
|
|
|
out += sizeof(*instance_count);
|
2018-10-28 11:01:49 +01:00
|
|
|
const u64 key = sort_keys[i] & instance_key_mask;
|
|
|
|
while (i < c && (sort_keys[i] & instance_key_mask) == key) {
|
2018-09-29 15:14:46 +02:00
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const Transform& tr = entity_data[e.index].transform;
|
2018-10-10 21:09:26 +02:00
|
|
|
const Vec3 lpos = (tr.pos - camera_pos).toFloat();
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE(tr.rot);
|
|
|
|
WRITE(lpos);
|
|
|
|
WRITE(tr.scale);
|
2018-10-07 18:00:48 +02:00
|
|
|
++i;
|
|
|
|
}
|
|
|
|
*instance_count = u16(i - start_i);
|
|
|
|
--i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case RenderableTypes::SKINNED: {
|
|
|
|
const u32 mesh_idx = renderables[i] >> 32;
|
|
|
|
const ModelInstance* LUMIX_RESTRICT mi = &model_instances[e.index];
|
2018-10-14 00:35:52 +02:00
|
|
|
const uint out_offset = uint(out - ctx->output->begin());
|
|
|
|
ctx->output->resize(ctx->output->size() + mi->pose->count * sizeof(Matrix) + sizeof(Matrix));
|
|
|
|
out = ctx->output->begin() + out_offset;
|
|
|
|
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE(mi->meshes[mesh_idx].render_data);
|
|
|
|
WRITE_FN(mi->meshes[mesh_idx].material->getRenderData());
|
2018-10-07 18:00:48 +02:00
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const Transform& tr = entity_data[e.index].transform;
|
|
|
|
Matrix mtx = tr.rot.toMatrix();
|
|
|
|
mtx.multiply3x3(tr.scale);
|
|
|
|
mtx.setTranslation((tr.pos - camera_pos).toFloat());
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE(mtx);
|
2018-10-07 18:00:48 +02:00
|
|
|
|
|
|
|
*(int*)out = mi->pose->count;
|
|
|
|
out += sizeof(int);
|
|
|
|
const Quat* rotations = mi->pose->rotations;
|
|
|
|
const Vec3* positions = mi->pose->positions;
|
|
|
|
|
|
|
|
Model& model = *mi->model;
|
|
|
|
for(int j = 0, c = mi->pose->count; j < c; ++j) {
|
|
|
|
const Model::Bone& bone = model.getBone(j);
|
|
|
|
const LocalRigidTransform tmp = {positions[j], rotations[j]};
|
|
|
|
Matrix m = (tmp * bone.inv_bind_transform).toMatrix();
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE(m);
|
2018-09-29 15:14:46 +02:00
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
break;
|
2018-09-26 20:21:04 +02:00
|
|
|
}
|
2018-10-13 15:08:58 +02:00
|
|
|
case RenderableTypes::DECAL: {
|
|
|
|
const Material* material = scene->getDecalMaterial(e);
|
|
|
|
const Vec3 half_extents = scene->getDecalHalfExtents(e);
|
|
|
|
|
2018-10-13 23:24:44 +02:00
|
|
|
const uint out_offset = uint(out - ctx->output->begin());
|
|
|
|
ctx->output->resize(ctx->output->size() + sizeof(Vec3) + sizeof(void*) + sizeof(Vec3) + sizeof(Quat));
|
|
|
|
out = ctx->output->begin() + out_offset;
|
2018-10-13 15:08:58 +02:00
|
|
|
WRITE_FN(material->getRenderData());
|
|
|
|
|
2018-10-13 23:24:44 +02:00
|
|
|
u16* instance_count = (u16*)out;
|
|
|
|
int start_i = i;
|
|
|
|
out += sizeof(*instance_count);
|
|
|
|
const u64 key = sort_keys[i];
|
|
|
|
while (i < c && sort_keys[i] == key) {
|
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const Transform& tr = entity_data[e.index].transform;
|
|
|
|
const Vec3 lpos = (tr.pos - camera_pos).toFloat();
|
|
|
|
WRITE(lpos);
|
|
|
|
WRITE(tr.rot);
|
|
|
|
const Vec3 half_extents = scene->getDecalHalfExtents(e);
|
|
|
|
WRITE(half_extents);
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
*instance_count = u16(i - start_i);
|
|
|
|
--i;
|
2018-10-10 23:41:26 +02:00
|
|
|
break;
|
2018-10-13 15:08:58 +02:00
|
|
|
}
|
2018-10-20 21:35:03 +02:00
|
|
|
case RenderableTypes::LOCAL_LIGHT: {
|
|
|
|
u16* instance_count = (u16*)out;
|
|
|
|
int start_i = i;
|
|
|
|
out += sizeof(*instance_count);
|
|
|
|
const u64 key = sort_keys[i];
|
|
|
|
while (i < c && sort_keys[i] == key) {
|
|
|
|
const EntityRef e = {int(renderables[i] & 0x00ffFFff)};
|
|
|
|
const Transform& tr = entity_data[e.index].transform;
|
|
|
|
const Vec3 lpos = (tr.pos - camera_pos).toFloat();
|
|
|
|
const float range = scene->getLightRange(e);
|
|
|
|
WRITE(tr.rot);
|
|
|
|
WRITE(lpos);
|
|
|
|
WRITE(range);
|
|
|
|
// TODO color, attn, ...
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
*instance_count = u16(i - start_i);
|
|
|
|
--i;
|
|
|
|
break;
|
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
default: ASSERT(false); break;
|
2018-09-23 22:59:47 +02:00
|
|
|
}
|
2018-10-07 18:00:48 +02:00
|
|
|
}
|
2018-10-13 23:24:44 +02:00
|
|
|
if (ctx->count > 0) ctx->output->resize(int(out - ctx->output->begin()));
|
2018-10-13 15:08:58 +02:00
|
|
|
#undef WRITE
|
|
|
|
#undef WRITE_FN
|
2018-09-26 20:21:04 +02:00
|
|
|
}
|
2018-09-23 22:59:47 +02:00
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
u64* renderables;
|
2018-09-26 20:21:04 +02:00
|
|
|
u64* sort_keys;
|
|
|
|
Array<u8>* output;
|
2018-10-13 15:08:58 +02:00
|
|
|
int idx;
|
2018-10-28 11:01:49 +01:00
|
|
|
u8 bucket;
|
2018-09-26 20:21:04 +02:00
|
|
|
DVec3 camera_pos;
|
|
|
|
int count;
|
2018-10-12 00:12:44 +02:00
|
|
|
PrepareCommandsRenderJob* cmd;
|
2018-09-26 20:21:04 +02:00
|
|
|
};
|
2018-09-23 22:59:47 +02:00
|
|
|
|
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
void createSortKeys(const Array<Array<u32>>& renderables, MTBucketArray<u64>& sort_keys, MTBucketArray<u64>& subrenderables)
|
2018-09-26 20:21:04 +02:00
|
|
|
{
|
|
|
|
Array<CreateSortKeys> create_sort_keys(m_allocator);
|
|
|
|
create_sort_keys.reserve(renderables.size());
|
2018-10-27 02:49:58 +02:00
|
|
|
JobSystem::SignalHandle counter = JobSystem::createSignal();
|
2018-10-20 21:35:03 +02:00
|
|
|
const u8 local_light_layer = m_pipeline->m_renderer.getLayerIdx("local_light");
|
|
|
|
const u8 local_light_bucket = m_bucket_map[local_light_layer];
|
2018-09-26 20:21:04 +02:00
|
|
|
for(int i = 0; i < renderables.size(); ++i) {
|
2018-10-07 18:00:48 +02:00
|
|
|
if (renderables[i].empty()) continue;
|
2018-09-26 20:21:04 +02:00
|
|
|
CreateSortKeys& ctx = create_sort_keys.emplace();
|
2018-10-20 21:35:03 +02:00
|
|
|
ctx.local_light_bucket = local_light_bucket;
|
2018-09-26 20:21:04 +02:00
|
|
|
ctx.renderables = renderables[i].begin();
|
2018-09-29 15:14:46 +02:00
|
|
|
ctx.sort_keys = sort_keys.begin();
|
|
|
|
ctx.subrenderables = subrenderables.begin();
|
2018-09-26 20:21:04 +02:00
|
|
|
ctx.count = renderables[i].size();
|
2018-09-29 15:14:46 +02:00
|
|
|
ctx.camera_pos = m_pipeline->m_viewport.pos;
|
2018-09-26 20:21:04 +02:00
|
|
|
ctx.cmd = this;
|
2018-10-11 22:01:56 +02:00
|
|
|
JobSystem::run(counter, &ctx, &CreateSortKeys::execute);
|
2018-09-23 18:18:18 +02:00
|
|
|
}
|
2018-10-27 02:49:58 +02:00
|
|
|
JobSystem::trigger(counter);
|
2018-10-07 18:00:48 +02:00
|
|
|
JobSystem::wait(counter);
|
2018-10-10 00:17:59 +02:00
|
|
|
sort_keys.merge();
|
|
|
|
subrenderables.merge();
|
2018-09-23 18:18:18 +02:00
|
|
|
}
|
|
|
|
|
2018-09-26 20:21:04 +02:00
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
void setup() override
|
2018-07-08 18:16:16 +02:00
|
|
|
{
|
2018-10-06 12:15:05 +02:00
|
|
|
PROFILE_FUNCTION();
|
2018-07-29 10:53:13 +02:00
|
|
|
if(!m_pipeline->m_scene) return;
|
2018-07-11 23:35:34 +02:00
|
|
|
|
2018-07-29 10:53:13 +02:00
|
|
|
Renderer& renderer = m_pipeline->m_renderer;
|
|
|
|
const RenderScene* scene = m_pipeline->getScene();
|
2018-09-23 18:18:18 +02:00
|
|
|
Array<Array<u32>> renderables(renderer.getAllocator());
|
|
|
|
scene->getRenderables(m_camera_params.frustum, renderables);
|
|
|
|
if (renderables.empty()) return;
|
2018-07-29 10:53:13 +02:00
|
|
|
|
2018-09-29 15:14:46 +02:00
|
|
|
MTBucketArray<u64> sort_keys(m_allocator);
|
|
|
|
MTBucketArray<u64> subrenderables(m_allocator);
|
|
|
|
createSortKeys(renderables, sort_keys, subrenderables);
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
if (subrenderables.size() > 0) {
|
|
|
|
radixSort(sort_keys.ptr(), subrenderables.ptr(), sort_keys.size());
|
|
|
|
createCommands(subrenderables.ptr(), sort_keys.ptr(), subrenderables.size());
|
2018-07-08 18:16:16 +02:00
|
|
|
}
|
2018-09-26 20:21:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-10 00:17:59 +02:00
|
|
|
void createCommands(u64* renderables, u64* sort_keys, int size)
|
2018-09-26 20:21:04 +02:00
|
|
|
{
|
|
|
|
Array<CreateCommands> create_commands(m_allocator);
|
2018-10-10 00:17:59 +02:00
|
|
|
const int job_count = Math::minimum(size, 16);
|
2018-10-13 15:08:58 +02:00
|
|
|
create_commands.reserve(job_count * m_bucket_count);
|
2018-10-27 02:49:58 +02:00
|
|
|
JobSystem::SignalHandle counter = JobSystem::createSignal();
|
2018-10-13 15:08:58 +02:00
|
|
|
int bucket_offset = 0;
|
|
|
|
for(u8 bucket = 0; bucket < m_bucket_count; ++bucket) {
|
|
|
|
m_command_sets[bucket]->cmds.reserve(job_count);
|
|
|
|
int bucket_size;
|
|
|
|
for(bucket_size = bucket_offset; bucket_size < size && (sort_keys[bucket_size] >> 56) == bucket; ++bucket_size);
|
2018-10-14 00:35:52 +02:00
|
|
|
bucket_size -= bucket_offset;
|
2018-10-13 15:08:58 +02:00
|
|
|
int job_offset = 0;
|
|
|
|
const int step = (bucket_size + job_count - 1) / job_count;
|
|
|
|
for(int i = 0; i < job_count; ++i) {
|
2018-10-13 23:24:44 +02:00
|
|
|
const int count = Math::minimum(step, bucket_size - job_offset);
|
|
|
|
if (count < 0) break;
|
2018-10-13 15:08:58 +02:00
|
|
|
CreateCommands& ctx = create_commands.emplace();
|
|
|
|
ctx.renderables = renderables + bucket_offset + job_offset;
|
|
|
|
ctx.sort_keys = sort_keys + bucket_offset + job_offset;
|
2018-10-13 23:24:44 +02:00
|
|
|
ctx.count = count;
|
2018-10-13 15:08:58 +02:00
|
|
|
ctx.cmd = this;
|
|
|
|
ctx.camera_pos = m_camera_params.pos;
|
|
|
|
ctx.output = &m_command_sets[bucket]->cmds.emplace(m_allocator);
|
2018-10-28 11:01:49 +01:00
|
|
|
ctx.bucket = bucket;
|
2018-10-13 15:08:58 +02:00
|
|
|
job_offset += step;
|
|
|
|
JobSystem::run(counter, &ctx, &CreateCommands::execute);
|
|
|
|
}
|
2018-10-14 00:35:52 +02:00
|
|
|
bucket_offset += bucket_size;
|
2018-09-26 20:21:04 +02:00
|
|
|
}
|
2018-10-27 02:49:58 +02:00
|
|
|
JobSystem::trigger(counter);
|
2018-10-07 18:00:48 +02:00
|
|
|
JobSystem::wait(counter);
|
2018-07-08 18:16:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
void execute() override {}
|
2016-10-22 18:08:53 +02:00
|
|
|
|
2018-10-27 23:47:46 +02:00
|
|
|
enum class SortOrder : u8 {
|
|
|
|
DEFAULT,
|
|
|
|
DEPTH
|
|
|
|
};
|
2018-07-08 18:16:16 +02:00
|
|
|
|
2018-07-29 10:53:13 +02:00
|
|
|
IAllocator& m_allocator;
|
|
|
|
CameraParams m_camera_params;
|
|
|
|
PipelineImpl* m_pipeline;
|
2018-07-14 10:03:38 +02:00
|
|
|
struct {
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::TextureHandle texture;
|
|
|
|
ffr::UniformHandle uniform;
|
2018-07-29 10:53:13 +02:00
|
|
|
} m_global_textures[16];
|
|
|
|
int m_global_textures_count = 0;
|
2018-10-13 15:08:58 +02:00
|
|
|
CommandSet* m_command_sets[255];
|
|
|
|
u8 m_bucket_map[255];
|
2018-10-27 23:47:46 +02:00
|
|
|
SortOrder m_bucket_sort_order[256] = {};
|
2018-10-13 15:08:58 +02:00
|
|
|
u8 m_bucket_count;
|
2018-07-08 18:16:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
void clear(u32 flags, float r, float g, float b, float a, float depth)
|
2016-02-15 15:50:24 +01:00
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob {
|
2018-09-15 09:55:46 +02:00
|
|
|
void setup() override {}
|
|
|
|
void execute() override {
|
|
|
|
ffr::clear(flags, &color.x, depth);
|
|
|
|
}
|
|
|
|
Vec4 color;
|
|
|
|
float depth;
|
|
|
|
u32 flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
Cmd* cmd = LUMIX_NEW(m_renderer.getAllocator(), Cmd);
|
|
|
|
cmd->color.set(r, g, b, a);
|
|
|
|
cmd->flags = flags;
|
|
|
|
cmd->depth = depth;
|
|
|
|
m_renderer.push(cmd);
|
2016-02-15 15:50:24 +01:00
|
|
|
}
|
2017-02-18 00:26:56 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2018-07-06 21:31:44 +02:00
|
|
|
void viewport(int x, int y, int w, int h)
|
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob {
|
2018-07-14 10:03:38 +02:00
|
|
|
void setup() override {}
|
|
|
|
void execute() override { ffr::viewport(x, y, w, h); }
|
|
|
|
int x, y, w, h;
|
|
|
|
};
|
|
|
|
|
|
|
|
Cmd* cmd = LUMIX_NEW(m_renderer.getAllocator(), Cmd);
|
|
|
|
cmd->x = x;
|
|
|
|
cmd->y = y;
|
|
|
|
cmd->w = w;
|
|
|
|
cmd->h = h;
|
|
|
|
|
|
|
|
m_renderer.push(cmd);
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
void beginBlock(const char* name)
|
2018-07-06 21:31:44 +02:00
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-07-14 10:03:38 +02:00
|
|
|
{
|
|
|
|
void setup() override {}
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
ffr::pushDebugGroup(name);
|
|
|
|
renderer->beginProfileBlock(name);
|
|
|
|
}
|
|
|
|
StaticString<32> name;
|
|
|
|
Renderer* renderer;
|
|
|
|
};
|
|
|
|
Cmd* cmd = LUMIX_NEW(m_renderer.getAllocator(), Cmd);
|
|
|
|
cmd->name = name;
|
|
|
|
cmd->renderer = &m_renderer;
|
|
|
|
m_renderer.push(cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void endBlock()
|
|
|
|
{
|
2018-10-12 00:12:44 +02:00
|
|
|
struct Cmd : Renderer::RenderJob
|
2018-07-14 10:03:38 +02:00
|
|
|
{
|
|
|
|
void setup() override {}
|
|
|
|
void execute() override
|
|
|
|
{
|
|
|
|
renderer->endProfileBlock();
|
|
|
|
ffr::popDebugGroup();
|
|
|
|
}
|
|
|
|
Renderer* renderer;
|
|
|
|
};
|
|
|
|
Cmd* cmd = LUMIX_NEW(m_renderer.getAllocator(), Cmd);
|
|
|
|
cmd->renderer = &m_renderer;
|
|
|
|
m_renderer.push(cmd);
|
2018-07-06 21:31:44 +02:00
|
|
|
}
|
|
|
|
|
2018-07-22 22:57:29 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void setOutput(int rb_index)
|
2016-02-26 11:03:08 +01:00
|
|
|
{
|
2018-07-11 23:35:34 +02:00
|
|
|
m_output = rb_index;
|
2016-02-26 11:03:08 +01:00
|
|
|
}
|
2016-02-18 01:47:49 +01:00
|
|
|
|
2017-10-10 13:21:45 +02:00
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
int preloadShader(const char* path)
|
|
|
|
{
|
2018-08-22 20:53:54 +02:00
|
|
|
ResourceManagerHub& rm = m_renderer.getEngine().getResourceManager();
|
2018-07-05 15:54:14 +02:00
|
|
|
ShaderRef s;
|
2018-08-22 20:53:54 +02:00
|
|
|
s.res = rm.load<Shader>(Path(path));
|
2018-07-05 15:54:14 +02:00
|
|
|
s.id = 0;
|
|
|
|
for(ShaderRef& i : m_shaders) {
|
|
|
|
if(i.id >= s.id) {
|
|
|
|
s.id = i.id + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
m_shaders.push(s);
|
|
|
|
return s.id;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void setWindowHandle(void* data) override { ASSERT(false); } // TODO
|
2014-05-20 23:35:09 +02:00
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void callLuaFunction(const char* function) override
|
|
|
|
{
|
|
|
|
if (!m_lua_state) return;
|
2017-10-13 22:14:54 +02:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
lua_getfield(m_lua_state, -1, function);
|
|
|
|
if (lua_type(m_lua_state, -1) != LUA_TFUNCTION)
|
|
|
|
{
|
|
|
|
lua_pop(m_lua_state, 2);
|
|
|
|
return;
|
|
|
|
}
|
2016-01-30 10:06:58 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
if (lua_pcall(m_lua_state, 0, 0, 0) != 0)
|
2016-01-30 10:06:58 +01:00
|
|
|
{
|
2018-06-30 15:18:27 +02:00
|
|
|
g_log_warning.log("Renderer") << lua_tostring(m_lua_state, -1);
|
|
|
|
lua_pop(m_lua_state, 1);
|
2016-01-30 10:06:58 +01:00
|
|
|
}
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_pop(m_lua_state, 1);
|
2016-01-30 10:06:58 +01:00
|
|
|
}
|
2018-06-30 15:18:27 +02:00
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
|
|
|
|
void registerLuaAPI(lua_State* L)
|
|
|
|
{
|
|
|
|
lua_rawgeti(m_lua_state, LUA_REGISTRYINDEX, m_lua_env);
|
|
|
|
|
|
|
|
auto registerCFunction = [L, this](const char* name, lua_CFunction function) {
|
|
|
|
lua_pushlightuserdata(L, this);
|
|
|
|
lua_pushcclosure(L, function, 1);
|
|
|
|
lua_setfield(L, -3, name);
|
|
|
|
};
|
|
|
|
|
|
|
|
auto registerConst = [L](const char* name, u32 value)
|
|
|
|
{
|
|
|
|
lua_pushinteger(L, value);
|
|
|
|
lua_setfield(L, -2, name);
|
|
|
|
};
|
|
|
|
|
|
|
|
#define REGISTER_FUNCTION(name) \
|
|
|
|
do {\
|
|
|
|
auto f = &LuaWrapper::wrapMethodClosure<PipelineImpl, decltype(&PipelineImpl::name), &PipelineImpl::name>; \
|
|
|
|
registerCFunction(#name, f); \
|
|
|
|
} while(false) \
|
|
|
|
|
2018-07-14 10:03:38 +02:00
|
|
|
REGISTER_FUNCTION(beginBlock);
|
2018-07-06 21:31:44 +02:00
|
|
|
REGISTER_FUNCTION(clear);
|
2018-07-05 15:54:14 +02:00
|
|
|
REGISTER_FUNCTION(createRenderbuffer);
|
2018-07-14 10:03:38 +02:00
|
|
|
REGISTER_FUNCTION(endBlock);
|
2018-07-05 15:54:14 +02:00
|
|
|
REGISTER_FUNCTION(executeCustomCommand);
|
|
|
|
REGISTER_FUNCTION(preloadShader);
|
2018-10-21 18:05:43 +02:00
|
|
|
REGISTER_FUNCTION(prepareTerrainTextures);
|
2018-07-05 15:54:14 +02:00
|
|
|
REGISTER_FUNCTION(render2D);
|
|
|
|
REGISTER_FUNCTION(renderDebugShapes);
|
2018-10-20 21:35:03 +02:00
|
|
|
REGISTER_FUNCTION(renderLocalLights);
|
2018-10-20 01:55:30 +02:00
|
|
|
REGISTER_FUNCTION(renderTextMeshes);
|
2018-07-05 15:54:14 +02:00
|
|
|
REGISTER_FUNCTION(setOutput);
|
2018-07-06 21:31:44 +02:00
|
|
|
REGISTER_FUNCTION(viewport);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
2018-07-08 00:44:45 +02:00
|
|
|
registerConst("CLEAR_DEPTH", (uint)ffr::ClearFlags::DEPTH);
|
2018-07-22 22:57:29 +02:00
|
|
|
registerConst("CLEAR_COLOR", (uint)ffr::ClearFlags::COLOR);
|
|
|
|
registerConst("CLEAR_ALL", (uint)ffr::ClearFlags::COLOR | (uint)ffr::ClearFlags::DEPTH | (uint)ffr::ClearFlags::STENCIL);
|
|
|
|
|
|
|
|
registerConst("STENCIL_ALWAYS", (uint)ffr::StencilFuncs::ALWAYS);
|
|
|
|
registerConst("STENCIL_EQUAL", (uint)ffr::StencilFuncs::EQUAL);
|
|
|
|
registerConst("STENCIL_NOT_EQUAL", (uint)ffr::StencilFuncs::NOT_EQUAL);
|
|
|
|
registerConst("STENCIL_DISABLE", (uint)ffr::StencilFuncs::DISABLE);
|
|
|
|
registerConst("STENCIL_KEEP", (uint)ffr::StencilOps::KEEP);
|
|
|
|
registerConst("STENCIL_REPLACE", (uint)ffr::StencilOps::REPLACE);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
2018-09-05 20:45:06 +02:00
|
|
|
registerCFunction("bindTextures", PipelineImpl::bindTextures);
|
2018-07-05 15:54:14 +02:00
|
|
|
registerCFunction("drawArray", PipelineImpl::drawArray);
|
2018-07-06 21:31:44 +02:00
|
|
|
registerCFunction("getCameraParams", PipelineImpl::getCameraParams);
|
|
|
|
registerCFunction("getShadowCameraParams", PipelineImpl::getShadowCameraParams);
|
2018-10-12 00:12:44 +02:00
|
|
|
registerCFunction("prepareCommands", PipelineImpl::prepareCommands);
|
2018-09-05 20:45:06 +02:00
|
|
|
registerCFunction("renderEnvProbeVolumes", PipelineImpl::renderEnvProbeVolumes);
|
2018-10-27 23:47:46 +02:00
|
|
|
registerCFunction("renderBucket", PipelineImpl::renderBucket);
|
2018-08-23 22:35:38 +02:00
|
|
|
registerCFunction("renderParticles", PipelineImpl::renderParticles);
|
2018-07-22 15:22:36 +02:00
|
|
|
registerCFunction("renderTerrains", PipelineImpl::renderTerrains);
|
2018-07-06 21:31:44 +02:00
|
|
|
registerCFunction("setRenderTargets", PipelineImpl::setRenderTargets);
|
2018-07-05 15:54:14 +02:00
|
|
|
|
|
|
|
lua_pop(L, 1); // pop env
|
|
|
|
|
|
|
|
#undef REGISTER_FUNCTION
|
|
|
|
}
|
|
|
|
|
2018-10-12 00:12:44 +02:00
|
|
|
void freeCommandSets()
|
|
|
|
{
|
|
|
|
for(CommandSet* set : m_command_sets) {
|
|
|
|
m_renderer.runInRenderThread(set, [](Renderer& renderer, void* data){
|
|
|
|
LUMIX_DELETE(renderer.getAllocator(), (CommandSet*)data);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
m_command_sets.clear();
|
|
|
|
}
|
2016-01-30 10:06:58 +01:00
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
bool isReady() const override { return m_resource->isReady(); }
|
2018-06-30 15:18:27 +02:00
|
|
|
const Stats& getStats() const override { return m_stats; }
|
2018-09-09 17:58:25 +02:00
|
|
|
const Path& getPath() override { return m_resource->getPath(); }
|
2016-01-30 10:06:58 +01:00
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
Draw2D& getDraw2D() override { return m_draw2d; }
|
2018-07-11 23:35:34 +02:00
|
|
|
ffr::TextureHandle getOutput() override {
|
2018-07-29 18:36:32 +02:00
|
|
|
if (m_output < 0 || m_output >= m_renderbuffers.size()) return ffr::INVALID_TEXTURE;
|
2018-07-11 23:35:34 +02:00
|
|
|
return m_renderbuffers[m_output].handle;
|
|
|
|
}
|
2018-06-30 15:18:27 +02:00
|
|
|
|
|
|
|
struct Renderbuffer {
|
|
|
|
uint width;
|
|
|
|
uint height;
|
2018-07-11 23:35:34 +02:00
|
|
|
bool use_realtive_size;
|
|
|
|
Vec2 relative_size;
|
2018-06-30 15:18:27 +02:00
|
|
|
ffr::TextureFormat format;
|
2018-07-11 23:35:34 +02:00
|
|
|
ffr::TextureHandle handle;
|
2018-06-30 15:18:27 +02:00
|
|
|
int frame_counter;
|
|
|
|
};
|
2016-01-30 10:06:58 +01:00
|
|
|
|
2018-07-05 15:54:14 +02:00
|
|
|
struct ShaderRef {
|
|
|
|
Lumix::Shader* res;
|
|
|
|
int id;
|
|
|
|
};
|
|
|
|
|
2018-07-01 23:37:56 +02:00
|
|
|
IAllocator& m_allocator;
|
2018-06-30 15:18:27 +02:00
|
|
|
Renderer& m_renderer;
|
2018-09-09 17:58:25 +02:00
|
|
|
PipelineResource* m_resource;
|
2018-06-30 15:18:27 +02:00
|
|
|
lua_State* m_lua_state;
|
|
|
|
int m_lua_thread_ref;
|
|
|
|
int m_lua_env;
|
|
|
|
bool m_is_first_render;
|
2018-07-06 21:31:44 +02:00
|
|
|
StaticString<32> m_define;
|
2018-06-30 15:18:27 +02:00
|
|
|
RenderScene* m_scene;
|
|
|
|
Draw2D m_draw2d;
|
|
|
|
Shader* m_draw2d_shader;
|
|
|
|
Stats m_stats;
|
2018-07-08 00:44:45 +02:00
|
|
|
Viewport m_viewport;
|
2018-07-11 23:35:34 +02:00
|
|
|
int m_output;
|
2018-07-01 23:37:56 +02:00
|
|
|
Shader* m_debug_shape_shader;
|
2018-10-20 01:55:30 +02:00
|
|
|
Shader* m_text_mesh_shader;
|
2018-07-05 15:54:14 +02:00
|
|
|
Texture* m_default_cubemap;
|
2018-10-12 00:12:44 +02:00
|
|
|
Array<CommandSet*> m_command_sets;
|
2018-06-30 15:18:27 +02:00
|
|
|
Array<CustomCommandHandler> m_custom_commands_handlers;
|
|
|
|
Array<Renderbuffer> m_renderbuffers;
|
2018-07-05 15:54:14 +02:00
|
|
|
Array<ShaderRef> m_shaders;
|
2018-07-29 18:36:32 +02:00
|
|
|
Timer* m_timer;
|
2018-07-15 17:35:41 +02:00
|
|
|
|
2018-09-05 20:45:06 +02:00
|
|
|
ffr::UniformHandle m_position_radius_uniform;
|
2018-10-06 12:15:05 +02:00
|
|
|
ffr::UniformHandle m_position_uniform;
|
|
|
|
ffr::UniformHandle m_lod_uniform;
|
2018-07-22 15:22:36 +02:00
|
|
|
ffr::UniformHandle m_terrain_params_uniform;
|
|
|
|
ffr::UniformHandle m_rel_camera_pos_uniform;
|
|
|
|
ffr::UniformHandle m_terrain_scale_uniform;
|
|
|
|
ffr::UniformHandle m_terrain_matrix_uniform;
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::UniformHandle m_model_uniform;
|
2018-07-17 01:13:58 +02:00
|
|
|
ffr::UniformHandle m_bones_uniform;
|
2018-07-15 17:35:41 +02:00
|
|
|
ffr::UniformHandle m_canvas_size_uniform;
|
|
|
|
ffr::UniformHandle m_texture_uniform;
|
|
|
|
ffr::UniformHandle m_irradiance_map_uniform;
|
|
|
|
ffr::UniformHandle m_radiance_map_uniform;
|
|
|
|
ffr::UniformHandle m_material_params_uniform;
|
2018-07-29 12:40:58 +02:00
|
|
|
ffr::UniformHandle m_material_color_uniform;
|
2018-09-05 20:45:06 +02:00
|
|
|
ffr::BufferHandle m_cube_vb;
|
|
|
|
ffr::BufferHandle m_cube_ib;
|
2018-06-30 15:18:27 +02:00
|
|
|
};
|
2017-10-06 17:52:00 +02:00
|
|
|
|
|
|
|
|
2018-09-09 17:58:25 +02:00
|
|
|
Pipeline* Pipeline::create(Renderer& renderer, PipelineResource* resource, const char* define, IAllocator& allocator)
|
2015-09-02 11:14:42 +02:00
|
|
|
{
|
2018-09-09 17:58:25 +02:00
|
|
|
return LUMIX_NEW(allocator, PipelineImpl)(renderer, resource, define, allocator);
|
2015-09-02 11:14:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
void Pipeline::destroy(Pipeline* pipeline)
|
2015-07-23 23:17:51 +02:00
|
|
|
{
|
2018-07-14 17:52:06 +02:00
|
|
|
PipelineImpl* p = (PipelineImpl*)pipeline;
|
|
|
|
LUMIX_DELETE(p->m_allocator, p);
|
2015-07-23 23:17:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-10-27 13:13:51 +02:00
|
|
|
void Pipeline::renderModel(Model& model, const Matrix& mtx, ffr::UniformHandle mtx_uniform)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < model.getMeshCount(); ++i) {
|
|
|
|
|
|
|
|
const Mesh& mesh = model.getMesh(i);
|
|
|
|
const Material* material = mesh.material;
|
|
|
|
ShaderRenderData* shader_rd = material->getShader()->m_render_data;
|
|
|
|
const Shader::Program& prog = Shader::getProgram(shader_rd, 0); // TODO define
|
|
|
|
const int textures_count = material->getTextureCount();
|
|
|
|
|
|
|
|
if(!prog.handle.isValid()) continue;
|
|
|
|
|
|
|
|
for(int i = 0; i < textures_count; ++i) {
|
|
|
|
ffr::bindTexture(i, material->getTexture(i)->handle);
|
|
|
|
ffr::setUniform1i(material->getTextureUniform(i), i);
|
|
|
|
}
|
|
|
|
|
|
|
|
int attribute_map[16];
|
|
|
|
const Mesh::RenderData* rd = mesh.render_data;
|
|
|
|
for(uint i = 0; i < rd->vertex_decl.attributes_count; ++i) {
|
|
|
|
attribute_map[i] = prog.attribute_by_semantics[(int)rd->attributes_semantic[i]];
|
|
|
|
}
|
|
|
|
|
|
|
|
ffr::setUniformMatrix4f(mtx_uniform, &mtx.m11);
|
|
|
|
ffr::useProgram(prog.handle);
|
|
|
|
ffr::setVertexBuffer(&rd->vertex_decl, rd->vertex_buffer_handle, 0, prog.use_semantics ? attribute_map : nullptr);
|
|
|
|
ffr::setIndexBuffer(rd->index_buffer_handle);
|
|
|
|
ffr::setState(u64(ffr::StateFlags::DEPTH_TEST) | u64(ffr::StateFlags::DEPTH_WRITE) | material->getRenderStates());
|
|
|
|
ffr::drawTriangles(rd->indices_count);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-06-30 15:18:27 +02:00
|
|
|
} // namespace Lumix
|