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.24 by root, Wed Jul 19 22:51:40 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;
160 163
161 push @exts, $pkg; 164 push @exts, $pkg;
162 $ext_pkg{$base} = $pkg; 165 $ext_pkg{$base} = $pkg;
163 166
164# no strict 'refs'; 167# no strict 'refs';
165# @{"$pkg\::ISA"} = cf::ext::; 168# @{"$pkg\::ISA"} = ext::;
166 169
167 register $base, $pkg; 170 register $base, $pkg;
168} 171}
169 172
170sub unload_extension { 173sub unload_extension {
350}; 353};
351 354
352############################################################################# 355#############################################################################
353# core extensions - in perl 356# core extensions - in perl
354 357
358=item cf::player::exists $login
359
360Returns true when the given account exists.
361
362=cut
363
364sub cf::player::exists($) {
365 cf::player::find $_[0]
366 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
367}
368
355# rough implementation of a future "reply" method that works 369# rough implementation of a future "reply" method that works
356# with dialog boxes. 370# with dialog boxes.
357sub cf::object::player::reply($$;$) { 371sub cf::object::player::reply($$$;$) {
358 my ($self, $msg, $flags) = @_; 372 my ($self, $npc, $msg, $flags) = @_;
359 373
360 $flags = cf::NDI_WHITE unless @_ >= 3; 374 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
361 375
376 if ($self->{record_replies}) {
377 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
378 } else {
379 $msg = $npc->name . " says: $msg" if $npc;
362 $self->message ($msg, $flags); 380 $self->message ($msg, $flags);
381 }
382}
383
384#############################################################################
385# map scripting support
386
387our $safe = new Safe "ext";
388our $safe_hole = new Safe::Hole;
389
390$SIG{FPE} = 'IGNORE';
391
392$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
393
394# here we would export the classes and methods available to script code
395#@ext::cf::object::player::ISA = @cf::object::player::ISA;
396#@ext::cf::object::map::ISA = @cf::object::map::ISA;
397
398sub safe_eval($;@) {
399 my ($code, %vars) = @_;
400
401 my $qcode = $code;
402 $qcode =~ s/"/‟/g; # not allowed in #line filenames
403 $qcode =~ s/\n/\\n/g;
404
405 local $_;
406 local @ext::cf::_safe_eval_args = values %vars;
407
408 $safe->reval (
409 "do {\n"
410 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
411 . "#line 0 \"{$qcode}\"\n"
412 . $code
413 . "\n}"
414 )
415}
416
417sub register_script_function {
418 my ($fun, $cb) = @_;
419
420 no strict 'refs';
421 *{"ext::$fun"} = $safe_hole->wrap ($cb);
363} 422}
364 423
365############################################################################# 424#############################################################################
366# initialisation 425# initialisation
367 426

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines