--- deliantra/Deliantra-Client/DC/Pod.pm 2006/08/13 03:20:56 1.5 +++ deliantra/Deliantra-Client/DC/Pod.pm 2006/08/13 21:46:10 1.9 @@ -1,15 +1,25 @@ package CFPlus::Pod; use strict; +use utf8; use Storable; our $VERSION = 1; +our $goto_document = sub { }; our %wiki; +my $MA_BEG = "\x{fcd0}"; +my $MA_SEP = "\x{fcd1}"; +my $MA_END = "\x{fcd2}"; + *wiki = Storable::retrieve CFPlus::find_rcfile "docwiki.pst"; +sub goto_document($) { + $goto_document->(split /\//, $_[0]); +} + sub is_prefix_of($@) { my ($node, @path) = @_; @@ -41,9 +51,19 @@ sub full_path_of($) { my ($node) = @_; - my $path = $node->{kw}[0]; - $path = "$node->{kw}[0]/$path" while $node = $node->{parent}; - $path + my @path; + + # skip toplevel hierarchy pod/, because its not a document + while ($node->{parent}) { + unshift @path, $node; + $node = $node->{parent}; + } + + @path +} + +sub full_path($) { + join "/", map $_->{kw}[0], &full_path_of } sub section_of($) { @@ -58,18 +78,11 @@ do { my $p = $doc->[$par]; - if (exists $p->{markup}) { - my %para = ( + if (length $p->{markup}) { + push @res, { markup => $p->{markup}, indent => $p->{indent}, - ); - - for (@{ $p->{widget} || [] }) { - my ($class, @args) = @$_; - push @{ $para{widget} }, $class->new (@args); - } - - push @res, \%para; + }; } } while $doc->[++$par]{level} > $lvl; @@ -80,10 +93,86 @@ map section_of $_, &find } +sub thaw_section(\@\%) { + for (@{$_[0]}) { + $_->{markup} =~ s{ + $MA_BEG + ([^$MA_END]+) + $MA_END + }{ + my ($type, @arg) = split /$MA_SEP/o, $1; + + $_[1]{$type}($_, @arg) + }ogex; + } +} + +my %as_label = ( + image => sub { + my ($par, $path) = @_; + + "img" + }, + link => sub { + my ($par, $text, $link) = @_; + + "" . (CFPlus::asxml $text) . "" + }, +); + sub as_label(@) { - join "\n", - map +("\xa0" x ($_->{indent} / 4)) . $_->{markup}, - @_ + thaw_section @_, %as_label; + + my $text = + join "\n", + map +("\xa0" x ($_->{indent} / 4)) . $_->{markup}, + @_; + + $text =~ s/^\s+//; + $text =~ s/\s+$//; + + $text +} + +my %as_paragraphs = ( + image => sub { + my ($par, $path) = @_; + + push @{ $par->{widget} }, new CFPlus::UI::Image path => $path; + + "\x{fffc}" + }, + link => sub { + my ($par, $text, $link) = @_; + + push @{ $par->{widget} }, new CFPlus::UI::Label + markup => "" . (CFPlus::asxml $text) . "", + size => 0.8, + can_hover => 1, + can_events => 1, + padding_x => 0, + padding_y => 0, + tooltip => "Go to " . (CFPlus::asxml $link) . "", + on_button_up => sub { + goto_document $link; + }; + + "\x{fffc}" + }, +); + +sub as_paragraphs(@) { + thaw_section @_, %as_paragraphs; + + @_ +} + +sub section_paragraphs(@) { + as_paragraphs §ion +} + +sub section_label(@) { + as_label §ion } 1