milkbone57 22 years ago
parent
commit
9555e80187
  1. 92
      plugins/XAMP.pl

92
plugins/XAMP.pl

@ -12,55 +12,66 @@ my $last_text = "";
# Some rather kludgy OS-specific code follows # Some rather kludgy OS-specific code follows
# #
my $code;
if($^O =~ /Win32/) if($^O =~ /Win32/)
{ {
eval '
package XAMP;
use Win32::GuiText qw(FindWindowLike GetWindowText); $code = <<'END';
package XAMP;
use Win32::GuiTest qw(FindWindowLike GetWindowText);
sub get_text sub get_text
{ {
my ($win) = FindWindowLike(0, "", "Winamp v1.x"); my ($win) = FindWindowLike(0, "", "Winamp v1.x");
($win) = FindWindowLike(0, "", "STUDIO") unless $win; ($win) = FindWindowLike(0, "", "STUDIO") unless $win;
my $song = GetWindowText($win) if $win; my $song = GetWindowText($win) if $win;
$song = $song x 2 unless($song =~ m/\d*\. (.*)- Winamp/); $song = $song x 2 unless($song =~ m/\d*\. (.*)- Winamp/);
return $song;
} $song =~ s/ - Winamp//g;
'; $song =~ s/\d*\.\s*//g;
$commit = 1 if $song ne $last_text;
return $song;
}
1;
END
} }
else else
{ {
eval ' $code = '
package XAMP; package XAMP;
use Xmms::Remote; use Xmms::Remote;
my $rem = Xmms::Remote->new; my $rem = Xmms::Remote->new;
sub get_text sub get_text
{ {
my $text = $rem->get_playlist_title($rem->get_playlist_pos); my $text = $rem->get_playlist_title($rem->get_playlist_pos);
$commit = 1 if $text ne $last_text; $commit = 1 if $text ne $last_text;
return $text; return $text;
}
' or die $@;
} }
1;
';
}
# $code =~ s/\n|\r//g;
eval $code or die "$! $@ $^E";
sub get_title sub get_title
{ {
my $text = get_text(); my $text = get_text();
my ($title) = $text =~ /-\s+(.*)/; my ($title) = $text =~ /-\s+(.*)/;
return $title || "Nothing"; return $title || "Nothing";
} }
sub get_artist sub get_artist
{ {
my $text = get_text(); my $text = get_text();
my ($artist) = $text =~ /(.*?)\s+-/; my ($artist) = $text =~ /(.*?)\s+-/;
return $artist || "Nobody"; return $artist || "Nobody";
} }
sub update sub update
@ -70,6 +81,7 @@ sub update
$last_text = $text; $last_text = $text;
my ($artist, $title) = (get_artist(), get_title()); my ($artist, $title) = (get_artist(), get_title());
print "artist = $artist; song = $title;\n";
hook('protocol_mod_prof', -name => '%a', -value => $artist); hook('protocol_mod_prof', -name => '%a', -value => $artist);
hook('protocol_mod_prof', -name => '%s', -value => $title); hook('protocol_mod_prof', -name => '%s', -value => $title);
@ -80,17 +92,13 @@ sub update
} }
register_hook("signed_in", sub { register_hook("signed_in", sub {
update(); update();
hook("tk_getmain")->repeat(5000, sub { hook("tk_getmain")->repeat(5000, sub {
update(); update();
$commit = 0; $commit = 0;
}); });
}); });
1;

Loading…
Cancel
Save