3 # this is the operators console.
7 # console.pl [callsign]
9 # if the callsign isn't given then the sysop callsign in DXVars.pm is assumed
11 # Copyright (c) 1999 Dirk Koopman G1TLH
18 # search local then perl directories
20 # root of directory tree for this system
22 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
24 unshift @INC, "$root/perl"; # this IS the right way round!
25 unshift @INC, "$root/local";
42 $call = ""; # the callsign being used
43 $conn = 0; # the connection object for the cluster
44 $lasttime = time; # lasttime something happened on the interface
50 $spos = $pos = $lth = 0;
53 # do the screen initialisation
59 $has_colors = has_colors();
63 init_pair(0, $foreground, $background);
64 init_pair(1, COLOR_RED, $background);
65 init_pair(2, COLOR_YELLOW, $background);
66 init_pair(3, COLOR_GREEN, $background);
67 init_pair(4, COLOR_CYAN, $background);
68 init_pair(5, COLOR_BLUE, $background);
69 init_pair(6, COLOR_MAGENTA, $background);
72 $top = $scr->subwin(LINES()-4, COLS, 0, 0);
75 $scr->addstr(LINES()-4, 0, '-' x COLS);
76 $bot = $scr->subwin(3, COLS, LINES()-3, 0);
92 # cease communications
96 if ($conn && $sendz) {
97 $conn->send_now("Z$call|bye...\n");
105 # terminate program from signal
111 # determine the colour of the line
115 foreach my $ref (@colors) {
116 if ($_[0] =~ m{$$ref[0]}) {
117 $top->attrset($$ref[1]);
124 # measure the no of screen lines a line will take
128 return 0 unless $line;
130 my $l = length $line;
131 my $lines = int ($l / COLS());
132 $lines++ if $l / COLS() > $lines;
136 # display the top screen
139 if ($spos == @shistory - 1) {
141 # if we really are scrolling thru at the end of the history
142 my $line = $shistory[$spos];
143 $top->addstr("\n") if $spos > 0;
146 $top->attrset(COLOR_PAIR(0)) if $has_colors;
154 for ($i = 0; $i < $pagel && $p >= 0; ) {
155 $l = measure($shistory[$p]);
162 $top->attrset(COLOR_PAIR(0)) if $has_colors;
164 for ($i = 0; $i < $pagel && $p < @shistory; $p++) {
165 my $line = $shistory[$p];
166 my $lines = measure($line);
167 last if $i + $lines > $pagel;
169 $top->addstr($i, 0, $line);
170 $top->attrset(COLOR_PAIR(0)) if $has_colors;
174 $spos = @shistory if $spos > @shistory;
177 my $add = "$call-$spos-$shl";
178 $scr->addstr(LINES()-4, 0, '-' x (COLS() - length $add));
184 # add a line to the end of the top screen
188 push @shistory, $inbuf;
189 shift @shistory if @shistory > $maxshist;
193 # handle incoming messages
196 my ($con, $msg, $err) = @_;
197 if (defined $err && $err) {
201 my ($sort, $call, $line) = $msg =~ /^(\w)(\S+)\|(.*)$/;
203 if ($sort && $sort eq 'D') {
205 } elsif ($sort && $sort eq 'Z') { # end, disconnect, go, away .....
221 # $prbuf =~ s/\r/\\r/;
222 # $prbuf =~ s/\n/\\n/;
223 # print "sys: $r ($prbuf)\n";
226 if ($r eq KEY_ENTER || $r eq "\n" || $r eq "\r") {
230 # check for a pling and do a search back for a command
231 if ($inbuf =~ /^!/o) {
234 for ($i = $#khistory; $i >= 0; $i--) {
235 if ($khistory[$i] =~ /^$inbuf/) {
236 $inbuf = $khistory[$i];
245 push @khistory, $inbuf if $inbuf;
246 shift @khistory if @khistory > $maxkhist;
247 $khistpos = @khistory;
250 $bot->addstr(substr($inbuf, 0, COLS));
253 # add it to the monitor window
254 unless ($spos == @shistory) {
258 addtotop($inbuf) if $inbuf;
260 # send it to the cluster
261 $inbuf = " " unless $inbuf;
262 $conn->send_later("I$call|$inbuf");
265 } elsif ($r eq KEY_UP || $r eq "\020") {
268 $inbuf = $khistory[$khistpos];
269 $pos = $lth = length $inbuf;
273 } elsif ($r eq KEY_DOWN || $r eq "\016") {
274 if ($khistpos < @khistory - 1) {
276 $inbuf = $khistory[$khistpos];
277 $pos = $lth = length $inbuf;
281 } elsif ($r eq KEY_PPAGE || $r eq "\032") {
284 for ($i = 0; $i <= $pagel && $spos >= 0; ) {
285 $l = measure($shistory[$spos]);
287 $spos-- if $i <= $pagel;
289 $spos = 0 if $spos < 0;
294 } elsif ($r eq KEY_NPAGE || $r eq "\026") {
295 if ($spos < @shistory - 1) {
297 for ($i = 0; $i <= $pagel && $spos <= @shistory; ) {
298 $l = measure($shistory[$spos]);
300 $spos++ if $i <= $pagel;
302 $spos = @shistory if $spos >= @shistory - 1;
307 } elsif ($r eq KEY_LEFT || $r eq "\002") {
313 } elsif ($r eq KEY_RIGHT || $r eq "\006") {
319 } elsif ($r eq KEY_HOME || $r eq "\001") {
321 } elsif ($r eq KEY_END || $r eq "\005") {
323 } elsif ($r eq KEY_BACKSPACE || $r eq "\010") {
325 my $a = substr($inbuf, 0, $pos-1);
326 my $b = substr($inbuf, $pos) if $pos < $lth;
335 } elsif ($r eq KEY_DC || $r eq "\004") {
337 my $a = substr($inbuf, 0, $pos);
338 my $b = substr($inbuf, $pos+1) if $pos < $lth;
346 } elsif ($r ge ' ' && $r le '~') {
347 # move the top screen back to the bottom if you type something
348 if ($spos < @shistory) {
353 # insert the character into the keyboard buffer
355 my $a = substr($inbuf, 0, $pos);
356 my $b = substr($inbuf, $pos);
357 $inbuf = $a . $r . $b;
363 } elsif ($r eq "\014" || $r eq "\022") {
366 } elsif ($r eq "\013") {
367 $inbuf = substr($inbuf, 0, $pos);
368 $lth = length $inbuf;
374 $bot->addstr($inbuf);
385 $call = uc shift @ARGV if @ARGV;
386 $call = uc $myalias if !$call;
388 if ($call eq $mycall) {
389 print "You cannot connect as your cluster callsign ($mycall)\n";
393 $conn = Msg->connect("$clusteraddr", $clusterport, \&rec_socket);
395 if (-r "$data/offline") {
396 open IN, "$data/offline" or die;
402 print "Sorry, the cluster $mycall is currently off-line\n";
408 $SIG{'INT'} = \&sig_term;
409 $SIG{'TERM'} = \&sig_term;
410 #$SIG{'WINCH'} = \&do_resize;
411 $SIG{'HUP'} = 'IGNORE';
415 $SIG{__DIE__} = \&sig_term;
417 $conn->send_now("A$call|$connsort");
418 $conn->send_now("I$call|set/page $maxshist");
419 $conn->send_now("I$call|set/nobeep");
421 Msg->set_event_handler(\*STDIN, "read" => \&rec_stdin);
425 Msg->event_loop(1, 0.010);
426 $top->refresh() if $top->is_wintouched;
429 if ($t > $lasttime) {