/usr/share/perl5/Games/Go/Dg2TkPs.pm is in sgf2dg 4.026-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 | # $Id: Dg2TkPs.pm 143 2005-06-03 21:05:57Z reid $
# Dg2TkPs
#
# Copyright (C) 2005 Reid Augustin reid@hellosix.com
# 1000 San Mateo Dr.
# Menlo Park, CA 94025 USA
#
# This library is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself, either Perl version 5.8.5 or, at your
# option, any later version of Perl 5 you may have available.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.
#
=head1 NAME
Games::Go::Dg2TkPs - Perl extension to convert Games::Go::Diagrams to
Postscript.
=head1 SYNOPSIS
use Games::Go::Dg2TkPs
my $dg2ps = B<Games::Go::Dg2TkPs-E<gt>new> (options);
my $canvas = $dg2ps->convertDiagram($diagram);
=head1 DESCRIPTION
This is a real hack to get PostScript output from the Dg2Tk
converter. All it does is use the built-in PostScript that a
Tk::Canvas widget provides to convert the Dg2Tk canvas pages to
PostScript. The resulting PostScript is fairly crude because the
Canvas that it is drawn from is crude to begin with. See
L<Games::Go::Dg2Ps> for a better PostScript converter.
A Games::Go::Dg2TkPs inherits from L<Games::Go::Dg2Tk>, and uses all
its methods and options. The main difference is that after
conversion to Tk is complete, each diagram L<Tk::Canvas> is
converted to PostScript via the L<Tk::Canvas>->postscript method.
Some minor massaging of the PostScript source is done to string the
canvas pages together.
=cut
use strict;
require 5.001;
package Games::Go::Dg2TkPs;
use Games::Go::Dg2Tk;
use Carp;
our @ISA = qw(Exporter Games::Go::Dg2Tk);
# Items to export into callers namespace by default. Note: do not export
# names by default without a very good reason. Use EXPORT_OK instead.
# Do not simply export all your public functions/methods/constants.
# This allows declaration use PackageName ':all';
# If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
# will save memory.
our %EXPORT_TAGS = ( 'all' => [ qw(
) ] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = qw(
);
BEGIN {
our $VERSION = sprintf "1.%03d", '$Revision: 143 $' =~ /(\d+)/;
}
######################################################
#
# Class Variables
#
#####################################################
######################################################
#
# Public methods
#
#####################################################
=head1 METHODS
See Dg2Tk for the usual Dg2* conversion methods.
=over 4
=item $dg2ps-E<gt>B<comment> ($comment ? , ... ?)
Inserts comments into the PostScript source code. Note that since
the PostScript is generated B<after> the diagrams are all
constructed by Dg2Tk, comments are likely to be out of order - they
will all be at the head of the PostScript file.
=cut
sub comment {
my ($my, @comments) = @_;
$my->{comment} = '' unless(exists($my->{comment}));
$my->{comment} .= join("\n", @comments);
}
=item $dg2ps-E<gt>B<configure> (option =E<gt> value, ?...?)
Grabs 'file' configuration option, passes all other requests to
Dg2Tk.
=cut
sub configure {
my ($my, %args) = @_;
if (exists($args{file})) {
$my->{file} = delete($args{file});
if (ref($my->{file}) eq 'SCALAR') {
$my->{filename} = $my->{file};
} elsif (ref($my->{file}) eq 'ARRAY') {
$my->{filename} = 'ARRAY';
} elsif (ref($my->{file}) eq 'GLOB') {
$my->{filename} = 'GLOB';
} elsif (ref($my->{file}) =~ m/^IO::/) {
$my->{filename} = 'IO';
} else {
$my->{filename} = $my->{file};
}
}
$my->SUPER::configure(%args);
}
=item $dg2ps-E<gt>B<close>
Converts each diagram L<Tk::Canvas> in the Dg2Tk NoteBook to
PostScript via the L<Tk::Canvas>->postscript method.
=cut
my $pageSetup =
# "%%PageBoundingBox: 28 28 584 764\n" .
"\%\%BeginPageSetup\n" .
"/pagelevel save def\n" .
# "28 28 584 764 cliptobox\n" .
# "debugdict begin\n" .
# "userdict begin" .
"\%\%EndPageSetup\n";
my $pageTrailer =
"\%\%PageTrailer\n" .
# "end\n" .
# "end\n" .
"pagelevel restore\n" .
"showpage\n";
sub close {
my ($my) = @_;
my $nb = $my->notebook; # get the Dg2Tk notebook object
# $my->diagrams->[0]->after(1000); # delay
require IO::File;
my $fname = $my->{filename} || 'dg2ps.ps';
my $fd = IO::File->new($fname) or
die("Error opening $fname: $!\n");
my $trailer;
$my->{comment} =~ s/^/%%/;
$my->{comment} =~ s/\n/\n%%/gs;
$my->{comment} =~ s/\n%%$/\n/s;
my $page = 0;
foreach my $dg (@{$my->diagrams}) {
$nb->update; # bring Tk display up to date
my $ps = $dg->postscript();
$page++;
$ps =~ s/^(\%!PS-Adobe-3.0) EPSF-.*?\n/$1\n/;
$ps =~ s/(\%\%Trailer\b.*)//s; # remove trailer
unless (defined($trailer)) { # first page
$trailer = $1;
$ps =~ s/\%\%Pages: 1/\%\%Pages: (atend)/s; # report pages at end
$ps =~ s/(\%\%EndComments)/$my->{comment}\n$1/s;
} else { # all following pages
$ps =~ s/.*\%\%EndSetup\b//s; # remove prologue
}
$ps =~ s/\n%%Page: .*?\n/\%\%Page: $page $page\n$pageSetup/so;
$ps =~ s/\s*\bshowpage\n\n$/\n$pageTrailer/so;
$fd->print($ps);
$nb->raise($nb->info('focusnext'));
}
$trailer =~ s/\%\%Trailer/\%\%Trailer\n\%\%Pages: $page/gs;
$fd->print($trailer); # put trailer back
close $fd;
}
######################################################
#
# Private methods
#
#####################################################
1;
__END__
=back
=head1 SEE ALSO
=over 4
=item L<sgf2dg>(1)
Script to convert SGF format files to Go diagrams
=back
=head1 BUGS
The output is pretty ugly. Oh well, what can one expect from such a
simple hack?
=head1 AUTHOR
Reid Augustin, E<lt>reid@hellosix.comE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright (C) 2005 by Reid Augustin
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.8.5 or,
at your option, any later version of Perl 5 you may have available.
=cut
|