Layers: use IDProperty and override collection properties system

First this replace a custom data struct with IDProperty, and use
IDProperty group merge and copying functions. Which means that a collection
property setting is only created if necessary.

This implements the "Layer Collection settings" override system, as
suggested in the "Override Manifesto" document.

The core is working, with Scene, LayerCollection and Object using a
single IDProperty to store all the render settings data. Next step is to
migrate this to depsgraph.

Note: Clay engine "ssao_samples" was hardcoded to 32 for now. It will come
back as part of "Workspace Settings" later.

Many thanks for Bastien Montagne for the help with the UI template
nightmare ;)

Differential Revision: https://developer.blender.org/D2563
This commit is contained in:
Dalai Felinto
2017-03-30 17:01:23 +02:00
parent 98e69631b0
commit ce3c7e8ff5
34 changed files with 666 additions and 1485 deletions

View File

@@ -691,9 +691,9 @@ float RE_fresnel_dielectric(float incoming[3], float normal[3], float eta) RET_Z
/* Draw */
void *DRW_render_settings_get(struct Scene *scene, const char *engine_name) RET_NULL
void OBJECT_collection_settings_create(struct CollectionEngineSettings *ces) RET_NONE
void EDIT_MESH_collection_settings_create(struct CollectionEngineSettings *ces) RET_NONE
void EDIT_ARMATURE_collection_settings_create(struct CollectionEngineSettings *ces) RET_NONE
void OBJECT_collection_settings_create(struct IDProperty *properties) RET_NONE
void EDIT_MESH_collection_settings_create(struct IDProperty *properties) RET_NONE
void EDIT_ARMATURE_collection_settings_create(struct IDProperty *properties) RET_NONE
/* python */
struct wmOperatorType *WM_operatortype_find(const char *idname, bool quiet) RET_NULL