2002-10-12 11:37:38 +00:00
|
|
|
/**
|
|
|
|
* Manager for mouse events
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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
|
2008-04-16 22:40:48 +00:00
|
|
|
* of the License, or (at your option) any later version.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-10-12 11:37:38 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2008-04-16 22:40:48 +00:00
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
2002-10-12 11:37:38 +00:00
|
|
|
*/
|
|
|
|
|
2010-09-15 16:13:32 +00:00
|
|
|
#if defined(WIN32) && !defined(FREE_WINDOWS)
|
2002-10-12 11:37:38 +00:00
|
|
|
// 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 "BoolValue.h"
|
|
|
|
#include "SCA_MouseManager.h"
|
|
|
|
#include "SCA_MouseSensor.h"
|
|
|
|
#include "IntValue.h"
|
2010-04-23 22:48:26 +00:00
|
|
|
#include "RAS_ICanvas.h"
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
SCA_MouseManager::SCA_MouseManager(SCA_LogicManager* logicmgr,
|
2010-04-23 22:48:26 +00:00
|
|
|
SCA_IInputDevice* mousedev,
|
|
|
|
RAS_ICanvas* canvas)
|
2009-09-25 16:30:15 +00:00
|
|
|
: SCA_EventManager(logicmgr, MOUSE_EVENTMGR),
|
2010-04-23 22:48:26 +00:00
|
|
|
m_mousedevice (mousedev),
|
|
|
|
m_canvas(canvas)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
m_xpos = 0;
|
|
|
|
m_ypos = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCA_MouseManager::~SCA_MouseManager()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCA_IInputDevice* SCA_MouseManager::GetInputDevice()
|
|
|
|
{
|
|
|
|
return m_mousedevice;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-10-16 11:41:50 +00:00
|
|
|
void SCA_MouseManager::NextFrame()
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
|
|
|
if (m_mousedevice)
|
|
|
|
{
|
2009-05-10 20:53:58 +00:00
|
|
|
SG_DList::iterator<SCA_ISensor> it(m_sensors);
|
|
|
|
for (it.begin();!it.end();++it)
|
2002-10-12 11:37:38 +00:00
|
|
|
{
|
2008-07-30 17:41:47 +00:00
|
|
|
SCA_MouseSensor* mousesensor = (SCA_MouseSensor*)(*it);
|
2002-10-12 11:37:38 +00:00
|
|
|
// (0,0) is the Upper Left corner in our local window
|
|
|
|
// coordinates
|
|
|
|
if (!mousesensor->IsSuspended())
|
|
|
|
{
|
2010-04-23 22:48:26 +00:00
|
|
|
const SCA_InputEvent& event1 =
|
2002-10-12 11:37:38 +00:00
|
|
|
m_mousedevice->GetEventValue(SCA_IInputDevice::KX_MOUSEX);
|
|
|
|
const SCA_InputEvent& event2 =
|
|
|
|
m_mousedevice->GetEventValue(SCA_IInputDevice::KX_MOUSEY);
|
2010-04-23 22:48:26 +00:00
|
|
|
|
|
|
|
int mx = this->m_canvas->GetMouseX(event1.m_eventval);
|
|
|
|
int my = this->m_canvas->GetMouseY(event2.m_eventval);
|
2002-10-12 11:37:38 +00:00
|
|
|
|
|
|
|
mousesensor->setX(mx);
|
|
|
|
mousesensor->setY(my);
|
|
|
|
|
2009-09-25 16:30:15 +00:00
|
|
|
mousesensor->Activate(m_logicmgr);
|
2002-10-12 11:37:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SCA_MouseManager::IsPressed(SCA_IInputDevice::KX_EnumInputs inputcode)
|
|
|
|
{
|
|
|
|
/* We should guard for non-mouse events maybe? A rather silly side */
|
|
|
|
/* effect here is that position-change events are considered presses as */
|
|
|
|
/* well. */
|
|
|
|
|
|
|
|
return m_mousedevice->IsPressed(inputcode);
|
|
|
|
}
|