Welcome to mirror list, hosted at ThFree Co, Russian Federation.

node_geo_curve_primitive_star.cc « nodes « geometry « nodes « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9004681c24602896dec407dfb974a02037c12fe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
 * 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.
 */

#include "BKE_spline.hh"

#include "node_geometry_util.hh"

namespace blender::nodes {

static void geo_node_curve_primitive_star_declare(NodeDeclarationBuilder &b)
{
  b.add_input<decl::Int>(N_("Points"))
      .default_value(8)
      .min(3)
      .max(256)
      .subtype(PROP_UNSIGNED)
      .description(N_("Number of points on each of the circles"));
  b.add_input<decl::Float>(N_("Inner Radius"))
      .default_value(1.0f)
      .min(0.0f)
      .subtype(PROP_DISTANCE)
      .description(N_("Radius of the inner circle; can be larger than outer radius"));
  b.add_input<decl::Float>(N_("Outer Radius"))
      .default_value(2.0f)
      .min(0.0f)
      .subtype(PROP_DISTANCE)
      .description(N_("Radius of the outer circle; can be smaller than inner radius"));
  b.add_input<decl::Float>(N_("Twist"))
      .subtype(PROP_ANGLE)
      .description(N_("The counterclockwise rotation of the inner set of points"));
  b.add_output<decl::Geometry>(N_("Curve"));
  b.add_output<decl::Bool>(N_("Outer Points"))
      .field_source()
      .description(N_("An attribute field with a selection of the outer points"));
}

static std::unique_ptr<CurveEval> create_star_curve(const float inner_radius,
                                                    const float outer_radius,
                                                    const float twist,
                                                    const int points)
{
  std::unique_ptr<CurveEval> curve = std::make_unique<CurveEval>();
  std::unique_ptr<PolySpline> spline = std::make_unique<PolySpline>();

  const float theta_step = (2.0f * M_PI) / float(points);
  for (int i : IndexRange(points)) {
    const float x = outer_radius * cos(theta_step * i);
    const float y = outer_radius * sin(theta_step * i);
    spline->add_point(float3(x, y, 0.0f), 1.0f, 0.0f);

    const float inner_x = inner_radius * cos(theta_step * i + theta_step * 0.5f + twist);
    const float inner_y = inner_radius * sin(theta_step * i + theta_step * 0.5f + twist);
    spline->add_point(float3(inner_x, inner_y, 0.0f), 1.0f, 0.0f);
  }
  spline->set_cyclic(true);
  spline->attributes.reallocate(spline->size());
  curve->add_spline(std::move(spline));
  curve->attributes.reallocate(curve->splines().size());

  return curve;
}

static void create_selection_output(CurveComponent &component,
                                    StrongAnonymousAttributeID &r_attribute)
{
  OutputAttribute_Typed<bool> attribute = component.attribute_try_get_for_output_only<bool>(
      r_attribute.get(), ATTR_DOMAIN_POINT);
  MutableSpan<bool> selection = attribute.as_span();
  for (int i : selection.index_range()) {
    selection[i] = i % 2 == 0;
  }
  attribute.save();
}

static void geo_node_curve_primitive_star_exec(GeoNodeExecParams params)
{
  std::unique_ptr<CurveEval> curve = create_star_curve(
      std::max(params.extract_input<float>("Inner Radius"), 0.0f),
      std::max(params.extract_input<float>("Outer Radius"), 0.0f),
      params.extract_input<float>("Twist"),
      std::max(params.extract_input<int>("Points"), 3));
  GeometrySet output = GeometrySet::create_with_curve(curve.release());

  if (params.output_is_required("Outer Points")) {
    StrongAnonymousAttributeID attribute_output("Outer Points");
    create_selection_output(output.get_component_for_write<CurveComponent>(), attribute_output);
    params.set_output("Outer Points",
                      AnonymousAttributeFieldInput::Create<bool>(
                          std::move(attribute_output), params.attribute_producer_name()));
  }
  params.set_output("Curve", std::move(output));
}
}  // namespace blender::nodes

void register_node_type_geo_curve_primitive_star()
{
  static bNodeType ntype;
  geo_node_type_base(&ntype, GEO_NODE_CURVE_PRIMITIVE_STAR, "Star", NODE_CLASS_GEOMETRY, 0);
  ntype.declare = blender::nodes::geo_node_curve_primitive_star_declare;
  ntype.geometry_node_execute = blender::nodes::geo_node_curve_primitive_star_exec;
  nodeRegisterType(&ntype);
}