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.48 by root, Sun Aug 27 15:24:22 2006 UTC vs.
Revision 1.63 by root, Fri Sep 8 17:41:41 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_reload_1; 16_init_vars;
17 17
18our %COMMAND = (); 18our %COMMAND = ();
19our @EVENT; 19our @EVENT;
20our %PROP_TYPE;
21our %PROP_IDX;
22our $LIBDIR = maps_directory "perl"; 20our $LIBDIR = maps_directory "perl";
23 21
24our $TICK = MAX_TIME * 1e-6; 22our $TICK = MAX_TIME * 1e-6;
25our $TICK_WATCHER; 23our $TICK_WATCHER;
26our $NEXT_TICK; 24our $NEXT_TICK;
34 print STDERR "cfperl: $msg"; 32 print STDERR "cfperl: $msg";
35 LOG llevError, "cfperl: $msg"; 33 LOG llevError, "cfperl: $msg";
36 }; 34 };
37} 35}
38 36
39my %ignore_set = (MAP_PROP_PATH => 1); # I hate the plug-in api. Deeply!
40
41# generate property mutators
42sub prop_gen {
43 my ($prefix, $class) = @_;
44
45 no strict 'refs';
46
47 for my $prop (keys %PROP_TYPE) {
48 $prop =~ /^\Q$prefix\E_(.*$)/ or next;
49 my $sub = lc $1;
50
51 my $type = $PROP_TYPE{$prop};
52 my $idx = $PROP_IDX {$prop};
53
54 *{"$class\::get_$sub"} = *{"$class\::$sub"} = sub {
55 $_[0]->get_property ($type, $idx)
56 };
57
58 *{"$class\::set_$sub"} = sub {
59 $_[0]->set_property ($type, $idx, $_[1]);
60 } unless $ignore_set{$prop};
61 }
62}
63
64# auto-generate most of the API
65
66prop_gen OBJECT_PROP => "cf::object";
67# CFAPI_OBJECT_ANIMATION?
68prop_gen PLAYER_PROP => "cf::object::player";
69
70prop_gen MAP_PROP => "cf::map";
71prop_gen ARCH_PROP => "cf::arch";
72
73@safe::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object'; 37@safe::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
74 38
75# we bless all objects into (empty) derived classes to force a method lookup 39# we bless all objects into (empty) derived classes to force a method lookup
76# within the Safe compartment. 40# within the Safe compartment.
77for my $pkg (qw(cf::object cf::object::player cf::player cf::map cf::party cf::region cf::arch)) { 41for my $pkg (qw(cf::object cf::object::player cf::player cf::map cf::party cf::region cf::arch cf::living)) {
78 no strict 'refs'; 42 no strict 'refs';
79 @{"safe::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg; 43 @{"safe::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
80} 44}
81 45
82$Event::DIED = sub { 46$Event::DIED = sub {
105} 69}
106 70
107############################################################################# 71#############################################################################
108# "new" plug-in system 72# "new" plug-in system
109 73
74=head3 EVENTS AND OBJECT ATTACHMENTS
75
76=over 4
77
110=item $object->attach ($attachment, key => $value...) 78=item $object->attach ($attachment, key => $value...)
111 79
80=item $object->detach ($attachment)
81
112Attach a pre-registered attachment to an object. 82Attach/detach a pre-registered attachment to an object.
113 83
114=item $player->attach ($attachment, key => $value...) 84=item $player->attach ($attachment, key => $value...)
115 85
86=item $player->detach ($attachment)
87
116Attach a pre-registered attachment to a player. 88Attach/detach a pre-registered attachment to a player.
117 89
118=item $map->attach ($attachment, key => $value...) # not yet persistent 90=item $map->attach ($attachment, key => $value...)
119 91
92=item $map->detach ($attachment)
93
120Attach a pre-registered attachment to a map. 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.
121 103
122=item cf::attach_global ... 104=item cf::attach_global ...
123 105
124Attach handlers for global events. 106Attach handlers for global events.
125 107
173=item cf::attach_to_maps ... 155=item cf::attach_to_maps ...
174 156
175Attach handlers to all maps. 157Attach handlers to all maps.
176 158
177=item cf:register_attachment $name, ... 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.
178 173
179=cut 174=cut
180 175
181# the following variables are defined in .xs and must not be re-created 176# the following variables are defined in .xs and must not be re-created
182our @CB_GLOBAL = (); # registry for all global events 177our @CB_GLOBAL = (); # registry for all global events
247} 242}
248 243
249sub _attach_attachment { 244sub _attach_attachment {
250 my ($obj, $name, %arg) = @_; 245 my ($obj, $name, %arg) = @_;
251 246
247 return if exists $obj->{_attachment}{$name};
248
252 my $res; 249 my $res;
253 250
254 if (my $attach = $attachment{$name}) { 251 if (my $attach = $attachment{$name}) {
255 my $registry = $obj->registry; 252 my $registry = $obj->registry;
256 253
262 $obj->{$name} = \%arg; 259 $obj->{$name} = \%arg;
263 } else { 260 } else {
264 warn "object uses attachment '$name' that is not available, postponing.\n"; 261 warn "object uses attachment '$name' that is not available, postponing.\n";
265 } 262 }
266 263
267 push @{$obj->{_attachment}}, $name; 264 $obj->{_attachment}{$name} = undef;
268 265
269 $res->{attachment} = $name; 266 $res->{attachment} = $name;
270 $res 267 $res
271} 268}
272 269
273sub cf::object::attach { 270*cf::object::attach =
271*cf::player::attach =
272*cf::map::attach = sub {
274 my ($obj, $name, %arg) = @_; 273 my ($obj, $name, %arg) = @_;
275 274
276 _attach_attachment $obj, $name, %arg; 275 _attach_attachment $obj, $name, %arg;
277} 276};
278 277
278# all those should be optimised
279*cf::object::detach =
279sub cf::player::attach { 280*cf::player::detach =
281*cf::map::detach = sub {
280 my ($obj, $name, %arg) = @_; 282 my ($obj, $name) = @_;
281 283
282 _attach_attachment KLASS_PLAYER, $obj, $name, %arg; 284 delete $obj->{_attachment}{$name};
283} 285 reattach ($obj);
286};
284 287
285sub cf::map::attach { 288*cf::object::attached =
289*cf::player::attached =
290*cf::map::attached = sub {
286 my ($obj, $name, %arg) = @_; 291 my ($obj, $name) = @_;
287 292
288 _attach_attachment KLASS_MAP, $obj, $name, %arg; 293 exists $obj->{_attachment}{$name}
289} 294};
290 295
291sub attach_global { 296sub attach_global {
292 _attach @CB_GLOBAL, KLASS_GLOBAL, @_ 297 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
293} 298}
294 299
313 318
314sub register_attachment { 319sub register_attachment {
315 my $name = shift; 320 my $name = shift;
316 321
317 $attachment{$name} = [[KLASS_OBJECT, @_]]; 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, @_]];
318} 335}
319 336
320our $override; 337our $override;
321our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals? 338our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals?
322 339
346 } 363 }
347 364
348 0 365 0
349} 366}
350 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
351############################################################################# 408#############################################################################
352# object support 409# object support
353 410
354sub instantiate { 411sub instantiate {
355 my ($obj, $data) = @_; 412 my ($obj, $data) = @_;
356 413
357 $data = from_json $data; 414 $data = from_json $data;
358 415
359 for (@$data) { 416 for (@$data) {
360 my ($name, $args) = @$_; 417 my ($name, $args) = @$_;
418
361 attach $obj, $name, %{$args || {} }; 419 $obj->attach ($name, %{$args || {} });
362 } 420 }
363} 421}
364 422
365# basically do the same as instantiate, without calling instantiate 423# basically do the same as instantiate, without calling instantiate
366sub reattach { 424sub reattach {
367 my ($obj) = @_; 425 my ($obj) = @_;
368 my $registry = $obj->registry; 426 my $registry = $obj->registry;
369 427
370 @$registry = (); 428 @$registry = ();
371 429
430 delete $obj->{_attachment} unless scalar keys %{ $obj->{_attachment} || {} };
431
372 for my $name (@{ $obj->{_attachment} }) { 432 for my $name (keys %{ $obj->{_attachment} || {} }) {
373 if (my $attach = $attachment{$name}) { 433 if (my $attach = $attachment{$name}) {
374 for (@$attach) { 434 for (@$attach) {
375 my ($klass, @attach) = @$_; 435 my ($klass, @attach) = @$_;
376 _attach @$registry, $klass, @attach; 436 _attach @$registry, $klass, @attach;
377 } 437 }
380 } 440 }
381 } 441 }
382} 442}
383 443
384sub object_freezer_save { 444sub object_freezer_save {
385 my ($filename, $objs) = @_; 445 my ($filename, $rdata, $objs) = @_;
386 446
387 $filename .= ".pst"; 447 if (length $$rdata) {
448 warn sprintf "saving %s (%d,%d)\n",
449 $filename, length $$rdata, scalar @$objs;
388 450
389 if (@$objs) {
390 open my $fh, ">:raw", "$filename~"; 451 if (open my $fh, ">:raw", "$filename~") {
391 chmod $fh, SAVE_MODE; 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;
392 syswrite $fh, Storable::nfreeze { version => 1, objs => $objs }; 458 syswrite $fh, Storable::nfreeze { version => 1, objs => $objs };
393 close $fh; 459 close $fh;
460 rename "$filename.pst~", "$filename.pst";
461 } else {
462 unlink "$filename.pst";
463 }
464
394 rename "$filename~", $filename; 465 rename "$filename~", $filename;
466 } else {
467 warn "FATAL: $filename~: $!\n";
468 }
395 } else { 469 } else {
396 unlink $filename; 470 unlink $filename;
471 unlink "$filename.pst";
397 } 472 }
398} 473}
399 474
400sub object_thawer_load { 475sub object_thawer_load {
401 my ($filename) = @_; 476 my ($filename) = @_;
402 477
478 local $/;
479
480 my $av;
481
482 #TODO: use sysread etc.
483 if (open my $data, "<:raw:perlio", $filename) {
484 $data = <$data>;
403 open my $fh, "<:raw:perlio", "$filename.pst" 485 if (open my $pst, "<:raw:perlio", "$filename.pst") {
404 or return; 486 $av = eval { (Storable::thaw <$pst>)->{objs} };
487 }
488 return ($data, $av);
489 }
405 490
406 eval { local $/; (Storable::thaw <$fh>)->{objs} } 491 ()
407} 492}
408 493
409attach_to_objects 494attach_to_objects
410 prio => -1000000, 495 prio => -1000000,
411 on_clone => sub { 496 on_clone => sub {
413 498
414 @{$dst->registry} = @{$src->registry}; 499 @{$dst->registry} = @{$src->registry};
415 500
416 %$dst = %$src; 501 %$dst = %$src;
417 502
418 $dst->{_attachment} = [@{ $src->{_attachment} }] 503 %{$dst->{_attachment}} = %{$src->{_attachment}}
419 if exists $src->{_attachment}; 504 if exists $src->{_attachment};
420 }, 505 },
421; 506;
422 507
423############################################################################# 508#############################################################################
607 #Symbol::delete_package __PACKAGE__; 692 #Symbol::delete_package __PACKAGE__;
608 693
609 # 7. reload cf.pm 694 # 7. reload cf.pm
610 $msg->("reloading cf.pm"); 695 $msg->("reloading cf.pm");
611 require cf; 696 require cf;
697
698 $msg->("load extensions");
699 cf::load_extensions;
700
701 $msg->("reattach");
702 _global_reattach;
612 }; 703 };
613 $msg->($@) if $@; 704 $msg->($@) if $@;
614 705
615 $msg->("reloaded"); 706 $msg->("reloaded");
616}; 707};
664 my ($map) = @_; 755 my ($map) = @_;
665 756
666 my $path = $map->tmpname; 757 my $path = $map->tmpname;
667 defined $path or return; 758 defined $path or return;
668 759
669 unlink "$path.cfperl";
670 unlink "$path.pst"; 760 unlink "$path.pst";
671}; 761};
672 762
673*cf::mapsupport::on_swapin =
674*cf::mapsupport::on_load = sub {
675 my ($map) = @_;
676
677 my $path = $map->tmpname;
678 $path = $map->path unless defined $path;
679
680 open my $fh, "<:raw", "$path.cfperl"
681 or return; # no perl data
682
683 my $data = Storable::thaw do { local $/; <$fh> };
684
685 $data->{version} <= 1
686 or return; # too new
687
688 $map->_set_obs ($data->{obs});
689};
690
691attach_to_maps prio => -10000, package => cf::mapsupport::; 763attach_to_maps prio => -10000, package => cf::mapsupport::;
692 764
693############################################################################# 765#############################################################################
694# load/save perl data associated with player->ob objects 766# load/save perl data associated with player->ob objects
695 767
696sub all_objects(@) { 768sub all_objects(@) {
697 @_, map all_objects ($_->inv), @_ 769 @_, map all_objects ($_->inv), @_
698} 770}
699 771
772# TODO: compatibility cruft, remove when no longer needed
700attach_to_players 773attach_to_players
701 on_load => sub { 774 on_load => sub {
702 my ($pl, $path) = @_; 775 my ($pl, $path) = @_;
703 776
704 for my $o (all_objects $pl->ob) { 777 for my $o (all_objects $pl->ob) {
825 898
826############################################################################# 899#############################################################################
827# the server's main() 900# the server's main()
828 901
829sub main { 902sub main {
903 load_extensions;
830 Event::loop; 904 Event::loop;
831} 905}
832 906
833############################################################################# 907#############################################################################
834# initialisation 908# initialisation
835 909
836register "<global>", __PACKAGE__; 910register "<global>", __PACKAGE__;
837 911
838unshift @INC, $LIBDIR; 912unshift @INC, $LIBDIR;
839
840load_extensions;
841 913
842$TICK_WATCHER = Event->timer ( 914$TICK_WATCHER = Event->timer (
843 prio => 1, 915 prio => 1,
844 at => $NEXT_TICK || 1, 916 at => $NEXT_TICK || 1,
845 cb => sub { 917 cb => sub {
854 $TICK_WATCHER->at ($NEXT_TICK); 926 $TICK_WATCHER->at ($NEXT_TICK);
855 $TICK_WATCHER->start; 927 $TICK_WATCHER->start;
856 }, 928 },
857); 929);
858 930
859_reload_2;
860
8611 9311
862 932

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines