moved demo scripts and docs into the demo directory
[urisagit/Stem.git] / demo / chat_demo
1 #!/usr/local/bin/perl -s
2
3 $line_cnt = 10 ;
4 $offset = 175 ;
5 $base_off = 0 ;
6 $xskip = ( $^O eq 'solaris' ) ? 600 : 500 ;
7
8 print "CHAT DEMO\n" ;
9
10 use File::Basename qw( basename );
11 $ENV{PATH} .= ':' . basename( $0 ) . ':.';
12 for my $prog qw( run_stem xterm telnet ) {
13     die "Can't find $prog in PATH\n" if
14         system( "which $prog >/dev/null 2>&1" ) != 0;
15 }
16
17 my @children ;
18
19 $SIG{ 'INT' } = \&cleanup ;
20
21 if ( $s ) {
22
23         $ssfe = 'ssfe' ;
24         $prompt = '-prompt Stem:' ;
25         $prompt2 = '-prompt Chat:' ;
26         $echo = 'console_echo=1'
27 }
28
29 foreach $cmd ( split /\n/, <<EOT ) {
30 xterm -T Chat -n Chat -geometry 80x40+XSKIP+0 -e $ssfe $prompt run_stem $echo chat
31 xterm -T A -n A -geometry 80xLINE+0+OFF -e $ssfe $prompt2 telnet localhost 6666
32 xterm -T B -n B -geometry 80xLINE+0+OFF -e $ssfe $prompt2 telnet localhost 6667
33 xterm -T C -n C -geometry 80xLINE+0+OFF -e $ssfe $prompt2 telnet localhost 6668
34 xterm -T D -n D -geometry 80xLINE+0+OFF -e $ssfe $prompt2 telnet localhost 6669
35 EOT
36
37         $cmd =~ s/XSKIP/$xskip/ ;
38
39         $cmd =~ s/LINE/$line_cnt/ ;
40         $cmd =~ s/OFF/$base_off/ and $base_off += $offset ;
41
42 print "$cmd\n" ;
43
44         @cmd = split ' ', $cmd ;
45
46         s/:/: / for @cmd ;
47
48         fork_exec( @cmd ) ;
49         sleep 4 unless $cmd =~ /localhost/ ;
50 }
51
52 1 while wait() != -1;
53
54 exit;
55
56
57
58 sub cleanup {
59
60         print "clean up\n" ;
61
62         kill 9, @children ;
63
64         wait ;  
65         exit ;
66
67 }
68
69 sub fork_exec {
70
71         my( @exec ) = @_ ;
72
73         if ( $pid = fork() ) {
74
75                 push @children, $pid ;
76                 return ;
77         }
78
79         exec @exec ;
80 }