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.8 by root, Tue Jun 26 23:09:30 2007 UTC vs.
Revision 1.17 by root, Fri May 14 22:56:47 2010 UTC

1#! perl 1#! perl
2 2
3our $TOPIC; 3our $TOPIC;
4
5our $HELP_CHANNEL = {
6 id => "help",
7 title => "Help",
8 reply => "help ",
9 tooltip => "Online Help",
10};
4 11
5sub load_topics($$) { 12sub load_topics($$) {
6 my ($type, $path) = @_; 13 my ($type, $path) = @_;
7 14
8 my $paragraphs = cf::pod::load_pod "$PODDIR/$path.pod" 15 my $paragraphs = cf::pod::load_pod "$PODDIR/$path.pod"
10 17
11 my @topics; 18 my @topics;
12 my $level = 1e9; 19 my $level = 1e9;
13 20
14 for my $par (@$paragraphs) { 21 for my $par (@$paragraphs) {
15 Coro::cede; 22 cf::cede_to_tick;
16 if ($par->{type} eq "head2") { 23 if ($par->{type} eq "head2") {
17 if ($par->{markup} =~ /^(\S+)/) { 24 if ($par->{markup} =~ /^(\S+)/) {
18 push @topics, $1 => [$type => $par]; 25 push @topics, $1 => [$type => $par];
19 $level = $par->{level}; 26 $level = $par->{level};
20 } 27 }
25 32
26 @topics 33 @topics
27} 34}
28 35
29sub reload() { 36sub reload() {
37 my $guard = cf::lock_acquire "ext::help::loading";
38
39 local $Coro::current->{desc} = "help loader";
40
30 $TOPIC = { 41 $TOPIC = {
31 (load_topics "DM Commands" => "dmcommand_help"), 42 (load_topics "DM Commands" => "dmcommand_help"),
32 (load_topics "Emotes" => "emote_help"), 43 (load_topics "Emotes" => "emote_help"),
33 (load_topics "Commands" => "command_help"), 44 (load_topics "Commands" => "command_help"),
34 (load_topics "Generic Help Topics" => "generic_help"), 45 (load_topics "Generic Help Topics" => "generic_help"),
35 }; 46 };
47
48 ()
36} 49}
37 50
38cf::sync_job { 51cf::post_init {
39 my $guard = cf::lock_acquire "ext::help::loading";
40 cf::async_ext { 52 cf::async_ext { reload };
41 reload;
42 undef $guard;
43 };
44}; 53};
45
46# for lack of a better place: "media tags"
47# b bold
48# i italic
49# ul underlined
50# fixed font
51# arcane font
52# hand font
53# strange font
54# print font (default)
55# color=xxx
56 54
57cf::register_command help => sub { 55cf::register_command help => sub {
58 my ($pl, $topic) = @_; 56 my ($pl, $topic) = @_;
59 57
60 if (cf::lock_active "ext::help::loading") { 58 if (cf::lock_active "ext::help::loading") {
61 $pl->reply (undef, "help files are being loaded currently, try again in a few seconds."); 59 $pl->send_msg ($HELP_CHANNEL => "help files are being loaded currently, try again in a few seconds.", cf::NDI_REPLY | cf::NDI_CLEAR);
62 return; 60 return;
63 } 61 }
64 62
65 $topic = $1 if $topic =~ /(\S+)/; 63 $topic = $1 if $topic =~ /(\S+)/;
66 64
72 push @{$topics{$v->[0]}}, $k; 70 push @{$topics{$v->[0]}}, $k;
73 } 71 }
74 72
75 my $res; 73 my $res;
76 while (my ($k, $v) = each %topics) { 74 while (my ($k, $v) = each %topics) {
77 $res .= "B<$k:>\n" . (join " ", sort @$v) . "\n\n"; 75 $res .= "T<$k:>\n\n" . (join " ", sort @$v) . "\n\n";
78 } 76 }
79 77
80 $pl->reply (undef, $res); 78 $pl->send_msg ($HELP_CHANNEL => $res, cf::NDI_REPLY | cf::NDI_CLEAR);
81 79
82 } elsif (my $item = $TOPIC->{$topic}) { 80 } elsif (my $item = $TOPIC->{$topic}) {
83 my ($type, @pars) = @$item; 81 my ($type, @pars) = @$item;
84 $pl->reply (undef, cf::pod::as_text \@pars); 82 $pl->send_msg ($HELP_CHANNEL => (cf::pod::as_cfpod \@pars), cf::NDI_REPLY | cf::NDI_CLEAR);
85 83
86 } else { 84 } else {
87 $pl->reply (undef, "'$topic' no such help topic, try just 'help' to get a list of topics."); 85 $pl->send_msg ($HELP_CHANNEL => "'$topic' no such help topic, try just 'help' to get a list of topics.", cf::NDI_REPLY);
88 } 86 }
89}; 87};
90 88

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines