gpm: refactor to fit style.
This commit is contained in:
parent
fae4acceef
commit
87a3d2f288
125
lib/gpmclient.js
125
lib/gpmclient.js
|
@ -5,24 +5,29 @@ var util = require('util')
|
|||
|
||||
var GPM_USE_MAGIC = false;
|
||||
|
||||
var GPM_MOVE=1, GPM_DRAG=2, GPM_DOWN=4, GPM_UP=8;
|
||||
var GPM_DOUBLE=32,GPM_MFLAG=128;
|
||||
var GPM_MOVE = 1
|
||||
, GPM_DRAG = 2
|
||||
, GPM_DOWN = 4
|
||||
, GPM_UP = 8;
|
||||
|
||||
var GPM_REQ_NOPASTE=3, GPM_HARD=256;
|
||||
var GPM_DOUBLE = 32
|
||||
, GPM_MFLAG = 128;
|
||||
|
||||
var GPM_REQ_NOPASTE = 3
|
||||
, GPM_HARD = 256;
|
||||
|
||||
var GPM_MAGIC = 0x47706D4C;
|
||||
var GPM_SOCKET="/dev/gpmctl";
|
||||
var GPM_SOCKET = '/dev/gpmctl';
|
||||
|
||||
|
||||
/*
|
||||
typedef struct Gpm_Connect {
|
||||
unsigned short eventMask, defaultMask;
|
||||
unsigned short minMod, maxMod;
|
||||
int pid;
|
||||
int vc;
|
||||
} Gpm_Connect;
|
||||
*/
|
||||
function send_config(sock, Gpm_Connect, cb) {
|
||||
// typedef struct Gpm_Connect {
|
||||
// unsigned short eventMask, defaultMask;
|
||||
// unsigned short minMod, maxMod;
|
||||
// int pid;
|
||||
// int vc;
|
||||
// } Gpm_Connect;
|
||||
|
||||
function send_config(socket, Gpm_Connect, callback) {
|
||||
if (GPM_USE_MAGIC) {
|
||||
var buffer = new Buffer(20);
|
||||
buffer.writeUInt32LE(GPM_MAGIC, 0);
|
||||
|
@ -41,29 +46,28 @@ function send_config(sock, Gpm_Connect, cb) {
|
|||
buffer.writeInt16LE(Gpm_Connect.pid, 8);
|
||||
buffer.writeInt16LE(Gpm_Connect.vc, 12);
|
||||
}
|
||||
sock.write(buffer, function () {
|
||||
if (cb) cb();
|
||||
socket.write(buffer, function() {
|
||||
if (callback) callback();
|
||||
});
|
||||
}
|
||||
|
||||
/*
|
||||
typedef struct Gpm_Event {
|
||||
unsigned char buttons, modifiers; // try to be a multiple of 4
|
||||
unsigned short vc;
|
||||
short dx, dy, x, y; // displacement x,y for this event, and absolute x,y
|
||||
enum Gpm_Etype type;
|
||||
// clicks e.g. double click are determined by time-based processing
|
||||
int clicks;
|
||||
enum Gpm_Margin margin;
|
||||
// wdx/y: displacement of wheels in this event. Absolute values are not
|
||||
// required, because wheel movement is typically used for scrolling
|
||||
// or selecting fields, not for cursor positioning. The application
|
||||
// can determine when the end of file or form is reached, and not
|
||||
// go any further.
|
||||
// A single mouse will use wdy, "vertical scroll" wheel.
|
||||
short wdx, wdy;
|
||||
} Gpm_Event;
|
||||
*/
|
||||
// typedef struct Gpm_Event {
|
||||
// unsigned char buttons, modifiers; // try to be a multiple of 4
|
||||
// unsigned short vc;
|
||||
// short dx, dy, x, y; // displacement x,y for this event, and absolute x,y
|
||||
// enum Gpm_Etype type;
|
||||
// // clicks e.g. double click are determined by time-based processing
|
||||
// int clicks;
|
||||
// enum Gpm_Margin margin;
|
||||
// // wdx/y: displacement of wheels in this event. Absolute values are not
|
||||
// // required, because wheel movement is typically used for scrolling
|
||||
// // or selecting fields, not for cursor positioning. The application
|
||||
// // can determine when the end of file or form is reached, and not
|
||||
// // go any further.
|
||||
// // A single mouse will use wdy, "vertical scroll" wheel.
|
||||
// short wdx, wdy;
|
||||
// } Gpm_Event;
|
||||
|
||||
function parseEvent(raw) {
|
||||
var evnt = {};
|
||||
evnt.buttons = raw[0];
|
||||
|
@ -106,8 +110,9 @@ function GpmClient(options) {
|
|||
|
||||
if (tty) {
|
||||
fs.stat(GPM_SOCKET, function(err, stat) {
|
||||
if (err || !stat.isSocket())
|
||||
if (err || !stat.isSocket()) {
|
||||
return;
|
||||
}
|
||||
|
||||
var conf = {
|
||||
eventMask: 0xffff,
|
||||
|
@ -133,61 +138,73 @@ function GpmClient(options) {
|
|||
var evnt = parseEvent(packet);
|
||||
switch (evnt.type & 15) {
|
||||
case GPM_MOVE:
|
||||
if (evnt.dx || evnt.dy) self.emit('move', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
if (evnt.wdx || evnt.wdy) self.emit('mousewheel', evnt.buttons, evnt.modifiers, evnt.x, evnt.y, evnt.wdx, evnt.wdy)
|
||||
if (evnt.dx || evnt.dy) {
|
||||
self.emit('move', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
}
|
||||
if (evnt.wdx || evnt.wdy) {
|
||||
self.emit('mousewheel',
|
||||
evnt.buttons, evnt.modifiers,
|
||||
evnt.x, evnt.y, evnt.wdx, evnt.wdy);
|
||||
}
|
||||
break;
|
||||
case GPM_DRAG:
|
||||
if (evnt.dx || evnt.dy) self.emit('drag', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
if (evnt.wdx || evnt.wdy) self.emit('mousewheel', evnt.buttons, evnt.modifiers, evnt.x, evnt.y, evnt.wdx, evnt.wdy)
|
||||
if (evnt.dx || evnt.dy) {
|
||||
self.emit('drag', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
}
|
||||
if (evnt.wdx || evnt.wdy) {
|
||||
self.emit('mousewheel',
|
||||
evnt.buttons, evnt.modifiers,
|
||||
evnt.x, evnt.y, evnt.wdx, evnt.wdy);
|
||||
}
|
||||
break;
|
||||
case GPM_DOWN:
|
||||
self.emit('btndown', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
self.emit('btndown', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
if (evnt.type & GPM_DOUBLE) {
|
||||
self.emit('dblclick', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
self.emit('dblclick', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
}
|
||||
break;
|
||||
case GPM_UP:
|
||||
self.emit('btnup', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
self.emit('btnup', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
if (!(evnt.type & GPM_MFLAG)) {
|
||||
self.emit('click', evnt.buttons, evnt.modifiers, evnt.x, evnt.y)
|
||||
self.emit('click', evnt.buttons, evnt.modifiers, evnt.x, evnt.y);
|
||||
}
|
||||
break;
|
||||
}
|
||||
})
|
||||
});
|
||||
gpm.on('error', function(err) {
|
||||
console.log('GPM ERROR', err);
|
||||
// console.log('GPM ERROR', err);
|
||||
self.stop();
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
GpmClient.prototype=new EventEmitter();
|
||||
GpmClient.prototype.__proto__ = EventEmitter.prototype;
|
||||
|
||||
GpmClient.prototype.stop = function() {
|
||||
if (this.gpm) this.gpm.end();
|
||||
delete this.gpm;
|
||||
if (this.gpm) {
|
||||
this.gpm.end();
|
||||
}
|
||||
delete this.gpm;
|
||||
};
|
||||
|
||||
GpmClient.prototype.ButtonName = function(btn) {
|
||||
if (btn & 4) return 'left';
|
||||
if (btn & 2) return 'middle';
|
||||
if (btn & 1) return 'right';
|
||||
return ''
|
||||
}
|
||||
return '';
|
||||
};
|
||||
|
||||
GpmClient.prototype.hasShiftKey = function(mod) {
|
||||
return (mod & 1) ? true : false;
|
||||
}
|
||||
};
|
||||
|
||||
GpmClient.prototype.hasCtrlKey = function(mod) {
|
||||
return (mod & 4) ? true : false;
|
||||
}
|
||||
};
|
||||
|
||||
GpmClient.prototype.hasMetaKey = function(mod) {
|
||||
return (mod & 8) ? true : false;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
module.exports = GpmClient;
|
||||
|
|
|
@ -635,76 +635,100 @@ Program.prototype._bindMouse = function(s, buf) {
|
|||
|
||||
/* gpm support for linux vc */
|
||||
Program.prototype.enableGpm = function() {
|
||||
var gpmclient=require('./gpmclient')
|
||||
this.gpm=gpmclient();
|
||||
var self = this;
|
||||
var gpmclient = require('./gpmclient')
|
||||
|
||||
this.gpm = gpmclient();
|
||||
|
||||
this.gpm.on('btndown', function(btn, modifier, x, y) {
|
||||
x--, y--;
|
||||
|
||||
var key = {
|
||||
name: 'mouse', type: 'GPM',
|
||||
name: 'mouse',
|
||||
type: 'GPM',
|
||||
action: 'mousedown',
|
||||
button: self.gpm.ButtonName(btn),
|
||||
raw: [btn,modifier, x, y],
|
||||
x: x, y: y,
|
||||
x: x,
|
||||
y: y,
|
||||
shift: self.gpm.hasShiftKey(modifier),
|
||||
meta: self.gpm.hasMetaKey(modifier),
|
||||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
this.gpm.on('btnup', function(btn, modifier, x, y) {
|
||||
x--, y--;
|
||||
|
||||
var key = {
|
||||
name: 'mouse', type: 'GPM',
|
||||
name: 'mouse',
|
||||
type: 'GPM',
|
||||
action: 'mouseup',
|
||||
button: self.gpm.ButtonName(btn),
|
||||
raw: [btn,modifier, x, y],
|
||||
x: x, y: y,
|
||||
x: x,
|
||||
y: y,
|
||||
shift: self.gpm.hasShiftKey(modifier),
|
||||
meta: self.gpm.hasMetaKey(modifier),
|
||||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
this.gpm.on('move', function(btn, modifier, x, y) {
|
||||
x--, y--;
|
||||
|
||||
var key = {
|
||||
name: 'mouse', type: 'GPM',
|
||||
name: 'mouse',
|
||||
type: 'GPM',
|
||||
action: 'mousemove',
|
||||
button: self.gpm.ButtonName(btn),
|
||||
raw: [btn,modifier, x, y],
|
||||
x: x, y: y,
|
||||
x: x,
|
||||
y: y,
|
||||
shift: self.gpm.hasShiftKey(modifier),
|
||||
meta: self.gpm.hasMetaKey(modifier),
|
||||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
this.gpm.on('drag', function(btn, modifier, x, y) {
|
||||
x--, y--;
|
||||
|
||||
var key = {
|
||||
name: 'mouse', type: 'GPM',
|
||||
name: 'mouse',
|
||||
type: 'GPM',
|
||||
action: 'mousemove',
|
||||
button: self.gpm.ButtonName(btn),
|
||||
raw: [btn,modifier, x, y],
|
||||
x: x, y: y,
|
||||
x: x,
|
||||
y: y,
|
||||
shift: self.gpm.hasShiftKey(modifier),
|
||||
meta: self.gpm.hasMetaKey(modifier),
|
||||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
};
|
||||
|
||||
self.emit('keypress', null, key);
|
||||
self.emit('mouse', key);
|
||||
});
|
||||
|
||||
this.gpm.on('mousewheel', function(btn, modifier, x, y, dx, dy) {
|
||||
var key = {
|
||||
name: 'mouse', type: 'GPM',
|
||||
name: 'mouse',
|
||||
type: 'GPM',
|
||||
action: dy > 0 ? 'wheelup':'wheeldown',
|
||||
button: self.gpm.ButtonName(btn),
|
||||
raw: [btn,modifier, x, y, dx, dy],
|
||||
x: x, y: y,
|
||||
x: x,
|
||||
y: y,
|
||||
shift: self.gpm.hasShiftKey(modifier),
|
||||
meta: self.gpm.hasMetaKey(modifier),
|
||||
ctrl: self.gpm.hasCtrlKey(modifier)
|
||||
|
@ -722,7 +746,6 @@ Program.prototype.disableGpm = function() {
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
// All possible responses from the terminal
|
||||
Program.prototype.bindResponse = function() {
|
||||
if (this._boundResponse) return;
|
||||
|
@ -2751,36 +2774,42 @@ Program.prototype.normalBuffer = function() {
|
|||
};
|
||||
|
||||
Program.prototype.enableMouse = function() {
|
||||
console.log(process.env.BLESSED_FORCE_MODES);
|
||||
if (process.env.BLESSED_FORCE_MODES) {
|
||||
var modes = process.env.BLESSED_FORCE_MODES.split(',');
|
||||
var options = {};
|
||||
for (var n = 0; n < modes.length; ++n) {
|
||||
var mds=modes[n].split('=');
|
||||
var v=mds[1]=='0' ? false : true;
|
||||
switch(mds[0].toUpperCase()) {
|
||||
var pair = modes[n].split('=');
|
||||
var v = pair[1] !== '0';
|
||||
switch (pair[0].toUpperCase()) {
|
||||
case 'SGRMOUSE':
|
||||
options.sgrMouse=v; break;
|
||||
options.sgrMouse = v;
|
||||
break;
|
||||
case 'UTFMOUSE':
|
||||
options.utfMouse=v; break;
|
||||
options.utfMouse = v;
|
||||
break;
|
||||
case 'VT200MOUSE':
|
||||
options.vt200Mouse=v; break;
|
||||
options.vt200Mouse = v;
|
||||
break;
|
||||
case 'URXVTMOUSE':
|
||||
options.urxvtMouse=true; break;
|
||||
options.urxvtMouse = v;
|
||||
break;
|
||||
case 'X10MOUSE':
|
||||
options.x10Mouse=true; break;
|
||||
options.x10Mouse = v;
|
||||
break;
|
||||
case 'GPMMOUSE':
|
||||
this.enableGpm();
|
||||
break;
|
||||
case 'CELLMOTION':
|
||||
options.cellMotion=v; break;
|
||||
options.cellMotion = v;
|
||||
break;
|
||||
case 'ALLMOTION':
|
||||
options.allMotion=v; break;
|
||||
options.allMotion = v;
|
||||
break;
|
||||
case 'SENDFOCUS':
|
||||
options.sendFocus=v; break;
|
||||
options.sendFocus = v;
|
||||
break;
|
||||
}
|
||||
}
|
||||
console.log(options);
|
||||
return this.setMouse(options, true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue