class DataViewer constructor: (data) -> @target = data @el = ($ "").attr("class", "viewer")[0] @offset = 5 @getBound() @prepare() @render() canvasPoint: (v) -> return new paper.Point(v[0] / @target.resolution + @base.x, - v[1] / @target.resolution + @base.y) getBound: () -> peak_tl = { x:0, y:0} peak_rb = { x:0, y:0} start = null for v in @target.data x = v[0] / @target.resolution y = v[1] / @target.resolution peak_tl.x = x if x < peak_tl.x peak_tl.y = y if y < peak_tl.y peak_rb.x = x if x > peak_rb.x peak_rb.y = y if y > peak_rb.y @bound = [ peak_tl, peak_rb ] @base = {x: 0 - @bound[0].x+ @offset, y: @bound[1].y + @offset} @width = peak_rb.x - peak_tl.x + 2*@offset @height = peak_rb.y - peak_tl.y + 2*@offset prepare: () -> ctx = @el.getContext "2d" ctx.translate(@base.x, @base.y) ctx.canvas.width = @width ctx.canvas.height = @height paper.setup @el # draw the base # x axis path = new paper.Path() path.strokeColor = '#BBBBBB' start = @canvasPoint [@bound[0].x, 0] end = @canvasPoint [@bound[1].x, 0] path.moveTo(start) path.lineTo(end) # y axis path = new paper.Path() path.strokeColor = '#BBBBBB' start = @canvasPoint [0, @bound[0].y] end = @canvasPoint [0, @bound[1].y] path.moveTo(start) path.lineTo(end) render:() -> # sub class responsibility class PointCloudViewer extends DataViewer constructor: (data) -> super data # point clound render render: () -> path = new paper.Path() path.strokeColor = 'black' start = null for v in @target.data point = @canvasPoint v if not start start = point path.moveTo(start) else path.lineTo point paper.view.draw() class LuaPlayground extends this.OS.GUI.BaseApplication constructor: ( args ) -> super "LuaPlayground", args main: () -> me = @ @datarea = @find "editorea" @output = @find "output" @.editor = ace.edit @datarea @.editor.setOptions { enableBasicAutocompletion: true, enableLiveAutocompletion: true, fontSize: "10pt" } @editor.getSession().setUseWrapMode true @editor.session.setMode "ace/mode/lua" @editor.setTheme "ace/theme/monokai" @on "vboxchange", () -> me.editor.resize() (@find "log-clear").set "onbtclick", (e) -> me.log "clean" @socket = null @bindKey "CTRL-R", () -> me.run() menu: () -> me = @ menu = [{ text: "__(Code)", child: [ { text: "__(Run)", dataid: "#{@name}-Run", shortcut: "C-R" } ], onmenuselect: (e) -> me.run() }] menu log: (t, m) -> return $(@output).empty() if t is "clean" p = ($ "

").attr("class", t.toLowerCase())[0] $(p).html "#{t}: #{m.__()}" ($ @output).append p ($ @output).scrollTop @output.scrollHeight run: () -> me = @ value = @editor.getValue().trim() return unless value and value isnt "" proto = if window.location.protocol is "https:" then "wss://" else "ws://" @socket = new WebSocket proto + @_api.HOST + "/system/apigateway?ws=1" @socket.onopen = () -> #send data to server me.socket.send( JSON.stringify { code: value } ) @socket.onmessage = (e) -> return unless e.data try obj = JSON.parse e.data me.log "INFO", e.data unless me.view obj catch err me.log "INFO", e.data console.log err @socket.onclose = () -> me.socket = null console.log "socket closed" view: (obj) -> return false unless obj and obj.type and @[obj.type] el = @[obj.type](obj).el p = ($ "

").attr("class", "info")[0] $(p).append el ($ @output).append p ($ @output).scrollTop @output.scrollHeight return true pc: (data) -> return new PointCloudViewer(data) cleanup: (e)-> @socket.close() if @socket LuaPlayground.dependencies = ["ace/ace"] this.OS.register "LuaPlayground", LuaPlayground