| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Delay trigger | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * $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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is: all of this file. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Contributor(s): none yet. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ***** END GPL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_CONFIG_H
 | 
					
						
							|  |  |  | #include <config.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef WIN32
 | 
					
						
							|  |  |  | // This warning tells us about truncation of __long__ stl-generated names.
 | 
					
						
							|  |  |  | // It can occasionally cause DevStudio to have internal compiler warnings.
 | 
					
						
							|  |  |  | #pragma warning( disable : 4786 )     
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "SCA_DelaySensor.h"
 | 
					
						
							|  |  |  | #include "SCA_LogicManager.h"
 | 
					
						
							|  |  |  | #include "SCA_EventManager.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /* Native functions                                                          */ | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SCA_DelaySensor::SCA_DelaySensor(class SCA_EventManager* eventmgr, | 
					
						
							|  |  |  | 								 SCA_IObject* gameobj, | 
					
						
							|  |  |  | 								 int delay, | 
					
						
							|  |  |  | 								 int duration, | 
					
						
							| 
									
										
										
										
											2009-06-28 11:22:26 +00:00
										 |  |  | 								 bool repeat) | 
					
						
							|  |  |  | 	: SCA_ISensor(gameobj,eventmgr), | 
					
						
							| 
									
										
										
										
											2009-02-25 03:26:02 +00:00
										 |  |  | 	m_repeat(repeat), | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	m_delay(delay), | 
					
						
							| 
									
										
										
										
											2009-02-25 03:26:02 +00:00
										 |  |  | 	m_duration(duration) | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Init(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void SCA_DelaySensor::Init() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	m_lastResult = false; | 
					
						
							|  |  |  | 	m_frameCount = -1; | 
					
						
							|  |  |  | 	m_reset = true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SCA_DelaySensor::~SCA_DelaySensor() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* intentionally empty */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CValue* SCA_DelaySensor::GetReplica() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	CValue* replica = new SCA_DelaySensor(*this); | 
					
						
							|  |  |  | 	// this will copy properties and so on...
 | 
					
						
							| 
									
										
										
										
											2009-06-08 20:08:19 +00:00
										 |  |  | 	replica->ProcessReplica(); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return replica; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool SCA_DelaySensor::IsPositiveTrigger() | 
					
						
							|  |  |  | {  | 
					
						
							|  |  |  | 	return (m_invert ? !m_lastResult : m_lastResult); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-08 20:08:19 +00:00
										 |  |  | bool SCA_DelaySensor::Evaluate() | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	bool trigger = false; | 
					
						
							|  |  |  | 	bool result; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (m_frameCount==-1) { | 
					
						
							|  |  |  | 		// this is needed to ensure ON trigger in case delay==0
 | 
					
						
							|  |  |  | 		// and avoid spurious OFF trigger when duration==0
 | 
					
						
							|  |  |  | 		m_lastResult = false; | 
					
						
							|  |  |  | 		m_frameCount = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (m_frameCount<m_delay) { | 
					
						
							|  |  |  | 		m_frameCount++; | 
					
						
							|  |  |  | 		result = false; | 
					
						
							|  |  |  | 	} else if (m_duration > 0) { | 
					
						
							|  |  |  | 		if (m_frameCount < m_delay+m_duration) { | 
					
						
							|  |  |  | 			m_frameCount++; | 
					
						
							|  |  |  | 			result = true; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			result = false; | 
					
						
							|  |  |  | 			if (m_repeat) | 
					
						
							|  |  |  | 				m_frameCount = -1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		result = true; | 
					
						
							|  |  |  | 		if (m_repeat) | 
					
						
							|  |  |  | 			m_frameCount = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if ((m_reset && m_level) || result != m_lastResult) | 
					
						
							|  |  |  | 		trigger = true; | 
					
						
							|  |  |  | 	m_reset = false; | 
					
						
							|  |  |  | 	m_lastResult = result; | 
					
						
							|  |  |  | 	return trigger; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /* Python functions                                                          */ | 
					
						
							|  |  |  | /* ------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Integration hooks ------------------------------------------------------- */ | 
					
						
							|  |  |  | PyTypeObject SCA_DelaySensor::Type = { | 
					
						
							| 
									
										
										
										
											2009-06-08 20:08:19 +00:00
										 |  |  | #if (PY_VERSION_HEX >= 0x02060000)
 | 
					
						
							|  |  |  | 	PyVarObject_HEAD_INIT(NULL, 0) | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | 	/* python 2.5 and below */ | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT( NULL )  /* required py macro */ | 
					
						
							|  |  |  | 	0,                          /* ob_size */ | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	"SCA_DelaySensor", | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	sizeof(PyObjectPlus_Proxy), | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	0, | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	py_base_dealloc, | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	0, | 
					
						
							|  |  |  | 	0, | 
					
						
							|  |  |  | 	0, | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	py_base_repr, | 
					
						
							| 
									
										
										
										
											2009-06-29 12:06:46 +00:00
										 |  |  | 	0,0,0,0,0,0,0,0,0, | 
					
						
							| 
									
										
										
										
											2009-06-28 11:22:26 +00:00
										 |  |  | 	Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE, | 
					
						
							|  |  |  | 	0,0,0,0,0,0,0, | 
					
						
							|  |  |  | 	Methods, | 
					
						
							|  |  |  | 	0, | 
					
						
							|  |  |  | 	0, | 
					
						
							| 
									
										
										
										
											2009-06-29 12:06:46 +00:00
										 |  |  | 	&SCA_ISensor::Type, | 
					
						
							|  |  |  | 	0,0,0,0,0,0, | 
					
						
							|  |  |  | 	py_base_new | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyMethodDef SCA_DelaySensor::Methods[] = { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	//Deprecated functions ------>
 | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	/* setProperty */ | 
					
						
							| 
									
										
										
										
											2008-10-02 00:22:28 +00:00
										 |  |  | 	{"setDelay", (PyCFunction) SCA_DelaySensor::sPySetDelay, METH_VARARGS, (PY_METHODCHAR)SetDelay_doc}, | 
					
						
							|  |  |  | 	{"setDuration", (PyCFunction) SCA_DelaySensor::sPySetDuration, METH_VARARGS, (PY_METHODCHAR)SetDuration_doc}, | 
					
						
							|  |  |  | 	{"setRepeat", (PyCFunction) SCA_DelaySensor::sPySetRepeat, METH_VARARGS, (PY_METHODCHAR)SetRepeat_doc}, | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	/* getProperty */ | 
					
						
							| 
									
										
										
										
											2008-10-02 00:22:28 +00:00
										 |  |  | 	{"getDelay", (PyCFunction) SCA_DelaySensor::sPyGetDelay, METH_NOARGS, (PY_METHODCHAR)GetDelay_doc}, | 
					
						
							|  |  |  | 	{"getDuration", (PyCFunction) SCA_DelaySensor::sPyGetDuration, METH_NOARGS, (PY_METHODCHAR)GetDuration_doc}, | 
					
						
							|  |  |  | 	{"getRepeat", (PyCFunction) SCA_DelaySensor::sPyGetRepeat, METH_NOARGS, (PY_METHODCHAR)GetRepeat_doc}, | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	//<----- Deprecated
 | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	{NULL,NULL} //Sentinel
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-02 17:43:56 +00:00
										 |  |  | PyAttributeDef SCA_DelaySensor::Attributes[] = { | 
					
						
							|  |  |  | 	KX_PYATTRIBUTE_INT_RW("delay",0,100000,true,SCA_DelaySensor,m_delay), | 
					
						
							|  |  |  | 	KX_PYATTRIBUTE_INT_RW("duration",0,100000,true,SCA_DelaySensor,m_duration), | 
					
						
							|  |  |  | 	KX_PYATTRIBUTE_BOOL_RW("repeat",SCA_DelaySensor,m_repeat), | 
					
						
							|  |  |  | 	{ NULL }	//Sentinel
 | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::SetDelay_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "setDelay(delay)\n" | 
					
						
							|  |  |  | "\t- delay: length of the initial OFF period as number of frame\n" | 
					
						
							|  |  |  | "\t         0 for immediate trigger\n" | 
					
						
							|  |  |  | "\tSet the initial delay before the positive trigger\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PySetDelay(PyObject* args) | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("setDelay()", "the delay property"); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	int delay; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	if(!PyArg_ParseTuple(args, "i:setDelay", &delay)) { | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (delay < 0) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, "Delay cannot be negative"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m_delay = delay; | 
					
						
							| 
									
										
										
										
											2009-02-21 12:43:24 +00:00
										 |  |  | 	Py_RETURN_NONE; | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::SetDuration_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "setDuration(duration)\n" | 
					
						
							|  |  |  | "\t- duration: length of the ON period in number of frame after the initial off period\n" | 
					
						
							|  |  |  | "\t            0 for no ON period\n" | 
					
						
							|  |  |  | "\tSet the duration of the ON pulse after initial delay.\n" | 
					
						
							|  |  |  | "\tIf > 0, a negative trigger is fired at the end of the ON pulse.\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PySetDuration(PyObject* args) | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("setDuration()", "the duration property"); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	int duration; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	if(!PyArg_ParseTuple(args, "i:setDuration", &duration)) { | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (duration < 0) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_ValueError, "Duration cannot be negative"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m_duration = duration; | 
					
						
							| 
									
										
										
										
											2009-02-21 12:43:24 +00:00
										 |  |  | 	Py_RETURN_NONE; | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::SetRepeat_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "setRepeat(repeat)\n" | 
					
						
							|  |  |  | "\t- repeat: 1 if the initial OFF-ON cycle should be repeated indefinately\n" | 
					
						
							|  |  |  | "\t          0 if the initial OFF-ON cycle should run only once\n" | 
					
						
							|  |  |  | "\tSet the sensor repeat mode\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PySetRepeat(PyObject* args) | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("setRepeat()", "the repeat property"); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	int repeat; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | 	if(!PyArg_ParseTuple(args, "i:setRepeat", &repeat)) { | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	m_repeat = (repeat != 0); | 
					
						
							| 
									
										
										
										
											2009-02-21 12:43:24 +00:00
										 |  |  | 	Py_RETURN_NONE; | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::GetDelay_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "getDelay()\n" | 
					
						
							|  |  |  | "\tReturn the delay parameter value\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PyGetDelay() | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("getDelay()", "the delay property"); | 
					
						
							| 
									
										
										
										
											2009-06-29 02:25:54 +00:00
										 |  |  | 	return PyLong_FromSsize_t(m_delay); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::GetDuration_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "getDuration()\n" | 
					
						
							|  |  |  | "\tReturn the duration parameter value\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PyGetDuration() | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("getDuration()", "the duration property"); | 
					
						
							| 
									
										
										
										
											2009-06-29 02:25:54 +00:00
										 |  |  | 	return PyLong_FromSsize_t(m_duration); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-20 11:08:35 +00:00
										 |  |  | const char SCA_DelaySensor::GetRepeat_doc[] =  | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | "getRepeat()\n" | 
					
						
							|  |  |  | "\tReturn the repeat parameter value\n"; | 
					
						
							| 
									
										
										
										
											2009-04-20 15:06:46 +00:00
										 |  |  | PyObject* SCA_DelaySensor::PyGetRepeat() | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-29 16:36:58 +00:00
										 |  |  | 	ShowDeprecationWarning("getRepeat()", "the repeat property"); | 
					
						
							| 
									
										
										
										
											2008-08-16 20:45:37 +00:00
										 |  |  | 	return BoolToPyArg(m_repeat); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* eof */ |