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

WM_gizmo_types.h « gizmo « windowmanager « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2339523db5e10e3822df09e0886c698bd30d7304 (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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
 * ***** 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.
 *
 * The Original Code is Copyright (C) 2016 Blender Foundation.
 * All rights reserved.
 *
 * Contributor(s): none yet.
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file blender/windowmanager/gizmo/WM_gizmo_types.h
 *  \ingroup wm
 *
 * \name Gizmo Types
 * \brief Gizmo defines for external use.
 *
 * Only included in WM_types.h and lower level files.
 */


#ifndef __WM_GIZMO_TYPES_H__
#define __WM_GIZMO_TYPES_H__

#include "BLI_compiler_attrs.h"

struct wmGizmoMapType;
struct wmGizmoGroupType;
struct wmGizmoGroup;
struct wmGizmo;
struct wmGizmoProperty;
struct wmKeyConfig;

#include "DNA_listBase.h"


/* -------------------------------------------------------------------- */
/* Enum Typedef's */


/**
 * #wmGizmo.state
 */
typedef enum eWM_GizmoFlagState {
	WM_GIZMO_STATE_HIGHLIGHT   = (1 << 0), /* while hovered */
	WM_GIZMO_STATE_MODAL       = (1 << 1), /* while dragging */
	WM_GIZMO_STATE_SELECT      = (1 << 2),
} eWM_GizmoFlagState;


/**
 * #wmGizmo.flag
 * Flags for individual gizmos.
 */
typedef enum eWM_GizmoFlagFlag {
	WM_GIZMO_DRAW_HOVER  = (1 << 0), /* draw *only* while hovering */
	WM_GIZMO_DRAW_MODAL  = (1 << 1), /* draw while dragging */
	WM_GIZMO_DRAW_VALUE  = (1 << 2), /* draw an indicator for the current value while dragging */
	WM_GIZMO_HIDDEN      = (1 << 3),
	/**
	 * When set 'scale_final' value also scales the offset.
	 * Use when offset is to avoid screen-space overlap instead of absolute positioning. */
	WM_GIZMO_DRAW_OFFSET_SCALE  = (1 << 4),
	/**
	 * User should still use 'scale_final' for any handles and UI elements.
	 * This simply skips scale when calculating the final matrix.
	 * Needed when the gizmo needs to align with the interface underneath it. */
	WM_GIZMO_DRAW_NO_SCALE  = (1 << 5),
	/**
	 * Hide the cursor and lock it's position while interacting with this gizmo.
	 */
	WM_GIZMO_GRAB_CURSOR = (1 << 6),
	/** Don't write into the depth buffer when selecting. */
	WM_GIZMO_SELECT_BACKGROUND  = (1 << 7),
} eWM_GizmoFlagFlag;

/**
 * #wmGizmoGroupType.flag
 * Flags that influence the behavior of all gizmos in the group.
 */
typedef enum eWM_GizmoFlagGroupTypeFlag {
	/* Mark gizmo-group as being 3D */
	WM_GIZMOGROUPTYPE_3D       = (1 << 0),
	/* Scale gizmos as 3D object that respects zoom (otherwise zoom independent draw size).
	 * note: currently only for 3D views, 2D support needs adding. */
	WM_GIZMOGROUPTYPE_SCALE    = (1 << 1),
	/* Gizmos can be depth culled with scene objects (covered by other geometry - TODO) */
	WM_GIZMOGROUPTYPE_DEPTH_3D = (1 << 2),
	/* Gizmos can be selected */
	WM_GIZMOGROUPTYPE_SELECT  = (1 << 3),
	/* The gizmo group is to be kept (not removed on loading a new file for eg). */
	WM_GIZMOGROUPTYPE_PERSISTENT = (1 << 4),
	/* Show all other gizmos when interacting. */
	WM_GIZMOGROUPTYPE_DRAW_MODAL_ALL = (1 << 5),
} eWM_GizmoFlagGroupTypeFlag;


/**
 * #wmGizmoGroup.init_flag
 */
typedef enum eWM_GizmoFlagGroupInitFlag {
	/* mgroup has been initialized */
	WM_GIZMOGROUP_INIT_SETUP = (1 << 0),
	WM_GIZMOGROUP_INIT_REFRESH = (1 << 1),
} eWM_GizmoFlagGroupInitFlag;

/**
 * #wmGizmoMapType.type_update_flag
 * Gizmo-map type update flag
 */
typedef enum eWM_GizmoFlagMapTypeUpdateFlag {
	/* A new type has been added, needs to be initialized for all views. */
	WM_GIZMOMAPTYPE_UPDATE_INIT = (1 << 0),
	WM_GIZMOMAPTYPE_UPDATE_REMOVE = (1 << 1),

	/* Needed because keymap may be registered before and after window initialization.
	 * So we need to keep track of keymap initialization separately. */
	WM_GIZMOMAPTYPE_KEYMAP_INIT = (1 << 2),
} eWM_GizmoFlagMapTypeUpdateFlag;

/* -------------------------------------------------------------------- */
/* wmGizmo */

/**
 * \brief Gizmo tweak flag.
 * Bitflag passed to gizmo while tweaking.
 *
 * \note Gizmos are responsible for handling this #wmGizmo.modal callback!.
 */
typedef enum {
	/* Drag with extra precision (Shift). */
	WM_GIZMO_TWEAK_PRECISE = (1 << 0),
	/* Drag with snap enabled (Ctrl).  */
	WM_GIZMO_TWEAK_SNAP = (1 << 1),
} eWM_GizmoFlagTweak;

#include "wm_gizmo_fn.h"

typedef struct wmGizmoOpElem {
	struct wmOperatorType *type;
	/* operator properties if gizmo spawns and controls an operator,
	 * or owner pointer if gizmo spawns and controls a property */
	PointerRNA ptr;

	bool is_redo;
} wmGizmoOpElem;

/* gizmos are set per region by registering them on gizmo-maps */
struct wmGizmo {
	struct wmGizmo *next, *prev;

	/* While we don't have a real type, use this to put type-like vars. */
	const struct wmGizmoType *type;

	/* Overrides 'type->modal' when set.
	 * Note that this is a workaround, remove if we can. */
	wmGizmoFnModal custom_modal;

	/* pointer back to group this gizmo is in (just for quick access) */
	struct wmGizmoGroup *parent_gzgroup;

	void *py_instance;

	/* rna pointer to access properties */
	struct PointerRNA *ptr;

	/* flags that influence the behavior or how the gizmos are drawn */
	eWM_GizmoFlagFlag flag;
	/* state flags (active, highlighted, selected) */
	eWM_GizmoFlagState state;

	/* Optional ID for highlighting different parts of this gizmo.
	 * -1 when unset, otherwise a valid index. (Used as index to 'op_data'). */
	int highlight_part;
	/* For single click button gizmos, use a different part as a fallback, -1 when unused. */
	int drag_part;

	/* Transformation of the gizmo in 2d or 3d space.
	 * - Matrix axis are expected to be unit length (scale is applied after).
	 * - Behavior when axis aren't orthogonal depends on each gizmo.
	 * - Typically the +Z is the primary axis for gizmos to use.
	 * - 'matrix[3]' must be used for location,
	 *   besides this it's up to the gizmos internal code how the
	 *   rotation components are used for drawing and interaction.
	 */

	/* The space this gizmo is being modified in. */
	float matrix_space[4][4];
	/* Transformation of this gizmo. */
	float matrix_basis[4][4];
	/* custom offset from origin */
	float matrix_offset[4][4];
	/* runtime property, set the scale while drawing on the viewport */
	float scale_final;
	/* user defined scale, in addition to the original one */
	float scale_basis;
	/* user defined width for line drawing */
	float line_width;
	/* gizmo colors (uses default fallbacks if not defined) */
	float color[4], color_hi[4];

	/* data used during interaction */
	void *interaction_data;

	/* Operator to spawn when activating the gizmo (overrides property editing),
	 * an array of items (aligned with #wmGizmo.highlight_part). */
	wmGizmoOpElem *op_data;
	int op_data_len;

	struct IDProperty *properties;

	/* over alloc target_properties after 'wmGizmoType.struct_size' */
};

/* Similar to PropertyElemRNA, but has an identifier. */
typedef struct wmGizmoProperty {
	const struct wmGizmoPropertyType *type;

	PointerRNA ptr;
	PropertyRNA *prop;
	int index;


	/* Optional functions for converting to/from RNA  */
	struct {
		wmGizmoPropertyFnGet value_get_fn;
		wmGizmoPropertyFnSet value_set_fn;
		wmGizmoPropertyFnRangeGet range_get_fn;
		wmGizmoPropertyFnFree free_fn;
		void *user_data;
	} custom_func;
} wmGizmoProperty;

typedef struct wmGizmoPropertyType {
	struct wmGizmoPropertyType *next, *prev;
	/* PropertyType, typically 'PROP_FLOAT' */
	int data_type;
	int array_length;

	/* index within 'wmGizmoType' */
	int index_in_type;

	/* over alloc */
	char idname[0];
} wmGizmoPropertyType;


/**
 * Simple utility wrapper for storing a single gizmo as wmGizmoGroup.customdata (which gets freed).
 */
typedef struct wmGizmoWrapper {
	struct wmGizmo *gizmo;
} wmGizmoWrapper;

struct wmGizmoMapType_Params {
	short spaceid;
	short regionid;
};

typedef struct wmGizmoType {

	const char *idname; /* MAX_NAME */

	/* Set to 'sizeof(wmGizmo)' or larger for instances of this type,
	 * use so we can cant to other types without the hassle of a custom-data pointer. */
	uint struct_size;

	/* Initialize struct (calloc'd 'struct_size' region). */
	wmGizmoFnSetup setup;

	/* draw gizmo */
	wmGizmoFnDraw draw;

	/* determines 3d intersection by rendering the gizmo in a selection routine. */
	wmGizmoFnDrawSelect draw_select;

	/* Determine if the mouse intersects with the gizmo.
	 * The calculation should be done in the callback itself, -1 for no seleciton. */
	wmGizmoFnTestSelect test_select;

	/* handler used by the gizmo. Usually handles interaction tied to a gizmo type */
	wmGizmoFnModal modal;

	/* gizmo-specific handler to update gizmo attributes based on the property value */
	wmGizmoFnPropertyUpdate property_update;

	/* Returns the final transformation which may be different from the 'matrix',
	 * depending on the gizmo.
	 * Notes:
	 * - Scale isn't applied (wmGizmo.scale/user_scale).
	 * - Offset isn't applied (wmGizmo.matrix_offset).
	 */
	wmGizmoFnMatrixBasisGet matrix_basis_get;

	/* activate a gizmo state when the user clicks on it */
	wmGizmoFnInvoke invoke;

	/* called when gizmo tweaking is done - used to free data and reset property when cancelling */
	wmGizmoFnExit exit;

	wmGizmoFnCursorGet cursor_get;

	/* called when gizmo selection state changes */
	wmGizmoFnSelectRefresh select_refresh;

	/* Free data (not the gizmo it's self), use when the gizmo allocates it's own members. */
	wmGizmoFnFree free;

	/* RNA for properties */
	struct StructRNA *srna;

	/* RNA integration */
	ExtensionRNA ext;

	ListBase target_property_defs;
	int target_property_defs_len;

} wmGizmoType;


/* -------------------------------------------------------------------- */
/* wmGizmoGroup */

/* factory class for a gizmo-group type, gets called every time a new area is spawned */
typedef struct wmGizmoGroupTypeRef {
	struct wmGizmoGroupTypeRef *next, *prev;
	struct wmGizmoGroupType *type;
} wmGizmoGroupTypeRef;

/* factory class for a gizmo-group type, gets called every time a new area is spawned */
typedef struct wmGizmoGroupType {
	const char *idname;  /* MAX_NAME */
	const char *name; /* gizmo-group name - displayed in UI (keymap editor) */
	char owner_id[64];  /* MAX_NAME */

	/* poll if gizmo-map should be visible */
	wmGizmoGroupFnPoll poll;
	/* initially create gizmos and set permanent data - stuff you only need to do once */
	wmGizmoGroupFnInit setup;
	/* refresh data, only called if recreate flag is set (WM_gizmomap_tag_refresh) */
	wmGizmoGroupFnRefresh refresh;
	/* refresh data for drawing, called before each redraw */
	wmGizmoGroupFnDrawPrepare draw_prepare;

	/* Keymap init callback for this gizmo-group (optional),
	 * will fall back to default tweak keymap when left NULL. */
	wmGizmoGroupFnSetupKeymap setup_keymap;

	/* Optionally subscribe to wmMsgBus events,
	 * these are calculated automatically from RNA properties,
	 * only needed if gizmos depend indirectly on properties. */
	wmGizmoGroupFnMsgBusSubscribe message_subscribe;

	/* keymap created with callback from above */
	struct wmKeyMap *keymap;
	/* Only for convenient removal. */
	struct wmKeyConfig *keyconf;

	/* Disable for now, maybe some day we want properties. */
#if 0
	/* rna for properties */
	struct StructRNA *srna;
#endif

	/* RNA integration */
	ExtensionRNA ext;

	eWM_GizmoFlagGroupTypeFlag flag;

	/* So we know which group type to update. */
	eWM_GizmoFlagMapTypeUpdateFlag type_update_flag;

	/* same as gizmo-maps, so registering/unregistering goes to the correct region */
	struct wmGizmoMapType_Params gzmap_params;

} wmGizmoGroupType;

typedef struct wmGizmoGroup {
	struct wmGizmoGroup *next, *prev;

	struct wmGizmoGroupType *type;
	ListBase gizmos;

	struct wmGizmoMap *parent_gzmap;

	void *py_instance;            /* python stores the class instance here */
	struct ReportList *reports;   /* errors and warnings storage */

	void *customdata;
	void (*customdata_free)(void *); /* for freeing customdata from above */
	eWM_GizmoFlagGroupInitFlag init_flag;
} wmGizmoGroup;

/* -------------------------------------------------------------------- */
/* wmGizmoMap */

/**
 * Pass a value of this enum to #WM_gizmomap_draw to tell it what to draw.
 */
typedef enum eWM_GizmoFlagMapDrawStep {
	/** Draw 2D gizmo-groups (#WM_GIZMOGROUPTYPE_3D not set). */
	WM_GIZMOMAP_DRAWSTEP_2D = 0,
	/** Draw 3D gizmo-groups (#WM_GIZMOGROUPTYPE_3D set). */
	WM_GIZMOMAP_DRAWSTEP_3D,
} eWM_GizmoFlagMapDrawStep;
#define WM_GIZMOMAP_DRAWSTEP_MAX 2

#endif  /* __WM_GIZMO_TYPES_H__ */