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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "DNA_object_types.h"
|
2017-06-12 20:59:54 +10:00
|
|
|
#include "DNA_lightprobe_types.h"
|
2017-06-06 22:47:41 +02:00
|
|
|
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
#include "BKE_animsys.h"
|
2018-11-07 15:37:31 +01:00
|
|
|
#include "BKE_library.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
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
void BKE_lightprobe_init(LightProbe *probe)
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
|
|
|
BLI_assert(MEMCMP_STRUCT_OFS_IS_ZERO(probe, id));
|
|
|
|
|
2017-06-13 17:40:10 +02:00
|
|
|
probe->grid_resolution_x = probe->grid_resolution_y = probe->grid_resolution_z = 4;
|
2017-06-15 00:53:11 +02:00
|
|
|
probe->distinf = 2.5f;
|
|
|
|
probe->distpar = 2.5f;
|
2017-06-10 00:36:33 +02:00
|
|
|
probe->falloff = 0.2f;
|
2017-06-15 00:53:11 +02:00
|
|
|
probe->clipsta = 0.8f;
|
2017-06-08 23:10:28 +02:00
|
|
|
probe->clipend = 40.0f;
|
2017-12-02 13:01:40 +01:00
|
|
|
probe->vis_bias = 1.0f;
|
|
|
|
probe->vis_blur = 0.2f;
|
2018-01-21 23:15:57 +01:00
|
|
|
probe->intensity = 1.0f;
|
2017-06-15 00:53:11 +02:00
|
|
|
|
|
|
|
probe->flag = LIGHTPROBE_FLAG_SHOW_INFLUENCE | LIGHTPROBE_FLAG_SHOW_DATA;
|
2017-06-06 22:47:41 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-08-07 20:48:22 +02:00
|
|
|
probe = BKE_libblock_alloc(bmain, ID_LP, name, 0);
|
2017-06-06 22:47:41 +02:00
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
BKE_lightprobe_init(probe);
|
2017-06-06 22:47:41 +02:00
|
|
|
|
|
|
|
return probe;
|
|
|
|
}
|
|
|
|
|
2017-08-07 20:48:22 +02:00
|
|
|
/**
|
|
|
|
* Only copy internal data of LightProbe ID from source to already allocated/initialized destination.
|
2019-02-04 20:39:59 +01:00
|
|
|
* You probably never want to use that directly, use BKE_id_copy or BKE_id_copy_ex for typical needs.
|
2017-08-07 20:48:22 +02:00
|
|
|
*
|
|
|
|
* WARNING! This function will not handle ID user count!
|
|
|
|
*
|
2018-12-12 12:55:20 +11:00
|
|
|
* \param flag: Copying options (see BKE_library.h's LIB_ID_COPY_... flags for more).
|
2017-08-07 20:48:22 +02:00
|
|
|
*/
|
|
|
|
void BKE_lightprobe_copy_data(
|
|
|
|
Main *UNUSED(bmain), LightProbe *UNUSED(probe_dst), const LightProbe *UNUSED(probe_src), const int UNUSED(flag))
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
2017-08-07 20:48:22 +02:00
|
|
|
/* Nothing to do here. */
|
|
|
|
}
|
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)
|
|
|
|
{
|
|
|
|
LightProbe *probe_copy;
|
2019-02-04 20:38:01 +01:00
|
|
|
BKE_id_copy(bmain, &probe->id, (ID **)&probe_copy);
|
2017-08-07 20:48:22 +02:00
|
|
|
return probe_copy;
|
2017-06-06 22:47:41 +02:00
|
|
|
}
|
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
void BKE_lightprobe_make_local(Main *bmain, LightProbe *probe, const bool lib_local)
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
|
|
|
BKE_id_make_local_generic(bmain, &probe->id, true, lib_local);
|
|
|
|
}
|
|
|
|
|
2017-06-12 20:59:54 +10:00
|
|
|
void BKE_lightprobe_free(LightProbe *probe)
|
2017-06-06 22:47:41 +02:00
|
|
|
{
|
|
|
|
BKE_animdata_free((ID *)probe, false);
|
|
|
|
}
|