]> git.vpit.fr Git - perl/modules/LaTeX-TikZ.git/blob - lib/LaTeX/TikZ/Set.pm
Switch to qw<>
[perl/modules/LaTeX-TikZ.git] / lib / LaTeX / TikZ / Set.pm
1 package LaTeX::TikZ::Set;
2
3 use strict;
4 use warnings;
5
6 =head1 NAME
7
8 LaTeX::TikZ::Set - Base role for LaTeX::TikZ set objects.
9
10 =head1 VERSION
11
12 Version 0.02
13
14 =cut
15
16 our $VERSION = '0.02';
17
18 use Scope::Guard ();
19
20 use LaTeX::TikZ::Scope;
21
22 use LaTeX::TikZ::Tools;
23
24 use Any::Moose 'Role';
25
26 =head1 ATTRIBUTES
27
28 =head2 C<mods>
29
30 Returns the list of the L<LaTeX::TikZ::Mod> objects associated with the current set.
31
32 =cut
33
34 has '_mods' => (
35  is       => 'ro',
36  isa      => 'Maybe[ArrayRef[LaTeX::TikZ::Mod]]',
37  init_arg => 'mods',
38  default  => sub { [ ] },
39  lazy     => 1,
40 );
41
42 sub mods { @{$_[0]->_mods} }
43
44 =head1 METHODS
45
46 This method is required by the interface :
47
48 =over 4
49
50 =item *
51
52 C<draw $formatter>
53
54 Returns an array reference of TikZ code lines required to effectively draw the current set object, formatted by the L<LaTeX::TikZ::Formatter> object C<$formatter>.
55
56 =back
57
58 =cut
59
60 requires qw<
61  draw
62 >;
63
64 =head2 C<mod @mods>
65
66 Apply the given list of L<LaTeX::TikZ::Mod> objects to the current set.
67
68 =cut
69
70 my $ltm_tc  = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Mod');
71 my $ltml_tc = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Mod::Layer');
72 my $ltmc_tc = LaTeX::TikZ::Tools::type_constraint('LaTeX::TikZ::Mod::Clip');
73
74 sub mod {
75  my $set = shift;
76
77  my @mods = map $ltm_tc->coerce($_), @_;
78  $ltm_tc->assert_valid($_) for @mods;
79
80  push @{$set->_mods}, @mods;
81
82  $set;
83 }
84
85 {
86  our %mods;
87  our $last_mod = 0;
88
89  around 'draw' => sub {
90   my ($orig, $set, $tikz) = @_;
91
92   local $last_mod = $last_mod;
93
94   # Save a deep copy
95   my %saved_idx = map { $_ => $#{$mods{$_}} } keys %mods;
96   my $guard     = Scope::Guard->new(sub {
97    for (keys %mods) {
98     if (exists $saved_idx{$_}) {
99      $#{$mods{$_}} = $saved_idx{$_};
100     } else {
101      delete $mods{$_};
102     }
103    }
104   });
105
106   my (@mods, $last_layer);
107 MOD:
108   for my $mod ($set->mods) {
109    my $is_layer = $ltml_tc->check($mod);
110    $last_layer  = $mod if $is_layer;
111    my $tag = $mod->tag;
112    my $old = $mods{$tag} || [];
113    for (@$old) {
114     next MOD if $_->[0]->covers($mod);
115    }
116    push @{$mods{$tag}}, [ $mod, $last_mod++, $is_layer ];
117    push @mods,          $mod;
118   }
119
120   if ($last_layer) {
121    # Clips and mods don't propagate through layers. Hence if a layer is set,
122    # force their reuse.
123    @mods = $last_layer;
124    push @mods, map $_->[0],
125                 sort { $a->[1] <=> $b->[1] }
126                  grep !$_->[2],
127                   map @$_,
128                    values %mods;
129   }
130
131   my $body = $set->$orig($tikz);
132
133   if (@mods) {
134    $body = LaTeX::TikZ::Scope->new
135                              ->mod(map $_->apply($tikz), @mods)
136                              ->body($body);
137   }
138
139   $body;
140  };
141 }
142
143 =head2 C<layer $layer>
144
145 Puts the current set in the corresponding layer.
146 This is a shortcut for C<< $set->mod(Tikz->layer($layer)) >>.
147
148 =cut
149
150 sub layer {
151  my $set = shift;
152
153  return $set unless @_;
154
155  my $layer = $_[0];
156  $set->mod(
157   $ltml_tc->check($layer) ? $layer
158                           : LaTeX::TikZ::Mod::Layer->new(name => $layer)
159  )
160 }
161
162 =head2 C<clip $path>
163
164 Clips the current set by the path given by C<$path>.
165 This is a shortcut for C<< $set->mod(Tikz->clip($path)) >>.
166
167 =cut
168
169 sub clip {
170  my $set = shift;
171
172  return $set unless @_;
173
174  $set->mod(
175   map {
176    $ltmc_tc->check($_) ? $_ : LaTeX::TikZ::Mod::Clip->new(clip => $_)
177   } @_
178  )
179 }
180
181 =head1 SEE ALSO
182
183 L<LaTeX::TikZ>.
184
185 =head1 AUTHOR
186
187 Vincent Pit, C<< <perl at profvince.com> >>, L<http://www.profvince.com>.
188
189 You can contact me by mail or on C<irc.perl.org> (vincent).
190
191 =head1 BUGS
192
193 Please report any bugs or feature requests to C<bug-latex-tikz at rt.cpan.org>, or through the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=LaTeX-TikZ>.
194 I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
195
196 =head1 SUPPORT
197
198 You can find documentation for this module with the perldoc command.
199
200     perldoc LaTeX::TikZ
201
202 =head1 COPYRIGHT & LICENSE
203
204 Copyright 2010 Vincent Pit, all rights reserved.
205
206 This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
207
208 =cut
209
210 1; # End of LaTeX::TikZ::Set