This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/blenkernel/intern/lightprobe.c

113 lines
3.0 KiB
C
Raw Normal View History

/*
* 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.
*/
/** \file
* \ingroup bke
*/
2019-09-12 04:34:55 +10:00
#include <string.h>
#include "DNA_object_types.h"
#include "DNA_lightprobe_types.h"
2019-09-12 04:34:55 +10:00
#include "DNA_defaults.h"
#include "BLI_utildefines.h"
#include "BKE_animsys.h"
#include "BKE_library.h"
#include "BKE_lightprobe.h"
#include "BKE_main.h"
void BKE_lightprobe_init(LightProbe *probe)
{
BLI_assert(MEMCMP_STRUCT_AFTER_IS_ZERO(probe, id));
2019-09-12 04:34:55 +10:00
MEMCPY_STRUCT_AFTER(probe, DNA_struct_default_get(LightProbe), id);
}
void BKE_lightprobe_type_set(LightProbe *probe, const short lightprobe_type)
{
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;
}
}
void *BKE_lightprobe_add(Main *bmain, const char *name)
{
LightProbe *probe;
probe = BKE_libblock_alloc(bmain, ID_LP, name, 0);
BKE_lightprobe_init(probe);
return probe;
}
2017-08-07 20:48:22 +02:00
/**
2019-06-12 09:04:10 +10:00
* Only copy internal data of #LightProbe ID from source
* to already allocated/initialized destination.
* 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))
{
/* Nothing to do here. */
2017-08-07 20:48:22 +02:00
}
2017-08-07 20:48:22 +02:00
LightProbe *BKE_lightprobe_copy(Main *bmain, const LightProbe *probe)
{
LightProbe *probe_copy;
BKE_id_copy(bmain, &probe->id, (ID **)&probe_copy);
return probe_copy;
}
void BKE_lightprobe_make_local(Main *bmain, LightProbe *probe, const bool lib_local)
{
BKE_id_make_local_generic(bmain, &probe->id, true, lib_local);
}
void BKE_lightprobe_free(LightProbe *probe)
{
BKE_animdata_free((ID *)probe, false);
}