[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [33573] trunk/blender/source: renaming blf_api.h to blf_py_api.h

Dalai Felinto dfelinto at gmail.com
Thu Dec 9 18:31:42 CET 2010


Revision: 33573
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=33573
Author:   dfelinto
Date:     2010-12-09 18:31:42 +0100 (Thu, 09 Dec 2010)

Log Message:
-----------
renaming blf_api.h to blf_py_api.h
In windows this was producing Linking dependence errors because we have BLF_api.h in the /blenfont/ and blf_api.h in /python/generic/. It doesn't produces crash out of the box but I was trying to link both "api" files to the same project (Ketjsi folder). For the linking order was determining what header to use. A workaround is to "include" the file using some ../../ relative folder. But renaming it is less error prone.

Probably Ketsji folder shouldn't link to BLF_api.h anyways, but this is something I will look better later before another commit. In the mean time it's not a good idea to have 2 api files with the same name (for non case-sensitive systems).

Modified Paths:
--------------
    trunk/blender/source/blender/python/generic/CMakeLists.txt
    trunk/blender/source/blender/python/intern/bpy.c
    trunk/blender/source/gameengine/Ketsji/KX_PythonInit.cpp

Added Paths:
-----------
    trunk/blender/source/blender/python/generic/blf_py_api.c
    trunk/blender/source/blender/python/generic/blf_py_api.h

Removed Paths:
-------------
    trunk/blender/source/blender/python/generic/blf_api.c
    trunk/blender/source/blender/python/generic/blf_api.h

Modified: trunk/blender/source/blender/python/generic/CMakeLists.txt
===================================================================
--- trunk/blender/source/blender/python/generic/CMakeLists.txt	2010-12-09 16:50:32 UTC (rev 33572)
+++ trunk/blender/source/blender/python/generic/CMakeLists.txt	2010-12-09 17:31:42 UTC (rev 33573)
@@ -31,7 +31,7 @@
 set(SRC
 	IDProp.c
 	bgl.c
-	blf_api.c
+	blf_py_api.c
 	bpy_internal_import.c
 	mathutils.c
 	mathutils_color.c
@@ -45,7 +45,7 @@
 
 	IDProp.h
 	bgl.h
-	blf_api.h
+	blf_py_api.h
 	bpy_internal_import.h
 	mathutils.h
 	mathutils_color.h

Deleted: trunk/blender/source/blender/python/generic/blf_api.c
===================================================================
--- trunk/blender/source/blender/python/generic/blf_api.c	2010-12-09 16:50:32 UTC (rev 33572)
+++ trunk/blender/source/blender/python/generic/blf_api.c	2010-12-09 17:31:42 UTC (rev 33573)
@@ -1,406 +0,0 @@
-/**
- * $Id$
- *
- * ***** 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.
- *
- * Contributor(s): Campbell Barton
- *
- * ***** END GPL LICENSE BLOCK *****
- */
-
-#include <Python.h>
-#include "blf_api.h"
-
-#include "../../blenfont/BLF_api.h"
-#include "BKE_utildefines.h"
-
-static char 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;
-}
-
-
-static char py_blf_size_doc[] =
-".. function:: size(fontid, size, dpi)\n"
-"\n"
-"   Set the size and dpi 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: int\n"
-"   :arg dpi: dots per inch value to use for drawing.\n"
-"   :type dpi: int\n";
-
-static PyObject *py_blf_size(PyObject *UNUSED(self), PyObject *args)
-{
-	int fontid, size, dpi;
-
-	if (!PyArg_ParseTuple(args, "iii:blf.size", &fontid, &size, &dpi))
-		return NULL;
-
-	BLF_size(fontid, size, dpi);
-
-	Py_RETURN_NONE;
-}
-
-
-static char 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);
-
-	Py_RETURN_NONE;
-}
-
-
-static char 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;
-}
-
-
-static char 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)
-{
-	char *text;
-	int text_length;
-	int fontid;
-
-	if (!PyArg_ParseTuple(args, "is#:blf.draw", &fontid, &text, &text_length))
-		return NULL;
-
-	BLF_draw(fontid, text, (unsigned int)text_length);
-
-	Py_RETURN_NONE;
-}
-
-static char 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)
-{
-	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, &r_width, &r_height);
-
-	ret= PyTuple_New(2);
-	PyTuple_SET_ITEM(ret, 0, PyFloat_FromDouble(r_width));
-	PyTuple_SET_ITEM(ret, 1, PyFloat_FromDouble(r_height));
-	return ret;
-}
-
-static char 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;
-}
-
-static char 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;
-}
-
-static char 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;
-}
-
-static char 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;
-}
-
-static char 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 r, g, b, a;
-
-	if (!PyArg_ParseTuple(args, "iiffff:blf.shadow", &fontid, &level, &r, &g, &b, &a))
-		return NULL;
-
-	if (level != 0 && level != 3 && level != 5) {
-		PyErr_SetString(PyExc_TypeError, "blf.shadow expected arg to be in (0, 3, 5)");
-		return NULL;
-	}
-
-	BLF_shadow(fontid, level, r, g, b, a);
-
-	Py_RETURN_NONE;
-}
-
-static char 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;
-}
-
-static char py_blf_load_doc[] =
-".. function:: load(filename)\n"
-"\n"

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list