ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC/Pod.pm
Revision: 1.22
Committed: Sun Mar 30 11:31:09 2008 UTC (16 years, 3 months ago) by root
Branch: MAIN
Changes since 1.21: +14 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 package DC::Pod;
2
3 use strict;
4 use utf8;
5
6 use Storable;
7
8 our $VERSION = 1.03;
9
10 our $goto_document = sub { };
11 our %wiki;
12
13 my $MA_BEG = "\x{fcd0}";
14 my $MA_SEP = "\x{fcd1}";
15 my $MA_END = "\x{fcd2}";
16
17 # nodes (order must stay as it is)
18 sub N_PARENT (){ 0 }
19 sub N_PAR (){ 1 }
20 sub N_LEVEL (){ 2 }
21 sub N_KW (){ 3 }
22 sub N_DOC (){ 4 }
23
24 # paragraphs (order must stay as it is)
25 sub P_INDENT (){ 0 }
26 sub P_LEVEL (){ 1 }
27 sub P_MARKUP (){ 2 }
28 sub P_INDEX (){ 3 }
29
30 our %wiki;
31
32 sub load_docwiki {
33 *wiki = Storable::retrieve $_[0];
34 }
35
36 sub goto_document($) {
37 $goto_document->(split /\//, $_[0]);
38 }
39
40 sub is_prefix_of($@) {
41 my ($node, @path) = @_;
42
43 return 1 unless @path;
44
45 my $kw = lc pop @path;
46
47 $node = $node->[N_PARENT]
48 or return 0;
49
50 #TODO: maybe get rid of lowercasing?
51 return scalar grep lc eq $kw, @{ $node->[N_KW] };
52 }
53
54 sub find(@) {
55 my (@path) = @_;
56
57 return unless @path;
58
59 my $kw = lc pop @path;
60
61 # TODO: make sure results are unique
62
63 grep { is_prefix_of $_, @path }
64 map @$_,
65 $kw eq "*" ? @wiki{sort keys %wiki}
66 : $wiki{$kw} || ()
67 }
68
69 sub full_path_of($) {
70 my ($node) = @_;
71
72 my @path;
73
74 # skip toplevel hierarchy pod/, because its not a document
75 while ($node->[N_PARENT]) {
76 unshift @path, $node;
77 $node = $node->[N_PARENT];
78 }
79
80 @path
81 }
82
83 sub full_path($) {
84 join "/", map $_->[N_KW][0], &full_path_of
85 }
86
87 sub section_of($) {
88 my ($node) = @_;
89
90 my $doc = $node->[N_DOC];
91 my $par = $node->[N_PAR];
92 my $lvl = $node->[N_LEVEL];
93
94 my @res;
95
96 do {
97 my $p = $doc->[$par];
98
99 if (length $p->[P_MARKUP]) {
100 push @res, {
101 markup => $p->[P_MARKUP],
102 indent => $p->[P_INDENT],
103 };
104 }
105 } while $doc->[++$par][P_LEVEL] > $lvl;
106
107 @res
108 }
109
110 sub section(@) {
111 map section_of $_, &find
112 }
113
114 sub thaw_section(\@\%) {
115 for (@{$_[0]}) {
116 $_->{markup} =~ s{
117 $MA_BEG
118 ([^$MA_END]+)
119 $MA_END
120 }{
121 my ($type, @arg) = split /$MA_SEP/o, $1;
122
123 $_[1]{$type}($_, @arg)
124 }ogex;
125 }
126 }
127
128 my %as_common = (
129 h1 => sub {
130 "\n\n<span foreground='#ffff00' size='x-large'>$_[1]</span>\n"
131 },
132 h2 => sub {
133 "\n\n<span foreground='#ccccff' size='large'>$_[1]</span>\n"
134 },
135 h3 => sub {
136 "\n\n<span size='large'>$_[1]</span>\n"
137 },
138 );
139
140 my %as_label = (
141 %as_common,
142 image => sub {
143 my ($par, $path) = @_;
144
145 "<small>img</small>"
146 },
147 link => sub {
148 my ($par, $text, $link) = @_;
149
150 "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>"
151 },
152 );
153
154 sub as_label(@) {
155 thaw_section @_, %as_label;
156
157 my $text =
158 join "\n",
159 map +("\xa0" x ($_->{indent} / 4)) . $_->{markup},
160 @_;
161
162 $text =~ s/^\s+//;
163 $text =~ s/\s+$//;
164
165 $text
166 }
167
168 my %as_paragraphs = (
169 %as_common,
170 image => sub {
171 my ($par, $path, $flags) = @_;
172
173 push @{ $par->{widget} }, new DC::UI::Image path => $path,
174 $flags & 1 ? (max_h => $::FONTSIZE) : ();
175
176 "\x{fffc}"
177 },
178 link => sub {
179 my ($par, $text, $link) = @_;
180
181 push @{ $par->{widget} }, new DC::UI::Label
182 markup => "<span foreground='#ffff00'>↺</span><span foreground='#c0c0ff' underline='single'>" . (DC::asxml $text) . "</span>",
183 fontsize => 0.8,
184 can_hover => 1,
185 can_events => 1,
186 padding_x => 0,
187 padding_y => 0,
188 tooltip => "Go to <i>" . (DC::asxml $link) . "</i>",
189 on_button_up => sub {
190 goto_document $link;
191 };
192
193 "\x{fffc}"
194 },
195 );
196
197 sub as_paragraphs(@) {
198 thaw_section @_, %as_paragraphs;
199
200 @_
201 }
202
203 sub section_paragraphs(@) {
204 as_paragraphs &section
205 }
206
207 sub section_label(@) {
208 as_label &section
209 }
210
211 1