Welcome to mirror list, hosted at ThFree Co, Russian Federation.

GHOST_NDOFManager.cpp « intern « ghost « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b14274278addeff34d31de1dc14f57ff61d1e806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * ***** 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Contributor(s): Mike Erwin, July 2010.
 *
 * ***** END GPL LICENSE BLOCK *****
 */

#include "GHOST_NDOFManager.h"
#include "GHOST_EventNDOF.h"
#include "GHOST_WindowManager.h"
#include <string.h> // for memory functions
#include <stdio.h> // for debug tracing

GHOST_NDOFManager::GHOST_NDOFManager(GHOST_System& sys)
	: m_system(sys)
	, m_buttons(0)
	, m_motionTime(1000) // one full second (operators should filter out such large time deltas)
	, m_prevMotionTime(0)
	, m_atRest(true)
	{
	// to avoid the rare situation where one triple is updated and
	// the other is not, initialize them both here:
	memset(m_translation, 0, sizeof(m_translation));
	memset(m_rotation, 0, sizeof(m_rotation));
	}

void GHOST_NDOFManager::updateTranslation(short t[3], GHOST_TUns64 time)
	{
	memcpy(m_translation, t, sizeof(m_translation));
	m_motionTime = time;
	m_atRest = false;
	}

void GHOST_NDOFManager::updateRotation(short r[3], GHOST_TUns64 time)
	{
	memcpy(m_rotation, r, sizeof(m_rotation));
	m_motionTime = time;
	m_atRest = false;
	}

void GHOST_NDOFManager::updateButtons(unsigned short buttons, GHOST_TUns64 time)
	{
	GHOST_IWindow* window = m_system.getWindowManager()->getActiveWindow();

	unsigned short diff = m_buttons ^ buttons;

	for (int i = 0; i < 16; ++i)
		{
		unsigned short mask = 1 << i;

		if (diff & mask)
			{
			GHOST_EventNDOFButton* event = new GHOST_EventNDOFButton(time, window);
			GHOST_TEventNDOFButtonData* data = (GHOST_TEventNDOFButtonData*) event->getData();
			
			data->action = (buttons & mask) ? GHOST_kPress : GHOST_kRelease;
			data->button = i + 1;

			// printf("sending button %d %s\n", data->button, (data->action == GHOST_kPress) ? "pressed" : "released");

			m_system.pushEvent(event);
			}
		}

	m_buttons = buttons;
	}

bool GHOST_NDOFManager::sendMotionEvent()
	{
	if (m_atRest)
		return false;

	GHOST_IWindow* window = m_system.getWindowManager()->getActiveWindow();

	GHOST_EventNDOFMotion* event = new GHOST_EventNDOFMotion(m_motionTime, window);
	GHOST_TEventNDOFMotionData* data = (GHOST_TEventNDOFMotionData*) event->getData();

	const float scale = 1.f / 350.f; // SpaceNavigator sends +/- 350 usually
	// 350 according to their developer's guide; others recommend 500 as comfortable

	// possible future enhancement
	// scale *= m_sensitivity;

	data->tx = -scale * m_translation[0];
	data->ty = scale * m_translation[1];
	data->tz = scale * m_translation[2];

	data->rx = scale * m_rotation[0];
	data->ry = scale * m_rotation[1];
	data->rz = scale * m_rotation[2];

	data->dt = 0.001f * (m_motionTime - m_prevMotionTime); // in seconds

	m_prevMotionTime = m_motionTime;

//	printf("sending T=(%.2f,%.2f,%.2f) R=(%.2f,%.2f,%.2f) dt=%.3f\n",
//		data->tx, data->ty, data->tz, data->rx, data->ry, data->rz, data->dt);

	m_system.pushEvent(event);

	// 'at rest' test goes at the end so that the first 'rest' event gets sent
	m_atRest = m_rotation[0] == 0 && m_rotation[1] == 0 && m_rotation[2] == 0 &&
		m_translation[0] == 0 && m_translation[1] == 0 && m_translation[2] == 0;

	return true;
	}