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.39 by root, Fri Aug 25 13:24:50 2006 UTC vs.
Revision 1.71 by root, Sun Oct 1 10:59:30 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines