ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/background
(Generate patch)

Comparing rxvt-unicode/src/perl/background (file contents):
Revision 1.15 by root, Tue Jun 5 22:46:50 2012 UTC vs.
Revision 1.29 by root, Thu Jun 7 13:12:08 2012 UTC

1#! perl 1#! perl
2 2
3#:META:RESOURCE:$$:string:background expression 3#:META:X_RESOURCE:%.expr:string:background expression
4#:META:RESOURCE:$$-enable:boolean:some boolean 4#:META:X_RESOURCE:%.enable:boolean:some boolean
5#:META:X_RESOURCE:%.extra.:value:extra config
5 6
6our $EXPR = 'move load "/root/pix/das_fette_schwein.jpg", repeat_wrap, X, Y'; 7our $EXPR;
8#$EXPR = 'move W * 0.1, -H * 0.1, resize W * 0.5, H * 0.5, repeat_none load "opensource.png"';
9$EXPR = 'move -X, -Y, load "argb.png"';
7$EXPR = ' 10#$EXPR = '
8 rotate W, H, 50, 50, counter 1/59.95, repeat_mirror, 11# rotate W, H, 50, 50, counter 1/59.95, repeat_mirror,
9 clip X, Y, W, H, repeat_mirror, 12# clip X, Y, W, H, repeat_mirror,
10 load "/root/pix/das_fette_schwein.jpg" 13# load "/root/pix/das_fette_schwein.jpg"
11'; 14#';
12$EXPR = 'solid "red"'; 15#$EXPR = 'solid "red"';
13#$EXPR = 'blur root, 10, 10' 16#$EXPR = 'blur root, 10, 10'
14#$EXPR = 'blur move (root, -x, -y), 5, 5' 17#$EXPR = 'blur move (root, -x, -y), 5, 5'
15#resize load "/root/pix/das_fette_schwein.jpg", w, h 18#resize load "/root/pix/das_fette_schwein.jpg", w, h
16 19
17use Safe; 20use Safe;
18 21
19our ($bgdsl_self, $old, $new); 22our ($bgdsl_self, $old, $new);
20our ($l, $t, $w, $h); 23our ($x, $y, $w, $h);
21 24
22# enforce at leats this time between updates 25# enforce at least this interval between updates
23our $MIN_INTERVAL = 1/100; 26our $MIN_INTERVAL = 1/100;
24 27
25{ 28{
26 package urxvt::bgdsl; # background language 29 package urxvt::bgdsl; # background language
27 30
28 *repeat_black = \&urxvt::RepeatNone; #TODO wtf
29 *repeat_wrap = \&urxvt::RepeatNormal;
30 *repeat_pad = \&urxvt::RepeatPad;
31 *repeat_mirror = \&urxvt::RepeatReflect;
32
33=head2 PROVIDERS/GENERATORS 31=head2 PROVIDERS/GENERATORS
34 32
35=over 4 33=over 4
36 34
37=item load $path 35=item load $path
36
37Loads the image at the given C<$path>. The image is set to plane tiling
38mode.
39
40
38 41
39=cut 42=cut
40 43
41 sub load($) { 44 sub load($) {
42 my ($path) = @_; 45 my ($path) = @_;
55 $img 58 $img
56 } 59 }
57 60
58=back 61=back
59 62
60=head2 OPERATORS 63=head2 VARIABLES
61 64
62=over 4 65=over 4
63 66
64=cut 67=cut
65 68
69 sub X() { $new->{position_sensitive} = 1; $x }
70 sub Y() { $new->{position_sensitive} = 1; $y }
71 sub W() { $new->{size_sensitive} = 1; $w }
72 sub H() { $new->{size_sensitive} = 1; $h }
73
74 sub now() { urxvt::NOW }
75
76 sub again($) {
77 $new->{again} = $_[0];
78 }
79
80 sub counter($) {
81 $new->{again} = $_[0];
82 $bgdsl_self->{counter} + 0
83 }
84
85=back
86
87=head2 TILING MODES
88
89The following operators modify the tiling mode of an image, that is, the
90way that pixels outside the image area are painted when the image is used.
91
92=over 4
93
94=item tile $img
95
96Tiles the whole plane with the image and returns this new image - or in
97other words, it returns a copy of the image in plane tiling mode.
98
99=item mirror $img
100
101Similar to tile, but reflects the image each time it uses a new copy, so
102that top edges always touch top edges, right edges always touch right
103edges and so on (with normal tiling, left edges always touch right edges
104and top always touch bottom edges).
105
106=item pad $img
107
108Takes an image and modifies it so that all pixels outside the image area
109become transparent. This mode is most useful when you want to place an
110image over another image or the background colour while leaving all
111background pixels outside the image unchanged.
112
113=item extend $img
114
115Extends the image over the whole plane, using the closest pixel in the
116area outside the image. This mode is mostly useful when you more complex
117filtering operations and want the pixels outside the image to have the
118same values as the pixels near the edge.
119
120=cut
121
122 sub pad($) {
123 my $img = $_[0]->clone;
124 $img->repeat_mode (urxvt::RepeatNone);
125 $img
126 }
127
128 sub tile($) {
129 my $img = $_[0]->clone;
130 $img->repeat_mode (urxvt::RepeatNormal);
131 $img
132 }
133
134 sub mirror($) {
135 my $img = $_[0]->clone;
136 $img->repeat_mode (urxvt::RepeatReflect);
137 $img
138 }
139
140 sub extend($) {
141 my $img = $_[0]->clone;
142 $img->repeat_mode (urxvt::RepeatPad);
143 $img
144 }
145
146=back
147
148=head2 PIXEL OPERATORS
149
150The following operators modify the image pixels in various ways.
151
152=over 4
153
154=item clone $img
155
156Returns an exact copy of the image.
157
158=cut
159
66# sub clone($) { 160 sub clone($) {
67# $_[0]->clone 161 $_[0]->clone
68# } 162 }
69 163
164=item clip $img
165
166=item clip $width, $height, $img
167
168=item clip $x, $y, $width, $height, $img
169
170Clips an image to the given rectangle. If the rectangle is outside the
171image area (e.g. when C<$x> or C<$y> are negative) or the rectangle is
172larger than the image, then the tiling mode defines how the extra pixels
173will be filled.
174
175If C<$x> an C<$y> are missing, then C<0> is assumed for both.
176
177If C<$width> and C<$height> are missing, then the window size will be
178assumed.
179
180Example: load an image, blur it, and clip it to the window size to save
181memory.
182
183 clip blur 10, load "mybg.png"
184
185=cut
186
70 sub clip($$$$$;$) { 187 sub clip($;$$;$$) {
188 my $img = pop;
71 my $img = pop; 189 my $h = pop || H;
190 my $w = pop || W;
72 $img->sub_rect ($_[0], $_[1], $_[2], $_[3], $_[4]) 191 $img->sub_rect ($_[0], $_[1], $w, $h)
192 }
193
194=item scale $img
195
196=item scale $size_percent, $img
197
198=item scale $width_percent, $height_percent, $img
199
200Scales the image by the given percentages in horizontal
201(C<$width_percent>) and vertical (C<$height_percent>) direction.
202
203If only one percentage is give, it is used for both directions.
204
205If no percentages are given, scales the image to the window size without
206keeping aspect.
207
208=item resize $width, $height, $img
209
210Resizes the image to exactly C<$width> times C<$height> pixels.
211
212=cut
213
214#TODO: maximise, maximise_fill?
215
216 sub scale($$$) {
217 my $img = pop;
218
219 @_ == 2 ? $img->scale ($_[0] * $img->w * 0.01, $_[1] * $img->h * 0.01)
220 : @_ ? $img->scale ($_[0] * $img->w * 0.01, $_[0] * $img->h * 0.01)
221 : $img->scale (W, H)
73 } 222 }
74 223
75 sub resize($$$) { 224 sub resize($$$) {
76 my $img = pop; 225 my $img = pop;
77 $img->scale ($_[0], $_[1]) 226 $img->scale ($_[0], $_[1])
78 } 227 }
79 228
80 # TODO: ugly 229 # TODO: ugly
81 sub move($$;$) { 230 sub move($$;$) {
231 my $img = pop->clone;
232 $img->move ($_[0], $_[1]);
233 $img
82 my $img = pop; 234# my $img = pop;
83 $img->sub_rect ( 235# $img->sub_rect (
84 $_[0], $_[1], 236# $_[0], $_[1],
85 $img->w, $img->h, 237# $img->w, $img->h,
86 $_[2], 238# $_[2],
87 ) 239# )
88 } 240 }
89 241
90 sub rotate($$$$$$;$) { 242 sub rotate($$$$$$) {
91 my $img = pop; 243 my $img = pop;
92 $img->rotate ( 244 $img->rotate (
93 $_[0], 245 $_[0],
94 $_[1], 246 $_[1],
95 $_[2] * $img->w * .01, 247 $_[2] * $img->w * .01,
96 $_[3] * $img->h * .01, 248 $_[3] * $img->h * .01,
97 $_[4] * (3.14159265 / 180), 249 $_[4] * (3.14159265 / 180),
98 $_[5],
99 ) 250 )
100 } 251 }
101 252
102 sub blur($$$) { 253 sub blur($$;$) {
103 my ($rh, $rv, $img) = @_; 254 my $img = pop;
104 255
105 $img->blur ($rh, $rv); 256 $img->blur ($_[0], @_ >= 2 ? $_[1] : $_[0]);
106 } 257 }
107 258
108 sub contrast($$;$$;$) { 259 sub contrast($$;$$;$) {
109 my $img = pop; 260 my $img = pop;
110 my ($r, $g, $b, $a) = @_; 261 my ($r, $g, $b, $a) = @_;
125 $a = 1 if @_ < 5; 276 $a = 1 if @_ < 5;
126 277
127 $img = $img->clone; 278 $img = $img->clone;
128 $img->brightness ($r, $g, $b, $a); 279 $img->brightness ($r, $g, $b, $a);
129 $img 280 $img
130 }
131
132 sub X() { $new->{position_sensitive} = 1; $l }
133 sub Y() { $new->{position_sensitive} = 1; $t }
134 sub W() { $new->{size_sensitive} = 1; $w }
135 sub H() { $new->{size_sensitive} = 1; $h }
136
137 sub now() { urxvt::NOW }
138
139 sub again($) {
140 $new->{again} = $_[0];
141 }
142
143 sub counter($) {
144 $new->{again} = $_[0];
145 $bgdsl_self->{counter} + 0
146 } 281 }
147 282
148=back 283=back
149 284
150=cut 285=cut
185 local $bgdsl_self = $self; 320 local $bgdsl_self = $self;
186 321
187 local $old = $self->{state}; 322 local $old = $self->{state};
188 local $new = my $state = $self->{state} = {}; 323 local $new = my $state = $self->{state} = {};
189 324
325 my $border = 0; #d#
326
190 ($l, $t, $w, $h) = 327 ($x, $y, $w, $h) =
191 $self->get_geometry; 328 $self->background_geometry ($border);
192 329
193 # evaluate user expression 330 # evaluate user expression
194 331
195 my $img = eval { $self->{expr}->() }; 332 my $img = eval { $self->{expr}->() };
196 warn $@ if $@;#d# 333 warn $@ if $@;#d#
243 # prepare and set background pixmap 380 # prepare and set background pixmap
244 381
245 $img = $img->sub_rect (0, 0, $w, $h) 382 $img = $img->sub_rect (0, 0, $w, $h)
246 if $img->w != $w || $img->h != $h; 383 if $img->w != $w || $img->h != $h;
247 384
248 $self->set_background ($img); 385 $self->set_background ($img, $border);
249 $self->scr_recolour (0); 386 $self->scr_recolour (0);
250 $self->want_refresh; 387 $self->want_refresh;
251} 388}
252 389
253sub on_start { 390sub on_start {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines