| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-18 08:08:12 +11:00
										 |  |  | /** \file
 | 
					
						
							|  |  |  |  * \ingroup pythonintern | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file defines a singleton py object accessed via 'bpy.utils.units', | 
					
						
							|  |  |  |  * which exposes various data and functions useful in units handling. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Future-proof, See https://docs.python.org/3/c-api/arg.html#strings-and-buffers */ | 
					
						
							|  |  |  | #define PY_SSIZE_T_CLEAN
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <Python.h>
 | 
					
						
							|  |  |  | #include <structmember.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "BLI_string.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-19 09:33:03 +01:00
										 |  |  | #include "BLI_utildefines.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "bpy_utils_units.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "../generic/py_capi_utils.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "BKE_unit.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /***** C-defined systems and types *****/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject BPyUnitsSystemsType; | 
					
						
							|  |  |  | static PyTypeObject BPyUnitsCategoriesType; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* XXX Maybe better as externs of BKE_unit.h ? */ | 
					
						
							|  |  |  | static const char *bpyunits_usystem_items[] = { | 
					
						
							|  |  |  |     "NONE", | 
					
						
							|  |  |  |     "METRIC", | 
					
						
							|  |  |  |     "IMPERIAL", | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const char *bpyunits_ucategorie_items[] = { | 
					
						
							|  |  |  |     "NONE", | 
					
						
							|  |  |  |     "LENGTH", | 
					
						
							|  |  |  |     "AREA", | 
					
						
							|  |  |  |     "VOLUME", | 
					
						
							|  |  |  |     "MASS", | 
					
						
							|  |  |  |     "ROTATION", | 
					
						
							|  |  |  |     "TIME", | 
					
						
							|  |  |  |     "VELOCITY", | 
					
						
							|  |  |  |     "ACCELERATION", | 
					
						
							|  |  |  |     "CAMERA", | 
					
						
							| 
									
										
										
										
											2019-02-08 12:31:28 +01:00
										 |  |  |     "POWER", | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     NULL, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * These fields are just empty placeholders, actual values get set in initializations functions. | 
					
						
							| 
									
										
										
										
											2019-04-29 19:59:13 +10:00
										 |  |  |  * This allows us to avoid many handwriting, and above all, | 
					
						
							| 
									
										
										
										
											2021-07-20 22:52:31 +10:00
										 |  |  |  * to keep all systems/categories definition stuff in `BKE_unit.h`. | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |  */ | 
					
						
							|  |  |  | static PyStructSequence_Field bpyunits_systems_fields[ARRAY_SIZE(bpyunits_usystem_items)]; | 
					
						
							|  |  |  | static PyStructSequence_Field bpyunits_categories_fields[ARRAY_SIZE(bpyunits_ucategorie_items)]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyStructSequence_Desc bpyunits_systems_desc = { | 
					
						
							| 
									
										
										
										
											2020-11-06 10:29:00 +11:00
										 |  |  |     "bpy.utils.units.systems",                               /* name */ | 
					
						
							| 
									
										
										
										
											2020-11-05 07:52:58 -08:00
										 |  |  |     "This named tuple contains all predefined unit systems", /* doc */ | 
					
						
							| 
									
										
										
										
											2020-11-06 10:29:00 +11:00
										 |  |  |     bpyunits_systems_fields,                                 /* fields */ | 
					
						
							| 
									
										
										
										
											2019-02-03 14:01:45 +11:00
										 |  |  |     ARRAY_SIZE(bpyunits_systems_fields) - 1, | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | static PyStructSequence_Desc bpyunits_categories_desc = { | 
					
						
							| 
									
										
										
										
											2020-11-06 10:29:00 +11:00
										 |  |  |     "bpy.utils.units.categories",                          /* name */ | 
					
						
							| 
									
										
										
										
											2020-11-05 07:52:58 -08:00
										 |  |  |     "This named tuple contains all predefined unit names", /* doc */ | 
					
						
							| 
									
										
										
										
											2020-11-06 10:29:00 +11:00
										 |  |  |     bpyunits_categories_fields,                            /* fields */ | 
					
						
							| 
									
										
										
										
											2019-02-03 14:01:45 +11:00
										 |  |  |     ARRAY_SIZE(bpyunits_categories_fields) - 1, | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Simple utility function to initialize #PyStructSequence_Desc | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static PyObject *py_structseq_from_strings(PyTypeObject *py_type, | 
					
						
							|  |  |  |                                            PyStructSequence_Desc *py_sseq_desc, | 
					
						
							|  |  |  |                                            const char **str_items) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   PyObject *py_struct_seq; | 
					
						
							|  |  |  |   int pos = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const char **str_iter; | 
					
						
							|  |  |  |   PyStructSequence_Field *desc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* initialize array */ | 
					
						
							|  |  |  |   /* We really populate the contexts' fields here! */ | 
					
						
							|  |  |  |   for (str_iter = str_items, desc = py_sseq_desc->fields; *str_iter; str_iter++, desc++) { | 
					
						
							|  |  |  |     desc->name = (char *)*str_iter; | 
					
						
							|  |  |  |     desc->doc = NULL; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   /* end sentinel */ | 
					
						
							|  |  |  |   desc->name = desc->doc = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   PyStructSequence_InitType(py_type, py_sseq_desc); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* initialize pytype */ | 
					
						
							|  |  |  |   py_struct_seq = PyStructSequence_New(py_type); | 
					
						
							|  |  |  |   BLI_assert(py_struct_seq != NULL); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   for (str_iter = str_items; *str_iter; str_iter++) { | 
					
						
							|  |  |  |     PyStructSequence_SET_ITEM(py_struct_seq, pos++, PyUnicode_FromString((*str_iter))); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return py_struct_seq; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool bpyunits_validate(const char *usys_str, const char *ucat_str, int *r_usys, int *r_ucat) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   *r_usys = BLI_str_index_in_array(usys_str, bpyunits_usystem_items); | 
					
						
							|  |  |  |   if (*r_usys < 0) { | 
					
						
							|  |  |  |     PyErr_Format(PyExc_ValueError, "Unknown unit system specified: %.200s.", usys_str); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   *r_ucat = BLI_str_index_in_array(ucat_str, bpyunits_ucategorie_items); | 
					
						
							|  |  |  |   if (*r_ucat < 0) { | 
					
						
							|  |  |  |     PyErr_Format(PyExc_ValueError, "Unknown unit category specified: %.200s.", ucat_str); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-09 08:41:15 -05:00
										 |  |  |   if (!BKE_unit_is_valid(*r_usys, *r_ucat)) { | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     PyErr_Format(PyExc_ValueError, | 
					
						
							|  |  |  |                  "%.200s / %.200s unit system/category combination is not valid.", | 
					
						
							|  |  |  |                  usys_str, | 
					
						
							|  |  |  |                  ucat_str); | 
					
						
							|  |  |  |     return false; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR( | 
					
						
							|  |  |  |     bpyunits_to_value_doc, | 
					
						
							| 
									
										
										
										
											2015-05-12 17:59:37 +10:00
										 |  |  |     ".. method:: to_value(unit_system, unit_category, str_input, str_ref_unit=None)\n" | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     "\n" | 
					
						
							|  |  |  |     "   Convert a given input string into a float value.\n" | 
					
						
							|  |  |  |     "\n" | 
					
						
							|  |  |  |     "   :arg unit_system: The unit system, from :attr:`bpy.utils.units.systems`.\n" | 
					
						
							|  |  |  |     "   :type unit_system: string\n" | 
					
						
							| 
									
										
										
										
											2015-05-12 17:59:37 +10:00
										 |  |  |     "   :arg unit_category: The category of data we are converting (length, area, rotation, " | 
					
						
							|  |  |  |     "etc.),\n" | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     "      from :attr:`bpy.utils.units.categories`.\n" | 
					
						
							|  |  |  |     "   :type unit_category: string\n" | 
					
						
							|  |  |  |     "   :arg str_input: The string to convert to a float value.\n" | 
					
						
							|  |  |  |     "   :type str_input: string\n" | 
					
						
							| 
									
										
										
										
											2015-05-12 17:59:37 +10:00
										 |  |  |     "   :arg str_ref_unit: A reference string from which to extract a default unit, if none is " | 
					
						
							|  |  |  |     "found in ``str_input``.\n" | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     "   :type str_ref_unit: string or None\n" | 
					
						
							|  |  |  |     "   :return: The converted/interpreted value.\n" | 
					
						
							|  |  |  |     "   :rtype: float\n" | 
					
						
							|  |  |  |     "   :raises ValueError: if conversion fails to generate a valid python float value.\n"); | 
					
						
							|  |  |  | static PyObject *bpyunits_to_value(PyObject *UNUSED(self), PyObject *args, PyObject *kw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   char *usys_str = NULL, *ucat_str = NULL, *inpt = NULL, *uref = NULL; | 
					
						
							|  |  |  |   const float scale = 1.0f; | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   char *str; | 
					
						
							|  |  |  |   Py_ssize_t str_len; | 
					
						
							|  |  |  |   double result; | 
					
						
							|  |  |  |   int usys, ucat; | 
					
						
							|  |  |  |   PyObject *ret; | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-05 10:52:18 +11:00
										 |  |  |   static const char *_keywords[] = { | 
					
						
							|  |  |  |       "unit_system", | 
					
						
							|  |  |  |       "unit_category", | 
					
						
							|  |  |  |       "str_input", | 
					
						
							|  |  |  |       "str_ref_unit", | 
					
						
							|  |  |  |       NULL, | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
											  
											
												PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
											
										 
											2021-06-08 18:03:14 +10:00
										 |  |  |   static _PyArg_Parser _parser = {"sss#|$z:to_value", _keywords, 0}; | 
					
						
							| 
									
										
										
										
											2017-10-05 10:52:18 +11:00
										 |  |  |   if (!_PyArg_ParseTupleAndKeywordsFast( | 
					
						
							|  |  |  |           args, kw, &_parser, &usys_str, &ucat_str, &inpt, &str_len, &uref)) { | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   if (!bpyunits_validate(usys_str, ucat_str, &usys, &ucat)) { | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   str_len = str_len * 2 + 64; | 
					
						
							|  |  |  |   str = PyMem_MALLOC(sizeof(*str) * (size_t)str_len); | 
					
						
							|  |  |  |   BLI_strncpy(str, inpt, (size_t)str_len); | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-09 08:41:15 -05:00
										 |  |  |   BKE_unit_replace_string(str, (int)str_len, uref, scale, usys, ucat); | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-03 12:38:19 +10:00
										 |  |  |   if (!PyC_RunString_AsNumber(NULL, str, "<bpy_units_api>", &result)) { | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     if (PyErr_Occurred()) { | 
					
						
							|  |  |  |       PyErr_Print(); | 
					
						
							|  |  |  |       PyErr_Clear(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     PyErr_Format( | 
					
						
							|  |  |  |         PyExc_ValueError, "'%.200s' (converted as '%s') could not be evaluated.", inpt, str); | 
					
						
							|  |  |  |     ret = NULL; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   else { | 
					
						
							|  |  |  |     ret = PyFloat_FromDouble(result); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   PyMem_FREE(str); | 
					
						
							|  |  |  |   return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(bpyunits_to_string_doc, | 
					
						
							| 
									
										
										
										
											2015-05-12 17:59:37 +10:00
										 |  |  |              ".. method:: to_string(unit_system, unit_category, value, precision=3, " | 
					
						
							|  |  |  |              "split_unit=False, compatible_unit=False)\n" | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |              "\n" | 
					
						
							|  |  |  |              "   Convert a given input float value into a string with units.\n" | 
					
						
							|  |  |  |              "\n" | 
					
						
							|  |  |  |              "   :arg unit_system: The unit system, from :attr:`bpy.utils.units.systems`.\n" | 
					
						
							|  |  |  |              "   :type unit_system: string\n" | 
					
						
							| 
									
										
										
										
											2015-05-12 17:59:37 +10:00
										 |  |  |              "   :arg unit_category: The category of data we are converting (length, area, " | 
					
						
							|  |  |  |              "rotation, etc.),\n" | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |              "      from :attr:`bpy.utils.units.categories`.\n" | 
					
						
							|  |  |  |              "   :type unit_category: string\n" | 
					
						
							|  |  |  |              "   :arg value: The value to convert to a string.\n" | 
					
						
							|  |  |  |              "   :type value: float\n" | 
					
						
							|  |  |  |              "   :arg precision: Number of digits after the comma.\n" | 
					
						
							|  |  |  |              "   :type precision: int\n" | 
					
						
							|  |  |  |              "   :arg split_unit: Whether to use several units if needed (1m1cm), or always only " | 
					
						
							|  |  |  |              "one (1.01m).\n" | 
					
						
							|  |  |  |              "   :type split_unit: bool\n" | 
					
						
							|  |  |  |              "   :arg compatible_unit: Whether to use keyboard-friendly units (1m2) or nicer " | 
					
						
							|  |  |  |              "utf-8 ones (1m²).\n" | 
					
						
							|  |  |  |              "   :type compatible_unit: bool\n" | 
					
						
							|  |  |  |              "   :return: The converted string.\n" | 
					
						
							|  |  |  |              "   :rtype: str\n" | 
					
						
							|  |  |  |              "   :raises ValueError: if conversion fails to generate a valid python string.\n"); | 
					
						
							|  |  |  | static PyObject *bpyunits_to_string(PyObject *UNUSED(self), PyObject *args, PyObject *kw) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   char *usys_str = NULL, *ucat_str = NULL; | 
					
						
							|  |  |  |   double value = 0.0; | 
					
						
							| 
									
										
										
										
											2015-08-04 18:34:20 +10:00
										 |  |  |   int precision = 3; | 
					
						
							|  |  |  |   bool split_unit = false, compatible_unit = false; | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   int usys, ucat; | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-05 10:52:18 +11:00
										 |  |  |   static const char *_keywords[] = { | 
					
						
							|  |  |  |       "unit_system", | 
					
						
							|  |  |  |       "unit_category", | 
					
						
							|  |  |  |       "value", | 
					
						
							|  |  |  |       "precision", | 
					
						
							|  |  |  |       "split_unit", | 
					
						
							|  |  |  |       "compatible_unit", | 
					
						
							|  |  |  |       NULL, | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
											  
											
												PyAPI: use keyword only arguments
Use keyword only arguments for the following functions.
- addon_utils.module_bl_info 2nd arg `info_basis`.
- addon_utils.modules 1st `module_cache`, 2nd arg `refresh`.
- addon_utils.modules_refresh 1st arg `module_cache`.
- bl_app_template_utils.activate 1nd arg `template_id`.
- bl_app_template_utils.import_from_id 2nd arg `ignore_not_found`.
- bl_app_template_utils.import_from_path 2nd arg `ignore_not_found`.
- bl_keymap_utils.keymap_from_toolbar.generate 2nd & 3rd args `use_fallback_keys` & `use_reset`.
- bl_keymap_utils.platform_helpers.keyconfig_data_oskey_from_ctrl 2nd arg `filter_fn`.
- bl_ui_utils.bug_report_url.url_prefill_from_blender 1st arg `addon_info`.
- bmesh.types.BMFace.copy 1st & 2nd args `verts`, `edges`.
- bmesh.types.BMesh.calc_volume 1st arg `signed`.
- bmesh.types.BMesh.from_mesh 2nd..4th args `face_normals`, `use_shape_key`, `shape_key_index`.
- bmesh.types.BMesh.from_object 3rd & 4th args `cage`, `face_normals`.
- bmesh.types.BMesh.transform 2nd arg `filter`.
- bmesh.types.BMesh.update_edit_mesh 2nd & 3rd args `loop_triangles`, `destructive`.
- bmesh.types.{BMVertSeq,BMEdgeSeq,BMFaceSeq}.sort 1st & 2nd arg `key`, `reverse`.
- bmesh.utils.face_split 4th..6th args `coords`, `use_exist`, `example`.
- bpy.data.libraries.load 2nd..4th args `link`, `relative`, `assets_only`.
- bpy.data.user_map 1st..3rd args `subset`, `key_types, `value_types`.
- bpy.msgbus.subscribe_rna 5th arg `options`.
- bpy.path.abspath 2nd & 3rd args `start` & `library`.
- bpy.path.clean_name 2nd arg `replace`.
- bpy.path.ensure_ext 3rd arg `case_sensitive`.
- bpy.path.module_names 2nd arg `recursive`.
- bpy.path.relpath 2nd arg `start`.
- bpy.types.EditBone.transform 2nd & 3rd arg `scale`, `roll`.
- bpy.types.Operator.as_keywords 1st arg `ignore`.
- bpy.types.Struct.{keyframe_insert,keyframe_delete} 2nd..5th args `index`, `frame`, `group`, `options`.
- bpy.types.WindowManager.popup_menu 2nd & 3rd arg `title`, `icon`.
- bpy.types.WindowManager.popup_menu_pie 3rd & 4th arg `title`, `icon`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.app_template_paths 1st arg `subdir`.
- bpy.utils.blend_paths 1st..3rd args `absolute`, `packed`, `local`.
- bpy.utils.execfile 2nd arg `mod`.
- bpy.utils.keyconfig_set 2nd arg `report`.
- bpy.utils.load_scripts 1st & 2nd `reload_scripts` & `refresh_scripts`.
- bpy.utils.preset_find 3rd & 4th args `display_name`, `ext`.
- bpy.utils.resource_path 2nd & 3rd arg `major`, `minor`.
- bpy.utils.script_paths 1st..4th args `subdir`, `user_pref`, `check_all`, `use_user`.
- bpy.utils.smpte_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.smpte_from_seconds 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.system_resource 2nd arg `subdir`.
- bpy.utils.time_from_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.time_to_frame 2nd & 3rd args `fps`, `fps_base`.
- bpy.utils.units.to_string 4th..6th `precision`, `split_unit`, `compatible_unit`.
- bpy.utils.units.to_value 4th arg `str_ref_unit`.
- bpy.utils.user_resource 2nd & 3rd args `subdir`, `create`
- bpy_extras.view3d_utils.location_3d_to_region_2d 4th arg `default`.
- bpy_extras.view3d_utils.region_2d_to_origin_3d 4th arg `clamp`.
- gpu.offscreen.unbind 1st arg `restore`.
- gpu_extras.batch.batch_for_shader 4th arg `indices`.
- gpu_extras.batch.presets.draw_circle_2d 4th arg `segments`.
- gpu_extras.presets.draw_circle_2d 4th arg `segments`.
- imbuf.types.ImBuf.resize 2nd arg `resize`.
- imbuf.write 2nd arg `filepath`.
- mathutils.kdtree.KDTree.find 2nd arg `filter`.
- nodeitems_utils.NodeCategory 3rd & 4th arg `descriptions`, `items`.
- nodeitems_utils.NodeItem 2nd..4th args `label`, `settings`, `poll`.
- nodeitems_utils.NodeItemCustom 1st & 2nd arg `poll`, `draw`.
- rna_prop_ui.draw 5th arg `use_edit`.
- rna_prop_ui.rna_idprop_ui_get 2nd arg `create`.
- rna_prop_ui.rna_idprop_ui_prop_clear 3rd arg `remove`.
- rna_prop_ui.rna_idprop_ui_prop_get 3rd arg `create`.
- rna_xml.xml2rna 2nd arg `root_rna`.
- rna_xml.xml_file_write 4th arg `skip_typemap`.
											
										 
											2021-06-08 18:03:14 +10:00
										 |  |  |   static _PyArg_Parser _parser = {"ssd|$iO&O&:to_string", _keywords, 0}; | 
					
						
							| 
									
										
										
										
											2017-10-05 10:52:18 +11:00
										 |  |  |   if (!_PyArg_ParseTupleAndKeywordsFast(args, | 
					
						
							|  |  |  |                                         kw, | 
					
						
							|  |  |  |                                         &_parser, | 
					
						
							| 
									
										
										
										
											2015-08-04 18:34:20 +10:00
										 |  |  |                                         &usys_str, | 
					
						
							|  |  |  |                                         &ucat_str, | 
					
						
							|  |  |  |                                         &value, | 
					
						
							|  |  |  |                                         &precision, | 
					
						
							|  |  |  |                                         PyC_ParseBool, | 
					
						
							|  |  |  |                                         &split_unit, | 
					
						
							|  |  |  |                                         PyC_ParseBool, | 
					
						
							|  |  |  |                                         &compatible_unit)) { | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     return NULL; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   if (!bpyunits_validate(usys_str, ucat_str, &usys, &ucat)) { | 
					
						
							|  |  |  |     return NULL; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |   { | 
					
						
							|  |  |  |     /* Maximum expected length of string result:
 | 
					
						
							| 
									
										
										
										
											2019-04-29 19:59:13 +10:00
										 |  |  |      * - Number itself: precision + decimal dot + up to four 'above dot' digits. | 
					
						
							|  |  |  |      * - Unit: up to ten chars | 
					
						
							|  |  |  |      *   (six currently, let's be conservative, also because we use some utf8 chars). | 
					
						
							|  |  |  |      * This can be repeated twice (e.g. 1m20cm), and we add ten more spare chars | 
					
						
							|  |  |  |      * (spaces, trailing '\0'...). | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |      * So in practice, 64 should be more than enough. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     char buf1[64], buf2[64], *str; | 
					
						
							|  |  |  |     PyObject *result; | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-09-09 08:41:15 -05:00
										 |  |  |     BKE_unit_value_as_string_adaptive( | 
					
						
							|  |  |  |         buf1, sizeof(buf1), value, precision, usys, ucat, (bool)split_unit, false); | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     if (compatible_unit) { | 
					
						
							| 
									
										
										
										
											2020-09-09 08:41:15 -05:00
										 |  |  |       BKE_unit_name_to_alt(buf2, sizeof(buf2), buf1, usys, ucat); | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |       str = buf2; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |       str = buf1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     result = PyUnicode_FromString(str); | 
					
						
							| 
									
										
										
										
											2019-04-17 06:17:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  |     return result; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef bpyunits_methods[] = { | 
					
						
							|  |  |  |     {"to_value", | 
					
						
							|  |  |  |      (PyCFunction)bpyunits_to_value, | 
					
						
							|  |  |  |      METH_VARARGS | METH_KEYWORDS, | 
					
						
							|  |  |  |      bpyunits_to_value_doc}, | 
					
						
							|  |  |  |     {"to_string", | 
					
						
							|  |  |  |      (PyCFunction)bpyunits_to_string, | 
					
						
							|  |  |  |      METH_VARARGS | METH_KEYWORDS, | 
					
						
							|  |  |  |      bpyunits_to_string_doc}, | 
					
						
							| 
									
										
										
										
											2019-01-19 13:21:18 +11:00
										 |  |  |     {NULL, NULL, 0, NULL}, | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(bpyunits_doc, "This module contains some data/methods regarding units handling."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct PyModuleDef bpyunits_module = { | 
					
						
							|  |  |  |     PyModuleDef_HEAD_INIT, | 
					
						
							|  |  |  |     "bpy.utils.units", | 
					
						
							|  |  |  |     bpyunits_doc, | 
					
						
							|  |  |  |     -1, /* multiple "initialization" just copies the module dict. */ | 
					
						
							|  |  |  |     bpyunits_methods, | 
					
						
							| 
									
										
										
										
											2019-01-19 13:21:18 +11:00
										 |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							|  |  |  |     NULL, | 
					
						
							| 
									
										
										
										
											2014-06-17 16:03:40 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyObject *BPY_utils_units(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   PyObject *submodule, *item; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   submodule = PyModule_Create(&bpyunits_module); | 
					
						
							|  |  |  |   PyDict_SetItemString(PyImport_GetModuleDict(), bpyunits_module.m_name, submodule); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* Finalize our unit systems and types structseq definitions! */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* bpy.utils.units.system */ | 
					
						
							|  |  |  |   item = py_structseq_from_strings( | 
					
						
							|  |  |  |       &BPyUnitsSystemsType, &bpyunits_systems_desc, bpyunits_usystem_items); | 
					
						
							|  |  |  |   PyModule_AddObject(submodule, "systems", item); /* steals ref */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /* bpy.utils.units.categories */ | 
					
						
							|  |  |  |   item = py_structseq_from_strings( | 
					
						
							|  |  |  |       &BPyUnitsCategoriesType, &bpyunits_categories_desc, bpyunits_ucategorie_items); | 
					
						
							|  |  |  |   PyModule_AddObject(submodule, "categories", item); /* steals ref */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return submodule; | 
					
						
							|  |  |  | } |