Files
test/source/blender/makesrna/intern/rna_mesh_api.cc
2024-03-02 23:57:15 +01:00

363 lines
13 KiB
C++

/* SPDX-FileCopyrightText: 2009 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup RNA
*/
#include <cstdio>
#include <cstdlib>
#include "RNA_define.hh"
#include "DNA_customdata_types.h"
#include "BLI_math_base.h"
#include "BLI_sys_types.h"
#include "BLI_utildefines.h"
#include "rna_internal.hh" /* own include */
#ifdef RNA_RUNTIME
# include "DNA_mesh_types.h"
# include "BKE_anim_data.hh"
# include "BKE_attribute.hh"
# include "BKE_mesh.h"
# include "BKE_mesh.hh"
# include "BKE_mesh_compare.hh"
# include "BKE_mesh_mapping.hh"
# include "BKE_mesh_runtime.hh"
# include "BKE_mesh_tangent.hh"
# include "BKE_report.hh"
# include "ED_mesh.hh"
# include "DEG_depsgraph.hh"
# include "WM_api.hh"
static const char *rna_Mesh_unit_test_compare(Mesh *mesh, Mesh *mesh2, float threshold)
{
using namespace blender::bke::compare_meshes;
const std::optional<MeshMismatch> mismatch = compare_meshes(*mesh, *mesh2, threshold);
if (!mismatch) {
return "Same";
}
return mismatch_to_string(mismatch.value());
}
static void rna_Mesh_sharp_from_angle_set(Mesh *mesh, const float angle)
{
mesh->attributes_for_write().remove("sharp_edge");
mesh->attributes_for_write().remove("sharp_face");
blender::bke::mesh_sharp_edges_set_from_angle(*mesh, angle);
DEG_id_tag_update(&mesh->id, ID_RECALC_GEOMETRY);
}
static void rna_Mesh_calc_tangents(Mesh *mesh, ReportList *reports, const char *uvmap)
{
float(*r_looptangents)[4];
if (CustomData_has_layer(&mesh->corner_data, CD_MLOOPTANGENT)) {
r_looptangents = static_cast<float(*)[4]>(
CustomData_get_layer_for_write(&mesh->corner_data, CD_MLOOPTANGENT, mesh->corners_num));
memset(r_looptangents, 0, sizeof(float[4]) * mesh->corners_num);
}
else {
r_looptangents = static_cast<float(*)[4]>(CustomData_add_layer(
&mesh->corner_data, CD_MLOOPTANGENT, CD_SET_DEFAULT, mesh->corners_num));
CustomData_set_layer_flag(&mesh->corner_data, CD_MLOOPTANGENT, CD_FLAG_TEMPORARY);
}
BKE_mesh_calc_loop_tangent_single(mesh, uvmap, r_looptangents, reports);
}
static void rna_Mesh_free_tangents(Mesh *mesh)
{
CustomData_free_layers(&mesh->corner_data, CD_MLOOPTANGENT, mesh->corners_num);
}
static void rna_Mesh_calc_corner_tri(Mesh *mesh)
{
mesh->corner_tris();
}
static void rna_Mesh_calc_smooth_groups(
Mesh *mesh, bool use_bitflags, int **r_poly_group, int *r_poly_group_num, int *r_group_total)
{
using namespace blender;
*r_poly_group_num = mesh->faces_num;
const bke::AttributeAccessor attributes = mesh->attributes();
const VArraySpan sharp_edges = *attributes.lookup<bool>("sharp_edge", bke::AttrDomain::Edge);
const VArraySpan sharp_faces = *attributes.lookup<bool>("sharp_face", bke::AttrDomain::Face);
*r_poly_group = BKE_mesh_calc_smoothgroups(mesh->edges_num,
mesh->faces(),
mesh->corner_edges(),
sharp_edges,
sharp_faces,
r_group_total,
use_bitflags);
}
static void rna_Mesh_normals_split_custom_set(Mesh *mesh,
ReportList *reports,
const float *normals,
int normals_num)
{
float(*corner_normals)[3] = (float(*)[3])normals;
const int numloops = mesh->corners_num;
if (normals_num != numloops * 3) {
BKE_reportf(reports,
RPT_ERROR,
"Number of custom normals is not number of loops (%f / %d)",
float(normals_num) / 3.0f,
numloops);
return;
}
BKE_mesh_set_custom_normals(mesh, corner_normals);
DEG_id_tag_update(&mesh->id, 0);
}
static void rna_Mesh_normals_split_custom_set_from_vertices(Mesh *mesh,
ReportList *reports,
const float *normals,
int normals_num)
{
float(*vert_normals)[3] = (float(*)[3])normals;
const int numverts = mesh->verts_num;
if (normals_num != numverts * 3) {
BKE_reportf(reports,
RPT_ERROR,
"Number of custom normals is not number of vertices (%f / %d)",
float(normals_num) / 3.0f,
numverts);
return;
}
BKE_mesh_set_custom_normals_from_verts(mesh, vert_normals);
DEG_id_tag_update(&mesh->id, 0);
}
static void rna_Mesh_transform(Mesh *mesh, const float mat[16], bool shape_keys)
{
BKE_mesh_transform(mesh, (const float(*)[4])mat, shape_keys);
DEG_id_tag_update(&mesh->id, 0);
}
static void rna_Mesh_flip_normals(Mesh *mesh)
{
using namespace blender;
bke::mesh_flip_faces(*mesh, IndexMask(mesh->faces_num));
BKE_mesh_tessface_clear(mesh);
BKE_mesh_runtime_clear_geometry(mesh);
DEG_id_tag_update(&mesh->id, 0);
}
static void rna_Mesh_update(Mesh *mesh,
bContext *C,
const bool calc_edges,
const bool calc_edges_loose)
{
if (calc_edges || ((mesh->faces_num || mesh->totface_legacy) && mesh->edges_num == 0)) {
blender::bke::mesh_calc_edges(*mesh, calc_edges, true);
}
if (calc_edges_loose) {
mesh->runtime->loose_edges_cache.tag_dirty();
}
/* Default state is not to have tessface's so make sure this is the case. */
BKE_mesh_tessface_clear(mesh);
mesh->runtime->vert_normals_cache.tag_dirty();
mesh->runtime->face_normals_cache.tag_dirty();
mesh->runtime->corner_normals_cache.tag_dirty();
DEG_id_tag_update(&mesh->id, 0);
WM_event_add_notifier(C, NC_GEOM | ND_DATA, mesh);
}
static void rna_Mesh_update_gpu_tag(Mesh *mesh)
{
BKE_mesh_batch_cache_dirty_tag(mesh, BKE_MESH_BATCH_DIRTY_ALL);
}
static void rna_Mesh_count_selected_items(Mesh *mesh, int r_count[3])
{
BKE_mesh_count_selected_items(mesh, r_count);
}
static void rna_Mesh_clear_geometry(Mesh *mesh)
{
BKE_mesh_clear_geometry_and_metadata(mesh);
BKE_animdata_free(&mesh->id, false);
blender::bke::mesh_ensure_required_data_layers(*mesh);
DEG_id_tag_update(&mesh->id, ID_RECALC_GEOMETRY_ALL_MODES);
WM_main_add_notifier(NC_GEOM | ND_DATA, mesh);
}
#else
void RNA_api_mesh(StructRNA *srna)
{
FunctionRNA *func;
PropertyRNA *parm;
const int normals_array_dim[] = {1, 3};
func = RNA_def_function(srna, "transform", "rna_Mesh_transform");
RNA_def_function_ui_description(func,
"Transform mesh vertices by a matrix "
"(Warning: inverts normals if matrix is negative)");
parm = RNA_def_float_matrix(func, "matrix", 4, 4, nullptr, 0.0f, 0.0f, "", "Matrix", 0.0f, 0.0f);
RNA_def_parameter_flags(parm, PropertyFlag(0), PARM_REQUIRED);
RNA_def_boolean(func, "shape_keys", false, "", "Transform Shape Keys");
func = RNA_def_function(srna, "flip_normals", "rna_Mesh_flip_normals");
RNA_def_function_ui_description(func,
"Invert winding of all polygons "
"(clears tessellation, does not handle custom normals)");
func = RNA_def_function(srna, "set_sharp_from_angle", "rna_Mesh_sharp_from_angle_set");
RNA_def_function_ui_description(func,
"Reset and fill the \"sharp_edge\" attribute based on the angle "
"of faces neighboring manifold edges");
RNA_def_float(func,
"angle",
M_PI,
0.0f,
M_PI,
"Angle",
"Angle between faces beyond which edges are marked sharp",
0.0f,
M_PI);
func = RNA_def_function(srna, "split_faces", "ED_mesh_split_faces");
RNA_def_function_ui_description(func, "Split faces based on the edge angle");
func = RNA_def_function(srna, "calc_tangents", "rna_Mesh_calc_tangents");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
RNA_def_function_ui_description(
func,
"Compute tangents and bitangent signs, to be used together with the split normals "
"to get a complete tangent space for normal mapping "
"(split normals are also computed if not yet present)");
RNA_def_string(func,
"uvmap",
nullptr,
MAX_CUSTOMDATA_LAYER_NAME_NO_PREFIX,
"",
"Name of the UV map to use for tangent space computation");
func = RNA_def_function(srna, "free_tangents", "rna_Mesh_free_tangents");
RNA_def_function_ui_description(func, "Free tangents");
func = RNA_def_function(srna, "calc_loop_triangles", "rna_Mesh_calc_corner_tri");
RNA_def_function_ui_description(func,
"Calculate loop triangle tessellation (supports editmode too)");
func = RNA_def_function(srna, "calc_smooth_groups", "rna_Mesh_calc_smooth_groups");
RNA_def_function_ui_description(func, "Calculate smooth groups from sharp edges");
RNA_def_boolean(
func, "use_bitflags", false, "", "Produce bitflags groups instead of simple numeric values");
/* return values */
parm = RNA_def_int_array(func, "poly_groups", 1, nullptr, 0, 0, "", "Smooth Groups", 0, 0);
RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_OUTPUT);
parm = RNA_def_int(
func, "groups", 0, 0, INT_MAX, "groups", "Total number of groups", 0, INT_MAX);
RNA_def_parameter_flags(parm, PropertyFlag(0), PARM_OUTPUT);
func = RNA_def_function(srna, "normals_split_custom_set", "rna_Mesh_normals_split_custom_set");
RNA_def_function_ui_description(func,
"Define custom split normals of this mesh "
"(use zero-vectors to keep auto ones)");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
/* TODO: see how array size of 0 works, this shouldn't be used. */
parm = RNA_def_float_array(func, "normals", 1, nullptr, -1.0f, 1.0f, "", "Normals", 0.0f, 0.0f);
RNA_def_property_multi_array(parm, 2, normals_array_dim);
RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
func = RNA_def_function(srna,
"normals_split_custom_set_from_vertices",
"rna_Mesh_normals_split_custom_set_from_vertices");
RNA_def_function_ui_description(
func,
"Define custom split normals of this mesh, from vertices' normals "
"(use zero-vectors to keep auto ones)");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
/* TODO: see how array size of 0 works, this shouldn't be used. */
parm = RNA_def_float_array(func, "normals", 1, nullptr, -1.0f, 1.0f, "", "Normals", 0.0f, 0.0f);
RNA_def_property_multi_array(parm, 2, normals_array_dim);
RNA_def_parameter_flags(parm, PROP_DYNAMIC, PARM_REQUIRED);
func = RNA_def_function(srna, "update", "rna_Mesh_update");
RNA_def_boolean(func, "calc_edges", false, "Calculate Edges", "Force recalculation of edges");
RNA_def_boolean(func,
"calc_edges_loose",
false,
"Calculate Loose Edges",
"Calculate the loose state of each edge");
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
RNA_def_function(srna, "update_gpu_tag", "rna_Mesh_update_gpu_tag");
func = RNA_def_function(srna, "unit_test_compare", "rna_Mesh_unit_test_compare");
RNA_def_pointer(func, "mesh", "Mesh", "", "Mesh to compare to");
RNA_def_float_factor(func,
"threshold",
FLT_EPSILON * 60,
0.0f,
FLT_MAX,
"Threshold",
"Comparison tolerance threshold",
0.0f,
FLT_MAX);
/* return value */
parm = RNA_def_string(
func, "result", "nothing", 64, "Return value", "String description of result of comparison");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "clear_geometry", "rna_Mesh_clear_geometry");
RNA_def_function_ui_description(
func,
"Remove all geometry from the mesh. Note that this does not free shape keys or materials");
func = RNA_def_function(srna, "validate", "BKE_mesh_validate");
RNA_def_function_ui_description(func,
"Validate geometry, return True when the mesh has had "
"invalid geometry corrected/removed");
RNA_def_boolean(func, "verbose", false, "Verbose", "Output information about the errors found");
RNA_def_boolean(func,
"clean_customdata",
true,
"Clean Custom Data",
"Remove temp/cached custom-data layers, like e.g. normals...");
parm = RNA_def_boolean(func, "result", false, "Result", "");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "validate_material_indices", "BKE_mesh_validate_material_indices");
RNA_def_function_ui_description(
func,
"Validate material indices of polygons, return True when the mesh has had "
"invalid indices corrected (to default 0)");
parm = RNA_def_boolean(func, "result", false, "Result", "");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "count_selected_items", "rna_Mesh_count_selected_items ");
RNA_def_function_ui_description(func, "Return the number of selected items (vert, edge, face)");
parm = RNA_def_int_vector(func, "result", 3, nullptr, 0, INT_MAX, "Result", nullptr, 0, INT_MAX);
RNA_def_function_output(func, parm);
}
#endif