~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/gameengine/GameLogic/SCA_JoystickManager.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version. The Blender
 
8
 * Foundation also sells licenses for use in proprietary software under
 
9
 * the Blender License.  See http://www.blender.org/BL/ for information
 
10
 * about this.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software Foundation,
 
19
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
20
 *
 
21
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
 
22
 * All rights reserved.
 
23
 *
 
24
 * The Original Code is: all of this file.
 
25
 *
 
26
 * Contributor(s): none yet.
 
27
 *
 
28
 * ***** END GPL/BL DUAL LICENSE BLOCK *****
 
29
 */
 
30
#include "SCA_JoystickSensor.h"
 
31
#include "SCA_JoystickManager.h"
 
32
#include "SCA_LogicManager.h"
 
33
//#include <vector>
 
34
#include "SCA_ISensor.h"
 
35
 
 
36
#ifdef HAVE_CONFIG_H
 
37
#include <config.h>
 
38
#endif
 
39
//using namespace std;
 
40
 
 
41
 
 
42
SCA_JoystickManager::SCA_JoystickManager(class SCA_LogicManager* logicmgr)
 
43
        : SCA_EventManager(JOY_EVENTMGR),
 
44
        m_logicmgr(logicmgr)
 
45
{
 
46
        m_joystick = new SCA_Joystick();
 
47
        m_joystick->CreateJoystickDevice();
 
48
}
 
49
 
 
50
 
 
51
SCA_JoystickManager::~SCA_JoystickManager()
 
52
{
 
53
        m_joystick->DestroyJoystickDevice();
 
54
        delete m_joystick;
 
55
}
 
56
 
 
57
 
 
58
void SCA_JoystickManager::NextFrame(double curtime,double deltatime)
 
59
{
 
60
        for (unsigned int i = 0; i < m_sensors.size(); i++)
 
61
        {
 
62
                SCA_JoystickSensor* joysensor = (SCA_JoystickSensor*) m_sensors[i];
 
63
                if(!joysensor->IsSuspended())
 
64
                {
 
65
                        m_joystick->HandleEvents();
 
66
                        joysensor->Activate(m_logicmgr, NULL);
 
67
                }
 
68
        }
 
69
}
 
70
 
 
71
 
 
72
void SCA_JoystickManager::RegisterSensor(SCA_ISensor* sensor)
 
73
{
 
74
        m_sensors.push_back(sensor);
 
75
}
 
76
 
 
77
 
 
78
SCA_Joystick *SCA_JoystickManager::GetJoystickDevice()
 
79
{
 
80
        /* 
 
81
         *Return the instance of SCA_Joystick for use 
 
82
         */
 
83
        return m_joystick;
 
84
}