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

blf_py_api.c « generic « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b7c5ed7e55a792e6891fbed20e3df369abf7062 (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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/* SPDX-License-Identifier: GPL-2.0-or-later */

/** \file
 * \ingroup pygen
 *
 * This file defines the 'bgl' module, used for drawing text in OpenGL.
 */

/* Future-proof, See https://docs.python.org/3/c-api/arg.html#strings-and-buffers */
#define PY_SSIZE_T_CLEAN

#include "blf_py_api.h"
#include <Python.h>

#include "../../blenfont/BLF_api.h"

#include "BLI_utildefines.h"

#include "python_utildefines.h"

PyDoc_STRVAR(py_blf_position_doc,
             ".. function:: position(fontid, x, y, z)\n"
             "\n"
             "   Set the position for drawing text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg x: X axis position to draw the text.\n"
             "   :type x: float\n"
             "   :arg y: Y axis position to draw the text.\n"
             "   :type y: float\n"
             "   :arg z: Z axis position to draw the text.\n"
             "   :type z: float\n");

static PyObject *py_blf_position(PyObject *UNUSED(self), PyObject *args)
{
  int fontid;
  float x, y, z;

  if (!PyArg_ParseTuple(args, "ifff:blf.position", &fontid, &x, &y, &z)) {
    return NULL;
  }

  BLF_position(fontid, x, y, z);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_size_doc,
             ".. function:: size(fontid, size, dpi=72)\n"
             "\n"
             "   Set the size for drawing text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg size: Point size of the font.\n"
             "   :type size: float\n"
             "   :arg dpi: DEPRECATED: Defaults to 72 when omitted.\n"
             "   :type dpi: int\n");
static PyObject *py_blf_size(PyObject *UNUSED(self), PyObject *args)
{
  int fontid, dpi = -1;
  float size;

  if (!PyArg_ParseTuple(args, "if|i:blf.size", &fontid, &size, &dpi)) {
    return NULL;
  }

  if (dpi != -1) {
    size *= (float)dpi / 72.0f;
    PyErr_WarnEx(PyExc_DeprecationWarning, "'dpi' is deprecated and assumed to be always 72.", 1);
  }

  BLF_size(fontid, size);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_aspect_doc,
             ".. function:: aspect(fontid, aspect)\n"
             "\n"
             "   Set the aspect for drawing text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg aspect: The aspect ratio for text drawing to use.\n"
             "   :type aspect: float\n");
static PyObject *py_blf_aspect(PyObject *UNUSED(self), PyObject *args)
{
  float aspect;
  int fontid;

  if (!PyArg_ParseTuple(args, "if:blf.aspect", &fontid, &aspect)) {
    return NULL;
  }

  BLF_aspect(fontid, aspect, aspect, 1.0);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_color_doc,
             ".. function:: color(fontid, r, g, b, a)\n"
             "\n"
             "   Set the color for drawing text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg r: red channel 0.0 - 1.0.\n"
             "   :type r: float\n"
             "   :arg g: green channel 0.0 - 1.0.\n"
             "   :type g: float\n"
             "   :arg b: blue channel 0.0 - 1.0.\n"
             "   :type b: float\n"
             "   :arg a: alpha channel 0.0 - 1.0.\n"
             "   :type a: float\n");
static PyObject *py_blf_color(PyObject *UNUSED(self), PyObject *args)
{
  int fontid;
  float rgba[4];

  if (!PyArg_ParseTuple(
          args, "iffff:blf.color", &fontid, &rgba[0], &rgba[1], &rgba[2], &rgba[3])) {
    return NULL;
  }

  BLF_color4fv(fontid, rgba);

  Py_RETURN_NONE;
}

#if BLF_BLUR_ENABLE
PyDoc_STRVAR(py_blf_blur_doc,
             ".. function:: blur(fontid, radius)\n"
             "\n"
             "   Set the blur radius for drawing text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg radius: The radius for blurring text (in pixels).\n"
             "   :type radius: int\n");
static PyObject *py_blf_blur(PyObject *UNUSED(self), PyObject *args)
{
  int blur, fontid;

  if (!PyArg_ParseTuple(args, "ii:blf.blur", &fontid, &blur)) {
    return NULL;
  }

  BLF_blur(fontid, blur);

  Py_RETURN_NONE;
}
#endif

PyDoc_STRVAR(py_blf_draw_doc,
             ".. function:: draw(fontid, text)\n"
             "\n"
             "   Draw text in the current context.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg text: the text to draw.\n"
             "   :type text: string\n");
static PyObject *py_blf_draw(PyObject *UNUSED(self), PyObject *args)
{
  const char *text;
  Py_ssize_t text_length;
  int fontid;

  if (!PyArg_ParseTuple(args, "is#:blf.draw", &fontid, &text, &text_length)) {
    return NULL;
  }

  BLF_draw(fontid, text, (uint)text_length);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_dimensions_doc,
             ".. function:: dimensions(fontid, text)\n"
             "\n"
             "   Return the width and height of the text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg text: the text to draw.\n"
             "   :type text: string\n"
             "   :return: the width and height of the text.\n"
             "   :rtype: tuple of 2 floats\n");
static PyObject *py_blf_dimensions(PyObject *UNUSED(self), PyObject *args)
{
  const char *text;
  float r_width, r_height;
  PyObject *ret;
  int fontid;

  if (!PyArg_ParseTuple(args, "is:blf.dimensions", &fontid, &text)) {
    return NULL;
  }

  BLF_width_and_height(fontid, text, INT_MAX, &r_width, &r_height);

  ret = PyTuple_New(2);
  PyTuple_SET_ITEMS(ret, PyFloat_FromDouble(r_width), PyFloat_FromDouble(r_height));
  return ret;
}

PyDoc_STRVAR(py_blf_clipping_doc,
             ".. function:: clipping(fontid, xmin, ymin, xmax, ymax)\n"
             "\n"
             "   Set the clipping, enable/disable using CLIPPING.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg xmin: Clip the drawing area by these bounds.\n"
             "   :type xmin: float\n"
             "   :arg ymin: Clip the drawing area by these bounds.\n"
             "   :type ymin: float\n"
             "   :arg xmax: Clip the drawing area by these bounds.\n"
             "   :type xmax: float\n"
             "   :arg ymax: Clip the drawing area by these bounds.\n"
             "   :type ymax: float\n");
static PyObject *py_blf_clipping(PyObject *UNUSED(self), PyObject *args)
{
  float xmin, ymin, xmax, ymax;
  int fontid;

  if (!PyArg_ParseTuple(args, "iffff:blf.clipping", &fontid, &xmin, &ymin, &xmax, &ymax)) {
    return NULL;
  }

  BLF_clipping(fontid, xmin, ymin, xmax, ymax);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_word_wrap_doc,
             ".. function:: word_wrap(fontid, wrap_width)\n"
             "\n"
             "   Set the wrap width, enable/disable using WORD_WRAP.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg wrap_width: The width (in pixels) to wrap words at.\n"
             "   :type wrap_width: int\n");
static PyObject *py_blf_word_wrap(PyObject *UNUSED(self), PyObject *args)
{
  int wrap_width;
  int fontid;

  if (!PyArg_ParseTuple(args, "ii:blf.word_wrap", &fontid, &wrap_width)) {
    return NULL;
  }

  BLF_wordwrap(fontid, wrap_width);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_disable_doc,
             ".. function:: disable(fontid, option)\n"
             "\n"
             "   Disable option.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg option: One of ROTATION, CLIPPING, SHADOW or KERNING_DEFAULT.\n"
             "   :type option: int\n");
static PyObject *py_blf_disable(PyObject *UNUSED(self), PyObject *args)
{
  int option, fontid;

  if (!PyArg_ParseTuple(args, "ii:blf.disable", &fontid, &option)) {
    return NULL;
  }

  BLF_disable(fontid, option);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_enable_doc,
             ".. function:: enable(fontid, option)\n"
             "\n"
             "   Enable option.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg option: One of ROTATION, CLIPPING, SHADOW or KERNING_DEFAULT.\n"
             "   :type option: int\n");
static PyObject *py_blf_enable(PyObject *UNUSED(self), PyObject *args)
{
  int option, fontid;

  if (!PyArg_ParseTuple(args, "ii:blf.enable", &fontid, &option)) {
    return NULL;
  }

  BLF_enable(fontid, option);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_rotation_doc,
             ".. function:: rotation(fontid, angle)\n"
             "\n"
             "   Set the text rotation angle, enable/disable using ROTATION.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg angle: The angle for text drawing to use.\n"
             "   :type angle: float\n");
static PyObject *py_blf_rotation(PyObject *UNUSED(self), PyObject *args)
{
  float angle;
  int fontid;

  if (!PyArg_ParseTuple(args, "if:blf.rotation", &fontid, &angle)) {
    return NULL;
  }

  BLF_rotation(fontid, angle);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_shadow_doc,
             ".. function:: shadow(fontid, level, r, g, b, a)\n"
             "\n"
             "   Shadow options, enable/disable using SHADOW .\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg level: The blur level, can be 3, 5 or 0.\n"
             "   :type level: int\n"
             "   :arg r: Shadow color (red channel 0.0 - 1.0).\n"
             "   :type r: float\n"
             "   :arg g: Shadow color (green channel 0.0 - 1.0).\n"
             "   :type g: float\n"
             "   :arg b: Shadow color (blue channel 0.0 - 1.0).\n"
             "   :type b: float\n"
             "   :arg a: Shadow color (alpha channel 0.0 - 1.0).\n"
             "   :type a: float\n");
static PyObject *py_blf_shadow(PyObject *UNUSED(self), PyObject *args)
{
  int level, fontid;
  float rgba[4];

  if (!PyArg_ParseTuple(
          args, "iiffff:blf.shadow", &fontid, &level, &rgba[0], &rgba[1], &rgba[2], &rgba[3])) {
    return NULL;
  }

  if (!ELEM(level, 0, 3, 5)) {
    PyErr_SetString(PyExc_TypeError, "blf.shadow expected arg to be in (0, 3, 5)");
    return NULL;
  }

  BLF_shadow(fontid, level, rgba);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_shadow_offset_doc,
             ".. function:: shadow_offset(fontid, x, y)\n"
             "\n"
             "   Set the offset for shadow text.\n"
             "\n"
             "   :arg fontid: The id of the typeface as returned by :func:`blf.load`, for default "
             "font use 0.\n"
             "   :type fontid: int\n"
             "   :arg x: Vertical shadow offset value in pixels.\n"
             "   :type x: float\n"
             "   :arg y: Horizontal shadow offset value in pixels.\n"
             "   :type y: float\n");
static PyObject *py_blf_shadow_offset(PyObject *UNUSED(self), PyObject *args)
{
  int x, y, fontid;

  if (!PyArg_ParseTuple(args, "iii:blf.shadow_offset", &fontid, &x, &y)) {
    return NULL;
  }

  BLF_shadow_offset(fontid, x, y);

  Py_RETURN_NONE;
}

PyDoc_STRVAR(py_blf_load_doc,
             ".. function:: load(filepath)\n"
             "\n"
             "   Load a new font.\n"
             "\n"
             "   :arg filepath: the filepath of the font.\n"
             "   :type filepath: string\n"
             "   :return: the new font's fontid or -1 if there was an error.\n"
             "   :rtype: integer\n");
static PyObject *py_blf_load(PyObject *UNUSED(self), PyObject *args)
{
  const char *filepath;

  if (!PyArg_ParseTuple(args, "s:blf.load", &filepath)) {
    return NULL;
  }

  return PyLong_FromLong(BLF_load(filepath));
}

PyDoc_STRVAR(py_blf_unload_doc,
             ".. function:: unload(filepath)\n"
             "\n"
             "   Unload an existing font.\n"
             "\n"
             "   :arg filepath: the filepath of the font.\n"
             "   :type filepath: string\n");
static PyObject *py_blf_unload(PyObject *UNUSED(self), PyObject *args)
{
  const char *filepath;

  if (!PyArg_ParseTuple(args, "s:blf.unload", &filepath)) {
    return NULL;
  }

  BLF_unload(filepath);

  Py_RETURN_NONE;
}

/*----------------------------MODULE INIT-------------------------*/
static PyMethodDef BLF_methods[] = {
    {"aspect", (PyCFunction)py_blf_aspect, METH_VARARGS, py_blf_aspect_doc},
#if BLF_BLUR_ENABLE
    {"blur", (PyCFunction)py_blf_blur, METH_VARARGS, py_blf_blur_doc},
#endif
    {"clipping", (PyCFunction)py_blf_clipping, METH_VARARGS, py_blf_clipping_doc},
    {"word_wrap", (PyCFunction)py_blf_word_wrap, METH_VARARGS, py_blf_word_wrap_doc},
    {"disable", (PyCFunction)py_blf_disable, METH_VARARGS, py_blf_disable_doc},
    {"dimensions", (PyCFunction)py_blf_dimensions, METH_VARARGS, py_blf_dimensions_doc},
    {"draw", (PyCFunction)py_blf_draw, METH_VARARGS, py_blf_draw_doc},
    {"enable", (PyCFunction)py_blf_enable, METH_VARARGS, py_blf_enable_doc},
    {"position", (PyCFunction)py_blf_position, METH_VARARGS, py_blf_position_doc},
    {"rotation", (PyCFunction)py_blf_rotation, METH_VARARGS, py_blf_rotation_doc},
    {"shadow", (PyCFunction)py_blf_shadow, METH_VARARGS, py_blf_shadow_doc},
    {"shadow_offset", (PyCFunction)py_blf_shadow_offset, METH_VARARGS, py_blf_shadow_offset_doc},
    {"size", (PyCFunction)py_blf_size, METH_VARARGS, py_blf_size_doc},
    {"color", (PyCFunction)py_blf_color, METH_VARARGS, py_blf_color_doc},
    {"load", (PyCFunction)py_blf_load, METH_VARARGS, py_blf_load_doc},
    {"unload", (PyCFunction)py_blf_unload, METH_VARARGS, py_blf_unload_doc},
    {NULL, NULL, 0, NULL},
};

PyDoc_STRVAR(BLF_doc, "This module provides access to Blender's text drawing functions.");
static struct PyModuleDef BLF_module_def = {
    PyModuleDef_HEAD_INIT,
    /*m_name*/ "blf",
    /*m_doc*/ BLF_doc,
    /*m_size*/ 0,
    /*m_methods*/ BLF_methods,
    /*m_slots*/ NULL,
    /*m_traverse*/ NULL,
    /*m_clear*/ NULL,
    /*m_free*/ NULL,
};

PyObject *BPyInit_blf(void)
{
  PyObject *submodule;

  submodule = PyModule_Create(&BLF_module_def);

  PyModule_AddIntConstant(submodule, "ROTATION", BLF_ROTATION);
  PyModule_AddIntConstant(submodule, "CLIPPING", BLF_CLIPPING);
  PyModule_AddIntConstant(submodule, "SHADOW", BLF_SHADOW);
  PyModule_AddIntConstant(submodule, "WORD_WRAP", BLF_WORD_WRAP);
  PyModule_AddIntConstant(submodule, "MONOCHROME", BLF_MONOCHROME);

  return submodule;
}