ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/lib/cf.pm
(Generate patch)

Comparing deliantra/server/lib/cf.pm (file contents):
Revision 1.22 by root, Wed Jul 19 08:50:42 2006 UTC vs.
Revision 1.31 by elmex, Mon Aug 14 04:22:04 2006 UTC

1package cf; 1package cf;
2 2
3use Symbol; 3use Symbol;
4use List::Util; 4use List::Util;
5use Storable; 5use Storable;
6use Opcode;
7use Safe;
8use Safe::Hole;
6 9
7use Event; 10use Event;
8$Event::Eval = 1; # no idea why this is required, but it is 11$Event::Eval = 1; # no idea why this is required, but it is
9 12
10use strict; 13use strict;
11 14
12our %COMMAND; 15our %COMMAND;
13our @EVENT; 16our @EVENT;
14our %PROP_TYPE; 17our %PROP_TYPE;
15our %PROP_IDX; 18our %PROP_IDX;
19our $LIBDIR = maps_directory "perl";
16 20
17BEGIN { 21BEGIN {
18 @EVENT = map lc, @EVENT; 22 @EVENT = map lc, @EVENT;
19 23
20 *CORE::GLOBAL::warn = sub { 24 *CORE::GLOBAL::warn = sub {
61prop_gen MAP_PROP => "cf::map"; 65prop_gen MAP_PROP => "cf::map";
62prop_gen ARCH_PROP => "cf::arch"; 66prop_gen ARCH_PROP => "cf::arch";
63 67
64# guessed hierarchies 68# guessed hierarchies
65 69
66@cf::object::player::ISA = 'cf::object'; 70@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
67@cf::object::map::ISA = 'cf::object'; 71@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
72
73# we bless all objects into derived classes to force a method lookup
74# within the Safe compartment.
75for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region cf::arch)) {
76 no strict 'refs';
77 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
78}
68 79
69$Event::DIED = sub { 80$Event::DIED = sub {
70 warn "error in event callback: @_"; 81 warn "error in event callback: @_";
71}; 82};
72 83
160 171
161 push @exts, $pkg; 172 push @exts, $pkg;
162 $ext_pkg{$base} = $pkg; 173 $ext_pkg{$base} = $pkg;
163 174
164# no strict 'refs'; 175# no strict 'refs';
165# @{"$pkg\::ISA"} = cf::ext::; 176# @{"$pkg\::ISA"} = ext::;
166 177
167 register $base, $pkg; 178 register $base, $pkg;
168} 179}
169 180
170sub unload_extension { 181sub unload_extension {
171 my ($pkg) = @_; 182 my ($pkg) = @_;
172 183
173 warn "removing extension $pkg\n"; 184 warn "removing extension $pkg\n";
174
175 if (my $cb = $pkg->can ("on_unload")) {
176 $cb->($pkg);
177 }
178 185
179 # remove hooks 186 # remove hooks
180 for my $idx (0 .. $#EVENT) { 187 for my $idx (0 .. $#EVENT) {
181 delete $hook[$idx]{$pkg}; 188 delete $hook[$idx]{$pkg};
182 } 189 }
197 # remove extcmds 204 # remove extcmds
198 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) { 205 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
199 delete $extcmd{$name}; 206 delete $extcmd{$name};
200 } 207 }
201 208
209 if (my $cb = $pkg->can ("on_unload")) {
210 eval {
211 $cb->($pkg);
212 1
213 } or warn "$pkg unloaded, but with errors: $@";
214 }
215
202 Symbol::delete_package $pkg; 216 Symbol::delete_package $pkg;
203} 217}
204 218
205sub load_extensions { 219sub load_extensions {
206 my $LIBDIR = maps_directory "perl"; 220 my $LIBDIR = maps_directory "perl";
220 if ($who->flag (FLAG_WIZ)) { 234 if ($who->flag (FLAG_WIZ)) {
221 $who->message ("reloading..."); 235 $who->message ("reloading...");
222 236
223 warn "reloading...\n"; 237 warn "reloading...\n";
224 eval { 238 eval {
239 # 1. cancel all watchers
225 $_->cancel for Event::all_watchers; 240 $_->cancel for Event::all_watchers;
226 241
242 # 2. unload all extensions
243 for (@exts) {
244 $who->message ("unloading <$_>");
227 unload_extension $_ for @exts; 245 unload_extension $_;
246 }
247
248 # 3. unload all modules loaded from $LIBDIR
249 while (my ($k, $v) = each %INC) {
250 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
251
252 $who->message ("removing <$k>");
253 delete $INC{$k};
254
255 $k =~ s/\.pm$//;
256 $k =~ s/\//::/g;
257
258 if (my $cb = $k->can ("unload_module")) {
259 $cb->();
260 }
261
262 Symbol::delete_package $k;
263 }
264
265 # 4. get rid of ext::, as good as possible
266 Symbol::delete_package "ext::$_"
267 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
268
269 # 5. remove register_script_function callbacks
270 # TODO
271
272 # 6. unload cf.pm "a bit"
228 delete $INC{"cf.pm"}; 273 delete $INC{"cf.pm"};
229 274
230 # don't, removes xs symbols, too 275 # don't, removes xs symbols, too
231 #Symbol::delete_package __PACKAGE__; 276 #Symbol::delete_package __PACKAGE__;
232 277
278 # 7. reload cf.pm
279 $who->message ("reloading cf.pm");
233 require cf; 280 require cf;
234 }; 281 };
235 warn $@ if $@; 282 warn $@ if $@;
236 $who->message ($@) if $@; 283 $who->message ($@) if $@;
237 warn "reloaded\n"; 284 warn "reloaded\n";
241 $who->message ("Intruder Alert!"); 288 $who->message ("Intruder Alert!");
242 } 289 }
243}; 290};
244 291
245############################################################################# 292#############################################################################
293# utility functions
294
295use JSON::Syck (); # TODO# replace by JSON::PC once working
296
297sub from_json($) {
298 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
299 JSON::Syck::Load $_[0]
300}
301
302sub to_json($) {
303 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
304 JSON::Syck::Dump $_[0]
305}
306
307#############################################################################
246# extcmd framework, basically convert ext <id> <pkg> arg1 args 308# extcmd framework, basically convert ext <msg>
247# into pkg::->on_extcmd_arg1 (...) while shortcutting a few 309# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
248 310
249sub on_extcmd { 311sub on_extcmd {
250 my ($pl, $buf) = @_; 312 my ($pl, $buf) = @_;
251 313
252 my ($type) = $buf =~ s/^(\S+) // ? $1 : ""; 314 my $msg = eval { from_json $buf };
253 315
254 $extcmd{$type}[0]->($pl, $buf) 316 if (ref $msg) {
255 if $extcmd{$type}; 317 if (my $cb = $extcmd{$msg->{msgtype}}) {
318 if (my %reply = $cb->[0]->($pl, $msg)) {
319 $pl->ext_reply ($msg->{msgid}, %reply);
320 }
321 }
322 } else {
323 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
324 }
325
326 1
256} 327}
257 328
258############################################################################# 329#############################################################################
259# load/save/clean perl data associated with a map 330# load/save/clean perl data associated with a map
260 331
316# load/save perl data associated with player->ob objects 387# load/save perl data associated with player->ob objects
317 388
318*on_player_load = sub { 389*on_player_load = sub {
319 my ($ob, $path) = @_; 390 my ($ob, $path) = @_;
320 391
321 if (open my $fh, "<:raw", "$path.cfperl") {
322
323 #d##TODO#remove
324
325 my $data = Storable::thaw do { local $/; <$fh> };
326
327 $data->{version} <= 1
328 or return; # too new
329
330 %$ob = %{$data->{ob}};
331 return;
332 }
333
334 for my $o ($ob, $ob->inv) { 392 for my $o ($ob, $ob->inv) {
335 if (my $value = $o->get_ob_key_value ("_perl_data")) { 393 if (my $value = $o->get_ob_key_value ("_perl_data")) {
336 $o->set_ob_key_value ("_perl_data"); 394 $o->set_ob_key_value ("_perl_data");
337 395
338 %$o = %{ Storable::thaw pack "H*", $value }; 396 %$o = %{ Storable::thaw pack "H*", $value };
343*on_player_save = sub { 401*on_player_save = sub {
344 my ($ob, $path) = @_; 402 my ($ob, $path) = @_;
345 403
346 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_) 404 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
347 for grep %$_, $ob, $ob->inv; 405 for grep %$_, $ob, $ob->inv;
348
349 unlink "$path.cfperl";#d##TODO#remove
350}; 406};
351 407
352############################################################################# 408#############################################################################
353# core extensions - in perl 409# core extensions - in perl
410
411=item cf::player::exists $login
412
413Returns true when the given account exists.
414
415=cut
416
417sub cf::player::exists($) {
418 cf::player::find $_[0]
419 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
420}
421
422=item $player->reply ($npc, $msg[, $flags])
423
424Sends a message to the player, as if the npc C<$npc> replied. C<$npc>
425can be C<undef>. Does the right thing when the player is currently in a
426dialogue with the given NPC character.
427
428=cut
354 429
355# rough implementation of a future "reply" method that works 430# rough implementation of a future "reply" method that works
356# with dialog boxes. 431# with dialog boxes.
357sub cf::object::player::reply($$;$) { 432sub cf::object::player::reply($$$;$) {
358 my ($self, $msg, $flags) = @_; 433 my ($self, $npc, $msg, $flags) = @_;
359 434
360 $flags = cf::NDI_WHITE unless @_ >= 3; 435 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
361 436
437 if ($self->{record_replies}) {
438 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
439 } else {
440 $msg = $npc->name . " says: $msg" if $npc;
362 $self->message ($msg, $flags); 441 $self->message ($msg, $flags);
442 }
443}
444
445=item $player->ext_reply ($msgid, $msgtype, %msg)
446
447Sends an ext reply to the player.
448
449=cut
450
451sub cf::player::ext_reply($$$%) {
452 my ($self, $id, %msg) = @_;
453
454 $msg{msgid} = $id;
455
456 $self->send ("ext " . to_json \%msg);
457}
458
459#############################################################################
460# map scripting support
461
462our $safe = new Safe "ext";
463our $safe_hole = new Safe::Hole;
464
465$SIG{FPE} = 'IGNORE';
466
467$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
468
469# here we export the classes and methods available to script code
470
471for (
472 ["cf::object" => qw(contr pay_amount pay_player)],
473 ["cf::object::player" => qw(player)],
474 ["cf::player" => qw(peaceful)],
475) {
476 no strict 'refs';
477 my ($pkg, @funs) = @$_;
478 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
479 for @funs;
480}
481
482sub safe_eval($;@) {
483 my ($code, %vars) = @_;
484
485 my $qcode = $code;
486 $qcode =~ s/"/‟/g; # not allowed in #line filenames
487 $qcode =~ s/\n/\\n/g;
488
489 local $_;
490 local @ext::cf::_safe_eval_args = values %vars;
491
492 $code =
493 "do {\n"
494 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
495 . "#line 0 \"{$qcode}\"\n"
496 . $code
497 . "\n}"
498 ;
499
500 sub_generation_inc;
501 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code);
502 sub_generation_inc;
503
504 wantarray ? @res : $res[0]
505}
506
507sub register_script_function {
508 my ($fun, $cb) = @_;
509
510 no strict 'refs';
511 *{"ext::$fun"} = $safe_hole->wrap ($cb);
363} 512}
364 513
365############################################################################# 514#############################################################################
366# initialisation 515# initialisation
367 516
368register "<global>", __PACKAGE__; 517register "<global>", __PACKAGE__;
369 518
370unshift @INC, maps_directory "perl"; 519unshift @INC, $LIBDIR;
371 520
372load_extensions; 521load_extensions;
373 522
3741 5231
375 524

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines