This commit renames enums related the "Curve" object type and ID type to add `_LEGACY` to the end. The idea is to make our aspirations clearer in the code and to avoid ambiguities between `CURVE` and `CURVES`. Ref T95355 To summarize for the record, the plans are: - In the short/medium term, replace the `Curve` object data type with `Curves` - In the longer term (no immediate plans), use a proper data block for 3D text and surfaces. Differential Revision: https://developer.blender.org/D14114
68 lines
1.9 KiB
C
68 lines
1.9 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*/
|
|
|
|
#include "DNA_curve_types.h"
|
|
#include "DNA_object_types.h"
|
|
#include "DNA_vfont_types.h"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BKE_curve.h"
|
|
#include "BKE_displist.h"
|
|
#include "BKE_lib_id.h"
|
|
#include "BKE_modifier.h"
|
|
#include "BKE_vfont.h"
|
|
|
|
#include "DEG_depsgraph.h"
|
|
#include "DEG_depsgraph_query.h"
|
|
|
|
static Curve *curve_from_font_object(Object *object, Depsgraph *depsgraph)
|
|
{
|
|
Curve *curve = (Curve *)object->data;
|
|
Curve *new_curve = (Curve *)BKE_id_copy_ex(NULL, &curve->id, NULL, LIB_ID_COPY_LOCALIZE);
|
|
|
|
Object *evaluated_object = DEG_get_evaluated_object(depsgraph, object);
|
|
BKE_vfont_to_curve_nubase(evaluated_object, FO_EDIT, &new_curve->nurb);
|
|
|
|
new_curve->type = OB_CURVES_LEGACY;
|
|
|
|
new_curve->flag &= ~CU_3D;
|
|
BKE_curve_dimension_update(new_curve);
|
|
|
|
return new_curve;
|
|
}
|
|
|
|
static Curve *curve_from_curve_object(Object *object, Depsgraph *depsgraph, bool apply_modifiers)
|
|
{
|
|
Object *evaluated_object = DEG_get_evaluated_object(depsgraph, object);
|
|
Curve *curve = (Curve *)evaluated_object->data;
|
|
Curve *new_curve = (Curve *)BKE_id_copy_ex(NULL, &curve->id, NULL, LIB_ID_COPY_LOCALIZE);
|
|
|
|
if (apply_modifiers) {
|
|
BKE_curve_calc_modifiers_pre(depsgraph,
|
|
DEG_get_input_scene(depsgraph),
|
|
evaluated_object,
|
|
BKE_curve_nurbs_get(curve),
|
|
&new_curve->nurb,
|
|
DEG_get_mode(depsgraph) == DAG_EVAL_RENDER);
|
|
}
|
|
|
|
return new_curve;
|
|
}
|
|
|
|
Curve *BKE_curve_new_from_object(Object *object, Depsgraph *depsgraph, bool apply_modifiers)
|
|
{
|
|
if (!ELEM(object->type, OB_FONT, OB_CURVES_LEGACY)) {
|
|
return NULL;
|
|
}
|
|
|
|
if (object->type == OB_FONT) {
|
|
return curve_from_font_object(object, depsgraph);
|
|
}
|
|
|
|
return curve_from_curve_object(object, depsgraph, apply_modifiers);
|
|
}
|