2020-07-17 14:23:57 +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.
|
|
|
|
*/
|
|
|
|
|
2020-07-19 13:58:49 +02:00
|
|
|
#include "particle_function.hh"
|
2020-07-17 14:23:57 +02:00
|
|
|
|
|
|
|
namespace blender::sim {
|
|
|
|
|
|
|
|
ParticleFunction::ParticleFunction(const fn::MultiFunction *global_fn,
|
|
|
|
const fn::MultiFunction *per_particle_fn,
|
|
|
|
Span<const ParticleFunctionInput *> global_inputs,
|
|
|
|
Span<const ParticleFunctionInput *> per_particle_inputs,
|
|
|
|
Span<bool> output_is_global)
|
|
|
|
: global_fn_(global_fn),
|
|
|
|
per_particle_fn_(per_particle_fn),
|
|
|
|
global_inputs_(global_inputs),
|
|
|
|
per_particle_inputs_(per_particle_inputs),
|
|
|
|
output_is_global_(output_is_global)
|
|
|
|
{
|
2020-07-20 12:16:20 +02:00
|
|
|
for (int i : output_is_global_.index_range()) {
|
2020-07-17 14:23:57 +02:00
|
|
|
if (output_is_global_[i]) {
|
2020-07-20 12:16:20 +02:00
|
|
|
int param_index = global_inputs_.size() + global_output_indices_.size();
|
2020-07-17 14:23:57 +02:00
|
|
|
fn::MFParamType param_type = global_fn_->param_type(param_index);
|
|
|
|
BLI_assert(param_type.is_output());
|
|
|
|
output_types_.append(param_type.data_type());
|
|
|
|
output_names_.append(global_fn_->param_name(param_index));
|
|
|
|
global_output_indices_.append(i);
|
|
|
|
}
|
|
|
|
else {
|
2020-07-20 12:16:20 +02:00
|
|
|
int param_index = per_particle_inputs_.size() + per_particle_output_indices_.size();
|
2020-07-17 14:23:57 +02:00
|
|
|
fn::MFParamType param_type = per_particle_fn_->param_type(param_index);
|
|
|
|
BLI_assert(param_type.is_output());
|
|
|
|
output_types_.append(param_type.data_type());
|
|
|
|
output_names_.append(per_particle_fn_->param_name(param_index));
|
|
|
|
per_particle_output_indices_.append(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-19 13:58:49 +02:00
|
|
|
ParticleFunctionEvaluator::ParticleFunctionEvaluator(
|
|
|
|
const ParticleFunction &particle_fn, const ParticleChunkContext &particle_chunk_context)
|
2020-07-17 14:23:57 +02:00
|
|
|
: particle_fn_(particle_fn),
|
2020-07-19 13:58:49 +02:00
|
|
|
particle_chunk_context_(particle_chunk_context),
|
|
|
|
mask_(particle_chunk_context_.index_mask()),
|
2020-07-17 14:23:57 +02:00
|
|
|
outputs_(particle_fn_.output_types_.size(), nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ParticleFunctionEvaluator::~ParticleFunctionEvaluator()
|
|
|
|
{
|
2020-07-20 12:16:20 +02:00
|
|
|
for (int output_index : outputs_.index_range()) {
|
2020-07-17 14:23:57 +02:00
|
|
|
void *buffer = outputs_[output_index];
|
|
|
|
fn::MFDataType data_type = particle_fn_.output_types_[output_index];
|
|
|
|
BLI_assert(data_type.is_single()); /* For now. */
|
|
|
|
const fn::CPPType &type = data_type.single_type();
|
|
|
|
|
|
|
|
if (particle_fn_.output_is_global_[output_index]) {
|
|
|
|
type.destruct(buffer);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
type.destruct_indices(outputs_[0], mask_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParticleFunctionEvaluator::compute()
|
|
|
|
{
|
|
|
|
BLI_assert(!is_computed_);
|
|
|
|
this->compute_globals();
|
|
|
|
this->compute_per_particle();
|
|
|
|
is_computed_ = true;
|
|
|
|
}
|
|
|
|
|
2020-07-20 12:16:20 +02:00
|
|
|
fn::GVSpan ParticleFunctionEvaluator::get(int output_index, StringRef expected_name) const
|
2020-07-17 14:23:57 +02:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
StringRef real_name = particle_fn_.output_names_[output_index];
|
|
|
|
BLI_assert(expected_name == real_name);
|
|
|
|
BLI_assert(is_computed_);
|
|
|
|
#endif
|
|
|
|
UNUSED_VARS_NDEBUG(expected_name);
|
|
|
|
const void *buffer = outputs_[output_index];
|
|
|
|
const fn::CPPType &type = particle_fn_.output_types_[output_index].single_type();
|
|
|
|
if (particle_fn_.output_is_global_[output_index]) {
|
|
|
|
return fn::GVSpan::FromSingleWithMaxSize(type, buffer);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
return fn::GVSpan(fn::GSpan(type, buffer, mask_.min_array_size()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParticleFunctionEvaluator::compute_globals()
|
|
|
|
{
|
|
|
|
if (particle_fn_.global_fn_ == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn::MFParamsBuilder params(*particle_fn_.global_fn_, mask_.min_array_size());
|
|
|
|
|
|
|
|
/* Add input parameters. */
|
|
|
|
for (const ParticleFunctionInput *input : particle_fn_.global_inputs_) {
|
2020-07-19 13:58:49 +02:00
|
|
|
input->add_input(particle_chunk_context_.attributes(), params, resources_);
|
2020-07-17 14:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add output parameters. */
|
2020-07-20 12:16:20 +02:00
|
|
|
for (int output_index : particle_fn_.global_output_indices_) {
|
2020-07-17 14:23:57 +02:00
|
|
|
fn::MFDataType data_type = particle_fn_.output_types_[output_index];
|
|
|
|
BLI_assert(data_type.is_single()); /* For now. */
|
|
|
|
|
|
|
|
const fn::CPPType &type = data_type.single_type();
|
|
|
|
void *buffer = resources_.linear_allocator().allocate(type.size(), type.alignment());
|
|
|
|
params.add_uninitialized_single_output(fn::GMutableSpan(type, buffer, 1));
|
|
|
|
outputs_[output_index] = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
particle_fn_.global_fn_->call({0}, params, global_context_);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ParticleFunctionEvaluator::compute_per_particle()
|
|
|
|
{
|
|
|
|
if (particle_fn_.per_particle_fn_ == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn::MFParamsBuilder params(*particle_fn_.per_particle_fn_, mask_.min_array_size());
|
|
|
|
|
|
|
|
/* Add input parameters. */
|
|
|
|
for (const ParticleFunctionInput *input : particle_fn_.per_particle_inputs_) {
|
2020-07-19 13:58:49 +02:00
|
|
|
input->add_input(particle_chunk_context_.attributes(), params, resources_);
|
2020-07-17 14:23:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Add output parameters. */
|
2020-07-20 12:16:20 +02:00
|
|
|
for (int output_index : particle_fn_.per_particle_output_indices_) {
|
2020-07-17 14:23:57 +02:00
|
|
|
fn::MFDataType data_type = particle_fn_.output_types_[output_index];
|
|
|
|
BLI_assert(data_type.is_single()); /* For now. */
|
|
|
|
|
|
|
|
const fn::CPPType &type = data_type.single_type();
|
|
|
|
void *buffer = resources_.linear_allocator().allocate(type.size() * mask_.min_array_size(),
|
|
|
|
type.alignment());
|
|
|
|
params.add_uninitialized_single_output(fn::GMutableSpan(type, buffer, mask_.min_array_size()));
|
|
|
|
outputs_[output_index] = buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
particle_fn_.per_particle_fn_->call(mask_, params, global_context_);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace blender::sim
|