This commit is contained in:
Devine Lu Linvega 2019-07-21 19:27:45 +09:00
parent bb6b4f15d8
commit 70fa2b420f
4 changed files with 9 additions and 11 deletions

View File

@ -31,22 +31,20 @@ function Commander (ronin) {
this.hide()
}
this._current_txt = ''
this.cache = ''
this.run = (txt = this._input.value) => {
if (txt.indexOf('$') > -1) { ronin.log('Present: $'); return }
this._current_txt = txt;
if ( ronin.always !== true ) {
this.cache = txt
if (ronin.always !== true) {
ronin.surface.maximize()
ronin.interpreter.run(this._current_txt)
ronin.interpreter.run(this.cache)
}
}
this.loop = () => {
ronin.surface.maximize()
ronin.interpreter.run(this._current_txt)
ronin.interpreter.run(this.cache)
ronin.always === true && requestAnimationFrame(() => this.loop())
}

View File

@ -350,7 +350,7 @@ function Library (ronin) {
return arg
}
this.log = (arg) => {
this.debug = (arg) => {
console.log(arg)
return arg
}

View File

@ -13,7 +13,7 @@ function Osc (ronin) {
})
udpPort.on('message', this.onMsg)
udpPort.open()
ronin.log('OSC','Started.')
ronin.log('OSC', 'Started.')
}
this.onMsg = (msg, timeTag, info) => {

View File

@ -1 +1 @@
(log (of (osc "/a") 0 "value"))
(debug (of (osc "/a") :0 :value))