summaryrefslogtreecommitdiffstats
path: root/htdocs/AudioBinding.js
blob: a1267b1c1adad42b6ba0049f8b55481f698519e2 (plain)
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

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highli
    var afb = new AFB("api", "mysecret");
    var ws;
    var evtidx=0;

    function getParameterByName(name, url) {
        if (!url) {
          url = window.location.href;
        }
        name = name.replace(/[\[\]]/g, "\\$&");
        var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
            results = regex.exec(url);
        if (!results) return null;
        if (!results[2]) return '';
        return decodeURIComponent(results[2].replace(/\+/g, " "));
    }
    
    // default soundcard is hw:0
    var devid=getParameterByName("devid");
    if (!devid) devid="hw:0";
    
    var sndname=getParameterByName("sndname");
    if (!sndname) sndname="PCH";
    
    function init() {
            ws = new afb.ws(onopen, onabort);
    }

    function onopen() {
            document.getElementById("main").style.visibility = "visible";
            document.getElementById("connected").innerHTML = "Binder WS Active";
            document.getElementById("connected").style.background  = "lightgreen";
            ws.onevent("*", gotevent);
    }
    
    function onabort() {
            document.getElementById("main").style.visibility = "hidden";
            document.getElementById("connected").innerHTML = "Connected Closed";
            document.getElementById("connected").style.background  = "red";

    }
    
    function replyok(obj) {
            console.log("replyok:" + JSON.stringify(obj));
            document.getElementById("output").innerHTML = "OK: "+JSON.stringify(obj);
    }
    
    function replyerr(obj) {
            console.log("replyerr:" + JSON.stringify(obj));
            document.getElementById("output").innerHTML = "ERROR: "+JSON.stringify(obj);
    }
    
    function gotevent(obj) {
            console.log("gotevent:" + JSON.stringify(obj));
            document.getElementById("outevt").innerHTML = (evtidx++) +": "+JSON.stringify(obj);
    }
    
    function send(message) {
            var api = document.getElementById("api").value;
            var verb = document.getElementById("verb").value;
            ws.call(api+"/"+verb, {data:message}).then(replyok, replyerr);
    }
    
    
    function callbinder(api, verb, query) {
            console.log ("subscribe api="+api+" verb="+verb+" query=" +query);
            ws.call(api+"/"+verb, query).then(replyok, replyerr);
    }