improved REPL performance
This commit is contained in:
parent
9698cafefd
commit
9579bf7215
com
|
@ -94,35 +94,13 @@ ISOTerminal.addEventListener('init', function(){
|
|||
this.send(this.prompt)
|
||||
}, 100 )
|
||||
},
|
||||
keyHandler: function(ch){
|
||||
let erase = false
|
||||
// if( ch == '\x7F' ){
|
||||
// ch = "\b \b" // why does write() not just support \x7F ?
|
||||
// erase = true
|
||||
// }
|
||||
keyHandler: function(ch){
|
||||
this.send(ch)
|
||||
const reset = () => {
|
||||
this.console = ""
|
||||
setTimeout( () => {
|
||||
if( this.boot.menu.selected ) this.send(this.prompt)
|
||||
},100)
|
||||
}
|
||||
if( (ch == "\n" || ch == "\r") ){
|
||||
try{
|
||||
this.send("\n\r")
|
||||
if( this.console ) eval(this.console)
|
||||
reset()
|
||||
}catch(e){
|
||||
reset()
|
||||
throw e // re throw
|
||||
}
|
||||
}else{
|
||||
if( erase ){
|
||||
this.console = this.console.split('').slice(0,-1).join('')
|
||||
}else{
|
||||
this.console += ch
|
||||
}
|
||||
}
|
||||
},
|
||||
cmdHandler: function(cmd){
|
||||
this.send("\n\r")
|
||||
eval(cmd)
|
||||
setTimeout( () => this.send(this.prompt) ,10) // because worker vs terminal
|
||||
}
|
||||
}
|
||||
)
|
||||
|
|
|
@ -78,15 +78,18 @@ ISOTerminal.prototype.TermInit = function(){
|
|||
erase = true
|
||||
}
|
||||
if( this.boot.menu.selected ){
|
||||
this.boot.menu.selected.keyHandler.call(this,ch)
|
||||
if( isEnter ){
|
||||
this.boot.menu.selected.cmdHandler.call(this,this.lastCmd)
|
||||
if( this.boot.menu.selected.cmdHandler ){
|
||||
this.boot.menu.selected.cmdHandler.call(this,this.lastCmd)
|
||||
}
|
||||
this.lastCmd = ""
|
||||
}
|
||||
else this.boot.menu.selected.keyHandler.call(this,ch)
|
||||
}else if( isEnter ){
|
||||
let menuitem = this.boot.menu.find( (m) => m.key == this.lastChar )
|
||||
if( menuitem ){
|
||||
this.boot.menu.selected = menuitem
|
||||
this.lastCmd = ""
|
||||
menuitem.init.call(this, () => {
|
||||
this.term.write("\n\r")
|
||||
this.bootMenu()
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
|
||||
;
|
||||
(function (three) {
|
||||
'use strict';
|
||||
|
||||
|
@ -676,4 +678,5 @@
|
|||
});
|
||||
|
||||
})(THREE);
|
||||
//# sourceMappingURL=aframe-html.js.map
|
||||
|
||||
|
||||
|
|
|
@ -116,9 +116,11 @@ AFRAME.registerComponent('window', {
|
|||
})
|
||||
|
||||
AFRAME.utils.positionObjectNextToNeighbor = function positionObjectNextToNeighbor(object, lastNeighbor = null, margin ){
|
||||
if( lastNeighbor == null || object == null) return
|
||||
// *FIXME* this could be more sophisticated :)
|
||||
object.position.x = lastNeighbor.position.x + margin
|
||||
object.position.y = lastNeighbor.position.y - margin
|
||||
object.position.z = lastNeighbor.position.z + margin
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue