Skip to content
Snippets Groups Projects
mods.js 52 KiB
Newer Older
  • Learn to ignore specific revisions
  • 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 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    //
    // mods.js
    //
    // Neil Gershenfeld
    // (c) Massachusetts Institute of Technology 2018
    //
    // This work may be reproduced, modified, distributed, performed, and
    // displayed for any purpose, but must acknowledge the mods
    // project. Copyright is retained and must be preserved. The work is
    // provided as is; no warranty is provided, and users accept all
    // liability.
    //
    // closure
    //
    (function(){
    //
    // globals
    //
    var mods = {}
    mods.ui = {source:null,
       progname:'',
       padding:7,
       bezier:100,
       canvas:250,
       rows:5,
       cols:20,
       link:'rgb(0,0,128)',
       link_highlight:'rgb(255,0,0)'
       }
    mods.globals = {}
    //
    // right click menu
    //
    document.addEventListener('contextmenu',function(evt){
       evt.preventDefault()
       if (mods.globals.menu != null) {
          document.body.removeChild(mods.globals.menu)
          mods.globals.menu = null
          }
       var div = document.createElement('div')
       make_menu(div)
       add_menu(div,'modules',modules)
       add_menu(div,'programs',programs)
       add_menu(div,'edit',edit)
       add_menu(div,'options',options)
       document.body.appendChild(div)
       function make_menu(div) {
          mods.globals.menu = div
          div.style.position = "absolute"
          div.style.top = evt.clientY+document.body.scrollTop
          div.style.left = evt.clientX+document.body.scrollLeft
          div.style.zIndex = 0
          div.style.cursor = 'default'
          div.style.backgroundColor = "rgb(220,255,255)"
          div.style.padding = 1.5*mods.ui.padding
          div.style.textAlign = 'left'
          div.style.border = '2px solid'
          div.style.borderRadius = '10px'
          }
       function add_menu(div,text,click) {
          var textdiv = document.createElement('div')
          textdiv.appendChild(document.createTextNode(text))
          textdiv.appendChild(document.createElement('br'))
          textdiv.addEventListener('mouseover',function(evt){
             evt.target.style.fontWeight = 'bold'})
          textdiv.addEventListener('mouseout',function(evt){
             evt.target.style.fontWeight = 'normal'})
          textdiv.addEventListener('mousedown',click)
          textdiv.addEventListener('touchend',click)
          div.appendChild(textdiv)
          }
       //
       // modules menu
       //
       function modules(evt) {
          evt.preventDefault()
          document.body.removeChild(evt.target.parentNode)
          var div = document.createElement('div')
          make_menu(div)
          //
          // open server module
          //
          add_menu(div,'open server module',function(evt){
             function module_label(label) {
                var div = document.createElement('div')
                var i = document.createElement('i')
                i.appendChild(document.createTextNode(label))
                div.appendChild(i)
                div.appendChild(document.createElement('br'))
                menu.appendChild(div)
                }
             function module_menu(label,module) {
                var div = document.createElement('div')
                div.appendChild(
                   document.createTextNode('\u00A0\u00A0\u00A0'+label))
                div.addEventListener('mouseover',function(evt){
                   evt.target.style.fontWeight = 'bold'})
                div.addEventListener('mouseout',function(evt){
                   evt.target.style.fontWeight = 'normal'})
                div.addEventListener('mousedown',function(evt){
                   document.body.removeChild(evt.target.parentNode)
                   mods.globals.menu = null
                   mod_message_handler(module,
                   evt.clientY+document.body.scrollTop,
                   evt.clientX+document.body.scrollLeft)})
                div.appendChild(document.createElement('br'))
                menu.appendChild(div)
                }
             document.body.removeChild(evt.target.parentNode)
             var menu = document.createElement('div')
             make_menu(menu)
             document.body.appendChild(menu)
             menu.style.width = mods.ui.canvas
             menu.style.height = mods.ui.canvas
             menu.style.overflow = 'auto'
             var req = new XMLHttpRequest()
             req.responseType = 'text'
             req.onreadystatechange = function() {
                if (req.readyState == XMLHttpRequest.DONE) {
                   var str = req.response
                   eval(str)
                   }
                }
             req.open('GET','modules/index.js'+'?rnd='+Math.random())
             req.send()
             })
          //
          // open local module
          //
          add_menu(div,'open local module',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             var file = document.getElementById('mod_input')
             file.value = null
             file.click()
             })
          //
          // open remote module
          //
          add_menu(div,'open remote module',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             set_prompt('remotes not yet implemented')
             })
          document.body.appendChild(div)
          }
       //
       // programs menu
       //
       function programs(evt) {
          evt.preventDefault()
          document.body.removeChild(evt.target.parentNode)
          var div = document.createElement('div')
          make_menu(div)
          //
          // open local program
          //
          add_menu(div,'open local program',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             var file = document.getElementById('prog_input')
             file.value = null
             file.click()
             })
          //
          // open server program
          //
          add_menu(div,'open server program',function(evt){
             function program_label(label) {
                var div = document.createElement('div')
                var i = document.createElement('i')
                i.appendChild(document.createTextNode(label))
                div.appendChild(i)
                div.appendChild(document.createElement('br'))
                menu.appendChild(div)
                }
             function program_menu(label,program) {
                var div = document.createElement('div')
                div.appendChild(
                   document.createTextNode('\u00A0\u00A0\u00A0'+label))
                div.addEventListener('mouseover',function(evt){
                   evt.target.style.fontWeight = 'bold'})
                div.addEventListener('mouseout',function(evt){
                   evt.target.style.fontWeight = 'normal'})
                div.addEventListener('mousedown',function(evt){
                   if (location.port == 80)
                      var uri = 'http://'+location.hostname
                         +'?program='+program
                   else
                      var uri = 'http://'+location.hostname+':'
                         +location.port+'?program='+program
                   set_prompt('<a href='+uri+'>program link</a>')
                   prog_message_handler(program)
                   document.body.removeChild(evt.target.parentNode)
                   mods.globals.menu = null
                   })
                div.appendChild(document.createElement('br'))
                menu.appendChild(div)
                }
             document.body.removeChild(evt.target.parentNode)
             var menu = document.createElement('div')
             make_menu(menu)
             document.body.appendChild(menu)
             menu.style.width = mods.ui.canvas
             menu.style.height = mods.ui.canvas
             menu.style.overflow = 'auto'
             var req = new XMLHttpRequest()
             req.responseType = 'text'
             req.onreadystatechange = function() {
                if (req.readyState == XMLHttpRequest.DONE) {
                   var str = req.response
                   eval(str)
                   }
                }
             req.open('GET','programs/index.js'+'?rnd='+Math.random())
             req.send()
             })
          //
          // open remote program
          //
          add_menu(div,'open remote program',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             set_prompt('remotes not yet implemented')
             })
          //
          // save local program
          //
          add_menu(div,'save local program',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             save_program()
             })
          //
          // save local page
          //
          add_menu(div,'save local page',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             save_page()
             })
          document.body.appendChild(div)
          }
       //
       // edit menu
       //
       function edit(evt) {
          evt.preventDefault()
          document.body.removeChild(evt.target.parentNode)
          mods.globals.menu = null
          set_prompt('editing not yet implemented')
          }
       //
       // options menu
       //
       function options(evt) {
          evt.preventDefault()
          document.body.removeChild(evt.target.parentNode)
          mods.globals.menu = null
          var div = document.createElement('div')
          make_menu(div)
          //
          // list files
          //
          add_menu(div,'list files',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             var win = window.open('files.html')
             })
          document.body.appendChild(div)
          //
          // save files
          //
          add_menu(div,'save files',function(evt){
             document.body.removeChild(evt.target.parentNode)
             mods.globals.menu = null
             var win = window.open('https://gitlab.cba.mit.edu/pub/mods')
             })
          document.body.appendChild(div)
          }
       })
    //
    // prompt
    //
    mods.ui.header = 50
    document.body.appendChild(document.createTextNode(' '))
    var span = document.createElement('span')
       span.setAttribute('id','logo')
       span.style.display = 'inline-block'
       span.style.verticalAlign = 'middle'
       span.style.width = 20
       span.style.height = 20
       span.style.padding = mods.ui.padding
       span.appendChild(logo(1))
       document.body.appendChild(span)
    document.body.appendChild(document.createTextNode(' '))
    var span = document.createElement('span')
       span.setAttribute('id','prompt')
       span.style.display = 'inline-block'
       span.style.verticalAlign = 'middle'
       var innerspan = document.createElement('span')
          span.appendChild(innerspan)
       document.body.appendChild(span)
    function logo(size) {
       var x = 0
       var y = 2.8*size/3.8
       var svgNS = "http://www.w3.org/2000/svg"
       var logo = document.createElementNS(svgNS,"svg")
       logo.setAttributeNS("http://www.w3.org/2000/xmlns/",
          "xmlns:xlink","http://www.w3.org/1999/xlink")
       logo.setAttributeNS(null,'viewBox',"0 0 "+size+" "+size)
       var new_rect = document.createElementNS(svgNS,"rect");
       new_rect.setAttribute("width",size/3.8)
       new_rect.setAttribute("height",size/3.8)
       new_rect.setAttribute("x",x)
       new_rect.setAttribute("y",y)
       new_rect.setAttribute("fill","blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS,"rect");
       new_rect.setAttribute("width",size/3.8)
       new_rect.setAttribute("height",size/3.8)
       new_rect.setAttribute("x",x+1.4*size/3.8)
       new_rect.setAttribute("y",y)
       new_rect.setAttribute("fill","blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS,"rect");
       new_rect.setAttribute("width",size/3.8)
       new_rect.setAttribute("height",size/3.8)
       new_rect.setAttribute("x",x+2.8*size/3.8)
       new_rect.setAttribute("y",y)
       new_rect.setAttribute("fill","blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS, "rect");
       new_rect.setAttribute("width",size/3.8)
       new_rect.setAttribute("height",size/3.8)
       new_rect.setAttribute("x",x)
       new_rect.setAttribute("y",y-1.4*size/3.8)
       new_rect.setAttribute("fill","blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS, "rect");
       new_rect.setAttribute("width", size / 3.8)
       new_rect.setAttribute("height", size / 3.8)
       new_rect.setAttribute("x", x + 2.8 * size / 3.8)
       new_rect.setAttribute("y", y - 1.4 * size / 3.8)
       new_rect.setAttribute("fill", "blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS, "rect");
       new_rect.setAttribute("width", size / 3.8)
       new_rect.setAttribute("height", size / 3.8)
       new_rect.setAttribute("x", x + 1.4 * size / 3.8)
       new_rect.setAttribute("y", y - 2.8 * size / 3.8)
       new_rect.setAttribute("fill", "blue")
       logo.appendChild(new_rect)
       var new_rect = document.createElementNS(svgNS, "rect");
       new_rect.setAttribute("width", size / 3.8)
       new_rect.setAttribute("height", size / 3.8)
       new_rect.setAttribute("x", x + 2.8 * size / 3.8)
       new_rect.setAttribute("y", y - 2.8 * size / 3.8)
       new_rect.setAttribute("fill", "blue")
       logo.appendChild(new_rect)
       var new_circ = document.createElementNS(svgNS, "circle");
       new_circ.setAttribute("r", size / (2 * 3.8))
       new_circ.setAttribute("cx", x + size / (2 * 3.8))
       new_circ.setAttribute("cy", y + size / (2 * 3.8) - 2.8 * size / 3.8)
       new_circ.setAttribute("fill", "red")
       logo.appendChild(new_circ)
       var new_circ = document.createElementNS(svgNS, "circle");
       new_circ.setAttribute("r", size / (2 * 3.8))
       new_circ.setAttribute("cx", x + size / (2 * 3.8) + 1.4 * size / 3.8)
       new_circ.setAttribute("cy", y + size / (2 * 3.8) - 1.4 * size / 3.8)
       new_circ.setAttribute("fill", "red")
       logo.appendChild(new_circ)
       return logo
       }
    set_prompt('right click/two finger/long press for menu')
    //
    // SVG canvas for drawing
    //
    var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg")
       svg.style.position = 'absolute'
       svg.style.backgroundColor = 'rgb(255,255,255)'
       svg.style.top = mods.ui.header
       svg.style.left = 0
       svg.style.zIndex = 0
       svg.style.overflow = 'visible'
       svg.setAttribute('id','svg')
       svg.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink")
       document.body.appendChild(svg)
    //
    // link container
    //
    var svg = document.getElementById('svg')
    var g = document.createElementNS('http://www.w3.org/2000/svg','g')
       g.setAttribute('id','links')
       svg.appendChild(g)
    //
    // file reading controls
    //
    var file = document.createElement('input')
       file.setAttribute('type','file')
       file.setAttribute('id','mod_input')
       file.style.position = 'absolute'
       file.style.left = 0
       file.style.top = 0
       file.style.width = 0
       file.style.height = 0
       file.style.opacity = 0
       file.addEventListener('change',function() {
          mod_read_handler()
          })
       document.body.appendChild(file)
    var file = document.createElement('input')
       file.setAttribute('type','file')
       file.setAttribute('id','prog_input')
       file.style.position = 'absolute'
       file.style.left = 0
       file.style.top = 0
       file.style.width = 0
       file.style.height = 0
       file.style.opacity = 0
       file.addEventListener('change',function() {
          prog_read_handler()
          })
       document.body.appendChild(file)
    //
    // module container
    //
    var div = document.createElement('div')
       div.setAttribute('id','modules')
       document.body.appendChild(div)
    //
    // check for program load query
    //
    if (location.search.length > 0) {
       var args = location.search.slice(1).split('&')
       for (var a in args) {
          var arg = args[a].split('=')
          if (arg[0] == 'program')
          prog_message_handler(arg[1])
          }
       }
    //
    // program routines
    //
    function prog_read_handler(event) {
       var file = document.getElementById('prog_input')
       var file_reader = new FileReader()
       file_reader.onload = prog_load_handler
       file_reader.readAsText(file.files[0])
       mods.ui.progname = file.files[0].name
       }
    function prog_message_handler(filename) {
       var req = new XMLHttpRequest()
       req.responseType = 'text'
       req.onreadystatechange = function() {
          if (req.readyState == XMLHttpRequest.DONE) {
             prog = JSON.parse(req.response)
             prog_load(prog)
             }
          }
       var index = filename.lastIndexOf('/')
       if (index != -1) {
          mods.ui.progname = filename.slice(index+1)
          }
       else
          mods.ui.progname = filename
       //
       // send request, with random query to prevent caching
       //
       req.open('GET',filename+'?rnd='+Math.random())
       req.send()
       }
    function prog_load_handler(event) {
       prog = JSON.parse(event.target.result)
       prog_load(prog)
       }
    function prog_load(prog) {
       //
       // load modules
       //
       for (var idnumber in prog.modules) {
          var module = prog.modules[idnumber]
          var str = module.definition
          eval('var args = '+str)
          args.definition = str
          args.id = idnumber
          args.top = module.top
          args.left = module.left
          add_module(args)
          }
       //
       // load links
       //
       for (var linkid in prog.links) {
          var str = prog.links[linkid]
          eval('var link = '+str)
          eval('var linksrc = '+link.source)
          eval('var linkdst = '+link.dest)
          var src = document.getElementById(
             JSON.stringify({id:linksrc.id,type:linksrc.type,name:linksrc.name}))
          var dst = document.getElementById(
             JSON.stringify({id:linkdst.id,type:linkdst.type,name:linkdst.name}))
          add_link(src,dst)
          }
       }
    function save_program() {
       set_prompt('program name? ')
       get_prompt(mods.ui.progname,function(filename){
          mods.ui.progname = filename
          var prog = {modules:{},links:[]}
          var modules = document.getElementById('modules')
          //
          // save modules
          //
          for (var c = 0; c < modules.childNodes.length; ++c) {
             var module = modules.childNodes[c]
             var idnumber = module.id
             prog.modules[idnumber] = {
                definition:module.dataset.definition,
                top:module.dataset.top,
                left:module.dataset.left,
                inputs:{},
                outputs:{}
                }
             }
          //
          // save links
          //
          var svg = document.getElementById('svg')
          var links = svg.getElementById('links')
             for (var l = 0; l < links.childNodes.length; ++l) {
                var link = links.childNodes[l]
                var linkid = link.id
                prog.links.push(linkid)
                }
          //
          // download
          //
          var text = JSON.stringify(prog)
          var a = document.createElement('a')
          a.setAttribute('href','data:text/plain;charset=utf-8,'+
             encodeURIComponent(text))
          a.setAttribute('download',filename)
          a.style.display = 'none'
          document.body.appendChild(a)
          a.click()
          document.body.removeChild(a)
          })
       }
    function save_page() {
       set_prompt('page name? ')
       get_prompt(mods.ui.progname+".html",function(filename){
          mods.ui.progname = filename
          var prog = {modules:{},links:[]}
          var modules = document.getElementById('modules')
          //
          // save modules
          //
          for (var c = 0; c < modules.childNodes.length; ++c) {
             var module = modules.childNodes[c]
             var idnumber = module.id
             prog.modules[idnumber] = {
                definition:module.dataset.definition,
                top:module.dataset.top,
                left:module.dataset.left,
                inputs:{},
                outputs:{}
                }
             }
          //
          // save links
          //
          var svg = document.getElementById('svg')
          var links = svg.getElementById('links')
             for (var l = 0; l < links.childNodes.length; ++l) {
                var link = links.childNodes[l]
                var linkid = link.id
                prog.links.push(linkid)
                }
          //
          // read mods.js
          //
          var req = new XMLHttpRequest()
          req.responseType = 'text'
          req.onreadystatechange = function() {
             if (req.readyState == XMLHttpRequest.DONE) {
                //
                // construct page
                //
                var str = req.response
                var text ="<html>\n"
                text += "<head><meta charset='utf-8'>\n"
                text += "<title>mods</title>\n"
                text += "</head>\n"
                text += "<body link='black' alink='black' vlink='black'>\n"
                text += "<"+"script"+">\n"
                text += str
                text += "var prog = JSON.parse(JSON.stringify("+JSON.stringify(prog)+"))\n"
                text += "window.mods_prog_load(prog)\n"
                text += "</"+"script"+">\n"
                text += "</body>\n"
                text += "</html>\n"
                //
                // download page
                //
                var a = document.createElement('a')
                a.setAttribute('href','data:text/plain;charset=utf-8,'+
                   encodeURIComponent(text))
                a.setAttribute('download',filename)
                a.style.display = 'none'
                document.body.appendChild(a)
                a.click()
                document.body.removeChild(a)
                }
             }
          //
          // send request, with random query to prevent caching
          //
          req.open('GET','js/mods.js'+'?rnd='+Math.random())
          req.send()
          })
       }
    //
    // add program load to window
    //
    window.mods_prog_load = function(prog) {
       prog_load(prog)
       }
    //
    // module routines
    //
    function mod_read_handler(event) {
       var file = document.getElementById('mod_input')
       var file_reader = new FileReader()
       file_reader.onload = mod_load_handler
       file_reader.readAsText(file.files[0])
       }
    function mod_message_handler(filename,top,left) {
       var req = new XMLHttpRequest()
       req.responseType = 'text'
       req.onreadystatechange = function() {
          if (req.readyState == XMLHttpRequest.DONE) {
             var str = req.response
             eval('var args = '+str)
             args.definition = str
             args.id = String(Math.random())
             args.top = top
             args.left = left
             add_module(args)
             }
          }
       //
       // send request, with random query to prevent caching
       //
       req.open('GET',filename+'?rnd='+Math.random())
       req.send()
       }
    function mod_load_handler(event) {
       str = event.target.result
       eval('var args = '+str)
       args.definition = str
       args.id = String(Math.random())
       args.top = 1.5*mods.ui.header
       args.left = 3*mods.ui.header
       var div = add_module(args)
       return(div)
       }
    function add_module(args) {
       var idnumber = args.id
       var modules = document.getElementById('modules')
       //
       // container
       //
       var container = document.createElement('div')
          container.setAttribute("id",idnumber)
          container.style.position = "absolute"
          container.style.top = args.top
          container.style.left = args.left
          container.dataset.top = args.top
          container.dataset.left = args.left
          container.dataset.name = args.name
          container.style.zIndex = 0
          container.style.width = window.innerWidth
          container.dataset.definition = args.definition
          modules.appendChild(container)
       //
       // name
       //
       var divname = document.createElement('div')
          divname.appendChild(document.createTextNode(args.name))
          divname.addEventListener('mouseover',name_over)
          divname.addEventListener('mouseout',name_out)
          divname.addEventListener('mousedown',name_mousedown)
          divname.addEventListener('touchstart',name_touchdown)
          divname.style.backgroundColor = "rgb(210,240,210)"
          divname.style.padding = 1.5*mods.ui.padding
          divname.style.position = "absolute"
          divname.style.cursor = 'default'
          divname.style.top = 0
          divname.style.left = 0
          divname.style.textAlign = 'center'
          divname.style.border = '2px solid'
          divname.style.borderRadius = '10px'
          container.appendChild(divname)
       //
       // controls
       //
       var divctrl = document.createElement('div')
          var editspan = document.createElement('span')
             editspan.innerHTML = 'edit'
             editspan.style.fontWeight = 'normal'
             editspan.addEventListener('mouseover',function(event){
                set_prompt('click to edit')
                editspan.style.fontWeight = 'bold'})
             editspan.addEventListener('mouseout',function(event){
                set_prompt('')
                editspan.style.fontWeight = 'normal'})
             editspan.addEventListener('mousedown',edit_module)
             divctrl.appendChild(editspan)
          var delspan = document.createElement('span')
             delspan.innerHTML = ' delete '
             delspan.addEventListener('mouseover',function(event){
                set_prompt('click to delete')
                delspan.style.fontWeight = 'bold'})
             delspan.addEventListener('mouseout',function(event){
                set_prompt('')
                delspan.style.fontWeight = 'normal'})
             delspan.addEventListener('mousedown',function(event){
                delete_module(event.target.parentNode.parentNode.id)})
             divctrl.appendChild(delspan)
          divctrl.style.backgroundColor = "rgb(240,220,220)"
          divctrl.style.padding = mods.ui.padding
          divctrl.style.position = "absolute"
          divctrl.style.cursor = 'default'
          divctrl.style.top = divname.clientHeight
          divctrl.style.left = 0
          divctrl.style.textAlign = 'center'
          divctrl.style.border = '2px solid'
          divctrl.style.borderRadius = '10px'
          container.appendChild(divctrl)
          divctrl.style.left = divname.clientWidth/2-divctrl.clientWidth/2
       //
       // interface
       //
       var divint = document.createElement('div')
          divint.style.backgroundColor = "rgb(240,240,240)"
          divint.style.padding = mods.ui.padding
          divint.style.position = "absolute"
          divint.style.top = divname.clientHeight+divctrl.clientHeight
          divint.style.textAlign = 'center'
          divint.style.border = '2px solid'
          divint.style.borderRadius = '10px'
          divint.setAttribute('id',JSON.stringify({id:idnumber,type:'interface'}))
          divint.dataset.id = idnumber
          divint.dataset.divNameSize = divname.clientWidth
          args.interface(divint)
          container.appendChild(divint)
          divint.style.left = divname.clientWidth/2-divint.clientWidth/2
       //
       // inputs
       //
       var divin = document.createElement('div')
          divin.setAttribute('id',JSON.stringify({id:idnumber,type:'inputs'}))
          var b = document.createElement('b')
             b.appendChild(document.createTextNode('inputs'))
             divin.appendChild(b)
          divin.style.backgroundColor = "rgb(240,240,210)"
          divin.style.padding = mods.ui.padding
          divin.style.paddingLeft = '2px'
          divin.style.position= "absolute"
          divin.style.top = divname.clientHeight+divctrl.clientHeight
          divin.style.textAlign = 'left'
          divin.style.border = '2px solid'
          divin.style.borderRadius = '10px'
          divin.setAttribute('id',JSON.stringify({id:idnumber,type:'inputs'}))
          divin.style.cursor = 'default'
          divin.addEventListener('mousedown',nothing)
          divin.addEventListener('touchstart',nothing)
          divin.addEventListener('mouseup',nothing)
          divin.addEventListener('touchend',nothing)
          for (var v in args.inputs) {
             var div = document.createElement('div')
             if (args.inputs[v].label != undefined)
                div.innerHTML += args.inputs[v].label
             else
                div.innerHTML += v
             if (args.inputs[v].type != '')
                div.innerHTML += ' ('+args.inputs[v].type+')'
             div.setAttribute('id',JSON.stringify({id:idnumber,type:'inputs',name:v}))
             div.addEventListener('mouseover',input_over)
             div.addEventListener('mouseout',input_out)
             div.addEventListener('mousedown',input_mousedown)
             div.addEventListener('touchstart',input_touchdown)
             div.dataset.links = JSON.stringify([])
             div.dataset.name = v
             divin.appendChild(div)
             var evtid = JSON.stringify(
                {id:idnumber,type:'input',name:v})
             window.addEventListener(evtid,args.inputs[v].event)
             }
          container.appendChild(divin)
          if ((Object.keys(args.inputs).length) == 0)
             divin.style.visibility = 'hidden'
          divin.style.left = divname.clientWidth/2
             -divint.clientWidth/2-divin.clientWidth
          for (var i = 1; i < divin.childNodes.length; ++i) {
             divin.childNodes[i].dataset.dx = divin.offsetLeft
                +divin.childNodes[i].offsetLeft
             divin.childNodes[i].dataset.dy = divin.offsetTop
                +divin.childNodes[i].offsetTop
                +divin.childNodes[i].offsetHeight/2
             }
       //
       // outputs
       //
       var divout = document.createElement('div')
          divout.setAttribute('id',JSON.stringify({id:idnumber,type:'outputs'}))
          var b = document.createElement('b')
             b.appendChild(document.createTextNode('outputs'))
          divout.appendChild(b)
          divout.style.backgroundColor = "rgb(240,240,210)"
          divout.style.padding = mods.ui.padding
          divout.style.paddingRight = '2px'
          divout.style.position = "absolute"
          divout.style.top = divname.clientHeight+divctrl.clientHeight
          divout.style.textAlign = 'right'
          divout.addEventListener('mousedown',nothing)
          divout.style.border = '2px solid'
          divout.style.borderRadius = '10px'
          divout.setAttribute('id',JSON.stringify({id:idnumber,type:'outputs'}))
          divout.style.cursor = 'default'
          divout.addEventListener('touchstart',nothing)
          divout.addEventListener('mouseup',nothing)
          divout.addEventListener('touchend',nothing)
          for (var v in args.outputs) {
             var div = document.createElement('div')
             if (args.outputs[v].label != undefined)
                div.innerHTML += args.outputs[v].label
             else
                div.innerHTML += v
             if (args.outputs[v].type != '')
                div.innerHTML += ' ('+args.outputs[v].type+')'
             div.setAttribute('id',JSON.stringify({id:idnumber,type:'outputs',name:v}))
             div.addEventListener('mouseover',output_over)
             div.addEventListener('mouseout',output_out)
             div.addEventListener('mousedown',output_mousedown)
             div.addEventListener('touchstart',output_touchdown)
             div.dataset.links = JSON.stringify([])
             div.dataset.name = v
             divout.appendChild(div)
             var evtid = JSON.stringify(
                {id:idnumber,type:'output',name:v})
             window.addEventListener(evtid,args.outputs[v].event)
             }
          container.appendChild(divout)
          if ((Object.keys(args.outputs).length) == 0)
             divout.style.visibility = 'hidden'
          divout.style.left = divname.clientWidth/2
             +divint.clientWidth/2
          for (var i = 1; i < divout.childNodes.length; ++i) {
             divout.childNodes[i].dataset.dx = divout.offsetLeft
                +divout.childNodes[i].offsetLeft
                +divout.childNodes[i].offsetWidth
             divout.childNodes[i].dataset.dy = divout.offsetTop
                +divout.childNodes[i].offsetTop
                +divout.childNodes[i].offsetHeight/2
             }
          //
          // initialization
          //
          args.init()
          //
          // resize to contents
          //
          container.style.width = divint.clientWidth+divin.clientWidth+divout.clientWidth
          mods.fit(divint)
          //
          // return container
          //
          return(container)
       }
    function delete_module(idnumber) {
       //
       // delete links
       //
       var ins = document.getElementById(
          JSON.stringify({id:idnumber,type:'inputs'}))
       var outs = document.getElementById(
          JSON.stringify({id:idnumber,type:'outputs'}))
       for (var i = 1; i < ins.childNodes.length; ++i) {
          var links = JSON.parse(ins.childNodes[i].dataset.links)
          for (var l in links)
             delete_link(links[l])
          }
       for (var i = 1; i < outs.childNodes.length; ++i) {
          var links = JSON.parse(outs.childNodes[i].dataset.links)
          for (var l in links)
             delete_link(links[l])
          }
       //
       // delete container
       //
       var modules = document.getElementById('modules')
       var container = document.getElementById(idnumber)
       modules.removeChild(container)
       //
       // clear prompt
       //
       set_prompt('')
       }
    function edit_module(evt) {
       var mod = evt.target.parentNode.parentNode
       var idnumber = mod.id
       var def = mod.dataset.definition
       var top = mod.dataset.top
       var left = mod.dataset.left
       var name = mod.dataset.name
       var fontsize = 100
       var win = window.open('')
       var file = document.createElement('input')
          file.setAttribute('type','file')
          file.setAttribute('id','edit_module_file')
          file.style.position = 'absolute'
          file.style.left = 0
          file.style.top = 0
          file.style.width = 0
          file.style.height = 0
          file.style.opacity = 0
          file.addEventListener('change',function() {
             edit_module_read_handler()
             })
          win.document.body.appendChild(file)
       function edit_module_read_handler() {
          var file = win.document.getElementById('edit_module_file')
          var file_reader = new FileReader()
          file_reader.onload = edit_module_load_handler
          file_reader.readAsText(file.files[0])
          }
       function edit_module_load_handler(event) {
          str = event.target.result
          var text = win.document.getElementById('edit_module_text')
          text.value = str
          update_module(idnumber)
          win.close()
          }
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('update and close'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){
             update_module(idnumber)
             win.close()
             })
          win.document.body.appendChild(btn)
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('update'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){
             update_module(idnumber)
             })
          win.document.body.appendChild(btn)
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('close'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){
             win.close()
             })
          win.document.body.appendChild(btn)
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('save'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){
             var a = document.createElement('a')
             a.setAttribute('href','data:text/plain;charset=utf-8,'+
                encodeURIComponent(text.value))
             a.setAttribute('download',name)
             a.style.display = 'none'
             document.body.appendChild(a)
             a.click()
             document.body.removeChild(a)
             })
          win.document.body.appendChild(btn)
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('reload'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){
             var file = win.document.getElementById('edit_module_file')
             file.value = null
             file.click()
             })
          win.document.body.appendChild(btn)
       var btn = document.createElement('button')
          btn.appendChild(document.createTextNode('increase font'))
          btn.style.padding = mods.ui.padding
          btn.style.margin = 1
          btn.addEventListener('click',function(){