ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/help.ext
(Generate patch)

Comparing deliantra/server/ext/help.ext (file contents):
Revision 1.17 by root, Fri May 14 22:56:47 2010 UTC vs.
Revision 1.18 by root, Fri Nov 9 20:37:57 2012 UTC

1#! perl 1#! perl # mandatory depends=doclet
2 2
3our $TOPIC; 3our $TOPIC;
4our %DOCLET;
4 5
5our $HELP_CHANNEL = { 6our $HELP_CHANNEL = {
6 id => "help", 7 id => "help",
7 title => "Help", 8 title => "Help",
8 reply => "help ", 9 reply => "help ",
9 tooltip => "Online Help", 10 tooltip => "Online Help",
11};
12
13# considerable duplication between load_doclets and load_topics
14sub load_doclets {
15 %DOCLET = ();
16
17 my @command_list;
18
19 for (
20 [0, "command_help"],
21 [1, "emote_help"],
22 [2, "dmcommand_help"],
23 ) {
24 my ($type, $path) = @$_;
25
26 my $paragraphs = cf::pod::load_pod "$PODDIR/$path.pod"
27 or die "unable to load $path";
28
29 my $level = 1e9;
30 my $rpar;
31
32 for my $par (@$paragraphs) {
33 if ($par->{type} eq "head2") {
34 # this code taken almost verbatim from DC/Protocol.pm
35
36 if ($par->{markup} =~ /^(\S+) (?:\s+ \( ([^\)]*) \) )?/x) {
37 my $cmd = $1;
38 my @args = split /\|/, $2;
39 @args = (".*") unless @args;
40
41 $_ = $_ eq ".*" ? "" : " $_"
42 for @args;
43
44 my @variants = map "$cmd$_", sort { (length $a) <=> (length $b) } @args;
45
46 $rpar = \($DOCLET{$cmd} = &cf::pod::as_cfpod ([$par]));
47
48 push @command_list, [$type, \@variants];
49 $level = $par->{level};
50 } else {
51 cf::error "$par->{markup}: unparsable command heading";
52 }
53 } elsif ($par->{level} > $level) {
54 $$rpar .= &cf::pod::as_cfpod ([$par]);
55 }
56
57 cf::cede_to_tick;
58 }
59 }
60
61 @command_list = sort {
62 $a->[0] <=> $b->[0]
63 or $a->[1] cmp $b->[1]
64 } @command_list;
65
66 cf::cede_to_tick;
67
68 cf::set_face "res/command_list" => cf::FT_RSRC,
69 JSON::XS->new->utf8->encode (\@command_list);
70}
71
72our $DOCLET_HANDLER = ext::doclet::register command => sub {
73 my ($pl, $category, $command) = @_;
74
75 my $guard = cf::lock_acquire "ext::help::loading";
76
77 $DOCLET{$command}
78 || "B<No documentation available for '$category/$command'>"
10}; 79};
11 80
12sub load_topics($$) { 81sub load_topics($$) {
13 my ($type, $path) = @_; 82 my ($type, $path) = @_;
14 83
32 101
33 @topics 102 @topics
34} 103}
35 104
36sub reload() { 105sub reload() {
37 my $guard = cf::lock_acquire "ext::help::loading"; 106 my $guard1 = cf::lock_acquire "ext::help::loading";
107 my $guard2 = cf::lock_acquire "ext::resource";
38 108
39 local $Coro::current->{desc} = "help loader"; 109 local $Coro::current->{desc} = "help loader";
40 110
41 $TOPIC = { 111 $TOPIC = {
42 (load_topics "DM Commands" => "dmcommand_help"), 112 (load_topics "DM Commands" => "dmcommand_help"),
43 (load_topics "Emotes" => "emote_help"), 113 (load_topics "Emotes" => "emote_help"),
44 (load_topics "Commands" => "command_help"), 114 (load_topics "Commands" => "command_help"),
45 (load_topics "Generic Help Topics" => "generic_help"), 115 (load_topics "Generic Help Topics" => "generic_help"),
46 }; 116 };
117
118 load_doclets;
47 119
48 () 120 ()
49} 121}
50 122
51cf::post_init { 123cf::post_init {
52 cf::async_ext { reload }; 124 cf::async_ext { reload };
125 Coro::cede; # make sure reload acquires the lock(s)
53}; 126};
54 127
55cf::register_command help => sub { 128cf::register_command help => sub {
56 my ($pl, $topic) = @_; 129 my ($pl, $topic) = @_;
57 130

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines