2020-05-13 12:39:17 +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) 2005 by the Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup modifiers
|
|
|
|
|
*/
|
|
|
|
|
|
2020-06-08 15:41:41 +02:00
|
|
|
#include <cstring>
|
2020-05-13 12:39:17 +02:00
|
|
|
#include <iostream>
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
|
2020-06-08 15:41:41 +02:00
|
|
|
#include "BLI_float3.hh"
|
|
|
|
|
#include "BLI_listbase.h"
|
2020-07-09 15:40:27 +02:00
|
|
|
#include "BLI_string.h"
|
2020-05-13 12:39:17 +02:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
|
|
#include "DNA_mesh_types.h"
|
|
|
|
|
#include "DNA_meshdata_types.h"
|
|
|
|
|
#include "DNA_modifier_types.h"
|
|
|
|
|
#include "DNA_object_types.h"
|
|
|
|
|
#include "DNA_pointcloud_types.h"
|
|
|
|
|
#include "DNA_scene_types.h"
|
2020-06-05 10:41:03 -04:00
|
|
|
#include "DNA_screen_types.h"
|
2020-05-13 12:39:17 +02:00
|
|
|
#include "DNA_simulation_types.h"
|
|
|
|
|
|
|
|
|
|
#include "BKE_customdata.h"
|
|
|
|
|
#include "BKE_lib_query.h"
|
|
|
|
|
#include "BKE_mesh.h"
|
|
|
|
|
#include "BKE_modifier.h"
|
2020-06-08 15:41:41 +02:00
|
|
|
#include "BKE_pointcloud.h"
|
2020-08-04 14:39:53 +02:00
|
|
|
#include "BKE_screen.h"
|
2020-06-08 15:41:41 +02:00
|
|
|
#include "BKE_simulation.h"
|
2020-05-13 12:39:17 +02:00
|
|
|
|
2020-07-09 15:40:27 +02:00
|
|
|
#include "BLO_read_write.h"
|
|
|
|
|
|
2020-06-05 10:41:03 -04:00
|
|
|
#include "UI_interface.h"
|
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
|
|
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
2020-05-13 12:39:17 +02:00
|
|
|
#include "DEG_depsgraph_build.h"
|
|
|
|
|
#include "DEG_depsgraph_query.h"
|
|
|
|
|
|
|
|
|
|
#include "MOD_modifiertypes.h"
|
2020-06-05 10:41:03 -04:00
|
|
|
#include "MOD_ui_common.h"
|
2020-05-13 12:39:17 +02:00
|
|
|
|
2020-06-09 10:27:24 +02:00
|
|
|
using blender::float3;
|
2020-06-08 15:41:41 +02:00
|
|
|
|
2020-05-13 12:39:17 +02:00
|
|
|
static void updateDepsgraph(ModifierData *md, const ModifierUpdateDepsgraphContext *ctx)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-05-13 12:39:17 +02:00
|
|
|
if (smd->simulation) {
|
|
|
|
|
DEG_add_simulation_relation(ctx->node, smd->simulation, "Accessed Simulation");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void foreachIDLink(ModifierData *md, Object *ob, IDWalkFunc walk, void *userData)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-05-13 12:39:17 +02:00
|
|
|
walk(userData, ob, (ID **)&smd->simulation, IDWALK_CB_USER);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool isDisabled(const struct Scene *UNUSED(scene),
|
|
|
|
|
ModifierData *md,
|
|
|
|
|
bool UNUSED(useRenderParams))
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-05-13 12:39:17 +02:00
|
|
|
return smd->simulation == nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-08 15:41:41 +02:00
|
|
|
static const ParticleSimulationState *find_particle_state(SimulationModifierData *smd)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
return reinterpret_cast<const ParticleSimulationState *>(
|
|
|
|
|
BKE_simulation_state_try_find_by_name_and_type(
|
|
|
|
|
smd->simulation, smd->data_path, SIM_TYPE_NAME_PARTICLE_SIMULATION));
|
2020-06-08 15:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-13 12:39:17 +02:00
|
|
|
static PointCloud *modifyPointCloud(ModifierData *md,
|
|
|
|
|
const ModifierEvalContext *UNUSED(ctx),
|
2020-06-08 15:41:41 +02:00
|
|
|
PointCloud *input_pointcloud)
|
2020-05-13 12:39:17 +02:00
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-06-08 15:41:41 +02:00
|
|
|
const ParticleSimulationState *state = find_particle_state(smd);
|
|
|
|
|
if (state == nullptr) {
|
|
|
|
|
return input_pointcloud;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PointCloud *pointcloud = BKE_pointcloud_new_for_eval(input_pointcloud, state->tot_particles);
|
|
|
|
|
if (state->tot_particles == 0) {
|
|
|
|
|
return pointcloud;
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-07 18:24:59 +02:00
|
|
|
const float3 *positions = static_cast<const float3 *>(
|
|
|
|
|
CustomData_get_layer_named(&state->attributes, CD_PROP_FLOAT3, "Position"));
|
|
|
|
|
const float *radii = static_cast<const float *>(
|
|
|
|
|
CustomData_get_layer_named(&state->attributes, CD_PROP_FLOAT, "Radius"));
|
2020-06-08 15:41:41 +02:00
|
|
|
memcpy(pointcloud->co, positions, sizeof(float3) * state->tot_particles);
|
|
|
|
|
|
2020-09-24 11:56:02 +02:00
|
|
|
CustomData_add_layer_named(
|
|
|
|
|
&pointcloud->pdata, CD_PROP_FLOAT, CD_CALLOC, NULL, state->tot_particles, "Radius");
|
|
|
|
|
BKE_pointcloud_update_customdata_pointers(pointcloud);
|
|
|
|
|
|
2020-06-08 15:41:41 +02:00
|
|
|
for (int i = 0; i < state->tot_particles; i++) {
|
2020-07-29 12:03:21 +02:00
|
|
|
pointcloud->radius[i] = radii[i];
|
2020-06-08 15:41:41 +02:00
|
|
|
}
|
|
|
|
|
|
2020-05-13 12:39:17 +02:00
|
|
|
return pointcloud;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-02 14:13:26 -05:00
|
|
|
static void panel_draw(const bContext *UNUSED(C), Panel *panel)
|
2020-06-05 10:41:03 -04:00
|
|
|
{
|
|
|
|
|
uiLayout *layout = panel->layout;
|
|
|
|
|
|
|
|
|
|
PointerRNA ob_ptr;
|
2020-09-02 14:13:26 -05:00
|
|
|
PointerRNA *ptr = modifier_panel_get_property_pointers(panel, &ob_ptr);
|
2020-06-05 10:41:03 -04:00
|
|
|
|
2020-07-22 09:16:17 -04:00
|
|
|
uiLayoutSetPropSep(layout, true);
|
|
|
|
|
uiLayoutSetPropDecorate(layout, false);
|
|
|
|
|
|
2020-09-02 14:13:26 -05:00
|
|
|
uiItemR(layout, ptr, "simulation", 0, NULL, ICON_NONE);
|
|
|
|
|
uiItemR(layout, ptr, "data_path", 0, NULL, ICON_NONE);
|
2020-06-05 10:41:03 -04:00
|
|
|
|
2020-09-02 14:13:26 -05:00
|
|
|
modifier_panel_end(layout, ptr);
|
2020-06-05 10:41:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void panelRegister(ARegionType *region_type)
|
|
|
|
|
{
|
2020-06-08 11:01:16 +02:00
|
|
|
modifier_panel_register(region_type, eModifierType_Simulation, panel_draw);
|
2020-06-05 10:41:03 -04:00
|
|
|
}
|
|
|
|
|
|
2020-07-09 15:40:27 +02:00
|
|
|
static void blendWrite(BlendWriter *writer, const ModifierData *md)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
const SimulationModifierData *smd = reinterpret_cast<const SimulationModifierData *>(md);
|
2020-07-09 15:40:27 +02:00
|
|
|
BLO_write_string(writer, smd->data_path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void blendRead(BlendDataReader *reader, ModifierData *md)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-07-09 15:40:27 +02:00
|
|
|
BLO_read_data_address(reader, &smd->data_path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void copyData(const ModifierData *md, ModifierData *target, const int flag)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
const SimulationModifierData *smd = reinterpret_cast<const SimulationModifierData *>(md);
|
|
|
|
|
SimulationModifierData *tsmd = reinterpret_cast<SimulationModifierData *>(target);
|
2020-07-09 15:40:27 +02:00
|
|
|
|
|
|
|
|
BKE_modifier_copydata_generic(md, target, flag);
|
|
|
|
|
if (smd->data_path != nullptr) {
|
|
|
|
|
tsmd->data_path = BLI_strdup(smd->data_path);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void freeData(ModifierData *md)
|
|
|
|
|
{
|
2020-08-07 18:24:59 +02:00
|
|
|
SimulationModifierData *smd = reinterpret_cast<SimulationModifierData *>(md);
|
2020-07-09 15:40:27 +02:00
|
|
|
if (smd->data_path) {
|
|
|
|
|
MEM_freeN(smd->data_path);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-13 12:39:17 +02:00
|
|
|
ModifierTypeInfo modifierType_Simulation = {
|
|
|
|
|
/* name */ "Simulation",
|
|
|
|
|
/* structName */ "SimulationModifierData",
|
|
|
|
|
/* structSize */ sizeof(SimulationModifierData),
|
|
|
|
|
/* type */ eModifierTypeType_None,
|
|
|
|
|
/* flags */ (ModifierTypeFlag)0,
|
2020-09-25 12:45:30 +02:00
|
|
|
/* icon */ ICON_PHYSICS, /* TODO: Use correct icon. */
|
2020-05-13 12:39:17 +02:00
|
|
|
|
2020-07-09 15:40:27 +02:00
|
|
|
/* copyData */ copyData,
|
2020-05-13 12:39:17 +02:00
|
|
|
|
|
|
|
|
/* deformVerts */ NULL,
|
|
|
|
|
/* deformMatrices */ NULL,
|
|
|
|
|
/* deformVertsEM */ NULL,
|
|
|
|
|
/* deformMatricesEM */ NULL,
|
|
|
|
|
/* modifyMesh */ NULL,
|
|
|
|
|
/* modifyHair */ NULL,
|
|
|
|
|
/* modifyPointCloud */ modifyPointCloud,
|
|
|
|
|
/* modifyVolume */ NULL,
|
|
|
|
|
|
|
|
|
|
/* initData */ NULL,
|
|
|
|
|
/* requiredDataMask */ NULL,
|
2020-07-09 15:40:27 +02:00
|
|
|
/* freeData */ freeData,
|
2020-05-13 12:39:17 +02:00
|
|
|
/* isDisabled */ isDisabled,
|
|
|
|
|
/* updateDepsgraph */ updateDepsgraph,
|
|
|
|
|
/* dependsOnTime */ NULL,
|
|
|
|
|
/* dependsOnNormals */ NULL,
|
|
|
|
|
/* foreachObjectLink */ NULL,
|
|
|
|
|
/* foreachIDLink */ foreachIDLink,
|
|
|
|
|
/* foreachTexLink */ NULL,
|
|
|
|
|
/* freeRuntimeData */ NULL,
|
2020-06-05 10:41:03 -04:00
|
|
|
/* panelRegister */ panelRegister,
|
2020-07-09 15:40:27 +02:00
|
|
|
/* blendWrite */ blendWrite,
|
|
|
|
|
/* blendRead */ blendRead,
|
2020-05-13 12:39:17 +02:00
|
|
|
};
|