ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/ipo.ext
Revision: 1.15
Committed: Mon Sep 22 01:33:09 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
CVS Tags: 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_78
Changes since 1.14: +11 -10 lines
Log Message:
many minor text layout fixes

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3     my $price_fact = 50;
4    
5     sub set_package {
6     my ($pkg, $from, $to, $bagname, $weight) = @_;
7    
8     $pkg->name ("$bagname T: $to F: $from");
9     $pkg->weight_limit ($weight);
10     $pkg->stats->Str (0);
11     }
12    
13     # prices in plat.
14     my %prices = (
15     pen => [
16     40, 'stylus',
17 elmex 1.12 sub { $_[0]->name ('IPO Writing Pen'); $_[0]->value (0); }
18 root 1.1 ],
19     literacy => [
20     1000, 'scroll_literacy',
21 elmex 1.12 sub { $_[0]->value (0) }
22 root 1.1 ],
23     mailscroll => [
24 root 1.8 1, 'mailscroll_empty',
25 root 1.1 sub {
26     $_[0]->name ("mailscroll T: $_[2] F: $_[1]");
27     $_[0]->name_pl ("mailscrolls T: $_[2] F: $_[1]");
28 elmex 1.12 $_[0]->value (0);
29 root 1.1 },
30     'plarg'
31     ],
32     bag => [ 1, 'r_sack', sub { set_package (@_, bag => 5000) }, 'plarg' ],
33     package => [ 5, 'r_sack', sub { set_package (@_, package => 50000) }, 'plarg' ],
34     carton => [10, 'r_sack', sub { set_package (@_, carton => 100000) }, 'plarg' ],
35     mailwarning => [
36     0, 'diploma',
37     sub {
38     $_[0]->name ("mailwarning T: $_[2] F: $_[1]");
39     $_[0]->name_pl ("mailwarnings T: $_[2] F: $_[1]");
40     $_[0]->value (0);
41     },
42     'plarg'
43     ],
44     );
45    
46     my %mailtypes = (
47     1 => ['scroll', 'mailscroll'],
48     2 => ['note', 'newspaper'],
49     3 => ['diploma', 'mailwarning'],
50     );
51    
52     sub notify_players {
53     my (%sent_targets) = @_;
54    
55     # lets message player ingame: this is a NEW feature from the perl IPO :-)
56     for (keys %sent_targets) {
57 root 1.4 if (my $player = cf::player::find_active $_) {
58 root 1.1 my $cnt = $sent_targets{$_};
59    
60     if ($cnt == 1) {
61     $player->ob->message ("You've got new mail.");
62     } else {
63     $player->ob->message ("You've got $cnt new mails.");
64     }
65     }
66     }
67     }
68    
69     sub create_object {
70     my ($name, $map, $x, $y, $cb, @a) = @_;
71     my $o = cf::object::new $name;
72     my $r = $cb->($o, @a);
73 root 1.11 $map->insert ($o, $x, $y);
74 root 1.1 $r
75     }
76    
77 root 1.2 # this handler notifies the player of new mail
78     cf::player->attach (
79 root 1.1 on_login => sub {
80     my ($pl) = @_;
81    
82     my $mails = CFMail::get_mail ($pl->ob->name);
83    
84     my $cnt = @{$mails || []};
85    
86     if ($cnt == 1) {
87     $pl->ob->message ("You got one mail.");
88     } elsif ($cnt > 1) {
89     $pl->ob->message ("You got $cnt mails.");
90     } else {
91     $pl->ob->message ("You haven't got any mail.");
92     }
93     },
94 root 1.2 );
95 root 1.1
96     # this event handler handles receiving of mails
97 root 1.2 cf::object::attachment ipo_mailbox =>
98 root 1.1 on_apply => sub {
99     my ($box, $pl) = @_;
100    
101     my $cnt;
102     my $mails = CFMail::get_mail ($pl->name) || [];
103    
104     # count the mails that are in the container
105     # FIXME: the problem with on_apply is that it is called even when
106     # the player closes the container. so we get a 'You have X mails.' message
107     # twice. - This bug existed also with the old python plugin
108    
109     my $plname = $pl->name;
110     for ($box->inv) {
111     $_->name =~ /\S+ F: \S+ T: \Q$plname\E/
112     and $cnt++;
113     }
114    
115     for (@$mails) {
116     my ($type, $from, $msg) = @$_;
117     $type = $mailtypes{$type || 1} || ['scroll', 'mailscroll'];
118     my $mail = cf::object::new $type->[0];
119     $mail->name ("$type->[1] F: $from T: " .$pl->name);
120     $mail->name_pl ("$type->[1]s F: $from T: " .$pl->name);
121     $mail->msg ($msg);
122     $mail->value (0);
123 elmex 1.5 $box->insert ($mail);
124 root 1.1 }
125    
126     $cnt += @$mails;
127    
128     if ($cnt == 1) {
129     $pl->message ("You got one mail.");
130     } elsif ($cnt > 1) {
131     $pl->message ("You got $cnt mails.");
132     } else {
133     $pl->message ("You haven't got any mail.");
134     }
135    
136     CFMail::clear_mail ($pl->name);
137     },
138     # this event handler handles the sending of mails
139     on_close => sub {
140     my ($box, $pl) = @_;
141    
142     my @mails;
143    
144     my %sent_targets;
145    
146     for ($box->inv) {
147     if ($_->name =~ m/^mail(scroll|warning) T: (\S+) F: (\S+)/) {
148     CFMail::send_mail ($1 eq 'scroll' ? 1 : 3, $2, $3, $_->msg);
149     $pl->message ("Sent mail$1 to $2 (from $3).");
150     $sent_targets{$2}++;
151     push @mails, $_;
152    
153     } elsif ($_->name =~ m/^mail(scroll|warning) F: (\S+) T: (\S+)/) {
154     # this is for mails that remain in the queue for the player
155     CFMail::store_mail ($1 eq 'scroll' ? 1 : 3, $3, $2, $_->msg);
156     push @mails, $_;
157     }
158     }
159    
160     $_->remove for @mails;
161    
162     notify_players (%sent_targets);
163     },
164     ;
165    
166     # this is the main command interface for the IPO NPC
167     cf::register_script_function "ipo::command" => sub {
168     my ($who, $msg, $npc) = @_;
169     my ($cmd, $arguments) = split /\s+/, $msg, 2;
170     $cmd = lc $cmd;
171    
172 root 1.4 my $pl = cf::player::find_active $who->name;
173 root 1.1 my ($x, $y) = ($pl->ob->x, $pl->ob->y);
174    
175     if (my $pr = $prices{$cmd}) {
176     if ($cmd eq 'mailwarning' and !$who->flag (cf::FLAG_WIZ)) {
177     return 1;
178     }
179    
180 elmex 1.12 if ($who->pay_amount ($pr->[0] * $price_fact)) {
181 elmex 1.14 cf::async {
182     if ($pr->[3] && not cf::player::exists $arguments) {
183     $who->reply ($npc, "Sorry, there is no '$arguments'");
184     } else {
185     create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments);
186     $who->reply ($npc, "Here is your $cmd");
187     }
188 elmex 1.12 }
189 root 1.1 } else {
190 elmex 1.12 $who->reply ($npc, "Sorry, you don't have enough money.");
191 root 1.1 }
192    
193     } elsif ($cmd eq 'receive') {
194 elmex 1.5 cf::async {
195 root 1.9 $Coro::current->{desc} = "ipo receive";
196    
197 elmex 1.5 my $storage = cf::map::find ("/planes/IPO_storage");
198     unless ($storage) {
199     $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
200     return 1;
201     }
202 root 1.10 $storage->load;
203 root 1.1
204 elmex 1.5 my $plname = $who->name;
205     my $cnt;
206     for ($storage->at (2, 2)) {
207     if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) {
208     $who->insert ($_);
209     $cnt++;
210     }
211 root 1.1 }
212    
213 elmex 1.5 if ($cnt) {
214 root 1.7 $who->reply ($npc, $cnt == 1 ? "Here is your package." : "Here are your packages.");
215 elmex 1.5 } else {
216 root 1.7 $who->reply ($npc, "Sorry, no deliveries for you sir.");
217 elmex 1.5 }
218 root 1.1 }
219    
220     } elsif ($cmd eq 'send') {
221     unless ($arguments =~ /^\S+$/) {
222     $who->reply ($npc, "Send to who?");
223     return 1;
224     }
225    
226 elmex 1.5 cf::async {
227 root 1.9 $Coro::current->{desc} = "ipo send";
228    
229 elmex 1.5 my $storage = cf::map::find ("/planes/IPO_storage");
230     unless ($storage) {
231     $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
232     return 1;
233     }
234 root 1.10 $storage->load;
235 root 1.1
236 elmex 1.5 my $cnt;
237     for ($who->inv) {
238     if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) {
239     $_->name ("$1 F: $2 T: $arguments");
240 root 1.11 $storage->insert ($_, 2, 2);
241 elmex 1.5 $cnt++;
242     }
243 root 1.1 }
244    
245 elmex 1.5 if ($cnt) {
246     $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n");
247     CFMail::send_mail (1, $arguments, $who->name, "You got $cnt packages from " . $who->name);
248     notify_players ($arguments => 1);
249     } else {
250     $who->reply ($npc, "Sorry, found no package to send to $arguments.");
251     }
252 root 1.1 }
253    
254     } else {
255     $who->reply ($npc,
256     sprintf "How can I help you?\n"
257     . "Here is a quick list of commands I understand:\n\n"
258 root 1.15 . " - pen (%s platinum)\n"
259     . " - literacy (%s platinum)\n"
260     . " - mailscroll <friend> (%s platinum)\n"
261     . " - bag <friend> (%s platinum)\n"
262     . " - package <friend> (%s platinum)\n"
263     . " - carton <friend> (%s platinum)\n"
264     . " - send <friend> (send bags/packages/cartons)\n"
265     . " - receive (to receive packages for you)\n"
266     . ($who->flag (cf::FLAG_WIZ) ? " - mailwarning <player>\n" : ""),
267 root 1.1 40, 1000, 1, 1, 5, 10
268     );
269     }
270     1
271     };
272    
273     package CFMail;
274    
275     use POSIX qw/strftime/;
276     use CFDB;
277    
278 root 1.6 my $MAILDB = CFDB->new (db_file => "$LOCALDIR/crossfiremail");
279 root 1.1
280     sub get_mail {
281     my ($toname) = @_;
282     $MAILDB->get ($toname);
283     }
284    
285     sub clear_mail {
286     my ($toname) = @_;
287     $MAILDB->clear ($toname);
288     }
289    
290     sub store_mail {
291     my ($type, $toname, $fromname, $message) = @_;
292     my $mails = $MAILDB->get ($toname);
293     push @$mails, [$type, $fromname, $message];
294     $MAILDB->set ($toname, $mails);
295     }
296    
297     sub send_mail {
298     my ($type, $toname, $fromname, $message) = @_;
299     my $time = strftime ("%a, %d %b %Y %H:%M:%S CEST", localtime (time));
300 root 1.15 my $msg = "From: $fromname\rTo: $toname\rDate: $time\n\n$message\n";
301 root 1.1 store_mail ($type, $toname, $fromname, $msg);
302     }
303    
304     1;
305 root 1.15