Difference between revisions of "Server-monitor.as"

From Organic Design wiki
(x scale)
({{as}})
 
(17 intermediate revisions by one other user not shown)
Line 1: Line 1:
// blank movie clip
+
// Server monitor{{as}}
createEmptyMovieClip( 'graph', 100 );
+
#include "debug.as"
 +
 +
echo( 'Begin: Hello world!', 'ff0000' );
  
dither = 1;
+
socket = new XMLSocket();
 +
var value = 0;
  
for ( i = 0; i < 800; i += 1 ) {
+
// Connect to our host to establish stream
if (dither == 1) { graph.lineStyle( 1, 0x00dd00 ); } else { graph.lineStyle( 1, 0x008800 ); }
+
if ( socket.connect( 'monitor.cs.auckland.ac.nz', 60180 ) ) echo( 'Connecting...', '00ff00' );
dither = dither ^ 1;
+
else echo( 'Could not initialise connection!', 'ff0000' );
graph.moveTo( i, height );
 
graph.lineTo( i, height/2 - ( Math.sin(i/15) * height/4 ) );  
 
}
 
  
// Textbox
+
// When connected, send login info
createTextField( 'rc', 1, 0, 0, width, height );
+
socket.onConnect = function( success ) {
with (rc) {
+
    if ( success ) {
_alpha = 30;
+
        echo( 'Connected!', '00ff00' );
selectable = true;
+
        sendMessage( 'Hello?' );
_quality = 'BEST';
+
        }
border = false;
+
    else echo( 'Connection failed!', 'ff0000' );
multiline = true;
+
    };
wordWrap = true;
 
html = true;
 
htmlText = '<font color="#00ff00">Hello World :-)</font>';
 
}
 
  
 +
// Decode incoming message
 +
socket.onData = function( data ) {
 +
    echo( 'Message received:', '00ff00' );
 +
    echo( data, 'ffff00' );
 +
    _root.value += data;
 +
    };
 +
 +
// Send a message to the associated peer
 +
function sendMessage( content ) {
 +
    echo( 'Sending message: "'+content+'"', '00ff00' );
 +
    _root.socket.send( content + String.fromCharCode(13,10,13,10) );
 +
    }
 +
 +
#include "bar-graph.as"
 +
 +
createSymbol( this, 'barGraph', 'myGraph', 0 );
  
 
function reduce() {
 
function reduce() {
}
+
    // graph the value and reset the accumulator
 +
    myGraph.rotate( _root.value );
 +
    _root.value = 0;
 +
    }

Latest revision as of 09:49, 14 March 2009

// Server monitorTemplate:As

  1. include "debug.as"

echo( 'Begin: Hello world!', 'ff0000' );

socket = new XMLSocket(); var value = 0;

// Connect to our host to establish stream if ( socket.connect( 'monitor.cs.auckland.ac.nz', 60180 ) ) echo( 'Connecting...', '00ff00' ); else echo( 'Could not initialise connection!', 'ff0000' );

// When connected, send login info socket.onConnect = function( success ) {

   if ( success ) {
       echo( 'Connected!', '00ff00' );
       sendMessage( 'Hello?' );
       }
   else echo( 'Connection failed!', 'ff0000' );
   };

// Decode incoming message socket.onData = function( data ) {

   echo( 'Message received:', '00ff00' );
   echo( data, 'ffff00' );
   _root.value += data;
   };

// Send a message to the associated peer function sendMessage( content ) {

   echo( 'Sending message: "'+content+'"', '00ff00' );
   _root.socket.send( content + String.fromCharCode(13,10,13,10) );
   }
  1. include "bar-graph.as"

createSymbol( this, 'barGraph', 'myGraph', 0 );

function reduce() {

   // graph the value and reset the accumulator
   myGraph.rotate( _root.value );
   _root.value = 0;
   }