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
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000 Alistair Riddoch
//
// 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
// $Id: Py_BBox.cpp,v 1.14 2007-01-12 12:38:06 alriddoch Exp $
#include "Py_BBox.h"
#include "Py_Vector3D.h"
static PyObject * BBox_sqr_bounding_radius(PyBBox * self)
{
float square_radius = 0;
if (self->box.isValid()) {
square_radius = boxSquareBoundingRadius(self->box);
}
return PyFloat_FromDouble(square_radius);
}
static PyMethodDef BBox_methods[] = {
{"square_bounding_radius", (PyCFunction)BBox_sqr_bounding_radius, METH_NOARGS},
{NULL, NULL} // sentinel
};
static void BBox_dealloc(PyBBox * self)
{
self->box.~BBox();
PyObject_Free(self);
}
static PyObject * BBox_getattr(PyBBox *self, char *name)
{
if (strcmp(name, "near_point") == 0) {
PyVector3D * v = newPyVector3D();
const WFMath::Point<3> & lc = self->box.lowCorner();
v->coords = Vector3D(lc.x(), lc.y(), lc.z());
return (PyObject *)v;
}
if (strcmp(name, "far_point") == 0) {
PyVector3D * v = newPyVector3D();
const WFMath::Point<3> & hc = self->box.highCorner();
v->coords = Vector3D(hc.x(), hc.y(), hc.z());
return (PyObject *)v;
}
return Py_FindMethod(BBox_methods, (PyObject *)self, name);
}
static int BBox_setattr(PyBBox *self, char *name, PyObject *v)
{
if (!PyVector3D_Check(v)) {
PyErr_SetString(PyExc_TypeError, "BBox setattr must take a Vector");
return -1;
}
PyVector3D * vec = (PyVector3D *)v;
if (!vec->coords.isValid()) {
PyErr_SetString(PyExc_TypeError, "BBox setattr must take a valid Vector");
return -1;
}
const Vector3D & vector = vec->coords;
if (strcmp(name, "near_point") == 0) {
(WFMath::Point<3>&)self->box.lowCorner() = WFMath::Point<3>(vector.x(),
vector.y(),
vector.z());
return 0;
} else if (strcmp(name, "far_point") == 0) {
(WFMath::Point<3>&)self->box.highCorner()= WFMath::Point<3>(vector.x(),
vector.y(),
vector.z());
return 0;
}
PyErr_SetString(PyExc_AttributeError, "unknown attribute");
return -1;
}
static int BBox_compare(PyBBox * self, PyBBox * other)
{
if (!PyBBox_Check(other)) {
return -1;
}
if (self->box == other->box) {
return 0;
}
return 1;
}
PyTypeObject PyBBox_Type = {
PyObject_HEAD_INIT(&PyType_Type)
0, /*ob_size*/
"BBox", /*tp_name*/
sizeof(PyBBox), /*tp_basicsize*/
0, /*tp_itemsize*/
/* methods */
(destructor)BBox_dealloc, /*tp_dealloc*/
0, /*tp_print*/
(getattrfunc)BBox_getattr, /*tp_getattr*/
(setattrfunc)BBox_setattr, /*tp_setattr*/
(cmpfunc)BBox_compare, /*tp_compare*/
0, /*tp_repr*/
0, /*tp_as_number*/
0, /*tp_as_sequence*/
0, /*tp_as_mapping*/
0, /*tp_hash*/
};
PyBBox * newPyBBox()
{
PyBBox * self;
self = PyObject_NEW(PyBBox, &PyBBox_Type);
if (self == NULL) {
return NULL;
}
new (&(self->box)) BBox();
return self;
}
|