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.31 by elmex, Mon Aug 14 04:22:04 2006 UTC vs.
Revision 1.39 by root, Fri Aug 25 13:24:50 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;
18our @PLUGIN_EVENT;
17our %PROP_TYPE; 19our %PROP_TYPE;
18our %PROP_IDX; 20our %PROP_IDX;
19our $LIBDIR = maps_directory "perl"; 21our $LIBDIR = maps_directory "perl";
20 22
23our $TICK = MAX_TIME * 1e-6;
24our $TICK_WATCHER;
25our $NEXT_TICK;
26
21BEGIN { 27BEGIN {
22 @EVENT = map lc, @EVENT; 28 @PLUGIN_EVENT = map lc, @PLUGIN_EVENT;
23 29
24 *CORE::GLOBAL::warn = sub { 30 *CORE::GLOBAL::warn = sub {
25 my $msg = join "", @_; 31 my $msg = join "", @_;
26 $msg .= "\n" 32 $msg .= "\n"
27 unless $msg =~ /\n$/; 33 unless $msg =~ /\n$/;
85my @exts; 91my @exts;
86my @hook; 92my @hook;
87my %command; 93my %command;
88my %extcmd; 94my %extcmd;
89 95
96#############################################################################
97# "new" plug-in system
98
99=item cf::object::attach ... # NYI
100
101=item cf::attach_global ... # NYI
102
103=item cf::attach_to_type ... # NYI
104
105=item cf::attach_to_objects ... # NYI
106
107=item cf::attach_to_players ... # NYI
108
109=item cf::attach_to_maps ... # NYI
110
111 prio => $number, # higehr is earlier
112 on_xxx => \&cb,
113 package => package::,
114
115=cut
116
117our %CB_CLASS = (); # registry for class-based events
118our @CB_GLOBAL = (); # registry for all global events
119our @CB_TYPE = (); # registry for type (cf-object class) based events
120
121sub _attach_cb($\%$$$) {
122 my ($registry, $undo, $event, $prio, $cb) = @_;
123
124 use sort 'stable';
125
126 $cb = [$prio, $cb];
127
128 @{$registry->[$event]} = sort
129 { $a->[0] cmp $b->[0] }
130 @{$registry->[$event] || []}, $cb;
131
132 push @{$undo->{cb}}, [$event, $cb];
133}
134
135# attach handles attaching event callbacks
136# the only thing the caller has to do is pass the correct
137# registry (== where the callback attaches to).
138sub _attach(\@$\@) {
139 my ($registry, $klass, $arg) = @_;
140
141 my $prio = 0;
142
143 my %undo = (
144 registry => $registry,
145 cb => [],
146 );
147
148 my %cb_id = map +("on_" . lc $EVENT[$_][0], $_) , grep $EVENT[$_][1] == $klass, 0 .. $#EVENT;
149
150 while (@$arg) {
151 my $type = shift @$arg;
152
153 if ($type eq "prio") {
154 $prio = shift @$arg;
155
156 } elsif ($type eq "package") {
157 my $pkg = shift @$arg;
158
159 while (my ($name, $id) = each %cb_id) {
160 if (my $cb = $pkg->can ($name)) {
161 _attach_cb $registry, %undo, $id, $prio, $cb;
162 }
163 }
164
165 } elsif (exists $cb_id{$type}) {
166 _attach_cb $registry, %undo, $cb_id{$type}, $prio, shift @$arg;
167
168 } elsif (ref $type) {
169 warn "attaching objects not supported, ignoring.\n";
170
171 } else {
172 shift @$arg;
173 warn "attach argument '$type' not supported, ignoring.\n";
174 }
175 }
176
177 \%undo
178}
179
180sub cf::object::attach {
181 die;
182}
183
184sub attach_global {
185 _attach @CB_GLOBAL, KLASS_GLOBAL, @_
186}
187
188sub attach_type {
189 my $type = shift;
190 _attach @{$CB_TYPE[$type]}, KLASS_MAP, @_
191}
192
193sub attach_to_objects {
194 _attach @{$CB_CLASS{cf::object::wrap::}}, KLASS_OBJECT, @_
195}
196
197sub attach_to_players {
198 _attach @{$CB_CLASS{cf::player::wrap::}}, KLASS_PLAYER, @_
199}
200
201sub attach_to_maps {
202 _attach @{$CB_CLASS{cf::map::wrap::}}, KLASS_MAP, @_
203}
204
205our $override;
206
207sub override() {
208 $override = 1
209}
210
211sub invoke {
212 my $event = shift;
213
214 my @cb;
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
227 local $override;
228
229 for (@cb) {
230 eval { &{$_->[1]} };
231
232 if ($@) {
233 warn "$@";
234 warn "... while processing $EVENT[$event][0] event, skipping processing altogether.\n";
235 override;
236 }
237
238 return 1 if $override;
239 }
240
241 0
242}
243
244#############################################################################
245# old plug-in events
246
90sub inject_event { 247sub inject_event {
91 my $extension = shift; 248 my $extension = shift;
92 my $event_code = shift; 249 my $event_code = shift;
93 250
94 my $cb = $hook[$event_code]{$extension} 251 my $cb = $hook[$event_code]{$extension}
136} 293}
137 294
138sub register { 295sub register {
139 my ($base, $pkg) = @_; 296 my ($base, $pkg) = @_;
140 297
141 for my $idx (0 .. $#EVENT) { 298 for my $idx (0 .. $#PLUGIN_EVENT) {
142 if (my $ref = $pkg->can ("on_$EVENT[$idx]")) { 299 if (my $ref = $pkg->can ("on_$PLUGIN_EVENT[$idx]")) {
143 #warn "registering $EVENT[$idx] hook to '$pkg'\n"; 300 #warn "registering $PLUGIN_EVENT[$idx] hook to '$pkg'\n";
144 $hook[$idx]{$base} = $ref; 301 $hook[$idx]{$base} = $ref;
145 } 302 }
146 } 303 }
147} 304}
148 305
182 my ($pkg) = @_; 339 my ($pkg) = @_;
183 340
184 warn "removing extension $pkg\n"; 341 warn "removing extension $pkg\n";
185 342
186 # remove hooks 343 # remove hooks
187 for my $idx (0 .. $#EVENT) { 344 for my $idx (0 .. $#PLUGIN_EVENT) {
188 delete $hook[$idx]{$pkg}; 345 delete $hook[$idx]{$pkg};
189 } 346 }
190 347
191 # remove commands 348 # remove commands
192 for my $name (keys %command) { 349 for my $name (keys %command) {
226 1 383 1
227 } or warn "$ext not loaded: $@"; 384 } or warn "$ext not loaded: $@";
228 } 385 }
229} 386}
230 387
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
231register_command "perl-reload", 0, sub { 449register_command "perl-reload", 0, sub {
232 my ($who, $arg) = @_; 450 my ($who, $arg) = @_;
233 451
234 if ($who->flag (FLAG_WIZ)) { 452 if ($who->flag (FLAG_WIZ)) {
235 $who->message ("reloading..."); 453 _perl_reload {
236 454 warn $_[0];
237 warn "reloading...\n"; 455 $who->message ($_[0]);
238 eval {
239 # 1. cancel all watchers
240 $_->cancel for Event::all_watchers;
241
242 # 2. unload all extensions
243 for (@exts) {
244 $who->message ("unloading <$_>");
245 unload_extension $_;
246 }
247
248 # 3. unload all modules loaded from $LIBDIR
249 while (my ($k, $v) = each %INC) {
250 next unless $v =~ /^\Q$LIBDIR\E\/.*\.pm$/;
251
252 $who->message ("removing <$k>");
253 delete $INC{$k};
254
255 $k =~ s/\.pm$//;
256 $k =~ s/\//::/g;
257
258 if (my $cb = $k->can ("unload_module")) {
259 $cb->();
260 }
261
262 Symbol::delete_package $k;
263 }
264
265 # 4. get rid of ext::, as good as possible
266 Symbol::delete_package "ext::$_"
267 for qw(cf::object cf::object::map cf::object::player cf::player cf::map cf::party cf::region);
268
269 # 5. remove register_script_function callbacks
270 # TODO
271
272 # 6. unload cf.pm "a bit"
273 delete $INC{"cf.pm"};
274
275 # don't, removes xs symbols, too
276 #Symbol::delete_package __PACKAGE__;
277
278 # 7. reload cf.pm
279 $who->message ("reloading cf.pm");
280 require cf;
281 }; 456 };
282 warn $@ if $@;
283 $who->message ($@) if $@;
284 warn "reloaded\n";
285
286 $who->message ("reloaded");
287 } else {
288 $who->message ("Intruder Alert!");
289 } 457 }
290}; 458};
291 459
292############################################################################# 460#############################################################################
293# utility functions 461# utility functions
327} 495}
328 496
329############################################################################# 497#############################################################################
330# load/save/clean perl data associated with a map 498# load/save/clean perl data associated with a map
331 499
332*on_mapclean = sub { 500*cf::mapsupport::on_clean = sub {
333 my ($map) = @_; 501 my ($map) = @_;
334 502
335 my $path = $map->tmpname; 503 my $path = $map->tmpname;
336 defined $path or return; 504 defined $path or return;
337 505
338 unlink "$path.cfperl"; 506 unlink "$path.cfperl";
339}; 507};
340 508
341*on_mapin = 509*cf::mapsupport::on_swapin =
342*on_mapload = sub { 510*cf::mapsupport::on_load = sub {
343 my ($map) = @_; 511 my ($map) = @_;
344 512
345 my $path = $map->tmpname; 513 my $path = $map->tmpname;
346 $path = $map->path unless defined $path; 514 $path = $map->path unless defined $path;
347 515
354 or return; # too new 522 or return; # too new
355 523
356 $map->_set_obs ($data->{obs}); 524 $map->_set_obs ($data->{obs});
357}; 525};
358 526
359*on_mapout = sub { 527*cf::mapsupport::on_swapout = sub {
360 my ($map) = @_; 528 my ($map) = @_;
361 529
362 my $path = $map->tmpname; 530 my $path = $map->tmpname;
363 $path = $map->path unless defined $path; 531 $path = $map->path unless defined $path;
364 532
381 } else { 549 } else {
382 unlink "$path.cfperl"; 550 unlink "$path.cfperl";
383 } 551 }
384}; 552};
385 553
554attach_to_maps prio => -10000, package => cf::mapsupport::;
555
386############################################################################# 556#############################################################################
387# load/save perl data associated with player->ob objects 557# load/save perl data associated with player->ob objects
388 558
389*on_player_load = sub { 559sub all_objects(@) {
560 @_, map all_objects ($_->inv), @_
561}
562
563attach_to_players
564 on_load => sub {
390 my ($ob, $path) = @_; 565 my ($pl, $path) = @_;
391 566
392 for my $o ($ob, $ob->inv) { 567 for my $o (all_objects $pl->ob) {
393 if (my $value = $o->get_ob_key_value ("_perl_data")) { 568 if (my $value = $o->get_ob_key_value ("_perl_data")) {
394 $o->set_ob_key_value ("_perl_data"); 569 $o->set_ob_key_value ("_perl_data");
395 570
396 %$o = %{ Storable::thaw pack "H*", $value }; 571 %$o = %{ Storable::thaw pack "H*", $value };
572 }
397 } 573 }
398 } 574 },
399}; 575 on_save => sub {
400
401*on_player_save = sub {
402 my ($ob, $path) = @_; 576 my ($pl, $path) = @_;
403 577
404 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_) 578 $_->set_ob_key_value (_perl_data => unpack "H*", Storable::nfreeze $_)
405 for grep %$_, $ob, $ob->inv; 579 for grep %$_, all_objects $pl->ob;
406}; 580 },
581;
407 582
408############################################################################# 583#############################################################################
409# core extensions - in perl 584# core extensions - in perl
410 585
411=item cf::player::exists $login 586=item cf::player::exists $login
510 no strict 'refs'; 685 no strict 'refs';
511 *{"ext::$fun"} = $safe_hole->wrap ($cb); 686 *{"ext::$fun"} = $safe_hole->wrap ($cb);
512} 687}
513 688
514############################################################################# 689#############################################################################
690# the server's main()
691
692sub main {
693 Event::loop;
694}
695
696#############################################################################
515# initialisation 697# initialisation
516 698
517register "<global>", __PACKAGE__; 699register "<global>", __PACKAGE__;
518 700
519unshift @INC, $LIBDIR; 701unshift @INC, $LIBDIR;
520 702
521load_extensions; 703load_extensions;
522 704
705$TICK_WATCHER = Event->timer (
706 prio => 1,
707 at => $NEXT_TICK || 1,
708 cb => sub {
709 cf::server_tick; # one server iteration
710
711 my $NOW = Event::time;
712 $NEXT_TICK += $TICK;
713
714 # if we are delayed by four ticks, skip them all
715 $NEXT_TICK = $NOW if $NOW >= $NEXT_TICK + $TICK * 4;
716
717 $TICK_WATCHER->at ($NEXT_TICK);
718 $TICK_WATCHER->start;
719 },
720);
721
5231 7221
524 723

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines