2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright Blender Foundation. All rights reserved. */
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup bke
|
2017-06-06 22:47:41 +02:00
|
|
|
*/
|
|
|
|
|
|
2019-09-12 04:34:55 +10:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2020-05-13 19:39:47 +02:00
|
|
|
#include "DNA_collection_types.h"
|
2019-09-12 04:34:55 +10:00
|
|
|
#include "DNA_defaults.h"
|
2020-03-19 09:33:03 +01:00
|
|
|
#include "DNA_lightprobe_types.h"
|
|
|
|
|
#include "DNA_object_types.h"
|
2017-06-06 22:47:41 +02:00
|
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
2020-09-10 17:47:04 +02:00
|
|
|
#include "BKE_anim_data.h"
|
2020-03-06 11:51:17 +01:00
|
|
|
#include "BKE_idtype.h"
|
2020-02-10 12:58:59 +01:00
|
|
|
#include "BKE_lib_id.h"
|
2020-05-13 19:32:45 +02:00
|
|
|
#include "BKE_lib_query.h"
|
2017-06-12 20:59:54 +10:00
|
|
|
#include "BKE_lightprobe.h"
|
2018-11-07 15:37:31 +01:00
|
|
|
#include "BKE_main.h"
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2020-03-06 11:51:17 +01:00
|
|
|
#include "BLT_translation.h"
|
|
|
|
|
|
2020-09-10 17:47:04 +02:00
|
|
|
#include "BLO_read_write.h"
|
|
|
|
|
|
2020-03-06 11:51:17 +01:00
|
|
|
static void lightprobe_init_data(ID *id)
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
2020-03-06 11:51:17 +01:00
|
|
|
LightProbe *probe = (LightProbe *)id;
|
2019-03-12 16:59:04 +11:00
|
|
|
BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(probe, id));
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2019-09-12 04:34:55 +10:00
|
|
|
MEMCPY_STRUCT_AFTER(probe, DNA_struct_default_get(LightProbe), id);
|
2017-06-06 22:47:41 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-13 19:39:47 +02:00
|
|
|
static void lightprobe_foreach_id(ID *id, LibraryForeachIDData *data)
|
|
|
|
|
{
|
|
|
|
|
LightProbe *probe = (LightProbe *)id;
|
|
|
|
|
|
2021-10-26 10:40:36 +02:00
|
|
|
BKE_LIB_FOREACHID_PROCESS_IDSUPER(data, probe->image, IDWALK_CB_USER);
|
|
|
|
|
BKE_LIB_FOREACHID_PROCESS_IDSUPER(data, probe->visibility_grp, IDWALK_CB_NOP);
|
2020-05-13 19:39:47 +02:00
|
|
|
}
|
|
|
|
|
|
2020-09-10 17:47:04 +02:00
|
|
|
static void lightprobe_blend_write(BlendWriter *writer, ID *id, const void *id_address)
|
|
|
|
|
{
|
|
|
|
|
LightProbe *prb = (LightProbe *)id;
|
2021-08-19 11:13:55 +02:00
|
|
|
|
|
|
|
|
/* write LibData */
|
|
|
|
|
BLO_write_id_struct(writer, LightProbe, id_address, &prb->id);
|
|
|
|
|
BKE_id_blend_write(writer, &prb->id);
|
|
|
|
|
|
|
|
|
|
if (prb->adt) {
|
|
|
|
|
BKE_animdata_blend_write(writer, prb->adt);
|
2020-09-10 17:47:04 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lightprobe_blend_read_data(BlendDataReader *reader, ID *id)
|
|
|
|
|
{
|
|
|
|
|
LightProbe *prb = (LightProbe *)id;
|
|
|
|
|
BLO_read_data_address(reader, &prb->adt);
|
|
|
|
|
BKE_animdata_blend_read_data(reader, prb->adt);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void lightprobe_blend_read_lib(BlendLibReader *reader, ID *id)
|
|
|
|
|
{
|
|
|
|
|
LightProbe *prb = (LightProbe *)id;
|
|
|
|
|
BLO_read_id_address(reader, prb->id.lib, &prb->visibility_grp);
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-13 19:32:45 +02:00
|
|
|
IDTypeInfo IDType_ID_LP = {
|
|
|
|
|
.id_code = ID_LP,
|
|
|
|
|
.id_filter = FILTER_ID_LP,
|
|
|
|
|
.main_listbase_index = INDEX_ID_LP,
|
|
|
|
|
.struct_size = sizeof(LightProbe),
|
|
|
|
|
.name = "LightProbe",
|
|
|
|
|
.name_plural = "lightprobes",
|
|
|
|
|
.translation_context = BLT_I18NCONTEXT_ID_LIGHTPROBE,
|
2021-09-17 16:22:29 +02:00
|
|
|
.flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE,
|
2021-11-24 10:32:28 +01:00
|
|
|
.asset_type_info = NULL,
|
2020-05-13 19:32:45 +02:00
|
|
|
|
|
|
|
|
.init_data = lightprobe_init_data,
|
|
|
|
|
.copy_data = NULL,
|
|
|
|
|
.free_data = NULL,
|
|
|
|
|
.make_local = NULL,
|
2020-05-13 19:39:47 +02:00
|
|
|
.foreach_id = lightprobe_foreach_id,
|
2020-08-28 13:05:48 +02:00
|
|
|
.foreach_cache = NULL,
|
Refactor BKE_bpath module.
The main goal of this refactor is to make BPath module use `IDTypeInfo`,
and move each ID-specific part of the `foreach_path` looper into their
own IDTypeInfo struct, using a new `foreach_path` callback.
Additionally, following improvements/cleanups are included:
* Attempt to get better, more consistent namings.
** In particular, move from `path_visitor` to more standard `foreach_path`.
* Update and extend documentation.
** API doc was moved to header, according to recent discussions on this
topic.
* Remove `BKE_bpath_relocate_visitor` from API, this is specific
callback that belongs in `lib_id.c` user code.
NOTE: This commit is expected to be 100% non-behavioral-change. This
implies that several potential further changes were only noted as
comments (like using a more generic solution for
`lib_id_library_local_paths`, addressing inconsistencies like path of
packed libraries always being skipped, regardless of the
`BKE_BPATH_FOREACH_PATH_SKIP_PACKED` `eBPathForeachFlag` flag value,
etc.).
NOTE: basic unittests were added to master already in
rBdcc500e5a265093bc9cc.
Reviewed By: brecht
Differential Revision: https://developer.blender.org/D13381
2021-11-29 14:20:58 +01:00
|
|
|
.foreach_path = NULL,
|
2022-09-08 16:32:35 +02:00
|
|
|
.owner_pointer_get = NULL,
|
2020-08-28 13:05:48 +02:00
|
|
|
|
2020-09-10 17:47:04 +02:00
|
|
|
.blend_write = lightprobe_blend_write,
|
|
|
|
|
.blend_read_data = lightprobe_blend_read_data,
|
|
|
|
|
.blend_read_lib = lightprobe_blend_read_lib,
|
2020-08-28 13:05:48 +02:00
|
|
|
.blend_read_expand = NULL,
|
2020-11-03 11:39:36 +01:00
|
|
|
|
|
|
|
|
.blend_read_undo_preserve = NULL,
|
2021-01-22 14:52:50 +01:00
|
|
|
|
|
|
|
|
.lib_override_apply_post = NULL,
|
2020-05-13 19:32:45 +02:00
|
|
|
};
|
|
|
|
|
|
2020-01-20 17:54:38 +11:00
|
|
|
void BKE_lightprobe_type_set(LightProbe *probe, const short lightprobe_type)
|
2020-01-17 19:14:23 +01:00
|
|
|
{
|
|
|
|
|
probe->type = lightprobe_type;
|
|
|
|
|
|
|
|
|
|
switch (probe->type) {
|
|
|
|
|
case LIGHTPROBE_TYPE_GRID:
|
|
|
|
|
probe->distinf = 0.3f;
|
|
|
|
|
probe->falloff = 1.0f;
|
|
|
|
|
probe->clipsta = 0.01f;
|
|
|
|
|
break;
|
|
|
|
|
case LIGHTPROBE_TYPE_PLANAR:
|
|
|
|
|
probe->distinf = 0.1f;
|
|
|
|
|
probe->falloff = 0.5f;
|
|
|
|
|
probe->clipsta = 0.001f;
|
|
|
|
|
break;
|
|
|
|
|
case LIGHTPROBE_TYPE_CUBE:
|
|
|
|
|
probe->attenuation_type = LIGHTPROBE_SHAPE_ELIPSOID;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2021-07-15 18:23:28 +10:00
|
|
|
BLI_assert_msg(0, "LightProbe type not configured.");
|
2020-01-17 19:14:23 +01:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
void *BKE_lightprobe_add(Main *bmain, const char *name)
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
2017-06-12 20:59:54 +10:00
|
|
|
LightProbe *probe;
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2020-10-08 12:50:04 +02:00
|
|
|
probe = BKE_id_new(bmain, ID_LP, name);
|
2017-06-06 22:47:41 +02:00
|
|
|
|
|
|
|
|
return probe;
|
|
|
|
|
}
|