2017-06-06 22:47:41 +02:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
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-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"
|
|
|
|
|
|
|
|
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-04-17 06:17:24 +02: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;
|
|
|
|
|
|
|
|
BKE_LIB_FOREACHID_PROCESS(data, probe->image, IDWALK_CB_USER);
|
|
|
|
BKE_LIB_FOREACHID_PROCESS(data, probe->visibility_grp, IDWALK_CB_NOP);
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
.flags = 0,
|
|
|
|
|
|
|
|
.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,
|
|
|
|
|
|
|
|
.blend_write = NULL,
|
|
|
|
.blend_read_data = NULL,
|
|
|
|
.blend_read_lib = NULL,
|
|
|
|
.blend_read_expand = 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:
|
|
|
|
BLI_assert(!"LightProbe type not configured.");
|
|
|
|
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
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
LightProbe *probe;
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
probe = BKE_libblock_alloc(bmain, ID_LP, name, 0);
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2020-03-06 11:51:17 +01:00
|
|
|
lightprobe_init_data(&probe->id);
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
return probe;
|
2017-06-06 22:47:41 +02:00
|
|
|
}
|
|
|
|
|
2017-08-07 20:48:22 +02:00
|
|
|
LightProbe *BKE_lightprobe_copy(Main *bmain, const LightProbe *probe)
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
LightProbe *probe_copy;
|
|
|
|
BKE_id_copy(bmain, &probe->id, (ID **)&probe_copy);
|
|
|
|
return probe_copy;
|
2017-06-06 22:47:41 +02:00
|
|
|
}
|