mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
67 lines
1.3 KiB
Perl
Executable file
67 lines
1.3 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Play a relay game. Params are CookieName and device count.
|
|
|
|
use strict;
|
|
|
|
my $xwdir = "../linux/linux";
|
|
|
|
my $cookie = "COOKIE";
|
|
my $nPlayers = 2;
|
|
my $port = 10999;
|
|
my $dict = "~/personal/dicts/SOWPODS2to15.xwd";
|
|
my $quit = "";
|
|
|
|
my @names = (
|
|
"Fred",
|
|
"Barney",
|
|
"Wilma",
|
|
"Betty",
|
|
);
|
|
|
|
while ( my $param = shift( @ARGV ) ) {
|
|
print STDERR "param $param\n";
|
|
|
|
if ( $param =~ m|-C| ) {
|
|
$cookie = shift( @ARGV );
|
|
next;
|
|
} elsif ( $param =~ m|-nplayers| ) {
|
|
$nPlayers = shift( @ARGV );
|
|
} elsif ( $param =~ m|-dict| ) {
|
|
$dict = shift( @ARGV );
|
|
} elsif ( $param =~ m|-port| ) {
|
|
$port = shift( @ARGV );
|
|
} elsif ( $param =~ m|-quit| ) {
|
|
$quit = " -q ";
|
|
} else {
|
|
usage();
|
|
exit 1;
|
|
}
|
|
}
|
|
|
|
my $cmdBase = "cd $xwdir && ./xwords -d $dict -C $cookie $quit -p $port";
|
|
|
|
for ( my $p = 0; $p < $nPlayers; ++$p ) {
|
|
print STDERR "p = $p\n";
|
|
my $cmd = $cmdBase;
|
|
if ( $p == 0 ) { # server case
|
|
$cmd .= " -s ";
|
|
|
|
for ( my $i = 1; $i < $nPlayers; ++$i ) {
|
|
$cmd .= " -N ";
|
|
}
|
|
}
|
|
$cmd .= " -r $names[$p]";
|
|
|
|
my $pid = fork;
|
|
print STDERR "fork => $pid.\n";
|
|
if ( $pid ) {
|
|
# parent; give child chance to get ahead
|
|
sleep 1;
|
|
} else {
|
|
exec "$cmd";
|
|
last;
|
|
}
|
|
}
|
|
|
|
|