py api cleanup, replace use...
- PyLong_FromSsize_t --> PyLong_FromLong - PyLong_AsSsize_t --> PyLong_AsLong In all places except for those where python api expects PySsize_t (index lookups mainly). - use PyBool_FromLong in a few areas of the BGE. - fix incorrect assumption in the BGE that PySequence_Check() means PySequence_Fast_ functions can be used.
This commit is contained in:
@@ -168,12 +168,16 @@ void SCA_PythonController::SetNamespace(PyObject* pythondictionary)
|
||||
}
|
||||
#endif
|
||||
|
||||
int SCA_PythonController::IsTriggered(class SCA_ISensor* sensor)
|
||||
bool SCA_PythonController::IsTriggered(class SCA_ISensor* sensor)
|
||||
{
|
||||
if (std::find(m_triggeredSensors.begin(), m_triggeredSensors.end(), sensor) !=
|
||||
m_triggeredSensors.end())
|
||||
return 1;
|
||||
return 0;
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef WITH_PYTHON
|
||||
|
||||
Reference in New Issue
Block a user