Blender V2.61 - r43446
|
00001 /* 00002 * ***** BEGIN GPL LICENSE BLOCK ***** 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License 00006 * as published by the Free Software Foundation; either version 2 00007 * of the License, or (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software Foundation, 00016 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00017 * 00018 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. 00019 * All rights reserved. 00020 * 00021 * The Original Code is: all of this file. 00022 * 00023 * Contributor(s): José I. Romero (cleanup and fixes) 00024 * 00025 * ***** END GPL LICENSE BLOCK ***** 00026 */ 00027 00033 #ifndef __KX_MOUSESENSOR 00034 #define __KX_MOUSESENSOR 00035 00036 #include "SCA_ISensor.h" 00037 #include "BoolValue.h" 00038 #include "SCA_IInputDevice.h" 00039 00040 class SCA_MouseSensor : public SCA_ISensor 00041 { 00042 Py_Header 00043 00047 short int m_mousemode; 00052 bool m_triggermode; 00056 int m_val; 00057 00058 SCA_IInputDevice::KX_EnumInputs m_hotkey; 00059 00063 short m_x; 00064 00068 short m_y; 00069 00070 public: 00074 enum KX_MOUSESENSORMODE { 00075 KX_MOUSESENSORMODE_NODEF = 0, 00076 KX_MOUSESENSORMODE_LEFTBUTTON, 00077 KX_MOUSESENSORMODE_MIDDLEBUTTON, 00078 KX_MOUSESENSORMODE_RIGHTBUTTON, 00079 KX_MOUSESENSORMODE_WHEELUP, 00080 KX_MOUSESENSORMODE_WHEELDOWN, 00081 KX_MOUSESENSORMODE_POSITION, 00082 KX_MOUSESENSORMODE_POSITIONX, 00083 KX_MOUSESENSORMODE_POSITIONY, 00084 KX_MOUSESENSORMODE_MOVEMENT, 00085 KX_MOUSESENSORMODE_MAX 00086 }; 00087 00088 bool isValid(KX_MOUSESENSORMODE); 00089 00090 SCA_MouseSensor(class SCA_MouseManager* keybdmgr, 00091 int startx,int starty, 00092 short int mousemode, 00093 SCA_IObject* gameobj); 00094 00095 virtual ~SCA_MouseSensor(); 00096 virtual CValue* GetReplica(); 00097 virtual bool Evaluate(); 00098 virtual void Init(); 00099 virtual bool IsPositiveTrigger(); 00100 short int GetModeKey(); 00101 SCA_IInputDevice::KX_EnumInputs GetHotKey(); 00102 void setX(short x); 00103 void setY(short y); 00104 00105 static void UpdateHotkey(void *self); 00106 00107 00108 #ifdef WITH_PYTHON 00109 /* --------------------------------------------------------------------- */ 00110 /* Python interface ---------------------------------------------------- */ 00111 /* --------------------------------------------------------------------- */ 00112 00113 static int UpdateHotkeyPy(void *self, const PyAttributeDef *); 00114 00115 // get button status 00116 KX_PYMETHOD_DOC_O(SCA_MouseSensor,getButtonStatus); 00117 #endif 00118 }; 00119 00120 #endif //__KX_MOUSESENSOR 00121