firefox support

This commit is contained in:
Peter Cottle 2013-01-08 10:40:53 -08:00
parent 003977911d
commit eed87168ed
7 changed files with 160 additions and 33 deletions

View file

@ -6499,7 +6499,7 @@ var Level = Sandbox.extend({
}, this), this.getAnimationTime() * 1.2); }, this), this.getAnimationTime() * 1.2);
}, },
initName: function(options) { initName: function() {
if (!this.level.name || !this.level.id) { if (!this.level.name || !this.level.id) {
this.level.name = 'Rebase Classic'; this.level.name = 'Rebase Classic';
console.warn('REALLY BAD FORM need ids and names'); console.warn('REALLY BAD FORM need ids and names');
@ -10130,7 +10130,7 @@ KeyboardListener.prototype.mute = function() {
}; };
KeyboardListener.prototype.keydown = function(e) { KeyboardListener.prototype.keydown = function(e) {
var which = e.which; var which = e.which || e.keyCode;
var key = mapKeycodeToKey(which); var key = mapKeycodeToKey(which);
if (key === undefined) { if (key === undefined) {
@ -14460,16 +14460,22 @@ var VisBranch = VisBase.extend({
getTextSize: function() { getTextSize: function() {
var getTextWidth = function(visBranch) { var getTextWidth = function(visBranch) {
var textNode = visBranch.get('text').node; var textNode = visBranch.get('text').node;
return (textNode === null) ? 1 : textNode.clientWidth; return (textNode === null) ? 0 : textNode.clientWidth;
};
var firefoxFix = function(obj) {
if (!obj.w) { obj.w = 75; }
if (!obj.h) { obj.h = 20; }
return obj;
}; };
var textNode = this.get('text').node; var textNode = this.get('text').node;
if (this.get('isHead')) { if (this.get('isHead')) {
// HEAD is a special case // HEAD is a special case
return { return firefoxFix({
w: textNode.clientWidth, w: textNode.clientWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
} }
var maxWidth = 0; var maxWidth = 0;
@ -14478,11 +14484,12 @@ var VisBranch = VisBase.extend({
branch.obj.get('visBranch') branch.obj.get('visBranch')
)); ));
}); });
console.log('getting text size', textNode, 'width', textNode.clientWidth);
return { return firefoxFix({
w: maxWidth, w: maxWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
}, },
getSingleRectSize: function() { getSingleRectSize: function() {
@ -16086,11 +16093,16 @@ var CommandPromptView = Backbone.View.extend({
}, },
onKeyDown: function(e) { onKeyDown: function(e) {
console.log('on keydown');
console.log(e);
var el = e.srcElement; var el = e.srcElement;
this.updatePrompt(el); this.updatePrompt(el);
}, },
onKeyUp: function(e) { onKeyUp: function(e) {
console.log('on key up');
console.log(e);
this.onKeyDown(e); this.onKeyDown(e);
// we need to capture some of these events. // we need to capture some of these events.
@ -16106,7 +16118,7 @@ var CommandPromptView = Backbone.View.extend({
}, this) }, this)
}; };
var key = keyboard.mapKeycodeToKey(e.which); var key = keyboard.mapKeycodeToKey(e.which || e.keyCode);
if (keyToFuncMap[key] !== undefined) { if (keyToFuncMap[key] !== undefined) {
e.preventDefault(); e.preventDefault();
keyToFuncMap[key](); keyToFuncMap[key]();
@ -16123,6 +16135,7 @@ var CommandPromptView = Backbone.View.extend({
}, },
updatePrompt: function(el) { updatePrompt: function(el) {
el = el || {}; // firefox
// i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this // i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this
// super annoying delay to every keystroke... I have tried everything // super annoying delay to every keystroke... I have tried everything
// to make this more performant. getting the srcElement from the event, // to make this more performant. getting the srcElement from the event,
@ -16130,16 +16143,22 @@ var CommandPromptView = Backbone.View.extend({
// there's a very annoying and sightly noticeable command delay. // there's a very annoying and sightly noticeable command delay.
// try.github.com also has this, so I'm assuming those engineers gave up as // try.github.com also has this, so I'm assuming those engineers gave up as
// well... // well...
var val = this.badHtmlEncode(el.value); var text = $('#commandTextField').val();
var val = this.badHtmlEncode(text);
this.commandSpan.innerHTML = val; this.commandSpan.innerHTML = val;
// now mutate the cursor... // now mutate the cursor...
this.cursorUpdate(el.value.length, el.selectionStart, el.selectionEnd); this.cursorUpdate(text.length, el.selectionStart, el.selectionEnd);
// and scroll down due to some weird bug // and scroll down due to some weird bug
Main.getEvents().trigger('commandScrollDown'); Main.getEvents().trigger('commandScrollDown');
}, },
cursorUpdate: function(commandLength, selectionStart, selectionEnd) { cursorUpdate: function(commandLength, selectionStart, selectionEnd) {
if (selectionStart === undefined || selectionEnd === undefined) {
selectionStart = 0;
selectionEnd = 1;
}
// 10px for monospaced font at "1" zoom // 10px for monospaced font at "1" zoom
var zoom = require('../util/zoomLevel').detectZoom(); var zoom = require('../util/zoomLevel').detectZoom();
var widthPerChar = 10 * zoom; var widthPerChar = 10 * zoom;
@ -16148,7 +16167,7 @@ var CommandPromptView = Backbone.View.extend({
var width = String(numCharsSelected * widthPerChar) + 'px'; var width = String(numCharsSelected * widthPerChar) + 'px';
// now for positioning // now for positioning
var numLeft = Math.max(commandLength - selectionStart, 0); var numLeft = (selectionStart !== undefined) ? Math.max(commandLength - selectionStart, 0) : 0;
var left = String(-numLeft * widthPerChar) + 'px'; var left = String(-numLeft * widthPerChar) + 'px';
// one reflow? :D // one reflow? :D
$(this.commandCursor).css({ $(this.commandCursor).css({
@ -18977,6 +18996,61 @@ exports.LevelArbiter = LevelArbiter;
}); });
require("/src/js/level/arbiter.js"); require("/src/js/level/arbiter.js");
require.define("/src/js/level/builder.js",function(require,module,exports,__dirname,__filename,process,global){var _ = require('underscore');
var Backbone = require('backbone');
var Q = require('q');
var util = require('../util');
var Main = require('../app');
var Visualization = require('../visuals/visualization').Visualization;
var ParseWaterfall = require('../level/parseWaterfall').ParseWaterfall;
var Level = require('../level').Level;
var Command = require('../models/commandModel').Command;
var GitShim = require('../git/gitShim').GitShim;
var MultiView = require('../views/multiView').MultiView;
var CanvasTerminalHolder = require('../views').CanvasTerminalHolder;
var ConfirmCancelTerminal = require('../views').ConfirmCancelTerminal;
var NextLevelConfirm = require('../views').NextLevelConfirm;
var LevelToolbar = require('../views').LevelToolbar;
var LevelBuilder = Level.extend({
initialize: function(options) {
options = options || {};
this.options = options;
this.level = {};
this.levelToolbar = new LevelToolbar({
name: 'Level Builder'
});
this.level.startDialog = {
};
// call our grandparent, not us
Level.__super__.initialize.apply(this, [options]);
},
takeControl: function() {
Main.getEventBaton().stealBaton('processLevelBuilderCommand', this.processLevelCommand, this);
LevelBuilder.__super__.takeControl.apply(this);
},
releaseControl: function() {
Main.getEventBaton().releaseBaton('processLevelBuilderCommand', this.processLevelCommand, this);
LevelBuilder.__super__.releaseControl.apply(this);
}
});
exports.LevelBuilder = LevelBuilder;
});
require("/src/js/level/builder.js");
require.define("/src/js/level/commands.js",function(require,module,exports,__dirname,__filename,process,global){var _ = require('underscore'); require.define("/src/js/level/commands.js",function(require,module,exports,__dirname,__filename,process,global){var _ = require('underscore');
var regexMap = { var regexMap = {
@ -19118,7 +19192,7 @@ var Level = Sandbox.extend({
}, this), this.getAnimationTime() * 1.2); }, this), this.getAnimationTime() * 1.2);
}, },
initName: function(options) { initName: function() {
if (!this.level.name || !this.level.id) { if (!this.level.name || !this.level.id) {
this.level.name = 'Rebase Classic'; this.level.name = 'Rebase Classic';
console.warn('REALLY BAD FORM need ids and names'); console.warn('REALLY BAD FORM need ids and names');
@ -20509,7 +20583,7 @@ KeyboardListener.prototype.mute = function() {
}; };
KeyboardListener.prototype.keydown = function(e) { KeyboardListener.prototype.keydown = function(e) {
var which = e.which; var which = e.which || e.keyCode;
var key = mapKeycodeToKey(which); var key = mapKeycodeToKey(which);
if (key === undefined) { if (key === undefined) {
@ -20678,11 +20752,16 @@ var CommandPromptView = Backbone.View.extend({
}, },
onKeyDown: function(e) { onKeyDown: function(e) {
console.log('on keydown');
console.log(e);
var el = e.srcElement; var el = e.srcElement;
this.updatePrompt(el); this.updatePrompt(el);
}, },
onKeyUp: function(e) { onKeyUp: function(e) {
console.log('on key up');
console.log(e);
this.onKeyDown(e); this.onKeyDown(e);
// we need to capture some of these events. // we need to capture some of these events.
@ -20698,7 +20777,7 @@ var CommandPromptView = Backbone.View.extend({
}, this) }, this)
}; };
var key = keyboard.mapKeycodeToKey(e.which); var key = keyboard.mapKeycodeToKey(e.which || e.keyCode);
if (keyToFuncMap[key] !== undefined) { if (keyToFuncMap[key] !== undefined) {
e.preventDefault(); e.preventDefault();
keyToFuncMap[key](); keyToFuncMap[key]();
@ -20715,6 +20794,7 @@ var CommandPromptView = Backbone.View.extend({
}, },
updatePrompt: function(el) { updatePrompt: function(el) {
el = el || {}; // firefox
// i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this // i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this
// super annoying delay to every keystroke... I have tried everything // super annoying delay to every keystroke... I have tried everything
// to make this more performant. getting the srcElement from the event, // to make this more performant. getting the srcElement from the event,
@ -20722,16 +20802,22 @@ var CommandPromptView = Backbone.View.extend({
// there's a very annoying and sightly noticeable command delay. // there's a very annoying and sightly noticeable command delay.
// try.github.com also has this, so I'm assuming those engineers gave up as // try.github.com also has this, so I'm assuming those engineers gave up as
// well... // well...
var val = this.badHtmlEncode(el.value); var text = $('#commandTextField').val();
var val = this.badHtmlEncode(text);
this.commandSpan.innerHTML = val; this.commandSpan.innerHTML = val;
// now mutate the cursor... // now mutate the cursor...
this.cursorUpdate(el.value.length, el.selectionStart, el.selectionEnd); this.cursorUpdate(text.length, el.selectionStart, el.selectionEnd);
// and scroll down due to some weird bug // and scroll down due to some weird bug
Main.getEvents().trigger('commandScrollDown'); Main.getEvents().trigger('commandScrollDown');
}, },
cursorUpdate: function(commandLength, selectionStart, selectionEnd) { cursorUpdate: function(commandLength, selectionStart, selectionEnd) {
if (selectionStart === undefined || selectionEnd === undefined) {
selectionStart = 0;
selectionEnd = 1;
}
// 10px for monospaced font at "1" zoom // 10px for monospaced font at "1" zoom
var zoom = require('../util/zoomLevel').detectZoom(); var zoom = require('../util/zoomLevel').detectZoom();
var widthPerChar = 10 * zoom; var widthPerChar = 10 * zoom;
@ -20740,7 +20826,7 @@ var CommandPromptView = Backbone.View.extend({
var width = String(numCharsSelected * widthPerChar) + 'px'; var width = String(numCharsSelected * widthPerChar) + 'px';
// now for positioning // now for positioning
var numLeft = Math.max(commandLength - selectionStart, 0); var numLeft = (selectionStart !== undefined) ? Math.max(commandLength - selectionStart, 0) : 0;
var left = String(-numLeft * widthPerChar) + 'px'; var left = String(-numLeft * widthPerChar) + 'px';
// one reflow? :D // one reflow? :D
$(this.commandCursor).css({ $(this.commandCursor).css({
@ -23785,16 +23871,22 @@ var VisBranch = VisBase.extend({
getTextSize: function() { getTextSize: function() {
var getTextWidth = function(visBranch) { var getTextWidth = function(visBranch) {
var textNode = visBranch.get('text').node; var textNode = visBranch.get('text').node;
return (textNode === null) ? 1 : textNode.clientWidth; return (textNode === null) ? 0 : textNode.clientWidth;
};
var firefoxFix = function(obj) {
if (!obj.w) { obj.w = 75; }
if (!obj.h) { obj.h = 20; }
return obj;
}; };
var textNode = this.get('text').node; var textNode = this.get('text').node;
if (this.get('isHead')) { if (this.get('isHead')) {
// HEAD is a special case // HEAD is a special case
return { return firefoxFix({
w: textNode.clientWidth, w: textNode.clientWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
} }
var maxWidth = 0; var maxWidth = 0;
@ -23803,11 +23895,12 @@ var VisBranch = VisBase.extend({
branch.obj.get('visBranch') branch.obj.get('visBranch')
)); ));
}); });
console.log('getting text size', textNode, 'width', textNode.clientWidth);
return { return firefoxFix({
w: maxWidth, w: maxWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
}, },
getSingleRectSize: function() { getSingleRectSize: function() {

View file

@ -45,7 +45,7 @@ var LevelBuilder = Level.extend({
Main.getEventBaton().releaseBaton('processLevelBuilderCommand', this.processLevelCommand, this); Main.getEventBaton().releaseBaton('processLevelBuilderCommand', this.processLevelCommand, this);
LevelBuilder.__super__.releaseControl.apply(this); LevelBuilder.__super__.releaseControl.apply(this);
}, }
}); });
exports.LevelBuilder = LevelBuilder; exports.LevelBuilder = LevelBuilder;

View file

@ -39,7 +39,7 @@ KeyboardListener.prototype.mute = function() {
}; };
KeyboardListener.prototype.keydown = function(e) { KeyboardListener.prototype.keydown = function(e) {
var which = e.which; var which = e.which || e.keyCode;
var key = mapKeycodeToKey(which); var key = mapKeycodeToKey(which);
if (key === undefined) { if (key === undefined) {

View file

@ -74,11 +74,16 @@ var CommandPromptView = Backbone.View.extend({
}, },
onKeyDown: function(e) { onKeyDown: function(e) {
console.log('on keydown');
console.log(e);
var el = e.srcElement; var el = e.srcElement;
this.updatePrompt(el); this.updatePrompt(el);
}, },
onKeyUp: function(e) { onKeyUp: function(e) {
console.log('on key up');
console.log(e);
this.onKeyDown(e); this.onKeyDown(e);
// we need to capture some of these events. // we need to capture some of these events.
@ -94,7 +99,7 @@ var CommandPromptView = Backbone.View.extend({
}, this) }, this)
}; };
var key = keyboard.mapKeycodeToKey(e.which); var key = keyboard.mapKeycodeToKey(e.which || e.keyCode);
if (keyToFuncMap[key] !== undefined) { if (keyToFuncMap[key] !== undefined) {
e.preventDefault(); e.preventDefault();
keyToFuncMap[key](); keyToFuncMap[key]();
@ -111,6 +116,7 @@ var CommandPromptView = Backbone.View.extend({
}, },
updatePrompt: function(el) { updatePrompt: function(el) {
el = el || {}; // firefox
// i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this // i WEEEPPPPPPpppppppppppp that this reflow takes so long. it adds this
// super annoying delay to every keystroke... I have tried everything // super annoying delay to every keystroke... I have tried everything
// to make this more performant. getting the srcElement from the event, // to make this more performant. getting the srcElement from the event,
@ -118,16 +124,22 @@ var CommandPromptView = Backbone.View.extend({
// there's a very annoying and sightly noticeable command delay. // there's a very annoying and sightly noticeable command delay.
// try.github.com also has this, so I'm assuming those engineers gave up as // try.github.com also has this, so I'm assuming those engineers gave up as
// well... // well...
var val = this.badHtmlEncode(el.value); var text = $('#commandTextField').val();
var val = this.badHtmlEncode(text);
this.commandSpan.innerHTML = val; this.commandSpan.innerHTML = val;
// now mutate the cursor... // now mutate the cursor...
this.cursorUpdate(el.value.length, el.selectionStart, el.selectionEnd); this.cursorUpdate(text.length, el.selectionStart, el.selectionEnd);
// and scroll down due to some weird bug // and scroll down due to some weird bug
Main.getEvents().trigger('commandScrollDown'); Main.getEvents().trigger('commandScrollDown');
}, },
cursorUpdate: function(commandLength, selectionStart, selectionEnd) { cursorUpdate: function(commandLength, selectionStart, selectionEnd) {
if (selectionStart === undefined || selectionEnd === undefined) {
selectionStart = 0;
selectionEnd = 1;
}
// 10px for monospaced font at "1" zoom // 10px for monospaced font at "1" zoom
var zoom = require('../util/zoomLevel').detectZoom(); var zoom = require('../util/zoomLevel').detectZoom();
var widthPerChar = 10 * zoom; var widthPerChar = 10 * zoom;
@ -136,7 +148,7 @@ var CommandPromptView = Backbone.View.extend({
var width = String(numCharsSelected * widthPerChar) + 'px'; var width = String(numCharsSelected * widthPerChar) + 'px';
// now for positioning // now for positioning
var numLeft = Math.max(commandLength - selectionStart, 0); var numLeft = (selectionStart !== undefined) ? Math.max(commandLength - selectionStart, 0) : 0;
var left = String(-numLeft * widthPerChar) + 'px'; var left = String(-numLeft * widthPerChar) + 'px';
// one reflow? :D // one reflow? :D
$(this.commandCursor).css({ $(this.commandCursor).css({

View file

@ -201,16 +201,22 @@ var VisBranch = VisBase.extend({
getTextSize: function() { getTextSize: function() {
var getTextWidth = function(visBranch) { var getTextWidth = function(visBranch) {
var textNode = visBranch.get('text').node; var textNode = visBranch.get('text').node;
return (textNode === null) ? 1 : textNode.clientWidth; return (textNode === null) ? 0 : textNode.clientWidth;
};
var firefoxFix = function(obj) {
if (!obj.w) { obj.w = 75; }
if (!obj.h) { obj.h = 20; }
return obj;
}; };
var textNode = this.get('text').node; var textNode = this.get('text').node;
if (this.get('isHead')) { if (this.get('isHead')) {
// HEAD is a special case // HEAD is a special case
return { return firefoxFix({
w: textNode.clientWidth, w: textNode.clientWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
} }
var maxWidth = 0; var maxWidth = 0;
@ -219,11 +225,12 @@ var VisBranch = VisBase.extend({
branch.obj.get('visBranch') branch.obj.get('visBranch')
)); ));
}); });
console.log('getting text size', textNode, 'width', textNode.clientWidth);
return { return firefoxFix({
w: maxWidth, w: maxWidth,
h: textNode.clientHeight h: textNode.clientHeight
}; });
}, },
getSingleRectSize: function() { getSingleRectSize: function() {

View file

@ -895,3 +895,17 @@ div.levelIcon.solved div.index div.indexNum {
background: #9bcbeb; background: #9bcbeb;
} }
/* Go Home Firefox, you're drunk */
@-moz-document url-prefix() {
body {
display: block;
width: 100%;
height: 100%;
}
#interfaceWrapper {
width: 100%;
height: 100%;
}
}

View file

@ -13,6 +13,7 @@ Cases to handle / things to edit
Small things to implement: Small things to implement:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[ ] esc on multiview quits absolutely
Minor Bugs to fix: Minor Bugs to fix:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~