ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/ipo.ext
Revision: 1.11
Committed: Fri Sep 8 16:22:14 2006 UTC (17 years, 8 months ago) by root
Branch: MAIN
Changes since 1.10: +17 -16 lines
Log Message:
new accessor methods

File Contents

# User Rev Content
1 elmex 1.1 #! perl
2    
3     my $price_fact = 50;
4    
5     sub set_package {
6 elmex 1.2 my ($pkg, $from, $to, $bagname, $weight) = @_;
7 root 1.11
8     $pkg->name ("$bagname T: $to F: $from");
9     $pkg->weight_limit ($weight);
10     $pkg->stats->Str (0);
11 elmex 1.1 }
12    
13     # prices in plat.
14     my %prices = (
15     pen => [
16     40, 'stylus',
17 root 1.11 sub { $_[0]->name ('IPO Writing Pen'); $_[0]->value (40 * $price_fact); }
18 elmex 1.1 ],
19     literacy => [
20     1000, 'scroll_literacy',
21 root 1.11 sub { $_[0]->value (1000 * $price_fact) }
22 elmex 1.1 ],
23     mailscroll => [
24     1, 'scroll',
25     sub {
26 root 1.11 $_[0]->name ("mailscroll T: $_[2] F: $_[1]");
27     $_[0]->name_plural ("mailscrolls T: $_[2] F: $_[1]");
28     $_[0]->value (1 * $price_fact);
29 elmex 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 root 1.11 $_[0]->name ("mailwarning T: $_[2] F: $_[1]");
39     $_[0]->name_plural ("mailwarnings T: $_[2] F: $_[1]");
40     $_[0]->value (0);
41 elmex 1.1 },
42     'plarg'
43     ],
44     );
45    
46 elmex 1.2 my %mailtypes = (
47     1 => ['scroll', 'mailscroll'],
48     2 => ['note', 'newspaper'],
49     3 => ['diploma', 'mailwarning'],
50     );
51    
52 elmex 1.5 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     if (my $player = cf::player::find $_) {
58     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 elmex 1.1 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     $map->insert_object ($o, $x, $y);
74     $r
75     }
76    
77 elmex 1.2 # this handler handles to notice the player that he has got mail
78 root 1.7 cf::attach_to_players
79     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     ;
95 elmex 1.2
96     # this event handler handles receiving of mails
97 root 1.9 cf::register_attachment ipo_mailbox =>
98     on_apply => sub {
99     my ($box, $pl) = @_;
100 elmex 1.2
101 root 1.9 my $cnt;
102     my $mails = CFMail::get_mail ($pl->name) || [];
103 elmex 1.2
104 root 1.9 # 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 root 1.11 $mail->name ("$type->[1] F: $from T: " .$pl->name);
120     $mail->name_plural ("$type->[1]s F: $from T: " .$pl->name);
121     $mail->message ($msg);
122     $mail->value (0);
123 root 1.9 $mail->insert_in_ob ($box);
124     }
125 elmex 1.2
126 root 1.9 $cnt += @$mails;
127 elmex 1.2
128 root 1.9 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 elmex 1.2
136 root 1.9 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, $_->message);
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, $_->message);
156     push @mails, $_;
157     }
158 elmex 1.2 }
159    
160 root 1.9 $_->remove for @mails;
161 elmex 1.2
162 root 1.9 notify_players (%sent_targets);
163     },
164     ;
165 elmex 1.2
166     # this is the main command interface for the IPO NPC
167 elmex 1.1 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     my $pl = cf::player::find $who->name;
173     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     $who->pay_amount ($pr->[0] * $price_fact);
181     if ($pr->[3] && not cf::player::exists $arguments) {
182     $who->reply ($npc, "Sorry, there is no '$arguments'");
183     } else {
184     create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments);
185     $who->reply ($npc, "Here is your $cmd");
186     }
187    
188     } elsif ($cmd eq 'receive') {
189 root 1.10 my $storage = cf::map::find ("/planes/IPO_storage");
190 elmex 1.1 unless ($storage) {
191     $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
192     return 1;
193     }
194    
195     my $plname = $who->name;
196     my $cnt;
197     for ($storage->at (2, 2)) {
198     if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) {
199     $_->insert_in_ob ($who);
200     $cnt++;
201     }
202     }
203    
204     if ($cnt) {
205     $who->reply ($npc, $cnt == 1 ? "Here is your pakage." : "Here are your packages.");
206     } else {
207     $who->reply ($npc, "Sorry, no deliverys for you sir.");
208     }
209    
210     } elsif ($cmd eq 'send') {
211     unless ($arguments =~ /^\S+$/) {
212     $who->reply ($npc, "Send to who?");
213     return 1;
214     }
215    
216 root 1.10 my $storage = cf::map::find ("/planes/IPO_storage");
217 elmex 1.1 unless ($storage) {
218     $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
219     return 1;
220     }
221    
222     my $cnt;
223     for ($who->inv) {
224 elmex 1.2 if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) {
225 root 1.11 $_->name ("$1 F: $2 T: $arguments");
226 elmex 1.1 $_->teleport ($storage, 2, 2);
227     $cnt++;
228     }
229     }
230    
231     if ($cnt) {
232     $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n");
233 elmex 1.5 CFMail::send_mail (1, $arguments, $who->name, "You got $cnt packages from " . $who->name);
234     notify_players ($arguments => 1);
235 elmex 1.1 } else {
236     $who->reply ($npc, "Sorry, found no package to send to $arguments.");
237     }
238    
239     } else {
240     $who->reply ($npc,
241 elmex 1.2 sprintf "How can I help you?\n"
242 root 1.9 . "Here is a quick list of commands I understand:\n\n"
243     . "- pen (%s platinum)\n"
244     . "- literacy (%s platinum)\n"
245     . "- mailscroll <friend> (%s platinum)\n"
246     . "- bag <friend> (%s platinum)\n"
247     . "- package <friend> (%s platinum)\n"
248     . "- carton <friend> (%s platinum)\n"
249     . "- send <friend> (send bags/packages/cartons)\n"
250     . "- receive (to receive packages for you)\n"
251     . ($who->flag (cf::FLAG_WIZ) ? "- mailwarning <player>" : ""),
252     40, 1000, 1, 1, 5, 10
253 elmex 1.1 );
254     }
255     1
256 elmex 1.2 };
257    
258     package CFMail;
259 root 1.9
260 elmex 1.2 use POSIX qw/strftime/;
261 elmex 1.4 use CFDB;
262 elmex 1.2
263 elmex 1.4 my $MAILDB = CFDB->new (db_file => cf::localdir . "/crossfiremail.perl");
264 elmex 1.2
265     sub get_mail {
266     my ($toname) = @_;
267 elmex 1.3 $MAILDB->get ($toname);
268 elmex 1.2 }
269    
270     sub clear_mail {
271     my ($toname) = @_;
272 elmex 1.3 $MAILDB->clear ($toname);
273 elmex 1.2 }
274    
275     sub store_mail {
276     my ($type, $toname, $fromname, $message) = @_;
277 elmex 1.3 my $mails = $MAILDB->get ($toname);
278     push @$mails, [$type, $fromname, $message];
279     $MAILDB->set ($toname, $mails);
280 elmex 1.2 }
281    
282     sub send_mail {
283     my ($type, $toname, $fromname, $message) = @_;
284     my $time = strftime ("%a, %d %b %Y %H:%M:%S CEST", localtime (time));
285     my $msg = "From: $fromname\nTo: $toname\nDate: $time\n\n$message\n";
286 elmex 1.3 store_mail ($type, $toname, $fromname, $msg);
287 elmex 1.2 }
288    
289     1;