6 # Copyright (c) 2005 Dirk Koopman G1TLH
13 use vars qw($VERSION $BRANCH);
15 main::mkver($VERSION = q$Revision$);
29 unless ($thing->{Aranea}) {
30 my $sd = $thing->{spotdata};
31 $thing->{f} = $sd->[0];
32 $thing->{c} = $sd->[1];
33 $thing->{b} = $sd->[4] unless $thing->{user};
34 unless ($sd->[7] eq $main::mycall) {
35 $thing->{t} = sprintf("%X", $sd->[2] / 60);
36 $thing->{o} = $sd->[7];
38 $thing->{i} = $sd->[3] if $sd->[3];
39 $thing->{Aranea} = Aranea::genmsg($thing, [qw(f c b t o i)]);
41 return $thing->{Aranea};
48 my $t = hex($thing->{t}) if exists $thing->{t};
49 $t ||= $thing->{time} / 60; # if it is an aranea generated
50 my @spot = Spot::prepare(
55 ($thing->{b} || $thing->{fromuser} || $thing->{user} || $thing->{origin}),
56 ($thing->{o} || $thing->{origin}),
58 $thing->{spotdata} = \@spot;
65 unless ($thing->{DXProt}) {
66 my $sd = $thing->{spotdata};
67 my $hops = $thing->{hops} || DXProt::get_hops(11);
68 my $text = $sd->[3] || ' ';
71 $thing->{DXProt} = sprintf "PC11^%.1f^$sd->[1]^%s^%s^$text^$sd->[4]^$sd->[7]^$hops^~", $sd->[0], cldate($t), ztime($t);
73 return $thing->{DXProt};
81 # these are always generated, never cached
82 return unless $dxchan->{dx};
85 if ($dxchan->{ve7cc}) {
86 $buf = VE7CC::dx_spot($dxchan, $thing->{spotdata});
88 $buf = Spot::format_dx_spot($dxchan, $thing->{spotdata});
89 $buf .= "\a\a" if $dxchan->{beep};
100 $thing->{$k} = shift;
102 ($thing->{hops}) = $thing->{DXProt} =~ /\^H(\d+)\^?~?$/ if exists $thing->{DXProt};
111 my $spot = $thing->{spotdata};
112 if (Spot::dup(@$spot[0..4])) {
113 dbg("PCPROT: Duplicate Spot ignored\n") if isdbg('chanerr');
120 $thing->broadcast($dxchan);
128 # global spot filtering on INPUT
129 if ($dxchan->{inspotsfilter}) {
130 my ($filter, $hops) = $dxchan->{inspotsfilter}->it($thing->{spotdata});
132 dbg("PCPROT: Rejected by input spot filter") if isdbg('chanerr');
144 # global spot filtering on OUTPUT
145 if ($dxchan->{spotsfilter}) {
146 my ($filter, $hops) = $dxchan->{spotsfilter}->it($thing->{spotdata});
148 dbg("PCPROT: Rejected by output spot filter") if isdbg('chanerr');
151 $thing->{hops} = $hops if $hops;
152 } elsif ($dxchan->{isolate}) {