diff options
author | dakkar <dakkar@thenautilus.net> | 2010-11-23 22:52:49 +0000 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2010-11-23 22:52:49 +0000 |
commit | 396d371b4c2798a1a7137274de68c271a7c86616 (patch) | |
tree | 79979a81c16edb5f63c41fb1df6fad38f4609a6e /lib/TextPrinter/ColourGrid.pm | |
parent | filler! (diff) | |
download | qr-builder-396d371b4c2798a1a7137274de68c271a7c86616.tar.gz qr-builder-396d371b4c2798a1a7137274de68c271a7c86616.tar.bz2 qr-builder-396d371b4c2798a1a7137274de68c271a7c86616.zip |
the filler works, and we have two printers
Diffstat (limited to 'lib/TextPrinter/ColourGrid.pm')
-rw-r--r-- | lib/TextPrinter/ColourGrid.pm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/TextPrinter/ColourGrid.pm b/lib/TextPrinter/ColourGrid.pm new file mode 100644 index 0000000..fdb9949 --- /dev/null +++ b/lib/TextPrinter/ColourGrid.pm @@ -0,0 +1,27 @@ +package TextPrinter::ColourGrid; +use Moose; +use namespace::autoclean; +use Term::ANSIColor; + +extends 'TextPrinter'; + +my @colours = ( + color('reset'), # filler + ( + map { color($_,'on_white') } + 'blue', 'green', + ), + ( + map { color($_,'on_black') } + 'dark yellow','dark green', + ), +); + +sub draw_cell { + my ($self,$cell) = @_; + + print $colours[$cell->[0]], + $cell->[1]; +} + +1; |