Blender Git Commit Log
Git Commits -> Revision 4f95a89
Revision 4f95a89 by Kévin Dietrich (cycles_texture_cache) May 6, 2021, 09:25 (GMT) |
Alembic Procedural: refactor data reading This splits the data reading logic from the AlembicObject class and moves it to separate files to better enforce a separation of concern. The goal was to simplify and improve the logic to read data from an Alembic archive. Since the procedural loads data for the entire animation, this requires looping over the frame range and looking up data for each frame. Previously those loops would be duplicated over the entire code causing divergences in how we might skip or deduplicate data across frames (if only some data change over time and not other on the same object, e.g. vertices and triangles might not have the same animation times), and therefore, bugs. Now, we only use a single function with callback to loop over the geometry data for each requested frame, and another one to loop over attributes. Given how attributes are accessed it is a bit tricky to simplify further and only use a ingle function, however, this is left as a further improvement as it is not impossible. To read the data, we now use a set of structures to hold which data to read. Those structures might seem redundant with the Alembic schemas as they are somewhat a copy of the schemas' structures, however they will allow us in the long run to treat the data of one object type as the data of another object type (e.g. to ignore subdivision, or only loading the vertices as point clouds). For attributes, this new system allows us to read arbitrary attributes, although with some limitations still: * only subdivision and polygon meshes are supported due to lack of examples for curve data; * some data types might be missing: we support float, float2, float3, booleans, normals, uvs, rgb, and rbga at the moment, other types can be trivially added * some attribute scopes (or domains) are not handled, again, due to lack of example files * color types are always interpreted as vertex colors |
Commit Details:
Full Hash: 4f95a89960b0fb58a972a81b4618f81a698b83c8
Parent Commit: d74d0bb
Committed By: Stefan Werner
Lines Changed: +1268, -840
2 Added Paths:
/intern/cycles/render/alembic_read.cpp (+947, -0) (View)
/intern/cycles/render/alembic_read.h (+134, -0) (View)
/intern/cycles/render/alembic_read.h (+134, -0) (View)