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.25 by root, Thu Jul 20 07:22:40 2006 UTC vs.
Revision 1.66 by root, Tue Sep 12 22:43:31 2006 UTC

5use Storable; 5use Storable;
6use Opcode; 6use Opcode;
7use Safe; 7use Safe;
8use Safe::Hole; 8use Safe::Hole;
9 9
10use Time::HiRes;
10use Event; 11use Event;
11$Event::Eval = 1; # no idea why this is required, but it is 12$Event::Eval = 1; # no idea why this is required, but it is
12 13
13use strict; 14use strict;
14 15
16_init_vars;
17
15our %COMMAND; 18our %COMMAND = ();
16our @EVENT; 19our @EVENT;
17our %PROP_TYPE; 20our $LIBDIR = maps_directory "perl";
18our %PROP_IDX; 21
22our $TICK = MAX_TIME * 1e-6;
23our $TICK_WATCHER;
24our $NEXT_TICK;
19 25
20BEGIN { 26BEGIN {
21 @EVENT = map lc, @EVENT;
22
23 *CORE::GLOBAL::warn = sub { 27 *CORE::GLOBAL::warn = sub {
24 my $msg = join "", @_; 28 my $msg = join "", @_;
25 $msg .= "\n" 29 $msg .= "\n"
26 unless $msg =~ /\n$/; 30 unless $msg =~ /\n$/;
27 31
28 print STDERR "cfperl: $msg"; 32 print STDERR "cfperl: $msg";
29 LOG llevError, "cfperl: $msg"; 33 LOG llevError, "cfperl: $msg";
30 }; 34 };
31} 35}
32 36
33my %ignore_set = (MAP_PROP_PATH => 1); # I hate the plug-in api. Deeply! 37@safe::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
34 38
35# generate property mutators 39# we bless all objects into (empty) derived classes to force a method lookup
36sub prop_gen { 40# within the Safe compartment.
37 my ($prefix, $class) = @_; 41for my $pkg (qw(cf::object cf::object::player cf::player cf::map cf::party cf::region cf::arch cf::living)) {
38
39 no strict 'refs'; 42 no strict 'refs';
40
41 for my $prop (keys %PROP_TYPE) {
42 $prop =~ /^\Q$prefix\E_(.*$)/ or next;
43 my $sub = lc $1;
44
45 my $type = $PROP_TYPE{$prop};
46 my $idx = $PROP_IDX {$prop};
47
48 *{"$class\::get_$sub"} = *{"$class\::$sub"} = sub {
49 $_[0]->get_property ($type, $idx)
50 };
51
52 *{"$class\::set_$sub"} = sub {
53 $_[0]->set_property ($type, $idx, $_[1]);
54 } unless $ignore_set{$prop};
55 }
56}
57
58# auto-generate most of the API
59
60prop_gen OBJECT_PROP => "cf::object";
61# CFAPI_OBJECT_ANIMATION?
62prop_gen PLAYER_PROP => "cf::object::player";
63
64prop_gen MAP_PROP => "cf::map";
65prop_gen ARCH_PROP => "cf::arch";
66
67# guessed hierarchies
68
69@ext::cf::object::player::ISA = @cf::object::player::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; 43 @{"safe::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
77} 44}
78 45
79$Event::DIED = sub { 46$Event::DIED = sub {
80 warn "error in event callback: @_"; 47 warn "error in event callback: @_";
81}; 48};
84my @exts; 51my @exts;
85my @hook; 52my @hook;
86my %command; 53my %command;
87my %extcmd; 54my %extcmd;
88 55
56#############################################################################
57# utility functions
58
59use JSON::Syck (); # TODO# replace by JSON::PC once working
60
61sub from_json($) {
62 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
63 JSON::Syck::Load $_[0]
64}
65
66sub to_json($) {
67 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
68 JSON::Syck::Dump $_[0]
69}
70
71#############################################################################
72# "new" plug-in system
73
74=head3 EVENTS AND OBJECT ATTACHMENTS
75
76=over 4
77
78=item $object->attach ($attachment, key => $value...)
79
80=item $object->detach ($attachment)
81
82Attach/detach a pre-registered attachment to an object.
83
84=item $player->attach ($attachment, key => $value...)
85
86=item $player->detach ($attachment)
87
88Attach/detach a pre-registered attachment to a player.
89
90=item $map->attach ($attachment, key => $value...)
91
92=item $map->detach ($attachment)
93
94Attach/detach a pre-registered attachment to a map.
95
96=item $bool = $object->attached ($name)
97
98=item $bool = $player->attached ($name)
99
100=item $bool = $map->attached ($name)
101
102Checks wether the named attachment is currently attached to the object.
103
104=item cf::attach_global ...
105
106Attach handlers for global events.
107
108This and all following C<attach_*>-functions expect any number of the
109following handler/hook descriptions:
110
111=over 4
112
113=item prio => $number
114
115Set the priority for all following handlers/hooks (unless overwritten
116by another C<prio> setting). Lower priority handlers get executed
117earlier. The default priority is C<0>, and many built-in handlers are
118registered at priority C<-1000>, so lower priorities should not be used
119unless you know what you are doing.
120
121=item on_I<event> => \&cb
122
123Call the given code reference whenever the named event happens (event is
124something like C<instantiate>, C<apply>, C<use_skill> and so on, and which
125handlers are recognised generally depends on the type of object these
126handlers attach to).
127
128See F<include/eventinc.h> for the full list of events supported, and their
129class.
130
131=item package => package::
132
133Look for sub functions of the name C<< on_I<event> >> in the given
134package and register them. Only handlers for eevents supported by the
135object/class are recognised.
136
137=back
138
139=item cf::attach_to_type $object_type, $subtype, ...
140
141Attach handlers for a specific object type (e.g. TRANSPORT) and
142subtype. If C<$subtype> is zero or undef, matches all objects of the given
143type.
144
145=item cf::attach_to_objects ...
146
147Attach handlers to all objects. Do not use this except for debugging or
148very rare events, as handlers are (obviously) called for I<all> objects in
149the game.
150
151=item cf::attach_to_players ...
152
153Attach handlers to all players.
154
155=item cf::attach_to_maps ...
156
157Attach handlers to all maps.
158
159=item cf:register_attachment $name, ...
160
161Register an attachment by name through which objects can refer to this
162attachment.
163
164=item cf:register_player_attachment $name, ...
165
166Register an attachment by name through which players can refer to this
167attachment.
168
169=item cf:register_map_attachment $name, ...
170
171Register an attachment by name through which maps can refer to this
172attachment.
173
174=cut
175
176# the following variables are defined in .xs and must not be re-created
177our @CB_GLOBAL = (); # registry for all global events
178our @CB_OBJECT = (); # all objects (should not be used except in emergency)
179our @CB_PLAYER = ();
180our @CB_TYPE = (); # registry for type (cf-object class) based events
181our @CB_MAP = ();
182
183my %attachment;
184
185sub _attach_cb($\%$$$) {
186 my ($registry, $undo, $event, $prio, $cb) = @_;
187
188 use sort 'stable';
189
190 $cb = [$prio, $cb];
191
192 @{$registry->[$event]} = sort
193 { $a->[0] cmp $b->[0] }
194 @{$registry->[$event] || []}, $cb;
195
196 push @{$undo->{cb}}, [$event, $cb];
197}
198
199# attach handles attaching event callbacks
200# the only thing the caller has to do is pass the correct
201# registry (== where the callback attaches to).
202sub _attach(\@$@) {
203 my ($registry, $klass, @arg) = @_;
204
205 my $prio = 0;
206
207 my %undo = (
208 registry => $registry,
209 cb => [],
210 );
211
212 my %cb_id = map +("on_" . lc $EVENT[$_][0], $_) , grep $EVENT[$_][1] == $klass, 0 .. $#EVENT;
213
214 while (@arg) {
215 my $type = shift @arg;
216
217 if ($type eq "prio") {
218 $prio = shift @arg;
219
220 } elsif ($type eq "package") {
221 my $pkg = shift @arg;
222
223 while (my ($name, $id) = each %cb_id) {
224 if (my $cb = $pkg->can ($name)) {
225 _attach_cb $registry, %undo, $id, $prio, $cb;
226 }
227 }
228
229 } elsif (exists $cb_id{$type}) {
230 _attach_cb $registry, %undo, $cb_id{$type}, $prio, shift @arg;
231
232 } elsif (ref $type) {
233 warn "attaching objects not supported, ignoring.\n";
234
235 } else {
236 shift @arg;
237 warn "attach argument '$type' not supported, ignoring.\n";
238 }
239 }
240
241 \%undo
242}
243
244sub _attach_attachment {
245 my ($obj, $name, %arg) = @_;
246
247 return if exists $obj->{_attachment}{$name};
248
249 my $res;
250
251 if (my $attach = $attachment{$name}) {
252 my $registry = $obj->registry;
253
254 for (@$attach) {
255 my ($klass, @attach) = @$_;
256 $res = _attach @$registry, $klass, @attach;
257 }
258
259 $obj->{$name} = \%arg;
260 } else {
261 warn "object uses attachment '$name' that is not available, postponing.\n";
262 }
263
264 $obj->{_attachment}{$name} = undef;
265
266 $res->{attachment} = $name;
267 $res
268}
269
270*cf::object::attach =
271*cf::player::attach =
272*cf::map::attach = sub {
273 my ($obj, $name, %arg) = @_;
274
275 _attach_attachment $obj, $name, %arg;
276};
277
278# all those should be optimised
279*cf::object::detach =
280*cf::player::detach =
281*cf::map::detach = sub {
282 my ($obj, $name) = @_;
283
284 delete $obj->{_attachment}{$name};
285 reattach ($obj);
286};
287
288*cf::object::attached =
289*cf::player::attached =
290*cf::map::attached = sub {
291 my ($obj, $name) = @_;
292
293 exists $obj->{_attachment}{$name}
294};
295
296sub attach_global {
297 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
298}
299
300sub attach_to_type {
301 my $type = shift;
302 my $subtype = shift;
303
304 _attach @{$CB_TYPE[$type + $subtype * NUM_SUBTYPES]}, KLASS_OBJECT, @_
305}
306
307sub attach_to_objects {
308 _attach @CB_OBJECT, KLASS_OBJECT, @_
309}
310
311sub attach_to_players {
312 _attach @CB_PLAYER, KLASS_PLAYER, @_
313}
314
315sub attach_to_maps {
316 _attach @CB_MAP, KLASS_MAP, @_
317}
318
319sub register_attachment {
320 my $name = shift;
321
322 $attachment{$name} = [[KLASS_OBJECT, @_]];
323}
324
325sub register_player_attachment {
326 my $name = shift;
327
328 $attachment{$name} = [[KLASS_PLAYER, @_]];
329}
330
331sub register_map_attachment {
332 my $name = shift;
333
334 $attachment{$name} = [[KLASS_MAP, @_]];
335}
336
337our $override;
338our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals?
339
340sub override {
341 $override = 1;
342 @invoke_results = ();
343}
344
345sub do_invoke {
346 my $event = shift;
347 my $callbacks = shift;
348
349 @invoke_results = ();
350
351 local $override;
352
353 for (@$callbacks) {
354 eval { &{$_->[1]} };
355
356 if ($@) {
357 warn "$@";
358 warn "... while processing $EVENT[$event][0](@_) event, skipping processing altogether.\n";
359 override;
360 }
361
362 return 1 if $override;
363 }
364
365 0
366}
367
368=item $bool = cf::invoke EVENT_GLOBAL_XXX, ...
369
370=item $bool = $object->invoke (EVENT_OBJECT_XXX, ...)
371
372=item $bool = $player->invoke (EVENT_PLAYER_XXX, ...)
373
374=item $bool = $map->invoke (EVENT_MAP_XXX, ...)
375
376Generate a global/object/player/map-specific event with the given arguments.
377
378This API is preliminary (most likely, the EVENT_KLASS_xxx prefix will be
379removed in future versions), and there is no public API to access override
380results (if you must, access C<@cf::invoke_results> directly).
381
382=back
383
384=head2 methods valid for all pointers
385
386=over 4
387
388=item $object->valid
389
390=item $player->valid
391
392=item $map->valid
393
394Just because you have a perl object does not mean that the corresponding
395C-level object still exists. If you try to access an object that has no
396valid C counterpart anymore you get an exception at runtime. This method
397can be used to test for existence of the C object part without causing an
398exception.
399
400=back
401
402=cut
403
404*cf::object::valid =
405*cf::player::valid =
406*cf::map::valid = \&cf::_valid;
407
408#############################################################################
409# object support
410
411sub instantiate {
412 my ($obj, $data) = @_;
413
414 $data = from_json $data;
415
416 for (@$data) {
417 my ($name, $args) = @$_;
418
419 $obj->attach ($name, %{$args || {} });
420 }
421}
422
423# basically do the same as instantiate, without calling instantiate
424sub reattach {
425 my ($obj) = @_;
426 my $registry = $obj->registry;
427
428 @$registry = ();
429
430 delete $obj->{_attachment} unless scalar keys %{ $obj->{_attachment} || {} };
431
432 for my $name (keys %{ $obj->{_attachment} || {} }) {
433 if (my $attach = $attachment{$name}) {
434 for (@$attach) {
435 my ($klass, @attach) = @$_;
436 _attach @$registry, $klass, @attach;
437 }
438 } else {
439 warn "object uses attachment '$name' that is not available, postponing.\n";
440 }
441 }
442}
443
444sub object_freezer_save {
445 my ($filename, $rdata, $objs) = @_;
446
447 if (length $$rdata) {
448 warn sprintf "saving %s (%d,%d)\n",
449 $filename, length $$rdata, scalar @$objs;
450
451 if (open my $fh, ">:raw", "$filename~") {
452 chmod SAVE_MODE, $fh;
453 syswrite $fh, $$rdata;
454 close $fh;
455
456 if (@$objs && open my $fh, ">:raw", "$filename.pst~") {
457 chmod SAVE_MODE, $fh;
458 syswrite $fh, Storable::nfreeze { version => 1, objs => $objs };
459 close $fh;
460 rename "$filename.pst~", "$filename.pst";
461 } else {
462 unlink "$filename.pst";
463 }
464
465 rename "$filename~", $filename;
466 } else {
467 warn "FATAL: $filename~: $!\n";
468 }
469 } else {
470 unlink $filename;
471 unlink "$filename.pst";
472 }
473}
474
475sub object_thawer_load {
476 my ($filename) = @_;
477
478 local $/;
479
480 my $av;
481
482 #TODO: use sysread etc.
483 if (open my $data, "<:raw:perlio", $filename) {
484 $data = <$data>;
485 if (open my $pst, "<:raw:perlio", "$filename.pst") {
486 $av = eval { (Storable::thaw <$pst>)->{objs} };
487 }
488 return ($data, $av);
489 }
490
491 ()
492}
493
494attach_to_objects
495 prio => -1000000,
496 on_clone => sub {
497 my ($src, $dst) = @_;
498
499 @{$dst->registry} = @{$src->registry};
500
501 %$dst = %$src;
502
503 %{$dst->{_attachment}} = %{$src->{_attachment}}
504 if exists $src->{_attachment};
505 },
506;
507
508#############################################################################
509# old plug-in events
510
89sub inject_event { 511sub inject_event {
90 my $extension = shift; 512 my $extension = shift;
91 my $event_code = shift; 513 my $event_code = shift;
92 514
93 my $cb = $hook[$event_code]{$extension} 515 my $cb = $hook[$event_code]{$extension}
135} 557}
136 558
137sub register { 559sub register {
138 my ($base, $pkg) = @_; 560 my ($base, $pkg) = @_;
139 561
140 for my $idx (0 .. $#EVENT) { 562 #TODO
141 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) {
142 #warn "registering $EVENT[$idx] hook to '$pkg'\n";
143 $hook[$idx]{$base} = $ref;
144 }
145 }
146} 563}
147 564
148sub load_extension { 565sub load_extension {
149 my ($path) = @_; 566 my ($path) = @_;
150 567
151 $path =~ /([^\/\\]+)\.ext$/ or die "$path"; 568 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
152 my $base = $1; 569 my $base = $1;
153 my $pkg = $1; 570 my $pkg = $1;
154 $pkg =~ s/[^[:word:]]/_/g; 571 $pkg =~ s/[^[:word:]]/_/g;
155 $pkg = "cf::ext::$pkg"; 572 $pkg = "ext::$pkg";
156 573
157 warn "loading '$path' into '$pkg'\n"; 574 warn "loading '$path' into '$pkg'\n";
158 575
159 open my $fh, "<:utf8", $path 576 open my $fh, "<:utf8", $path
160 or die "$path: $!"; 577 or die "$path: $!";
180sub unload_extension { 597sub unload_extension {
181 my ($pkg) = @_; 598 my ($pkg) = @_;
182 599
183 warn "removing extension $pkg\n"; 600 warn "removing extension $pkg\n";
184 601
185 if (my $cb = $pkg->can ("on_unload")) {
186 $cb->($pkg);
187 }
188
189 # remove hooks 602 # remove hooks
603 #TODO
190 for my $idx (0 .. $#EVENT) { 604# for my $idx (0 .. $#PLUGIN_EVENT) {
191 delete $hook[$idx]{$pkg}; 605# delete $hook[$idx]{$pkg};
192 } 606# }
193 607
194 # remove commands 608 # remove commands
195 for my $name (keys %command) { 609 for my $name (keys %command) {
196 my @cb = grep $_->[2] ne $pkg, @{ $command{$name} }; 610 my @cb = grep $_->[2] ne $pkg, @{ $command{$name} };
197 611
207 # remove extcmds 621 # remove extcmds
208 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) { 622 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
209 delete $extcmd{$name}; 623 delete $extcmd{$name};
210 } 624 }
211 625
626 if (my $cb = $pkg->can ("unload")) {
627 eval {
628 $cb->($pkg);
629 1
630 } or warn "$pkg unloaded, but with errors: $@";
631 }
632
212 Symbol::delete_package $pkg; 633 Symbol::delete_package $pkg;
213} 634}
214 635
215sub load_extensions { 636sub load_extensions {
216 my $LIBDIR = maps_directory "perl"; 637 my $LIBDIR = maps_directory "perl";
222 1 643 1
223 } or warn "$ext not loaded: $@"; 644 } or warn "$ext not loaded: $@";
224 } 645 }
225} 646}
226 647
227register_command "perl-reload", 0, sub {
228 my ($who, $arg) = @_;
229
230 if ($who->flag (FLAG_WIZ)) {
231 $who->message ("reloading...");
232
233 warn "reloading...\n";
234 eval {
235 $_->cancel for Event::all_watchers;
236
237 unload_extension $_ for @exts;
238 delete $INC{"cf.pm"};
239
240 # don't, removes xs symbols, too
241 #Symbol::delete_package __PACKAGE__;
242
243 require cf;
244 };
245 warn $@ if $@;
246 $who->message ($@) if $@;
247 warn "reloaded\n";
248
249 $who->message ("reloaded");
250 } else {
251 $who->message ("Intruder Alert!");
252 }
253};
254
255############################################################################# 648#############################################################################
256# extcmd framework, basically convert ext <id> <pkg> arg1 args 649# extcmd framework, basically convert ext <msg>
257# into pkg::->on_extcmd_arg1 (...) while shortcutting a few 650# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
258 651
259sub on_extcmd { 652attach_to_players
653 on_extcmd => sub {
260 my ($pl, $buf) = @_; 654 my ($pl, $buf) = @_;
261 655
262 my ($type) = $buf =~ s/^(\S+) // ? $1 : ""; 656 my $msg = eval { from_json $buf };
263 657
264 $extcmd{$type}[0]->($pl, $buf) 658 if (ref $msg) {
265 if $extcmd{$type}; 659 if (my $cb = $extcmd{$msg->{msgtype}}) {
266} 660 if (my %reply = $cb->[0]->($pl, $msg)) {
661 $pl->ext_reply ($msg->{msgid}, %reply);
662 }
663 }
664 } else {
665 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
666 }
667
668 cf::override;
669 },
670;
267 671
268############################################################################# 672#############################################################################
269# load/save/clean perl data associated with a map 673# load/save/clean perl data associated with a map
270 674
271*on_mapclean = sub { 675*cf::mapsupport::on_clean = sub {
272 my ($map) = @_; 676 my ($map) = @_;
273 677
274 my $path = $map->tmpname; 678 my $path = $map->tmpname;
275 defined $path or return; 679 defined $path or return;
276 680
277 unlink "$path.cfperl"; 681 unlink "$path.pst";
278}; 682};
279 683
280*on_mapin = 684attach_to_maps prio => -10000, package => cf::mapsupport::;
281*on_mapload = sub {
282 my ($map) = @_;
283
284 my $path = $map->tmpname;
285 $path = $map->path unless defined $path;
286
287 open my $fh, "<:raw", "$path.cfperl"
288 or return; # no perl data
289
290 my $data = Storable::thaw do { local $/; <$fh> };
291
292 $data->{version} <= 1
293 or return; # too new
294
295 $map->_set_obs ($data->{obs});
296};
297
298*on_mapout = sub {
299 my ($map) = @_;
300
301 my $path = $map->tmpname;
302 $path = $map->path unless defined $path;
303
304 my $obs = $map->_get_obs;
305
306 if (defined $obs) {
307 open my $fh, ">:raw", "$path.cfperl"
308 or die "$path.cfperl: $!";
309
310 stat $path;
311
312 print $fh Storable::nfreeze {
313 size => (stat _)[7],
314 time => (stat _)[9],
315 version => 1,
316 obs => $obs,
317 };
318
319 chmod SAVE_MODE, "$path.cfperl"; # very racy, but cf-compatible *g*
320 } else {
321 unlink "$path.cfperl";
322 }
323};
324 685
325############################################################################# 686#############################################################################
326# load/save perl data associated with player->ob objects 687# load/save perl data associated with player->ob objects
327 688
328*on_player_load = sub { 689sub all_objects(@) {
690 @_, map all_objects ($_->inv), @_
691}
692
693# TODO: compatibility cruft, remove when no longer needed
694attach_to_players
695 on_load => sub {
329 my ($ob, $path) = @_; 696 my ($pl, $path) = @_;
330 697
331 if (open my $fh, "<:raw", "$path.cfperl") { 698 for my $o (all_objects $pl->ob) {
332
333 #d##TODO#remove
334
335 my $data = Storable::thaw do { local $/; <$fh> };
336
337 $data->{version} <= 1
338 or return; # too new
339
340 %$ob = %{$data->{ob}};
341 return;
342 }
343
344 for my $o ($ob, $ob->inv) {
345 if (my $value = $o->get_ob_key_value ("_perl_data")) { 699 if (my $value = $o->get_ob_key_value ("_perl_data")) {
346 $o->set_ob_key_value ("_perl_data"); 700 $o->set_ob_key_value ("_perl_data");
347 701
348 %$o = %{ Storable::thaw pack "H*", $value }; 702 %$o = %{ Storable::thaw pack "H*", $value };
349 } 703 }
704 }
350 } 705 },
351}; 706;
352
353*on_player_save = sub {
354 my ($ob, $path) = @_;
355
356 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
357 for grep %$_, $ob, $ob->inv;
358
359 unlink "$path.cfperl";#d##TODO#remove
360};
361 707
362############################################################################# 708#############################################################################
363# core extensions - in perl 709# core extensions - in perl
364 710
365=item cf::player::exists $login 711=item cf::player::exists $login
370 716
371sub cf::player::exists($) { 717sub cf::player::exists($) {
372 cf::player::find $_[0] 718 cf::player::find $_[0]
373 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2; 719 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
374} 720}
721
722=item $player->reply ($npc, $msg[, $flags])
723
724Sends a message to the player, as if the npc C<$npc> replied. C<$npc>
725can be C<undef>. Does the right thing when the player is currently in a
726dialogue with the given NPC character.
727
728=cut
375 729
376# rough implementation of a future "reply" method that works 730# rough implementation of a future "reply" method that works
377# with dialog boxes. 731# with dialog boxes.
378sub cf::object::player::reply($$$;$) { 732sub cf::object::player::reply($$$;$) {
379 my ($self, $npc, $msg, $flags) = @_; 733 my ($self, $npc, $msg, $flags) = @_;
386 $msg = $npc->name . " says: $msg" if $npc; 740 $msg = $npc->name . " says: $msg" if $npc;
387 $self->message ($msg, $flags); 741 $self->message ($msg, $flags);
388 } 742 }
389} 743}
390 744
745=item $player->ext_reply ($msgid, $msgtype, %msg)
746
747Sends an ext reply to the player.
748
749=cut
750
751sub cf::player::ext_reply($$$%) {
752 my ($self, $id, %msg) = @_;
753
754 $msg{msgid} = $id;
755
756 $self->send ("ext " . to_json \%msg);
757}
758
391############################################################################# 759#############################################################################
392# map scripting support 760# map scripting support
393 761
394our $safe = new Safe "ext"; 762our $safe = new Safe "safe";
395our $safe_hole = new Safe::Hole; 763our $safe_hole = new Safe::Hole;
396 764
397$SIG{FPE} = 'IGNORE'; 765$SIG{FPE} = 'IGNORE';
398 766
399$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time)); 767$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
400 768
401# here we export the classes and methods available to script code 769# here we export the classes and methods available to script code
402 770
403for ( 771for (
404 ["cf::object" => qw(contr)], 772 ["cf::object" => qw(contr pay_amount pay_player)],
405 ["cf::object::player" => qw(player)], 773 ["cf::object::player" => qw(player)],
406 ["cf::player" => qw(peaceful)], 774 ["cf::player" => qw(peaceful)],
407) { 775) {
408 no strict 'refs'; 776 no strict 'refs';
409 my ($pkg, @funs) = @$_; 777 my ($pkg, @funs) = @$_;
410 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"}) 778 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
411 for @funs; 779 for @funs;
412} 780}
413 781
414sub safe_eval($;@) { 782sub safe_eval($;@) {
415 my ($code, %vars) = @_; 783 my ($code, %vars) = @_;
417 my $qcode = $code; 785 my $qcode = $code;
418 $qcode =~ s/"/‟/g; # not allowed in #line filenames 786 $qcode =~ s/"/‟/g; # not allowed in #line filenames
419 $qcode =~ s/\n/\\n/g; 787 $qcode =~ s/\n/\\n/g;
420 788
421 local $_; 789 local $_;
422 local @ext::cf::_safe_eval_args = values %vars; 790 local @safe::cf::_safe_eval_args = values %vars;
423 791
424 $code = 792 my $eval =
425 "do {\n" 793 "do {\n"
426 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n" 794 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
427 . "#line 0 \"{$qcode}\"\n" 795 . "#line 0 \"{$qcode}\"\n"
428 . $code 796 . $code
429 . "\n}" 797 . "\n}"
430 ; 798 ;
431 799
432 sub_generation_inc; 800 sub_generation_inc;
433 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code); 801 my @res = wantarray ? $safe->reval ($eval) : scalar $safe->reval ($eval);
434 sub_generation_inc; 802 sub_generation_inc;
803
804 if ($@) {
805 warn "$@";
806 warn "while executing safe code '$code'\n";
807 warn "with arguments " . (join " ", %vars) . "\n";
808 }
435 809
436 wantarray ? @res : $res[0] 810 wantarray ? @res : $res[0]
437} 811}
438 812
439sub register_script_function { 813sub register_script_function {
440 my ($fun, $cb) = @_; 814 my ($fun, $cb) = @_;
441 815
442 no strict 'refs'; 816 no strict 'refs';
443 *{"ext::$fun"} = $safe_hole->wrap ($cb); 817 *{"safe::$fun"} = $safe_hole->wrap ($cb);
818}
819
820#############################################################################
821
822=head2 EXTENSION DATABASE SUPPORT
823
824Crossfire maintains a very simple database for extension use. It can
825currently store anything that can be serialised using Storable, which
826excludes objects.
827
828The parameter C<$family> should best start with the name of the extension
829using it, it should be unique.
830
831=over 4
832
833=item $hashref = cf::db_get $family
834
835Return a hashref for use by the extension C<$family>, which can be
836modified. After modifications, you have to call C<cf::db_dirty> or
837C<cf::db_sync>.
838
839=item $value = cf::db_get $family => $key
840
841Returns a single value from the database
842
843=item cf::db_put $family => $hashref
844
845Stores the given family hashref into the database. Updates are delayed, if
846you want the data to be synced to disk immediately, use C<cf::db_sync>.
847
848=item cf::db_put $family => $key => $value
849
850Stores the given C<$value> in the family hash. Updates are delayed, if you
851want the data to be synced to disk immediately, use C<cf::db_sync>.
852
853=item cf::db_dirty
854
855Marks the database as dirty, to be updated at a later time.
856
857=item cf::db_sync
858
859Immediately write the database to disk I<if it is dirty>.
860
861=cut
862
863{
864 my $db;
865 my $path = cf::localdir . "/database.pst";
866
867 sub db_load() {
868 warn "loading database $path\n";#d# remove later
869 $db = stat $path ? Storable::retrieve $path : { };
870 }
871
872 my $pid;
873
874 sub db_save() {
875 warn "saving database $path\n";#d# remove later
876 waitpid $pid, 0 if $pid;
877 unless ($pid = fork) {
878 $db->{_meta}{version} = 1;
879 Storable::nstore $db, "$path~";
880 rename "$path~", $path;
881 cf::_exit 0 if defined $pid;
882 }
883 }
884
885 my $dirty;
886
887 sub db_sync() {
888 db_save if $dirty;
889 undef $dirty;
890 }
891
892 my $idle = Event->idle (min => $TICK * 2.8, max => 10, repeat => 0, cb => sub {
893 db_sync;
894 });
895
896 sub db_dirty() {
897 $dirty = 1;
898 $idle->start;
899 }
900
901 sub db_get($;$) {
902 @_ >= 2
903 ? $db->{$_[0]}{$_[1]}
904 : ($db->{$_[0]} ||= { })
905 }
906
907 sub db_put($$;$) {
908 if (@_ >= 3) {
909 $db->{$_[0]}{$_[1]} = $_[2];
910 } else {
911 $db->{$_[0]} = $_[1];
912 }
913 db_dirty;
914 }
915}
916
917#############################################################################
918# the server's main()
919
920sub main {
921 db_load;
922 load_extensions;
923 Event::loop;
444} 924}
445 925
446############################################################################# 926#############################################################################
447# initialisation 927# initialisation
448 928
929sub _perl_reload(&) {
930 my ($msg) = @_;
931
932 $msg->("reloading...");
933
934 eval {
935 # cancel all watchers
936 $_->cancel for Event::all_watchers;
937
938 # unload all extensions
939 for (@exts) {
940 $msg->("unloading <$_>");
941 unload_extension $_;
942 }
943
944 # unload all modules loaded from $LIBDIR
945 while (my ($k, $v) = each %INC) {
946 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
947
948 $msg->("removing <$k>");
949 delete $INC{$k};
950
951 $k =~ s/\.pm$//;
952 $k =~ s/\//::/g;
953
954 if (my $cb = $k->can ("unload_module")) {
955 $cb->();
956 }
957
958 Symbol::delete_package $k;
959 }
960
961 # sync database to disk
962 cf::db_sync;
963
964 # get rid of safe::, as good as possible
965 Symbol::delete_package "safe::$_"
966 for qw(cf::object cf::object::player cf::player cf::map cf::party cf::region);
967
968 # remove register_script_function callbacks
969 # TODO
970
971 # unload cf.pm "a bit"
972 delete $INC{"cf.pm"};
973
974 # don't, removes xs symbols, too,
975 # and global variables created in xs
976 #Symbol::delete_package __PACKAGE__;
977
978 # reload cf.pm
979 $msg->("reloading cf.pm");
980 require cf;
981
982 # load database again
983 cf::db_load;
984
985 # load extensions
986 $msg->("load extensions");
987 cf::load_extensions;
988
989 # reattach attachments to objects
990 $msg->("reattach");
991 _global_reattach;
992 };
993 $msg->($@) if $@;
994
995 $msg->("reloaded");
996};
997
998sub perl_reload() {
999 _perl_reload {
1000 warn $_[0];
1001 print "$_[0]\n";
1002 };
1003}
1004
1005register_command "perl-reload", 0, sub {
1006 my ($who, $arg) = @_;
1007
1008 if ($who->flag (FLAG_WIZ)) {
1009 _perl_reload {
1010 warn $_[0];
1011 $who->message ($_[0]);
1012 };
1013 }
1014};
1015
449register "<global>", __PACKAGE__; 1016register "<global>", __PACKAGE__;
450 1017
451unshift @INC, maps_directory "perl"; 1018unshift @INC, $LIBDIR;
452 1019
453load_extensions; 1020$TICK_WATCHER = Event->timer (
1021 prio => 1,
1022 at => $NEXT_TICK || 1,
1023 cb => sub {
1024 cf::server_tick; # one server iteration
1025
1026 my $NOW = Event::time;
1027 $NEXT_TICK += $TICK;
1028
1029 # if we are delayed by four ticks, skip them all
1030 $NEXT_TICK = $NOW if $NOW >= $NEXT_TICK + $TICK * 4;
1031
1032 $TICK_WATCHER->at ($NEXT_TICK);
1033 $TICK_WATCHER->start;
1034 },
1035);
454 1036
4551 10371
456 1038

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines