ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/help.ext
Revision: 1.16
Committed: Tue Sep 23 05:01:41 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-2_82, rel-2_81, rel-2_80, rel-2_72, rel-2_73, rel-2_71, rel-2_76, rel-2_77, rel-2_74, rel-2_75, rel-2_79, rel-2_90, rel-2_92, rel-2_93, rel-2_78
Changes since 1.15: +3 -12 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl
2
3 our $TOPIC;
4
5 our $HELP_CHANNEL = {
6 id => "help",
7 title => "Help",
8 reply => "help ",
9 tooltip => "Online Help",
10 };
11
12 sub load_topics($$) {
13 my ($type, $path) = @_;
14
15 my $paragraphs = cf::pod::load_pod "$PODDIR/$path.pod"
16 or die "unable to load $path";
17
18 my @topics;
19 my $level = 1e9;
20
21 for my $par (@$paragraphs) {
22 cf::cede_to_tick;
23 if ($par->{type} eq "head2") {
24 if ($par->{markup} =~ /^(\S+)/) {
25 push @topics, $1 => [$type => $par];
26 $level = $par->{level};
27 }
28 } elsif ($par->{level} > $level) {
29 push @{ $topics[-1] }, $par;
30 }
31 }
32
33 @topics
34 }
35
36 sub reload() {
37 my $guard = cf::lock_acquire "ext::help::loading";
38
39 local $Coro::current->{desc} = "help loader";
40
41 $TOPIC = {
42 (load_topics "DM Commands" => "dmcommand_help"),
43 (load_topics "Emotes" => "emote_help"),
44 (load_topics "Commands" => "command_help"),
45 (load_topics "Generic Help Topics" => "generic_help"),
46 };
47
48 ()
49 }
50
51 cf::post_init {
52 cf::async {
53 reload;
54 };
55 };
56
57 cf::register_command help => sub {
58 my ($pl, $topic) = @_;
59
60 if (cf::lock_active "ext::help::loading") {
61 $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;
63 }
64
65 $topic = $1 if $topic =~ /(\S+)/;
66
67 if (!length $topic) {
68 # sort..
69
70 my %topics;
71 while (my ($k, $v) = each %$TOPIC) {
72 push @{$topics{$v->[0]}}, $k;
73 }
74
75 my $res;
76 while (my ($k, $v) = each %topics) {
77 $res .= "T<$k:>\n\n" . (join " ", sort @$v) . "\n\n";
78 }
79
80 $pl->send_msg ($HELP_CHANNEL => $res, cf::NDI_REPLY | cf::NDI_CLEAR);
81
82 } elsif (my $item = $TOPIC->{$topic}) {
83 my ($type, @pars) = @$item;
84 $pl->send_msg ($HELP_CHANNEL => (cf::pod::as_cfpod \@pars), cf::NDI_REPLY | cf::NDI_CLEAR);
85
86 } else {
87 $pl->send_msg ($HELP_CHANNEL => "'$topic' no such help topic, try just 'help' to get a list of topics.", cf::NDI_REPLY);
88 }
89 };
90