Use an optional string instead of a manually allocated char pointer. Optional is used because sometimes `nullptr` was returned. It's still inconsistent though, because often "" or ".." was returned instead.
223 lines
6.6 KiB
C++
223 lines
6.6 KiB
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup RNA
|
|
*/
|
|
|
|
#include <cstdlib>
|
|
|
|
#include "RNA_define.hh"
|
|
#include "RNA_enum_types.hh"
|
|
|
|
#include "rna_internal.hh"
|
|
|
|
#include "DNA_pointcloud_types.h"
|
|
|
|
#include "BLI_math_base.h"
|
|
#include "BLI_string.h"
|
|
|
|
#ifdef RNA_RUNTIME
|
|
|
|
# include <fmt/format.h>
|
|
|
|
# include "BLI_math_vector.h"
|
|
|
|
# include "BKE_customdata.hh"
|
|
# include "BKE_pointcloud.hh"
|
|
|
|
# include "DEG_depsgraph.hh"
|
|
|
|
# include "WM_api.hh"
|
|
# include "WM_types.hh"
|
|
|
|
static PointCloud *rna_pointcloud(const PointerRNA *ptr)
|
|
{
|
|
return (PointCloud *)ptr->owner_id;
|
|
}
|
|
|
|
static float (*get_pointcloud_positions(PointCloud *pointcloud))[3]
|
|
{
|
|
return (float(*)[3])CustomData_get_layer_named_for_write(
|
|
&pointcloud->pdata, CD_PROP_FLOAT3, "position", pointcloud->totpoint);
|
|
}
|
|
|
|
static const float (*get_pointcloud_positions_const(const PointCloud *pointcloud))[3]
|
|
{
|
|
return (const float(*)[3])CustomData_get_layer_named(
|
|
&pointcloud->pdata, CD_PROP_FLOAT3, "position");
|
|
}
|
|
|
|
static int rna_Point_index_get_const(const PointerRNA *ptr)
|
|
{
|
|
const PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
const float(*co)[3] = static_cast<const float(*)[3]>(ptr->data);
|
|
const float(*positions)[3] = get_pointcloud_positions_const(pointcloud);
|
|
return int(co - positions);
|
|
}
|
|
|
|
static int rna_Point_index_get(PointerRNA *ptr)
|
|
{
|
|
return rna_Point_index_get_const(ptr);
|
|
}
|
|
|
|
static int rna_PointCloud_points_length(PointerRNA *ptr)
|
|
{
|
|
const PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
return pointcloud->totpoint;
|
|
}
|
|
|
|
static void rna_PointCloud_points_begin(CollectionPropertyIterator *iter, PointerRNA *ptr)
|
|
{
|
|
PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
rna_iterator_array_begin(iter,
|
|
get_pointcloud_positions(pointcloud),
|
|
sizeof(float[3]),
|
|
pointcloud->totpoint,
|
|
false,
|
|
nullptr);
|
|
}
|
|
|
|
int rna_PointCloud_points_lookup_int(PointerRNA *ptr, int index, PointerRNA *r_ptr)
|
|
{
|
|
PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
if (index < 0 || index >= pointcloud->totpoint) {
|
|
return false;
|
|
}
|
|
r_ptr->owner_id = &pointcloud->id;
|
|
r_ptr->type = &RNA_Point;
|
|
r_ptr->data = &get_pointcloud_positions(pointcloud)[index];
|
|
return true;
|
|
}
|
|
|
|
static void rna_Point_location_get(PointerRNA *ptr, float value[3])
|
|
{
|
|
copy_v3_v3(value, (const float *)ptr->data);
|
|
}
|
|
|
|
static void rna_Point_location_set(PointerRNA *ptr, const float value[3])
|
|
{
|
|
copy_v3_v3((float *)ptr->data, value);
|
|
}
|
|
|
|
static float rna_Point_radius_get(PointerRNA *ptr)
|
|
{
|
|
const PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
const float *radii = (const float *)CustomData_get_layer_named(
|
|
&pointcloud->pdata, CD_PROP_FLOAT, "radius");
|
|
if (radii == nullptr) {
|
|
return 0.0f;
|
|
}
|
|
return radii[rna_Point_index_get_const(ptr)];
|
|
}
|
|
|
|
static void rna_Point_radius_set(PointerRNA *ptr, float value)
|
|
{
|
|
PointCloud *pointcloud = rna_pointcloud(ptr);
|
|
float *radii = (float *)CustomData_get_layer_named_for_write(
|
|
&pointcloud->pdata, CD_PROP_FLOAT, "radius", pointcloud->totpoint);
|
|
if (radii == nullptr) {
|
|
return;
|
|
}
|
|
radii[rna_Point_index_get_const(ptr)] = value;
|
|
}
|
|
|
|
static std::optional<std::string> rna_Point_path(const PointerRNA *ptr)
|
|
{
|
|
return fmt::format("points[{}]", rna_Point_index_get_const(ptr));
|
|
}
|
|
|
|
static void rna_PointCloud_update_data(Main * /*bmain*/, Scene * /*scene*/, PointerRNA *ptr)
|
|
{
|
|
ID *id = ptr->owner_id;
|
|
|
|
/* cheating way for importers to avoid slow updates */
|
|
if (id->us > 0) {
|
|
DEG_id_tag_update(id, 0);
|
|
WM_main_add_notifier(NC_GEOM | ND_DATA, id);
|
|
}
|
|
}
|
|
|
|
#else
|
|
|
|
static void rna_def_point(BlenderRNA *brna)
|
|
{
|
|
StructRNA *srna;
|
|
PropertyRNA *prop;
|
|
|
|
srna = RNA_def_struct(brna, "Point", nullptr);
|
|
RNA_def_struct_ui_text(srna, "Point", "Point in a point cloud");
|
|
RNA_def_struct_path_func(srna, "rna_Point_path");
|
|
|
|
prop = RNA_def_property(srna, "co", PROP_FLOAT, PROP_TRANSLATION);
|
|
RNA_def_property_array(prop, 3);
|
|
RNA_def_property_float_funcs(prop, "rna_Point_location_get", "rna_Point_location_set", nullptr);
|
|
RNA_def_property_ui_text(prop, "Location", "");
|
|
RNA_def_property_update(prop, 0, "rna_PointCloud_update_data");
|
|
|
|
prop = RNA_def_property(srna, "radius", PROP_FLOAT, PROP_DISTANCE);
|
|
RNA_def_property_float_funcs(prop, "rna_Point_radius_get", "rna_Point_radius_set", nullptr);
|
|
RNA_def_property_ui_text(prop, "Radius", "");
|
|
RNA_def_property_update(prop, 0, "rna_PointCloud_update_data");
|
|
|
|
prop = RNA_def_property(srna, "index", PROP_INT, PROP_UNSIGNED);
|
|
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
|
|
RNA_def_property_int_funcs(prop, "rna_Point_index_get", nullptr, nullptr);
|
|
RNA_def_property_ui_text(prop, "Index", "Index of this point");
|
|
}
|
|
|
|
static void rna_def_pointcloud(BlenderRNA *brna)
|
|
{
|
|
StructRNA *srna;
|
|
PropertyRNA *prop;
|
|
|
|
srna = RNA_def_struct(brna, "PointCloud", "ID");
|
|
RNA_def_struct_ui_text(srna, "Point Cloud", "Point cloud data-block");
|
|
RNA_def_struct_ui_icon(srna, ICON_POINTCLOUD_DATA);
|
|
|
|
/* geometry */
|
|
prop = RNA_def_property(srna, "points", PROP_COLLECTION, PROP_NONE);
|
|
RNA_def_property_struct_type(prop, "Point");
|
|
RNA_def_property_override_flag(prop, PROPOVERRIDE_IGNORE);
|
|
RNA_def_property_collection_funcs(prop,
|
|
"rna_PointCloud_points_begin",
|
|
"rna_iterator_array_next",
|
|
"rna_iterator_array_end",
|
|
"rna_iterator_array_get",
|
|
"rna_PointCloud_points_length",
|
|
"rna_PointCloud_points_lookup_int",
|
|
nullptr,
|
|
nullptr);
|
|
RNA_def_property_ui_text(prop, "Points", "");
|
|
|
|
/* materials */
|
|
prop = RNA_def_property(srna, "materials", PROP_COLLECTION, PROP_NONE);
|
|
RNA_def_property_collection_sdna(prop, nullptr, "mat", "totcol");
|
|
RNA_def_property_struct_type(prop, "Material");
|
|
RNA_def_property_ui_text(prop, "Materials", "");
|
|
RNA_def_property_srna(prop, "IDMaterials"); /* see rna_ID.cc */
|
|
RNA_def_property_collection_funcs(prop,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
nullptr,
|
|
"rna_IDMaterials_assign_int");
|
|
|
|
rna_def_attributes_common(srna);
|
|
|
|
/* common */
|
|
rna_def_animdata_common(srna);
|
|
}
|
|
|
|
void RNA_def_pointcloud(BlenderRNA *brna)
|
|
{
|
|
rna_def_point(brna);
|
|
rna_def_pointcloud(brna);
|
|
}
|
|
|
|
#endif
|