client/annotviz/app/annotsvizview.html
author rougeronj
Wed, 21 Jan 2015 20:43:05 +0100
changeset 104 685c5ebc59d0
parent 103 123a611c7903
child 105 25ac8802c189
permissions -rw-r--r--
update resolution screen

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="description" content="">
    <meta name="author" content="I.R.I">
    <link rel="shortcut icon" href="/img/favicon.ico">

    <title>AnnotsVizView</title>

    <!-- Custom styles for this template -->
    <link href="/css/annotviz.css" rel="stylesheet">
</head>

<body>
    <h1>Piano Roll vertical</h1>
    <noscript>You must enable JavaScript</noscript>
    <div id="canvasContainer"></div>
    <p>
        <a href="#" onclick="stop(); return false;">stop intervals</a> -
        <a href="#" onclick="start(); return false;">start intervals</a> -
        temps écoulé : <span id="timeStarted"></span>
    </p>
    <!--pre id="log"></pre-->
    <script src="/js/libs-annotviz.js"></script>
    <script src="/js/annotviz.js"></script>
    <script>
	    var pianorollChannel  = 'PIANOROLL';
	    var annotationChannel = 'ANNOT';
	    var eventCode = 'atelier2_test';
	    var wsUri;
// 	    if (window.location.protocol === 'file:') {
	        wsUri = 'ws://172.16.0.20:8090/broadcast';
// 	    }
// 	    else {
// 	        wsUri = 'ws://' + window.location.hostname + ':8090/broadcast';
// 	    }
	    wsUriPianoroll = wsUri + '?channel=' + pianorollChannel + '&event_code=' + eventCode;
	    wsUriAnnotation = wsUri + '?channel=' + annotationChannel + '&event_code=' + eventCode;
	
	    var logger = new annotviz.ConsoleLogger(true);
	    
	    var stageView = new annotviz.StageView({
	    	logger: logger
	    });

        var annotsvizview = new annotviz.AnnotsVizView({
        	logger: logger,
        	stageView: stageView,
        	wsPianoroll: new annotviz.WsWrapper(wsUriPianoroll, logger),
        	wsAnnot: new annotviz.WsWrapper(wsUriAnnotation, logger),
        });
      

        function stop() {
        	stageView.stop();
        }
        function start() {
        	stageView.start();
        }

        window.onload = function() {
        	stageView.init();
            start();
        }
    </script>
</body>
</html>