ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/player-env.ext
(Generate patch)

Comparing deliantra/server/ext/player-env.ext (file contents):
Revision 1.1 by root, Wed Jul 11 15:57:30 2007 UTC vs.
Revision 1.7 by root, Thu Jul 12 19:36:57 2007 UTC

1#! perl # mandatory 1#! perl # mandatory
2 2
3# this extension provides "environmental effects", 3# this extension provides "environmental effects",
4# meaning mostly background music and region messages right now. 4# meaning mostly background music and region messages right now.
5
6sub parse_facelist($$) {
7 my ($prefix, $list) = @_;
8
9 return undef
10 unless defined $list;
11
12 #TODO, sort by size (smallest first...)
13 [
14 sort { (cf::face::get_data_size $a) <=> (cf::face::get_data_size $b) }
15 grep $_,
16 map +(cf::face::find "$prefix$_" or ((warn "unable to find music file $_"), undef)),
17 split /\s*,\s*/, $list
18 ]
19}
20
21our %MUSIC_QUEUE;
22
23our $MUSIC_SCHEDULER = cf::async_ext {
24 while () {
25 for (keys %MUSIC_QUEUE) {
26 delete $MUSIC_QUEUE{$_};
27
28 my $pl = cf::player::find_active $_ or next;
29 $pl->ob->active or next;
30 my $ns = $pl->ns or next;
31 $ns->extcmd or next;
32 my $map = $pl->ob->map or next;
33
34 my $faces;
35
36 # 1. update map-specific music info
37 unless (exists $map->{music_faces}) {
38 $map->{music_faces} = parse_facelist "music/", $map->{music};
39 }
40
41 my $faces = $map->{music_faces};
42
43 # 2. fall back to region if no map-specific music
44 unless ($faces) {
45 my $rgn = $pl->ob->region
46 or next;
47
48 unless (exists $rgn->{music_faces}) {
49 my $par = $rgn;
50 while () {
51 last if exists $par->{music};
52 $par = $par->parent
53 or last;
54 }
55
56 $rgn->{music_faces} = parse_facelist "music/", $par->{music};
57 }
58
59 $faces = $rgn->{music_faces};
60 }
61
62 $faces
63 or next;
64
65 my $facestr = join ",", @$faces;
66 $ns->{current_music_faces} ne $facestr
67 or next;
68
69 $ns->{current_music_faces} = $facestr;
70
71 my $msg = {
72 play => $faces,
73 };
74
75 my $pri = 0;
76 push @{$msg->{faces}}, [$_, $pri++, cf::face::get_chksum $_]
77 for grep $ns->must_send_face ($_), @$faces;
78
79 $ns->ext_event (music => %$msg);
80
81 cf::cede_to_tick;
82 }
83 Coro::schedule unless %MUSIC_QUEUE;
84 }
85};
5 86
6cf::player->attach ( 87cf::player->attach (
7 on_region_change => sub { 88 on_region_change => sub {
8 my ($pl, $new, $old) = @_; 89 my ($pl, $new, $old) = @_;
9 90
10 $pl->ob->message ("You are now " . $new->longname . ". H<Use whereami for more details.>", $new->longname); 91 $pl->ob->message ("You are now " . $new->longname . ". H<Use whereami for more details.>", $new->longname);
92
93 $MUSIC_QUEUE{$pl->ob->name} = undef;
94 $MUSIC_SCHEDULER->ready;
95 },
96 on_map_change => sub {
97 my ($pl, $new) = @_;
98
99 $MUSIC_QUEUE{$pl->ob->name} = undef;
100 $MUSIC_SCHEDULER->ready;
11 }, 101 },
12); 102);
13 103
14 104

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines