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.6 by root, Tue Mar 7 01:37:06 2006 UTC vs.
Revision 1.26 by root, Thu Jul 20 22:03:36 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;
9
10use Event;
11$Event::Eval = 1; # no idea why this is required, but it is
6 12
7use strict; 13use strict;
8 14
9our %COMMAND; 15our %COMMAND;
10our @EVENT; 16our @EVENT;
22 print STDERR "cfperl: $msg"; 28 print STDERR "cfperl: $msg";
23 LOG llevError, "cfperl: $msg"; 29 LOG llevError, "cfperl: $msg";
24 }; 30 };
25} 31}
26 32
33my %ignore_set = (MAP_PROP_PATH => 1); # I hate the plug-in api. Deeply!
34
27# generate property mutators 35# generate property mutators
28sub prop_gen { 36sub prop_gen {
29 my ($prefix, $class) = @_; 37 my ($prefix, $class) = @_;
30 38
31 no strict 'refs'; 39 no strict 'refs';
41 $_[0]->get_property ($type, $idx) 49 $_[0]->get_property ($type, $idx)
42 }; 50 };
43 51
44 *{"$class\::set_$sub"} = sub { 52 *{"$class\::set_$sub"} = sub {
45 $_[0]->set_property ($type, $idx, $_[1]); 53 $_[0]->set_property ($type, $idx, $_[1]);
46 }; 54 } unless $ignore_set{$prop};
47 } 55 }
48} 56}
49 57
50# auto-generate most of the API 58# auto-generate most of the API
51 59
56prop_gen MAP_PROP => "cf::map"; 64prop_gen MAP_PROP => "cf::map";
57prop_gen ARCH_PROP => "cf::arch"; 65prop_gen ARCH_PROP => "cf::arch";
58 66
59# guessed hierarchies 67# guessed hierarchies
60 68
61@cf::object::player::ISA = 'cf::object'; 69@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
62@cf::object::map::ISA = 'cf::object'; 70@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
71
72# we bless all objects into derived classes to force a method lookup
73# within the Safe compartment.
74for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region)) {
75 no strict 'refs';
76 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
77}
78
79$Event::DIED = sub {
80 warn "error in event callback: @_";
81};
63 82
64my %ext_pkg; 83my %ext_pkg;
65my @exts; 84my @exts;
66my @hook; 85my @hook;
67my %command; 86my %command;
87my %extcmd;
68 88
69sub inject_event { 89sub inject_event {
70 my ($data) = @_; 90 my $extension = shift;
91 my $event_code = shift;
71 92
72 my $cb = $hook[$data->{event_code}]{$data->{extension}} 93 my $cb = $hook[$event_code]{$extension}
73 or return; 94 or return;
74 95
75 $cb->($data) 96 &$cb
76} 97}
77 98
78sub inject_global_event { 99sub inject_global_event {
79 my ($data) = @_; 100 my $event = shift;
80 101
81 my $cb = $hook[$data->{event_code}] 102 my $cb = $hook[$event]
82 or return; 103 or return;
83 104
84 $_->($data) for values %$cb; 105 List::Util::max map &$_, values %$cb
85
86 ()
87} 106}
88 107
89sub inject_command { 108sub inject_command {
90 my ($name, $obj, $params) = @_; 109 my ($name, $obj, $params) = @_;
91 110
98 117
99sub register_command { 118sub register_command {
100 my ($name, $time, $cb) = @_; 119 my ($name, $time, $cb) = @_;
101 120
102 my $caller = caller; 121 my $caller = caller;
103
104 warn "registering command '$name/$time' to '$caller'"; 122 #warn "registering command '$name/$time' to '$caller'";
105 123
106 push @{ $command{$name} }, [$time, $cb, $caller]; 124 push @{ $command{$name} }, [$time, $cb, $caller];
107 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} }; 125 $COMMAND{"$name\000"} = List::Util::max map $_->[0], @{ $command{$name} };
108} 126}
109 127
128sub register_extcmd {
129 my ($name, $cb) = @_;
130
131 my $caller = caller;
132 #warn "registering extcmd '$name' to '$caller'";
133
134 $extcmd{$name} = [$cb, $caller];
135}
136
110sub register { 137sub register {
111 my ($base, $pkg) = @_; 138 my ($base, $pkg) = @_;
112 139
113 for my $idx (0 .. $#EVENT) { 140 for my $idx (0 .. $#EVENT) {
114 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) { 141 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) {
115 warn "registering $EVENT[$idx] hook to '$pkg'\n"; 142 #warn "registering $EVENT[$idx] hook to '$pkg'\n";
116 $hook[$idx]{$base} = $ref; 143 $hook[$idx]{$base} = $ref;
117 } 144 }
118 } 145 }
119} 146}
120 147
143 170
144 push @exts, $pkg; 171 push @exts, $pkg;
145 $ext_pkg{$base} = $pkg; 172 $ext_pkg{$base} = $pkg;
146 173
147# no strict 'refs'; 174# no strict 'refs';
148# @{"$pkg\::ISA"} = cf::ext::; 175# @{"$pkg\::ISA"} = ext::;
149 176
150 register $base, $pkg; 177 register $base, $pkg;
151} 178}
152 179
153sub unload_extension { 180sub unload_extension {
154 my ($pkg) = @_; 181 my ($pkg) = @_;
155 182
156 warn "removing extension $pkg\n"; 183 warn "removing extension $pkg\n";
184
185 if (my $cb = $pkg->can ("on_unload")) {
186 $cb->($pkg);
187 }
157 188
158 # remove hooks 189 # remove hooks
159 for my $idx (0 .. $#EVENT) { 190 for my $idx (0 .. $#EVENT) {
160 delete $hook[$idx]{$pkg}; 191 delete $hook[$idx]{$pkg};
161 } 192 }
171 delete $command{$name}; 202 delete $command{$name};
172 delete $COMMAND{"$name\000"}; 203 delete $COMMAND{"$name\000"};
173 } 204 }
174 } 205 }
175 206
207 # remove extcmds
208 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
209 delete $extcmd{$name};
210 }
211
176 Symbol::delete_package $pkg; 212 Symbol::delete_package $pkg;
177} 213}
178 214
179sub load_extensions { 215sub load_extensions {
180 my $LIBDIR = maps_directory "perl"; 216 my $LIBDIR = maps_directory "perl";
194 if ($who->flag (FLAG_WIZ)) { 230 if ($who->flag (FLAG_WIZ)) {
195 $who->message ("reloading..."); 231 $who->message ("reloading...");
196 232
197 warn "reloading...\n"; 233 warn "reloading...\n";
198 eval { 234 eval {
235 $_->cancel for Event::all_watchers;
236
199 unload_extension $_ for @exts; 237 unload_extension $_ for @exts;
200 delete $INC{"cf.pm"}; 238 delete $INC{"cf.pm"};
201 239
202 # don't, removes xs symbols, too 240 # don't, removes xs symbols, too
203 #Symbol::delete_package $pkg; 241 #Symbol::delete_package __PACKAGE__;
204 242
205 require cf; 243 require cf;
206 }; 244 };
207 warn $@ if $@; 245 warn $@ if $@;
208 $who->message ($@) if $@; 246 $who->message ($@) if $@;
212 } else { 250 } else {
213 $who->message ("Intruder Alert!"); 251 $who->message ("Intruder Alert!");
214 } 252 }
215}; 253};
216 254
255#############################################################################
256# extcmd framework, basically convert ext <id> <pkg> arg1 args
257# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
258
259sub on_extcmd {
260 my ($pl, $buf) = @_;
261
262 my ($type) = $buf =~ s/^(\S+) // ? $1 : "";
263
264 $extcmd{$type}[0]->($pl, $buf)
265 if $extcmd{$type};
266}
267
268#############################################################################
269# load/save/clean perl data associated with a map
270
271*on_mapclean = sub {
272 my ($map) = @_;
273
274 my $path = $map->tmpname;
275 defined $path or return;
276
277 unlink "$path.cfperl";
278};
279
217*on_mapin = 280*on_mapin =
218*on_mapload = sub { 281*on_mapload = sub {
219 my $map = shift->{map}; 282 my ($map) = @_;
220 283
221 my $path = $map->tmpname; 284 my $path = $map->tmpname;
222 $path = $map->path unless defined $path; 285 $path = $map->path unless defined $path;
223 286
224 open my $fh, "<:raw", "$path.cfperl" 287 open my $fh, "<:raw", "$path.cfperl"
231 294
232 $map->_set_obs ($data->{obs}); 295 $map->_set_obs ($data->{obs});
233}; 296};
234 297
235*on_mapout = sub { 298*on_mapout = sub {
236 my $map = shift->{map}; 299 my ($map) = @_;
237 300
238 my $path = $map->tmpname; 301 my $path = $map->tmpname;
239 $path = $map->path unless defined $path; 302 $path = $map->path unless defined $path;
240 303
241 my $obs = $map->_get_obs; 304 my $obs = $map->_get_obs;
242 305
243 if (defined $obs) { 306 if (defined $obs) {
244 open my $fh, ">:raw", "$path.cfperl" 307 open my $fh, ">:raw", "$path.cfperl"
245 or die "$path.cfperl: $!"; 308 or die "$path.cfperl: $!";
246 309
310 stat $path;
311
247 print $fh Storable::nfreeze { 312 print $fh Storable::nfreeze {
313 size => (stat _)[7],
314 time => (stat _)[9],
248 version => 1, 315 version => 1,
249 obs => $obs, 316 obs => $obs,
250 }; 317 };
318
319 chmod SAVE_MODE, "$path.cfperl"; # very racy, but cf-compatible *g*
251 } else { 320 } else {
252 unlink "$path.cfperl"; 321 unlink "$path.cfperl";
253 } 322 }
254}; 323};
255 324
325#############################################################################
326# load/save perl data associated with player->ob objects
327
328*on_player_load = sub {
329 my ($ob, $path) = @_;
330
331 for my $o ($ob, $ob->inv) {
332 if (my $value = $o->get_ob_key_value ("_perl_data")) {
333 $o->set_ob_key_value ("_perl_data");
334
335 %$o = %{ Storable::thaw pack "H*", $value };
336 }
337 }
338};
339
340*on_player_save = sub {
341 my ($ob, $path) = @_;
342
343 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
344 for grep %$_, $ob, $ob->inv;
345};
346
347#############################################################################
348# core extensions - in perl
349
350=item cf::player::exists $login
351
352Returns true when the given account exists.
353
354=cut
355
356sub cf::player::exists($) {
357 cf::player::find $_[0]
358 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
359}
360
361# rough implementation of a future "reply" method that works
362# with dialog boxes.
363sub cf::object::player::reply($$$;$) {
364 my ($self, $npc, $msg, $flags) = @_;
365
366 $flags = cf::NDI_BROWN | cf::NDI_UNIQUE unless @_ >= 4;
367
368 if ($self->{record_replies}) {
369 push @{ $self->{record_replies} }, [$npc, $msg, $flags];
370 } else {
371 $msg = $npc->name . " says: $msg" if $npc;
372 $self->message ($msg, $flags);
373 }
374}
375
376#############################################################################
377# map scripting support
378
379our $safe = new Safe "ext";
380our $safe_hole = new Safe::Hole;
381
382$SIG{FPE} = 'IGNORE';
383
384$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
385
386# here we export the classes and methods available to script code
387
388for (
389 ["cf::object" => qw(contr)],
390 ["cf::object::player" => qw(player)],
391 ["cf::player" => qw(peaceful)],
392) {
393 no strict 'refs';
394 my ($pkg, @funs) = @$_;
395 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
396 for @funs;
397}
398
399sub safe_eval($;@) {
400 my ($code, %vars) = @_;
401
402 my $qcode = $code;
403 $qcode =~ s/"/‟/g; # not allowed in #line filenames
404 $qcode =~ s/\n/\\n/g;
405
406 local $_;
407 local @ext::cf::_safe_eval_args = values %vars;
408
409 $code =
410 "do {\n"
411 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
412 . "#line 0 \"{$qcode}\"\n"
413 . $code
414 . "\n}"
415 ;
416
417 sub_generation_inc;
418 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code);
419 sub_generation_inc;
420
421 wantarray ? @res : $res[0]
422}
423
424sub register_script_function {
425 my ($fun, $cb) = @_;
426
427 no strict 'refs';
428 *{"ext::$fun"} = $safe_hole->wrap ($cb);
429}
430
431#############################################################################
432# initialisation
433
256register "<global>", __PACKAGE__; 434register "<global>", __PACKAGE__;
257 435
436unshift @INC, maps_directory "perl";
437
258load_extensions; 438load_extensions;
259 439
2601 4401
261 441

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines