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.9 by root, Mon Jul 23 17:53:55 2007 UTC vs.
Revision 1.15 by root, Wed Sep 19 21:56:30 2007 UTC

17 split /\s*,\s*/, $list 17 split /\s*,\s*/, $list
18 ] 18 ]
19} 19}
20 20
21our %MUSIC_QUEUE; 21our %MUSIC_QUEUE;
22our %MUSIC_FACE_CACHE; # cleared by reload_facedata
22 23
23our $MUSIC_SCHEDULER = cf::async_ext { 24our $MUSIC_SCHEDULER = cf::async_ext {
25 $Coro::current->{desc} = "music scheduler";
26
24 while () { 27 while () {
25 for (keys %MUSIC_QUEUE) { 28 for (keys %MUSIC_QUEUE) {
26 delete $MUSIC_QUEUE{$_}; 29 delete $MUSIC_QUEUE{$_};
27 30
28 cf::get_slot 0.01, -10, "music scheduler"; 31 cf::get_slot 0.01, -10, "music scheduler";
31 $pl->ob->active or next; 34 $pl->ob->active or next;
32 my $ns = $pl->ns or next; 35 my $ns = $pl->ns or next;
33 $ns->extcmd or next; 36 $ns->extcmd or next;
34 my $map = $pl->ob->map or next; 37 my $map = $pl->ob->map or next;
35 38
36 my $faces; 39 my $faces = $MUSIC_FACE_CACHE{$map} ||= do {
40 # 1. map-specific music info
41 parse_facelist "music/", $map->{music}
42 or do {
43 # 2. fall back to region if no map-specific music
44 my $rgn = $pl->ob->region
45 or next;
37 46
38 # 1. update map-specific music info 47 my $par = $rgn;
39 unless (exists $map->{music_faces}) { 48 while () {
40 $map->{music_faces} = parse_facelist "music/", $map->{music}; 49 last if exists $par->{music};
41 } 50 $par = $par->parent
51 or last;
52 }
42 53
43 my $faces = $map->{music_faces}; 54 parse_facelist "music/", $par->{music}
44
45 # 2. fall back to region if no map-specific music
46 unless ($faces) {
47 my $rgn = $pl->ob->region
48 or next;
49
50 unless (exists $rgn->{music_faces}) {
51 my $par = $rgn;
52 while () {
53 last if exists $par->{music};
54 $par = $par->parent
55 or last;
56 } 55 }
57
58 $rgn->{music_faces} = parse_facelist "music/", $par->{music};
59 } 56 ;
60
61 $faces = $rgn->{music_faces};
62 } 57 };
63 58
64 $faces 59 $faces
65 or next; 60 or next;
66 61
67 my $facestr = join ",", @$faces; 62 my $facestr = join ",", @$faces;
68 $ns->{current_music_faces} ne $facestr 63 $ns->{current_music_faces} ne $facestr
69 or next; 64 or next;
70 65
71 $ns->{current_music_faces} = $facestr; 66 $ns->{current_music_faces} = $facestr;
72 67
73 my $msg = { 68 my $pri = 0;
74 play => $faces, 69 $ns->send_face ($_, --$pri - 110)
75 }; 70 for @$faces;
71 $ns->flush_fx;
76 72
77 my $pri = 0;
78 push @{$msg->{faces}}, [$_, $pri++, cf::face::get_chksum $_]
79 for grep $ns->must_send_face ($_), @$faces;
80
81 $ns->ext_event (music => %$msg); 73 $ns->ext_msg (ambient_music => $faces);
82 } 74 }
83 Coro::schedule unless %MUSIC_QUEUE; 75 Coro::schedule unless %MUSIC_QUEUE;
84 } 76 }
85}; 77};
86 78

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines