Fix for [#31813] "bge.types.KX_RadarSensor incorrect attributes" reported by Monster.

KX_RadarSensor.angle was returning the angle that was used to construct Bullet's physics shape, which is calculated from the logic brick gui. KX_RadarSensor.angle now recalculates the original value from the gui. However, m_coneradius isn't actually used by KX_RadarSensor that I can see, so it might be better to just assign the original angle to m_coneradius instead of the calculated value. I've also made KX_RadarSensor.angle read-only, since setting m_coneradius does not appear to have any affect, which means writing to KX_RadarSensor.angle never worked properly.
This commit is contained in:
Mitchell Stokes 2012-06-14 08:01:20 +00:00
parent cae6873bc6
commit c07c572373
3 changed files with 13 additions and 2 deletions

@ -2692,7 +2692,7 @@ Game Types (bge.types)
The angle of the cone (in degrees) with which to test.
:type: float from 0 to 360
:type: float
.. attribute:: axis

@ -212,9 +212,19 @@ PyAttributeDef KX_RadarSensor::Attributes[] = {
KX_PYATTRIBUTE_FLOAT_ARRAY_RO("coneOrigin", KX_RadarSensor, m_cone_origin, 3),
KX_PYATTRIBUTE_FLOAT_ARRAY_RO("coneTarget", KX_RadarSensor, m_cone_target, 3),
KX_PYATTRIBUTE_FLOAT_RO("distance", KX_RadarSensor, m_coneheight),
KX_PYATTRIBUTE_FLOAT_RW("angle", 0, 360, KX_RadarSensor, m_coneradius),
KX_PYATTRIBUTE_RO_FUNCTION("angle", KX_RadarSensor, pyattr_get_angle),
KX_PYATTRIBUTE_INT_RW("axis", 0, 5, true, KX_RadarSensor, m_axis),
{NULL} //Sentinel
};
PyObject* KX_RadarSensor::pyattr_get_angle(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef)
{
KX_RadarSensor* self= static_cast<KX_RadarSensor*>(self_v);
// The original angle from the gui was converted, so we recalculate the value here to maintain
// consistency between Python and the gui
return PyFloat_FromDouble(MT_degrees(atan(self->m_coneradius / self->m_coneheight)) * 2);
}
#endif // WITH_PYTHON

@ -93,6 +93,7 @@ public:
/* python */
virtual sensortype GetSensorType() { return ST_RADAR; }
static PyObject* pyattr_get_angle(void *self_v, const KX_PYATTRIBUTE_DEF *attrdef);
};
#endif //__KX_RADARSENSOR_H__