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.45 by root, Sat Aug 26 23:36:32 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
15our %COMMAND; 16our %COMMAND = ();
16our @EVENT; 17our @EVENT;
17our %PROP_TYPE; 18our %PROP_TYPE;
18our %PROP_IDX; 19our %PROP_IDX;
20our $LIBDIR = maps_directory "perl";
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
62prop_gen PLAYER_PROP => "cf::object::player"; 66prop_gen PLAYER_PROP => "cf::object::player";
63 67
64prop_gen MAP_PROP => "cf::map"; 68prop_gen MAP_PROP => "cf::map";
65prop_gen ARCH_PROP => "cf::arch"; 69prop_gen ARCH_PROP => "cf::arch";
66 70
67# guessed hierarchies
68
69@ext::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object'; 71@safe::cf::object::player::ISA = @cf::object::player::ISA = 'cf::object';
70@ext::cf::object::map::ISA = @cf::object::map::ISA = 'cf::object';
71 72
72# we bless all objects into derived classes to force a method lookup 73# we bless all objects into (empty) derived classes to force a method lookup
73# within the Safe compartment. 74# within the Safe compartment.
74for my $pkg (qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region)) { 75for my $pkg (qw(cf::object cf::object::player cf::player cf::map cf::party cf::region cf::arch)) {
75 no strict 'refs'; 76 no strict 'refs';
76 @{"ext::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg; 77 @{"safe::$pkg\::wrap::ISA"} = @{"$pkg\::wrap::ISA"} = $pkg;
77} 78}
78 79
79$Event::DIED = sub { 80$Event::DIED = sub {
80 warn "error in event callback: @_"; 81 warn "error in event callback: @_";
81}; 82};
84my @exts; 85my @exts;
85my @hook; 86my @hook;
86my %command; 87my %command;
87my %extcmd; 88my %extcmd;
88 89
90#############################################################################
91# utility functions
92
93use JSON::Syck (); # TODO# replace by JSON::PC once working
94
95sub from_json($) {
96 $JSON::Syck::ImplicitUnicode = 1; # work around JSON::Syck bugs
97 JSON::Syck::Load $_[0]
98}
99
100sub to_json($) {
101 $JSON::Syck::ImplicitUnicode = 0; # work around JSON::Syck bugs
102 JSON::Syck::Dump $_[0]
103}
104
105#############################################################################
106# "new" plug-in system
107
108=item cf::object::attach ... # NYI
109
110=item cf::attach_global ...
111
112=item cf::attach_to_type $object_type, ...
113
114=item cf::attach_to_objects ...
115
116=item cf::attach_to_players ...
117
118=item cf::attach_to_maps ...
119
120=item cf:register_attachment $name, ...
121
122 prio => $number, # lower is earlier
123 on_xxx => \&cb,
124 package => package::,
125
126=cut
127
128# the following variables are defined in .xs and must not be re-created
129our @CB_GLOBAL = (); # registry for all global events
130our @CB_OBJECT = (); # all objects (should not be used except in emergency)
131our @CB_PLAYER = ();
132our @CB_TYPE = (); # registry for type (cf-object class) based events
133our @CB_MAP = ();
134
135my %attachment;
136
137sub _attach_cb($\%$$$) {
138 my ($registry, $undo, $event, $prio, $cb) = @_;
139
140 use sort 'stable';
141
142 $cb = [$prio, $cb];
143
144 @{$registry->[$event]} = sort
145 { $a->[0] cmp $b->[0] }
146 @{$registry->[$event] || []}, $cb;
147
148 push @{$undo->{cb}}, [$event, $cb];
149}
150
151# attach handles attaching event callbacks
152# the only thing the caller has to do is pass the correct
153# registry (== where the callback attaches to).
154sub _attach(\@$@) {
155 my ($registry, $klass, @arg) = @_;
156
157 my $prio = 0;
158
159 my %undo = (
160 registry => $registry,
161 cb => [],
162 );
163
164 my %cb_id = map +("on_" . lc $EVENT[$_][0], $_) , grep $EVENT[$_][1] == $klass, 0 .. $#EVENT;
165
166 while (@arg) {
167 my $type = shift @arg;
168
169 if ($type eq "prio") {
170 $prio = shift @arg;
171
172 } elsif ($type eq "package") {
173 my $pkg = shift @arg;
174
175 while (my ($name, $id) = each %cb_id) {
176 if (my $cb = $pkg->can ($name)) {
177 _attach_cb $registry, %undo, $id, $prio, $cb;
178 }
179 }
180
181 } elsif (exists $cb_id{$type}) {
182 _attach_cb $registry, %undo, $cb_id{$type}, $prio, shift @arg;
183
184 } elsif (ref $type) {
185 warn "attaching objects not supported, ignoring.\n";
186
187 } else {
188 shift @arg;
189 warn "attach argument '$type' not supported, ignoring.\n";
190 }
191 }
192
193 \%undo
194}
195
196sub cf::object::attach {
197 die;
198}
199
200sub attach_global {
201 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
202}
203
204sub attach_to_type {
205 my $type = shift;
206
207 _attach @{$CB_TYPE[$type]}, KLASS_OBJECT, @_
208}
209
210sub attach_to_objects {
211 _attach @CB_OBJECT, KLASS_OBJECT, @_
212}
213
214sub attach_to_players {
215 _attach @CB_PLAYER, KLASS_PLAYER, @_
216}
217
218sub attach_to_maps {
219 _attach @CB_MAP, KLASS_MAP, @_
220}
221
222sub register_attachment {
223 my $name = shift;
224
225 $attachment{$name} = [@_];
226}
227
228our $override;
229our @invoke_results = (); # referenced from .xs code. TODO: play tricks with reify and mortals?
230
231sub override {
232 $override = 1;
233 @invoke_results = ();
234}
235
236sub do_invoke {
237 my $event = shift;
238 my $callbacks = shift;
239
240 @invoke_results = ();
241
242 local $override;
243
244 for (@$callbacks) {
245 eval { &{$_->[1]} };
246
247 if ($@) {
248 warn "$@";
249 warn "... while processing $EVENT[$event][0] event, skipping processing altogether.\n";
250 override;
251 }
252
253 return 1 if $override;
254 }
255
256 0
257}
258
259#############################################################################
260# object support
261
262sub instantiate {
263 my ($obj, $data) = @_;
264 my $registry = $obj->registry;
265
266 $data = from_json $data;
267
268 for (@$data) {
269 my ($pri, $name, @args) = @$_;
270
271 if (my $attach = $attachment{$name}) {
272 _attach @$registry, KLASS_OBJECT, @$attach;
273
274 if (my $cb = delete $registry->[EVENT_OBJECT_INSTANTIATE]) {
275 for (@$cb) {
276 eval { $_->[1]->($obj, @args); };
277 if ($@) {
278 warn "$@";
279 warn "... while processing '$name' instantiate with args <@args>\n";
280 }
281 }
282 }
283 } else {
284 warn "object uses attachment $name that is not available, postponing.\n";
285 }
286
287 push @{$obj->{_attachment}}, $name;
288 }
289}
290
291# basically do the same as instantiate, without calling instantiate
292sub reattach {
293 my ($obj) = @_;
294 my $registry = $obj->registry;
295
296 warn "reattach<@_, $_>\n";
297}
298
299attach_to_objects
300 prio => -1000000,
301 on_clone => sub {
302 my ($src, $dst) = @_;
303
304 @{$dst->registry} = @{$src->registry};
305 warn "registry clone ", join ":", @{$src->registry};#d#
306
307 %$dst = %$src;
308
309 $dst->{_attachment} = [@{ $src->{_attachment} }]
310 if exists $src->{_attachment};
311
312 warn "clone<@_>\n";#d#
313 },
314;
315
316#############################################################################
317# old plug-in events
318
89sub inject_event { 319sub inject_event {
90 my $extension = shift; 320 my $extension = shift;
91 my $event_code = shift; 321 my $event_code = shift;
92 322
93 my $cb = $hook[$event_code]{$extension} 323 my $cb = $hook[$event_code]{$extension}
135} 365}
136 366
137sub register { 367sub register {
138 my ($base, $pkg) = @_; 368 my ($base, $pkg) = @_;
139 369
140 for my $idx (0 .. $#EVENT) { 370 #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} 371}
147 372
148sub load_extension { 373sub load_extension {
149 my ($path) = @_; 374 my ($path) = @_;
150 375
151 $path =~ /([^\/\\]+)\.ext$/ or die "$path"; 376 $path =~ /([^\/\\]+)\.ext$/ or die "$path";
152 my $base = $1; 377 my $base = $1;
153 my $pkg = $1; 378 my $pkg = $1;
154 $pkg =~ s/[^[:word:]]/_/g; 379 $pkg =~ s/[^[:word:]]/_/g;
155 $pkg = "cf::ext::$pkg"; 380 $pkg = "ext::$pkg";
156 381
157 warn "loading '$path' into '$pkg'\n"; 382 warn "loading '$path' into '$pkg'\n";
158 383
159 open my $fh, "<:utf8", $path 384 open my $fh, "<:utf8", $path
160 or die "$path: $!"; 385 or die "$path: $!";
180sub unload_extension { 405sub unload_extension {
181 my ($pkg) = @_; 406 my ($pkg) = @_;
182 407
183 warn "removing extension $pkg\n"; 408 warn "removing extension $pkg\n";
184 409
185 if (my $cb = $pkg->can ("on_unload")) {
186 $cb->($pkg);
187 }
188
189 # remove hooks 410 # remove hooks
411 #TODO
190 for my $idx (0 .. $#EVENT) { 412# for my $idx (0 .. $#PLUGIN_EVENT) {
191 delete $hook[$idx]{$pkg}; 413# delete $hook[$idx]{$pkg};
192 } 414# }
193 415
194 # remove commands 416 # remove commands
195 for my $name (keys %command) { 417 for my $name (keys %command) {
196 my @cb = grep $_->[2] ne $pkg, @{ $command{$name} }; 418 my @cb = grep $_->[2] ne $pkg, @{ $command{$name} };
197 419
207 # remove extcmds 429 # remove extcmds
208 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) { 430 for my $name (grep $extcmd{$_}[1] eq $pkg, keys %extcmd) {
209 delete $extcmd{$name}; 431 delete $extcmd{$name};
210 } 432 }
211 433
434 if (my $cb = $pkg->can ("unload")) {
435 eval {
436 $cb->($pkg);
437 1
438 } or warn "$pkg unloaded, but with errors: $@";
439 }
440
212 Symbol::delete_package $pkg; 441 Symbol::delete_package $pkg;
213} 442}
214 443
215sub load_extensions { 444sub load_extensions {
216 my $LIBDIR = maps_directory "perl"; 445 my $LIBDIR = maps_directory "perl";
222 1 451 1
223 } or warn "$ext not loaded: $@"; 452 } or warn "$ext not loaded: $@";
224 } 453 }
225} 454}
226 455
456sub _perl_reload(&) {
457 my ($msg) = @_;
458
459 $msg->("reloading...");
460
461 eval {
462 # 1. cancel all watchers
463 $_->cancel for Event::all_watchers;
464
465 # 2. unload all extensions
466 for (@exts) {
467 $msg->("unloading <$_>");
468 unload_extension $_;
469 }
470
471 # 3. unload all modules loaded from $LIBDIR
472 while (my ($k, $v) = each %INC) {
473 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
474
475 $msg->("removing <$k>");
476 delete $INC{$k};
477
478 $k =~ s/\.pm$//;
479 $k =~ s/\//::/g;
480
481 if (my $cb = $k->can ("unload_module")) {
482 $cb->();
483 }
484
485 Symbol::delete_package $k;
486 }
487
488 # 4. get rid of safe::, as good as possible
489 Symbol::delete_package "safe::$_"
490 for qw(cf::object cf::object::player cf::player cf::map cf::party cf::region);
491
492 # 5. remove register_script_function callbacks
493 # TODO
494
495 # 6. unload cf.pm "a bit"
496 delete $INC{"cf.pm"};
497
498 # don't, removes xs symbols, too,
499 # and global variables created in xs
500 #Symbol::delete_package __PACKAGE__;
501
502 # 7. reload cf.pm
503 $msg->("reloading cf.pm");
504 require cf;
505 };
506 $msg->($@) if $@;
507
508 $msg->("reloaded");
509};
510
511sub perl_reload() {
512 _perl_reload {
513 warn $_[0];
514 print "$_[0]\n";
515 };
516}
517
227register_command "perl-reload", 0, sub { 518register_command "perl-reload", 0, sub {
228 my ($who, $arg) = @_; 519 my ($who, $arg) = @_;
229 520
230 if ($who->flag (FLAG_WIZ)) { 521 if ($who->flag (FLAG_WIZ)) {
231 $who->message ("reloading..."); 522 _perl_reload {
232 523 warn $_[0];
233 warn "reloading...\n"; 524 $who->message ($_[0]);
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 }; 525 };
245 warn $@ if $@;
246 $who->message ($@) if $@;
247 warn "reloaded\n";
248
249 $who->message ("reloaded");
250 } else {
251 $who->message ("Intruder Alert!");
252 } 526 }
253}; 527};
254 528
255############################################################################# 529#############################################################################
256# extcmd framework, basically convert ext <id> <pkg> arg1 args 530# extcmd framework, basically convert ext <msg>
257# into pkg::->on_extcmd_arg1 (...) while shortcutting a few 531# into pkg::->on_extcmd_arg1 (...) while shortcutting a few
258 532
259sub on_extcmd { 533attach_to_players
534 on_extcmd => sub {
260 my ($pl, $buf) = @_; 535 my ($pl, $buf) = @_;
261 536
262 my ($type) = $buf =~ s/^(\S+) // ? $1 : ""; 537 my $msg = eval { from_json $buf };
263 538
264 $extcmd{$type}[0]->($pl, $buf) 539 if (ref $msg) {
265 if $extcmd{$type}; 540 if (my $cb = $extcmd{$msg->{msgtype}}) {
266} 541 if (my %reply = $cb->[0]->($pl, $msg)) {
542 $pl->ext_reply ($msg->{msgid}, %reply);
543 }
544 }
545 } else {
546 warn "player " . ($pl->ob->name) . " sent unparseable ext message: <$buf>\n";
547 }
548
549 cf::override;
550 },
551;
267 552
268############################################################################# 553#############################################################################
269# load/save/clean perl data associated with a map 554# load/save/clean perl data associated with a map
270 555
271*on_mapclean = sub { 556*cf::mapsupport::on_clean = sub {
272 my ($map) = @_; 557 my ($map) = @_;
273 558
274 my $path = $map->tmpname; 559 my $path = $map->tmpname;
275 defined $path or return; 560 defined $path or return;
276 561
277 unlink "$path.cfperl"; 562 unlink "$path.cfperl";
278}; 563};
279 564
280*on_mapin = 565*cf::mapsupport::on_swapin =
281*on_mapload = sub { 566*cf::mapsupport::on_load = sub {
282 my ($map) = @_; 567 my ($map) = @_;
283 568
284 my $path = $map->tmpname; 569 my $path = $map->tmpname;
285 $path = $map->path unless defined $path; 570 $path = $map->path unless defined $path;
286 571
293 or return; # too new 578 or return; # too new
294 579
295 $map->_set_obs ($data->{obs}); 580 $map->_set_obs ($data->{obs});
296}; 581};
297 582
298*on_mapout = sub { 583*cf::mapsupport::on_swapout = sub {
299 my ($map) = @_; 584 my ($map) = @_;
300 585
301 my $path = $map->tmpname; 586 my $path = $map->tmpname;
302 $path = $map->path unless defined $path; 587 $path = $map->path unless defined $path;
303 588
320 } else { 605 } else {
321 unlink "$path.cfperl"; 606 unlink "$path.cfperl";
322 } 607 }
323}; 608};
324 609
610attach_to_maps prio => -10000, package => cf::mapsupport::;
611
325############################################################################# 612#############################################################################
326# load/save perl data associated with player->ob objects 613# load/save perl data associated with player->ob objects
327 614
328*on_player_load = sub { 615sub all_objects(@) {
616 @_, map all_objects ($_->inv), @_
617}
618
619attach_to_players
620 on_load => sub {
329 my ($ob, $path) = @_; 621 my ($pl, $path) = @_;
330 622
331 if (open my $fh, "<:raw", "$path.cfperl") { 623 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")) { 624 if (my $value = $o->get_ob_key_value ("_perl_data")) {
346 $o->set_ob_key_value ("_perl_data"); 625 $o->set_ob_key_value ("_perl_data");
347 626
348 %$o = %{ Storable::thaw pack "H*", $value }; 627 %$o = %{ Storable::thaw pack "H*", $value };
628 }
349 } 629 }
350 } 630 },
351}; 631 on_save => sub {
352
353*on_player_save = sub {
354 my ($ob, $path) = @_; 632 my ($pl, $path) = @_;
355 633
356 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_) 634 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
357 for grep %$_, $ob, $ob->inv; 635 for grep %$_, all_objects $pl->ob;
358 636 },
359 unlink "$path.cfperl";#d##TODO#remove 637;
360};
361 638
362############################################################################# 639#############################################################################
363# core extensions - in perl 640# core extensions - in perl
364 641
365=item cf::player::exists $login 642=item cf::player::exists $login
370 647
371sub cf::player::exists($) { 648sub cf::player::exists($) {
372 cf::player::find $_[0] 649 cf::player::find $_[0]
373 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2; 650 or -f sprintf "%s/%s/%s/%s.pl", cf::localdir, cf::playerdir, ($_[0]) x 2;
374} 651}
652
653=item $player->reply ($npc, $msg[, $flags])
654
655Sends a message to the player, as if the npc C<$npc> replied. C<$npc>
656can be C<undef>. Does the right thing when the player is currently in a
657dialogue with the given NPC character.
658
659=cut
375 660
376# rough implementation of a future "reply" method that works 661# rough implementation of a future "reply" method that works
377# with dialog boxes. 662# with dialog boxes.
378sub cf::object::player::reply($$$;$) { 663sub cf::object::player::reply($$$;$) {
379 my ($self, $npc, $msg, $flags) = @_; 664 my ($self, $npc, $msg, $flags) = @_;
386 $msg = $npc->name . " says: $msg" if $npc; 671 $msg = $npc->name . " says: $msg" if $npc;
387 $self->message ($msg, $flags); 672 $self->message ($msg, $flags);
388 } 673 }
389} 674}
390 675
676=item $player->ext_reply ($msgid, $msgtype, %msg)
677
678Sends an ext reply to the player.
679
680=cut
681
682sub cf::player::ext_reply($$$%) {
683 my ($self, $id, %msg) = @_;
684
685 $msg{msgid} = $id;
686
687 $self->send ("ext " . to_json \%msg);
688}
689
391############################################################################# 690#############################################################################
392# map scripting support 691# map scripting support
393 692
394our $safe = new Safe "ext"; 693our $safe = new Safe "safe";
395our $safe_hole = new Safe::Hole; 694our $safe_hole = new Safe::Hole;
396 695
397$SIG{FPE} = 'IGNORE'; 696$SIG{FPE} = 'IGNORE';
398 697
399$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time)); 698$safe->permit_only (Opcode::opset qw(:base_core :base_mem :base_orig :base_math sort time));
400 699
401# here we export the classes and methods available to script code 700# here we export the classes and methods available to script code
402 701
403for ( 702for (
404 ["cf::object" => qw(contr)], 703 ["cf::object" => qw(contr pay_amount pay_player)],
405 ["cf::object::player" => qw(player)], 704 ["cf::object::player" => qw(player)],
406 ["cf::player" => qw(peaceful)], 705 ["cf::player" => qw(peaceful)],
407) { 706) {
408 no strict 'refs'; 707 no strict 'refs';
409 my ($pkg, @funs) = @$_; 708 my ($pkg, @funs) = @$_;
410 *{"ext::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"}) 709 *{"safe::$pkg\::$_"} = $safe_hole->wrap (\&{"$pkg\::$_"})
411 for @funs; 710 for @funs;
412} 711}
413 712
414sub safe_eval($;@) { 713sub safe_eval($;@) {
415 my ($code, %vars) = @_; 714 my ($code, %vars) = @_;
417 my $qcode = $code; 716 my $qcode = $code;
418 $qcode =~ s/"/‟/g; # not allowed in #line filenames 717 $qcode =~ s/"/‟/g; # not allowed in #line filenames
419 $qcode =~ s/\n/\\n/g; 718 $qcode =~ s/\n/\\n/g;
420 719
421 local $_; 720 local $_;
422 local @ext::cf::_safe_eval_args = values %vars; 721 local @safe::cf::_safe_eval_args = values %vars;
423 722
424 $code = 723 my $eval =
425 "do {\n" 724 "do {\n"
426 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n" 725 . "my (" . (join ",", map "\$$_", keys %vars) . ") = \@cf::_safe_eval_args;\n"
427 . "#line 0 \"{$qcode}\"\n" 726 . "#line 0 \"{$qcode}\"\n"
428 . $code 727 . $code
429 . "\n}" 728 . "\n}"
430 ; 729 ;
431 730
432 sub_generation_inc; 731 sub_generation_inc;
433 my @res = wantarray ? $safe->reval ($code) : scalar $safe->reval ($code); 732 my @res = wantarray ? $safe->reval ($eval) : scalar $safe->reval ($eval);
434 sub_generation_inc; 733 sub_generation_inc;
734
735 if ($@) {
736 warn "$@";
737 warn "while executing safe code '$code'\n";
738 warn "with arguments " . (join " ", %vars) . "\n";
739 }
435 740
436 wantarray ? @res : $res[0] 741 wantarray ? @res : $res[0]
437} 742}
438 743
439sub register_script_function { 744sub register_script_function {
440 my ($fun, $cb) = @_; 745 my ($fun, $cb) = @_;
441 746
442 no strict 'refs'; 747 no strict 'refs';
443 *{"ext::$fun"} = $safe_hole->wrap ($cb); 748 *{"safe::$fun"} = $safe_hole->wrap ($cb);
749}
750
751#############################################################################
752# the server's main()
753
754sub main {
755 Event::loop;
444} 756}
445 757
446############################################################################# 758#############################################################################
447# initialisation 759# initialisation
448 760
449register "<global>", __PACKAGE__; 761register "<global>", __PACKAGE__;
450 762
451unshift @INC, maps_directory "perl"; 763unshift @INC, $LIBDIR;
452 764
453load_extensions; 765load_extensions;
454 766
767$TICK_WATCHER = Event->timer (
768 prio => 1,
769 at => $NEXT_TICK || 1,
770 cb => sub {
771 cf::server_tick; # one server iteration
772
773 my $NOW = Event::time;
774 $NEXT_TICK += $TICK;
775
776 # if we are delayed by four ticks, skip them all
777 $NEXT_TICK = $NOW if $NOW >= $NEXT_TICK + $TICK * 4;
778
779 $TICK_WATCHER->at ($NEXT_TICK);
780 $TICK_WATCHER->start;
781 },
782);
783
4551 7841
456 785

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines