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

rna_wm_manipulator_api.c « intern « makesrna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c948f84e087490b79fa8888618ae5c19b8db96e9 (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
/*
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * 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.
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file blender/makesrna/intern/rna_wm_manipulator_api.c
 *  \ingroup RNA
 */


#include <stdlib.h>
#include <stdio.h>

#include "BLI_utildefines.h"

#include "BKE_report.h"

#include "RNA_define.h"
#include "RNA_enum_types.h"

#include "DNA_windowmanager_types.h"

#include "WM_api.h"

#include "rna_internal.h"  /* own include */

#ifdef RNA_RUNTIME

#include "UI_interface.h"
#include "BKE_context.h"

#include "ED_manipulator_library.h"

static void rna_manipulator_draw_preset_box(
        wmManipulator *mpr, float matrix[16], int select_id)
{
	ED_manipulator_draw_preset_box(mpr, (float (*)[4])matrix, select_id);
}

static void rna_manipulator_draw_preset_arrow(
        wmManipulator *mpr, float matrix[16], int axis, int select_id)
{
	ED_manipulator_draw_preset_arrow(mpr, (float (*)[4])matrix, axis, select_id);
}

static void rna_manipulator_draw_preset_circle(
        wmManipulator *mpr, float matrix[16], int axis, int select_id)
{
	ED_manipulator_draw_preset_circle(mpr, (float (*)[4])matrix, axis, select_id);
}

static void rna_manipulator_draw_preset_facemap(
        wmManipulator *mpr, struct bContext *C, struct Object *ob, int facemap, int select_id)
{
	struct Scene *scene = CTX_data_scene(C);
	ED_manipulator_draw_preset_facemap(C, mpr, scene, ob, facemap, select_id);
}

/* -------------------------------------------------------------------- */
/** \name Manipulator Property Define
 * \{ */

static void rna_manipulator_target_set_prop(
        wmManipulator *mpr, ReportList *reports, const char *target_propname,
        PointerRNA *ptr, const char *propname, int index)
{
	const wmManipulatorPropertyType *mpr_prop_type =
	        WM_manipulatortype_target_property_find(mpr->type, target_propname);
	if (mpr_prop_type == NULL) {
		BKE_reportf(reports, RPT_ERROR, "Manipulator target property '%s.%s' not found",
		            mpr->type->idname, target_propname);
		return;
	}

	PropertyRNA *prop = RNA_struct_find_property(ptr, propname);
	if (prop == NULL) {
		BKE_reportf(reports, RPT_ERROR, "Property '%s.%s' not found",
		            RNA_struct_identifier(ptr->type), target_propname);
		return;
	}

	if (mpr_prop_type->data_type != RNA_property_type(prop)) {
		const int manipulator_type_index = RNA_enum_from_value(rna_enum_property_type_items, mpr_prop_type->data_type);
		const int prop_type_index = RNA_enum_from_value(rna_enum_property_type_items, RNA_property_type(prop));
		BLI_assert((manipulator_type_index != -1) && (prop_type_index == -1));

		BKE_reportf(reports, RPT_ERROR, "Manipulator target '%s.%s' expects '%s', '%s.%s' is '%s'",
		            mpr->type->idname, target_propname,
		            rna_enum_property_type_items[manipulator_type_index].identifier,
		            RNA_struct_identifier(ptr->type), propname,
		            rna_enum_property_type_items[prop_type_index].identifier);
		return;
	}

	if (RNA_property_array_check(prop)) {
		if (index == -1) {
			const int prop_array_length = RNA_property_array_length(ptr, prop);
			if (mpr_prop_type->array_length != prop_array_length) {
				BKE_reportf(reports, RPT_ERROR,
				            "Manipulator target property '%s.%s' expects an array of length %d, found %d",
				            mpr->type->idname, target_propname,
				            mpr_prop_type->array_length,
				            prop_array_length);
				return;
			}
		}
	}
	else {
		if (mpr_prop_type->array_length != 1) {
			BKE_reportf(reports, RPT_ERROR,
			            "Manipulator target property '%s.%s' expects an array of length %d",
			            mpr->type->idname, target_propname,
			            mpr_prop_type->array_length);
			return;
		}
	}

	if (index >= mpr_prop_type->array_length) {
		BKE_reportf(reports, RPT_ERROR, "Manipulator target property '%s.%s', index %d must be below %d",
		            mpr->type->idname, target_propname, index, mpr_prop_type->array_length);
		return;
	}

	WM_manipulator_target_property_def_rna_ptr(mpr, mpr_prop_type, ptr, prop, index);
}

static PointerRNA rna_manipulator_target_set_operator(
        wmManipulator *mpr, ReportList *reports, const char *opname, int part_index)
{
	wmOperatorType *ot;

	ot = WM_operatortype_find(opname, 0); /* print error next */
	if (!ot || !ot->srna) {
		BKE_reportf(reports, RPT_ERROR, "%s '%s'", ot ? "unknown operator" : "operator missing srna", opname);
		return PointerRNA_NULL;
	}

	/* For the return value to be usable, we need 'PointerRNA.data' to be set. */
	IDProperty *properties;
	{
		IDPropertyTemplate val = {0};
		properties = IDP_New(IDP_GROUP, &val, "wmManipulatorProperties");
	}

	return *WM_manipulator_operator_set(mpr, part_index, ot, properties);
}

/** \} */

/* -------------------------------------------------------------------- */
/** \name Manipulator Property Access
 * \{ */

static int rna_manipulator_target_is_valid(
        wmManipulator *mpr, ReportList *reports, const char *target_propname)
{
	wmManipulatorProperty *mpr_prop =
	        WM_manipulator_target_property_find(mpr, target_propname);
	if (mpr_prop == NULL) {
		BKE_reportf(reports, RPT_ERROR, "Manipulator target property '%s.%s' not found",
		            mpr->type->idname, target_propname);
		return false;
	}
	return WM_manipulator_target_property_is_valid(mpr_prop);
}

/** \} */

#else

void RNA_api_manipulator(StructRNA *srna)
{
	/* Utility draw functions, since we don't expose new OpenGL drawing wrappers via Python yet.
	 * exactly how these should be exposed isn't totally clear.
	 * However it's probably good to have some high level API's for this anyway.
	 * Just note that this could be re-worked once tests are done.
	 */

	FunctionRNA *func;
	PropertyRNA *parm;

	/* -------------------------------------------------------------------- */
	/* Primitive Shapes */

	/* draw_preset_box */
	func = RNA_def_function(srna, "draw_preset_box", "rna_manipulator_draw_preset_box");
	RNA_def_function_ui_description(func, "Draw a box");
	parm = RNA_def_property(func, "matrix", PROP_FLOAT, PROP_MATRIX);
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_property_multi_array(parm, 2, rna_matrix_dimsize_4x4);
	RNA_def_property_ui_text(parm, "", "The matrix to transform");
	RNA_def_int(func, "select_id", -1, -1, INT_MAX, "Zero when not selecting", "", -1, INT_MAX);

	/* draw_preset_box */
	func = RNA_def_function(srna, "draw_preset_arrow", "rna_manipulator_draw_preset_arrow");
	RNA_def_function_ui_description(func, "Draw a box");
	parm = RNA_def_property(func, "matrix", PROP_FLOAT, PROP_MATRIX);
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_property_multi_array(parm, 2, rna_matrix_dimsize_4x4);
	RNA_def_property_ui_text(parm, "", "The matrix to transform");
	RNA_def_enum(func, "axis", rna_enum_object_axis_items, 2, "", "Arrow Orientation");
	RNA_def_int(func, "select_id", -1, -1, INT_MAX, "Zero when not selecting", "", -1, INT_MAX);

	func = RNA_def_function(srna, "draw_preset_circle", "rna_manipulator_draw_preset_circle");
	RNA_def_function_ui_description(func, "Draw a box");
	parm = RNA_def_property(func, "matrix", PROP_FLOAT, PROP_MATRIX);
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_property_multi_array(parm, 2, rna_matrix_dimsize_4x4);
	RNA_def_property_ui_text(parm, "", "The matrix to transform");
	RNA_def_enum(func, "axis", rna_enum_object_axis_items, 2, "", "Arrow Orientation");
	RNA_def_int(func, "select_id", -1, -1, INT_MAX, "Zero when not selecting", "", -1, INT_MAX);

	/* -------------------------------------------------------------------- */
	/* Other Shapes */

	/* draw_preset_facemap */
	func = RNA_def_function(srna, "draw_preset_facemap", "rna_manipulator_draw_preset_facemap");
	RNA_def_function_ui_description(func, "Draw the face-map of a mesh object");
	RNA_def_function_flag(func, FUNC_USE_CONTEXT);
	parm = RNA_def_pointer(func, "object", "Object", "", "Object");
	RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
	RNA_def_int(func, "facemap", 0, 0, INT_MAX, "Face map index", "", 0, INT_MAX);
	RNA_def_int(func, "select_id", -1, -1, INT_MAX, "Zero when not selecting", "", -1, INT_MAX);


	/* -------------------------------------------------------------------- */
	/* Property API */

	/* Define Properties */
	/* note, 'target_set_handler' is defined in 'bpy_rna_manipulator.c' */
	func = RNA_def_function(srna, "target_set_prop", "rna_manipulator_target_set_prop");
	RNA_def_function_flag(func, FUNC_USE_REPORTS);
	RNA_def_function_ui_description(func, "");
	parm = RNA_def_string(func, "target", NULL, 0, "", "Target property");
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	/* similar to UILayout.prop */
	parm = RNA_def_pointer(func, "data", "AnyType", "", "Data from which to take property");
	RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED | PARM_RNAPTR);
	parm = RNA_def_string(func, "property", NULL, 0, "", "Identifier of property in data");
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_int(func, "index", -1, -1, INT_MAX, "", "", -1, INT_MAX); /* RNA_NO_INDEX == -1 */

	func = RNA_def_function(srna, "target_set_operator", "rna_manipulator_target_set_operator");
	RNA_def_function_flag(func, FUNC_USE_REPORTS);
	RNA_def_function_ui_description(
	        func, "Operator to run when activating the manipulator "
	        "(overrides property targets)");
	parm = RNA_def_string(func, "operator", NULL, 0, "", "Target operator");
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_int(func, "index", 0, 0, 255, "Part index", "", 0, 255);

	/* similar to UILayout.operator */
	parm = RNA_def_pointer(func, "properties", "OperatorProperties", "", "Operator properties to fill in");
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED | PARM_RNAPTR);
	RNA_def_function_return(func, parm);

	/* Access Properties */
	/* note, 'target_get', 'target_set' is defined in 'bpy_rna_manipulator.c' */
	func = RNA_def_function(srna, "target_is_valid", "rna_manipulator_target_is_valid");
	RNA_def_function_flag(func, FUNC_USE_REPORTS);
	parm = RNA_def_string(func, "property", NULL, 0, "", "Property identifier");
	RNA_def_parameter_flags(parm, 0, PARM_REQUIRED);
	RNA_def_function_ui_description(func, "");
	parm = RNA_def_boolean(func, "result", 0, "", "");
	RNA_def_function_return(func, parm);

}


void RNA_api_manipulatorgroup(StructRNA *UNUSED(srna))
{
	/* nothing yet */
}

#endif