gtk/gdk/broadway/broadway.js

664 lines
17 KiB
JavaScript
Raw Normal View History

/* Helper functions for debugging */
var logDiv = null;
function log(str) {
if (!logDiv) {
logDiv = document.createElement('div');
document.body.appendChild(logDiv);
logDiv.style["position"] = "absolute";
logDiv.style["right"] = "0px";
}
logDiv.appendChild(document.createTextNode(str));
logDiv.appendChild(document.createElement('br'));
}
var base64Values = [
255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,255,
255,255,255,255,255,255,255,255,255,255,255, 62,255,255,255, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61,255,255,255, 0,255,255,
255, 0, 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,255,255,255,255,255,
255, 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,255,255,255,255,255
2010-11-16 21:56:59 +00:00
]
function base64_8(str, index) {
var v =
(base64Values[str.charCodeAt(index)]) +
(base64Values[str.charCodeAt(index+1)] << 6);
return v;
2010-11-16 21:56:59 +00:00
}
function base64_16(str, index) {
var v =
(base64Values[str.charCodeAt(index)]) +
(base64Values[str.charCodeAt(index+1)] << 6) +
(base64Values[str.charCodeAt(index+2)] << 12);
return v;
2010-11-16 21:56:59 +00:00
}
function base64_16s(str, index) {
var v = base64_16(str, index);
if (v > 32767)
return v - 65536;
else
return v;
2010-11-16 21:56:59 +00:00
}
function base64_24(str, index) {
var v =
(base64Values[str.charCodeAt(index)]) +
(base64Values[str.charCodeAt(index+1)] << 6) +
(base64Values[str.charCodeAt(index+2)] << 12) +
(base64Values[str.charCodeAt(index+3)] << 18);
return v;
2010-11-16 21:56:59 +00:00
}
function base64_32(str, index) {
var v =
(base64Values[str.charCodeAt(index)]) +
(base64Values[str.charCodeAt(index+1)] << 6) +
(base64Values[str.charCodeAt(index+2)] << 12) +
(base64Values[str.charCodeAt(index+3)] << 18) +
(base64Values[str.charCodeAt(index+4)] << 24) +
(base64Values[str.charCodeAt(index+5)] << 30);
return v;
2010-11-16 21:56:59 +00:00
}
function createXHR()
{
try { return new XMLHttpRequest(); } catch(e) {}
try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {}
try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {}
try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
2010-11-16 21:56:59 +00:00
return null;
2010-11-16 21:56:59 +00:00
}
2011-03-14 10:46:43 +00:00
var grab = new Object();
grab.window = null;
grab.ownerEvents = false;
2011-03-14 10:46:43 +00:00
grab.time = 0;
grab.implicit = false;
var lastSerial = 0;
var lastX = 0;
var lastY = 0;
var lastState;
var lastTimeStamp = 0;
var realWindowWithMouse = 0;
var windowWithMouse = 0;
2010-11-16 21:56:59 +00:00
var surfaces = {};
var outstandingCommands = new Array();
var inputSocket = null;
2010-11-16 21:56:59 +00:00
function initContext(canvas, x, y, id)
2010-11-16 21:56:59 +00:00
{
canvas.surfaceId = id;
canvas.style["position"] = "absolute";
canvas.style["left"] = x + "px";
canvas.style["top"] = y + "px";
canvas.style["display"] = "none";
var context = canvas.getContext("2d");
context.globalCompositeOperation = "source-over";
document.body.appendChild(canvas);
context.drawQueue = [];
2011-04-05 10:02:46 +00:00
context.transientParent = 0;
return context;
2010-11-16 21:56:59 +00:00
}
2011-03-14 10:46:43 +00:00
var GDK_CROSSING_NORMAL = 0;
var GDK_CROSSING_GRAB = 1;
var GDK_CROSSING_UNGRAB = 2;
2011-03-14 11:09:19 +00:00
// GdkModifierType
var GDK_SHIFT_MASK = 1 << 0;
var GDK_LOCK_MASK = 1 << 1;
var GDK_CONTROL_MASK = 1 << 2;
var GDK_MOD1_MASK = 1 << 3;
var GDK_MOD2_MASK = 1 << 4;
var GDK_MOD3_MASK = 1 << 5;
var GDK_MOD4_MASK = 1 << 6;
var GDK_MOD5_MASK = 1 << 7;
var GDK_BUTTON1_MASK = 1 << 8;
var GDK_BUTTON2_MASK = 1 << 9;
var GDK_BUTTON3_MASK = 1 << 10;
var GDK_BUTTON4_MASK = 1 << 11;
var GDK_BUTTON5_MASK = 1 << 12;
var GDK_SUPER_MASK = 1 << 26;
var GDK_HYPER_MASK = 1 << 27;
var GDK_META_MASK = 1 << 28;
var GDK_RELEASE_MASK = 1 << 30;
function getButtonMask (button) {
if (button == 1)
return GDK_BUTTON1_MASK;
if (button == 2)
return GDK_BUTTON2_MASK;
if (button == 3)
return GDK_BUTTON3_MASK;
if (button == 4)
return GDK_BUTTON4_MASK;
if (button == 5)
return GDK_BUTTON5_MASK;
return 0;
}
function flushSurface(surface)
{
var commands = surface.drawQueue;
surface.queue = [];
var i = 0;
for (i = 0; i < commands.length; i++) {
var cmd = commands[i];
var context = surfaces[cmd.id];
switch (cmd.op) {
/* put image data surface */
case 'i':
context.globalCompositeOperation = "source-over";
context.drawImage(cmd.img, cmd.x, cmd.y);
break;
/* copy rects */
case 'b':
context.save();
context.beginPath();
var minx;
var miny;
var maxx;
var maxy;
for (var j = 0; j < cmd.rects.length; j++) {
var rect = cmd.rects[j];
context.rect(rect.x, rect.y, rect.w, rect.h);
if (j == 0) {
minx = rect.x;
miny = rect.y;
maxx = rect.x + rect.w;
maxy = rect.y + rect.h;
} else {
if (rect.x < minx)
minx = rect.x;
if (rect.y < miny)
miny = rect.y;
if (rect.x + rect.w > maxx)
maxx = rect.x + rect.w;
if (rect.y + rect.h > maxy)
maxy = rect.y + rect.h;
}
}
context.clip();
context.globalCompositeOperation = "copy";
context.drawImage(context.canvas,
minx - cmd.dx, miny - cmd.dy, maxx - minx, maxy - miny,
minx, miny, maxx - minx, maxy - miny);
context.restore();
break;
default:
alert("Unknown drawing op " + cmd.op);
}
}
}
function handleCommands(cmdObj)
2010-11-16 21:56:59 +00:00
{
var cmd = cmdObj.data;
var i = cmdObj.pos;
2010-11-23 11:52:10 +00:00
while (i < cmd.length) {
var command = cmd[i++];
lastSerial = base64_32(cmd, i);
i = i + 6;
switch (command) {
case 's': // create new surface
var id = base64_16(cmd, i);
i = i + 3;
var x = base64_16(cmd, i);
i = i + 3;
var y = base64_16(cmd, i);
i = i + 3;
var w = base64_16(cmd, i);
i = i + 3;
var h = base64_16(cmd, i);
i = i + 3;
var surface = document.createElement("canvas");
surface.width = w;
surface.height = h;
surfaces[id] = initContext(surface, x, y, id);
break;
2010-11-16 21:56:59 +00:00
case 'S': // Show a surface
var id = base64_16(cmd, i);
i = i + 3;
surfaces[id].canvas.style["display"] = "inline";
break;
2010-11-16 21:56:59 +00:00
case 'H': // Hide a surface
var id = base64_16(cmd, i);
i = i + 3;
surfaces[id].canvas.style["display"] = "none";
break;
2011-04-05 10:02:46 +00:00
case 'p': // Set transient parent
var id = base64_16(cmd, i);
i = i + 3;
var parentId = base64_16(cmd, i);
i = i + 3;
surfaces[id].transientParent = parentId;
case 'd': // Delete surface
var id = base64_16(cmd, i);
i = i + 3;
var canvas = surfaces[id].canvas;
delete surfaces[id];
canvas.parentNode.removeChild(canvas);
2010-11-16 21:56:59 +00:00
break;
2010-11-16 21:56:59 +00:00
case 'm': // Move a surface
var id = base64_16(cmd, i);
i = i + 3;
var x = base64_16(cmd, i);
i = i + 3;
var y = base64_16(cmd, i);
i = i + 3;
surfaces[id].canvas.style["left"] = x + "px";
surfaces[id].canvas.style["top"] = y + "px";
break;
2010-11-16 21:56:59 +00:00
case 'r': // Resize a surface
var id = base64_16(cmd, i);
i = i + 3;
var w = base64_16(cmd, i);
i = i + 3;
var h = base64_16(cmd, i);
i = i + 3;
var surface = surfaces[id];
2010-11-16 21:56:59 +00:00
/* Flush any outstanding draw ops before changing size */
flushSurface(surface);
/* Canvas resize clears the data, so we need to save it first */
var tmpCanvas = document.createElement("canvas");
tmpCanvas.width = surface.canvas.width;
tmpCanvas.height = surface.canvas.height;
var tmpContext = tmpCanvas.getContext("2d");
tmpContext.globalCompositeOperation = "copy";
tmpContext.drawImage(surface.canvas, 0, 0, tmpCanvas.width, tmpCanvas.height);
surface.canvas.width = w;
surface.canvas.height = h;
surface.globalCompositeOperation = "copy";
surface.drawImage(tmpCanvas, 0, 0, tmpCanvas.width, tmpCanvas.height);
2011-03-14 10:46:43 +00:00
break;
case 'i': // Put image data surface
var q = new Object();
q.op = 'i';
q.id = base64_16(cmd, i);
i = i + 3;
q.x = base64_16(cmd, i);
i = i + 3;
q.y = base64_16(cmd, i);
i = i + 3;
var size = base64_32(cmd, i);
i = i + 6;
var url = cmd.slice(i, i + size);
i = i + size;
q.img = new Image();
q.img.src = url;
surfaces[q.id].drawQueue.push(q);
if (!q.img.complete) {
cmdObj.pos = i;
q.img.onload = function() { handleOutstanding(); };
return false;
2011-03-14 10:46:43 +00:00
}
break;
2011-03-14 10:46:43 +00:00
case 'b': // Copy rects
var q = new Object();
q.op = 'b';
q.id = base64_16(cmd, i);
i = i + 3;
var nrects = base64_16(cmd, i);
i = i + 3;
q.rects = [];
for (var r = 0; r < nrects; r++) {
var rect = new Object();
rect.x = base64_16(cmd, i);
i = i + 3;
rect.y = base64_16(cmd, i);
i = i + 3;
rect.w = base64_16(cmd, i);
i = i + 3;
rect.h = base64_16(cmd, i);
i = i + 3;
q.rects.push (rect);
}
2011-03-14 10:46:43 +00:00
q.dx = base64_16s(cmd, i);
i = i + 3;
q.dy = base64_16s(cmd, i);
i = i + 3;
surfaces[q.id].drawQueue.push(q);
break;
2011-03-14 10:46:43 +00:00
case 'f': // Flush surface
var id = base64_16(cmd, i);
i = i + 3;
2011-03-14 10:46:43 +00:00
flushSurface(surfaces[id]);
break;
2011-03-14 10:46:43 +00:00
case 'g': // Grab
var id = base64_16(cmd, i);
i = i + 3;
var ownerEvents = cmd[i++] == '1';
doGrab(id, ownerEvents, time, false);
sendInput ("g", []);
break;
case 'u': // Ungrab
var time = base64_32(cmd, i);
i = i + 6;
sendInput ("u", []);
if (grab.window != null) {
if (grab.time == 0 || time == 0 ||
grab.time < time)
grab.window = null;
}
break;
default:
alert("Unknown op " + command);
}
2010-11-16 21:56:59 +00:00
}
return true;
2010-11-16 21:56:59 +00:00
}
function handleOutstanding()
{
while (outstandingCommands.length > 0) {
var cmd = outstandingCommands.shift();
if (!handleCommands(cmd)) {
outstandingCommands.unshift(cmd);
return;
}
2010-11-16 21:56:59 +00:00
}
}
function handleLoad(event)
{
var cmdObj = {};
cmdObj.data = event.target.responseText;
cmdObj.pos = 0;
outstandingCommands.push(cmdObj);
if (outstandingCommands.length == 1) {
handleOutstanding();
}
2010-11-16 21:56:59 +00:00
}
function getSurfaceId(ev) {
var id = ev.target.surfaceId;
if (id != undefined)
return id;
return 0;
}
function sendInput(cmd, args)
2010-11-20 21:25:54 +00:00
{
if (inputSocket != null) {
inputSocket.send(cmd + ([lastSerial, lastTimeStamp].concat(args)).join(","));
}
2010-11-19 19:21:20 +00:00
}
function getDocumentCoordinates(element)
{
var res = new Object();
res.x = element.offsetLeft;
res.y = element.offsetTop;
var offsetParent = element.offsetParent;
while (offsetParent != null) {
res.x += offsetParent.offsetLeft;
res.y += offsetParent.offsetTop;
offsetParent = offsetParent.offsetParent;
}
return res;
}
function getPositionsFromAbsCoord(absX, absY, relativeId) {
var res = Object();
res.rootX = absX;
res.rootY = absY;
res.winX = absX;
res.winY = absY;
if (relativeId != 0) {
var pos = getDocumentCoordinates(surfaces[relativeId].canvas);
res.winX = res.winX - pos.x;
res.winY = res.winY - pos.y;
}
return res;
}
function getPositionsFromEvent(ev, relativeId) {
var res = getPositionsFromAbsCoord(ev.pageX, ev.pageY, relativeId);
lastX = res.rootX;
lastY = res.rootY;
return res;
}
2011-03-14 10:46:43 +00:00
function getEffectiveEventTarget (id) {
if (grab.window != null) {
if (!grab.ownerEvents)
2011-03-14 10:46:43 +00:00
return grab.window;
if (id == 0)
return grab.window;
}
return id;
}
function updateForEvent(ev) {
lastTimeStamp = ev.timeStamp;
}
function onMouseMove (ev) {
updateForEvent(ev);
var id = getSurfaceId(ev);
2011-03-14 10:46:43 +00:00
id = getEffectiveEventTarget (id);
var pos = getPositionsFromEvent(ev, id);
sendInput ("m", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState]);
}
function onMouseOver (ev) {
updateForEvent(ev);
var id = getSurfaceId(ev);
realWindowWithMouse = id;
2011-03-14 10:46:43 +00:00
id = getEffectiveEventTarget (id);
var pos = getPositionsFromEvent(ev, id);
windowWithMouse = id;
if (windowWithMouse != 0) {
sendInput ("e", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_NORMAL]);
}
}
function onMouseOut (ev) {
updateForEvent(ev);
var id = getSurfaceId(ev);
2011-03-14 10:46:43 +00:00
var origId = id;
id = getEffectiveEventTarget (id);
var pos = getPositionsFromEvent(ev, id);
if (id != 0) {
sendInput ("l", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_NORMAL]);
}
realWindowWithMouse = 0;
windowWithMouse = 0;
2010-11-20 21:25:54 +00:00
}
function doGrab(id, ownerEvents, time, implicit) {
2011-03-14 10:46:43 +00:00
var pos;
if (windowWithMouse != id) {
if (windowWithMouse != 0) {
pos = getPositionsFromAbsCoord(lastX, lastY, windowWithMouse);
sendInput ("l", [realWindowWithMouse, windowWithMouse, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_GRAB]);
2011-03-14 10:46:43 +00:00
}
pos = getPositionsFromAbsCoord(lastX, lastY, id);
sendInput ("e", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_GRAB]);
windowWithMouse = id;
2011-03-14 10:46:43 +00:00
}
grab.window = id;
grab.ownerEvents = ownerEvents;
2011-03-14 10:46:43 +00:00
grab.time = time;
grab.implicit = implicit;
}
2011-03-14 11:02:18 +00:00
function doUngrab(time) {
2011-03-14 10:46:43 +00:00
var pos;
if (realWindowWithMouse != windowWithMouse) {
if (windowWithMouse != 0) {
pos = getPositionsFromAbsCoord(lastX, lastY, windowWithMouse);
sendInput ("l", [realWindowWithMouse, windowWithMouse, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_UNGRAB]);
2011-03-14 10:46:43 +00:00
}
if (realWindowWithMouse != 0) {
pos = getPositionsFromAbsCoord(lastX, lastY, realWindowWithMouse);
sendInput ("e", [realWindowWithMouse, realWindowWithMouse, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, GDK_CROSSING_UNGRAB]);
2011-03-14 10:46:43 +00:00
}
windowWithMouse = realWindowWithMouse;
2011-03-14 10:46:43 +00:00
}
grab.window = null;
}
function onMouseDown (ev) {
updateForEvent(ev);
var id = getSurfaceId(ev);
2011-03-14 10:46:43 +00:00
id = getEffectiveEventTarget (id);
var pos = getPositionsFromEvent(ev, id);
2011-03-14 10:46:43 +00:00
if (grab.window != null)
doGrab (id, false, ev.timeStamp, true);
2011-03-14 11:09:19 +00:00
var button = ev.button + 1;
lastState = lastState | getButtonMask (button);
sendInput ("b", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, button]);
2010-11-19 19:21:20 +00:00
}
function onMouseUp (ev) {
updateForEvent(ev);
var id = getSurfaceId(ev);
2011-03-14 10:46:43 +00:00
id = getEffectiveEventTarget (id);
var pos = getPositionsFromEvent(ev, id);
2011-03-14 11:09:19 +00:00
var button = ev.button + 1;
lastState = lastState & ~getButtonMask (button);
sendInput ("B", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, button]);
2011-03-14 10:46:43 +00:00
if (grab.window != null && grab.implicit)
doUngrab(ev.timeStamp);
2010-11-19 19:21:20 +00:00
}
var lastKeyDown = 0;
function onKeyDown (ev) {
updateForEvent(ev);
var keyCode = ev.keyCode;
if (keyCode != lastKeyDown) {
sendInput ("k", [keyCode]);
lastKeyDown = keyCode;
}
}
function onKeyUp (ev) {
updateForEvent(ev);
var keyCode = ev.keyCode;
sendInput ("K", [keyCode]);
lastKeyDown = 0;
}
function cancelEvent(ev)
2010-11-25 20:02:21 +00:00
{
ev = ev ? ev : window.event;
if (ev.stopPropagation)
ev.stopPropagation();
if (ev.preventDefault)
ev.preventDefault();
ev.cancelBubble = true;
ev.cancel = true;
ev.returnValue = false;
return false;
2010-11-25 20:02:21 +00:00
}
function onMouseWheel(ev)
2010-11-25 20:02:21 +00:00
{
updateForEvent(ev);
ev = ev ? ev : window.event;
var id = getSurfaceId(ev);
var pos = getPositionsFromEvent(ev, id);
var offset = ev.detail ? ev.detail : ev.wheelDelta;
var dir = 0;
if (offset > 0)
dir = 1;
sendInput ("s", [realWindowWithMouse, id, pos.rootX, pos.rootY, pos.winX, pos.winY, lastState, dir]);
2010-11-25 20:02:21 +00:00
return cancelEvent(ev);
2010-11-25 20:02:21 +00:00
}
function connect()
2010-11-16 21:56:59 +00:00
{
var xhr = createXHR();
if (xhr) {
if (typeof xhr.multipart == 'undefined') {
alert("Sorry, this example only works in browsers that support multipart.");
return;
}
2010-11-16 21:56:59 +00:00
xhr.multipart = true;
xhr.open("GET", "/output", true);
xhr.onload = handleLoad;
xhr.send(null);
}
2010-11-25 20:02:21 +00:00
if ("WebSocket" in window) {
var loc = window.location.toString().replace("http:", "ws:");
loc = loc.substr(0, loc.lastIndexOf('/')) + "/input";
var ws = new WebSocket(loc, "broadway");
ws.onopen = function() {
inputSocket = ws;
};
ws.onclose = function() {
inputSocket = null;
};
} else {
alert("WebSocket not supported, input will not work!");
}
document.oncontextmenu = function () { return false; };
document.onmousemove = onMouseMove;
document.onmouseover = onMouseOver;
document.onmouseout = onMouseOut;
document.onmousedown = onMouseDown;
document.onmouseup = onMouseUp;
document.onkeydown = onKeyDown;
document.onkeyup = onKeyUp;
if (document.addEventListener) {
document.addEventListener('DOMMouseScroll', onMouseWheel, false);
document.addEventListener('mousewheel', onMouseWheel, false);
} else if (document.attachEvent) {
element.attachEvent("onmousewheel", onMouseWheel);
}
2010-11-16 21:56:59 +00:00
}