-
Notifications
You must be signed in to change notification settings - Fork 1
/
mouse.js
289 lines (246 loc) · 6.91 KB
/
mouse.js
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
define([
'dojo/sniff',
'./lang',
'./dom',
'./on',
'./log',
'dx-timer/timer'
], function(has, lang, dom, on, logger, timer){
// summary:
// This module is used for tracking mouse movements.
// description:
// You can use this instead of dojo/dnd. Dojo/dnd assumes you have a
// node you wish to drag around, and this is not always the case.
// Think of a window scroll bar - you don't actually drag the handle
// because you can click on the bar and the handle goes to that spot.
// returns: Object
// Returns a handle with pause, resume and remove methods.
// event:Object
// This module will pass back the original DOMEvent with a mouse object
// attached. The mouse object contains:
// x/y: Float
// The mouse pos on the node
// cx/cy: Float
// The mouse pos on the node, constrained to not
// be less than zero or greater than the width/height
// px/py: Float
// Percentage of x/y position across width/height of node
// org: Object
// Contains an x/y, which is always the original position of
// the mousedown point.
// dist: Object
// Contains an x/y, which is the current distance from the
// *original* point.
// last: Object
// Contains an x/y, which is the current distance from the
// *last* point.
// type:String
// The type of event: zoom, down, up, move, dblclick, or click.
// scale:Float
// The amount of scale indicated by the touch gesture
// zoom:Boolean (or bit)
// A falsey switch of whether the touch event indicates a scale or
// zooming motion; from two fingers moving away from each other.
// move:Boolean (or bit)
// A falsey switch of whether the cursor moved
// down:Boolean (or bit)
// Whether or not the mouse is down.
// up:Boolean (or bit)
// Whether or not the mouse is up.
// click:Boolean (or bit)
// If this is a current click event (would only get fired once)
// dblclick:Boolean (or bit)
// A falsey switch of whether a double-click was detected.
// usage:
// | mouse.track(this.node, this, 'onMouse');
// | onMouse: function(evt){
// | console.log(evt.mouse.dist.x);
// | }
//
// TODO:
// handle scroll
// track "drag" and "move" seperately.
//
var log = logger('MSE', 0);
var
CLICKTIME = 400,
DBLCLICKTIME = 400,
trackers = {},
org = {},
last = {},
Tracker = function(node, callback){
this.uid = lang.uid('mouse');
this.node = node;
dom.selectable(node, false);
this.begTime = 0;
this.callback = callback;
this.tmr = timer(true);
this.init();
on(this.node, 'scroll', function(evt){
log('scroll', evt.scroll.x, evt.scroll.y)
});
this.handle = {
pause: function(){
this.dHandle.pause();
},
resume: function(){
this.dHandle.resume();
},
remove: function(){
this.dHandle.remove();
}
};
};
Tracker.prototype = {
onEvent: function(evt, type){
//log('type', type);
var pos = this.getPos(evt, type);
on.stopEvent(evt);
var x = pos.x - this.box.x;
var y = pos.y - this.box.y;
if(type == 'down'){
org = { x:x, y:y };
last = { x:x, y:y };
}
var py = lang.clamp(y/this.box.h, 0, 1);
var px = lang.clamp(x/this.box.w, 0, 1);
var cx = this.box.w * px;
var cy = this.box.h * py;
evt.mouse = {
// x/y: the mouse pos on the node
x:x,
y:y,
// cx/cy: the mouse pos on the node, constrained to not
// be less than zero or greater than the width/height
cx: cx,
cy: cy,
// org: the original x/y that occurred on mousedown
org:{
x: org.x,
y: org.y
},
// dist: the distance from the original point
dist:{
x: x - org.x,
y: y - org.y
},
// last: distance from the last point
last:{
x: x - last.x,
y: y - last.y
},
// px/py: percentage of x/y position across width/height of node
px: px,
py: py,
scale:(type == 'zoom') ? evt.scale : 1,
move: type=='move',
down: type=='down',
up: type=='up',
click: type=='click',
zoom: type=='zoom',
type: type,
dblclick:type=='dblclick'
};
if(type == 'move') last = { x:x, y:y };
this.callback(evt);
},
onStart: function(evt){
log('start', evt);
var ping = this.tmr.ping();
//log('beg ping:', ping);
if(ping > 0 && ping < DBLCLICKTIME){
this.onEvent(evt, 'dblclick');
this.tmr.ping(true);
}else if(ping > DBLCLICKTIME){
this.tmr.ping(true);
}
this.started = 1;
this.moved = 0;
this.mHandle.resume();
this.box = dom.pos(this.node);
log('start', evt);
this.onEvent(evt, 'down');
},
onMove: function(evt){
on.stopEvent(evt);
log('move', evt);
this.moved = 1;
this.onEvent(evt, 'move');
},
onEnd: function(evt){
if(!this.started) return; // iphone sends cancel without click
this.started = 0;
log('end', evt);
this.mHandle.pause();
this.onEvent(evt, 'up');
var ping = this.tmr.ping();
//log('end ping:', ping);
if(!this.moved && ping < CLICKTIME){
this.onEvent(evt, 'click');
}
},
onGestureStart: function(evt){},
onGestureEnd: function(evt){},
onGesture: function(evt){
this.onEvent(evt, 'zoom');
}
};
if(has('touch')){
//
// Mobile
//
Tracker.prototype.init = function(){
// tie this with onStart
on(document.body, 'touchstart', function(evt){
//on.stopEvent(evt);
});
this.dHandle = on.multi(this.node, {
"touchstart":"onStart",
"gesturechange":"onGesture",
"gesturestart":"onGestureStart",
"gestureend":"onGestureEnd"
}, this);
this.mHandle = on.multi(document, {
"touchend":"onEnd",
"touchcancel":"onEnd",
"touchmove":"onMove"
}, this);
this.mHandle.pause();
this.getPos = function(evt, type){
// on touchend, there are no targetTouches
if (type=='zoom' || evt.targetTouches.length < 1) return last;
return {
x:evt.targetTouches[0].clientX,
y:evt.targetTouches[0].clientY
};
}
};
}else{
//
// Browser
//
Tracker.prototype.init = function(){
this.dHandle = on(this.node, 'mousedown', this, 'onStart', this.uid);
this.mHandle = on.multi(document, {
'mousemove':'onMove',
'mouseup':'onEnd'
}, this, this.uid);
this.mHandle.pause();
this.getPos = function(evt){
return {
x:evt.clientX,
y:evt.clientY
};
};
};
}
var mouse = {
track: function(node, ctx, scope){
var callback = lang.bind(ctx, scope);
var uid = lang.uid('mouse');
trackers[uid] = new Tracker(node, callback);
return trackers[uid].handle;
}
};
return mouse;
});