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.15 by root, Wed Sep 19 21:56:30 2007 UTC vs.
Revision 1.18 by root, Fri May 14 22:56:47 2010 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 5
6our %MUSIC_GROUP;
7
8sub reload {
9 cf::trace "loading music config from $DATADIR/music\n";
10
11 0 < Coro::AIO::aio_load "$DATADIR/music", my $data
12 or die "$DATADIR/music $!";
13
14 my $conf = JSON::XS->new->utf8->relaxed->decode ($data);
15 %MUSIC_GROUP = %{ $conf->{group} };
16}
17
18cf::post_init {
19 $_[0] ? cf::async { reload } : reload
20};
21
6sub parse_facelist($$) { 22sub parse_musiclist($) {
7 my ($prefix, $list) = @_; 23 my ($list) = @_;
8 24
9 return undef 25 return undef
10 unless defined $list; 26 unless defined $list;
11 27
12 #TODO, sort by size (smallest first...) 28 my @name = split /\s*,\s*/, $list;
29 my @face;
30
31 while (@name) {
32 my $name = shift @name;
33
34 if ($name =~ /^\@(.*)$/) {
35 my $group = $MUSIC_GROUP{$1}
36 or cf::error "music group $1 does not exist (referenced in '$list')";
37
38 unshift @name, @$group;
39 } else {
40 my $face = cf::face::find "music/$name"
41 or "unable to find music face $name (referenced in '$list')";
42
43 push @face, $face
44 if $face;
45 }
13 [ 46 }
47
48 # sort by size, smallest first, because it'S the fastest to download...
14 sort { (cf::face::get_data_size $a) <=> (cf::face::get_data_size $b) } 49 [ sort { (cf::face::get_data_size $a) <=> (cf::face::get_data_size $b) } @face ]
15 grep $_,
16 map +(cf::face::find "$prefix$_" or ((warn "unable to find music file $_"), undef)),
17 split /\s*,\s*/, $list
18 ]
19} 50}
20 51
21our %MUSIC_QUEUE; 52our %MUSIC_QUEUE;
22our %MUSIC_FACE_CACHE; # cleared by reload_facedata 53our %MUSIC_FACE_CACHE; # cleared by reload_facedata
23 54
34 $pl->ob->active or next; 65 $pl->ob->active or next;
35 my $ns = $pl->ns or next; 66 my $ns = $pl->ns or next;
36 $ns->extcmd or next; 67 $ns->extcmd or next;
37 my $map = $pl->ob->map or next; 68 my $map = $pl->ob->map or next;
38 69
70 my $faces = delete $ns->{music_play_once};
39 my $faces = $MUSIC_FACE_CACHE{$map} ||= do { 71 $faces ||= $MUSIC_FACE_CACHE{$map} ||= do {
40 # 1. map-specific music info 72 # 1. map-specific music info
41 parse_facelist "music/", $map->{music} 73 parse_musiclist $map->{music}
42 or do { 74 or do {
43 # 2. fall back to region if no map-specific music 75 # 2. fall back to region if no map-specific music
44 my $rgn = $pl->ob->region 76 my $rgn = $pl->ob->region
45 or next; 77 or next;
46 78
49 last if exists $par->{music}; 81 last if exists $par->{music};
50 $par = $par->parent 82 $par = $par->parent
51 or last; 83 or last;
52 } 84 }
53 85
54 parse_facelist "music/", $par->{music} 86 parse_musiclist $par->{music}
55 } 87 }
56 ; 88 ;
57 }; 89 };
58 90
59 $faces 91 $faces
80 on_region_change => sub { 112 on_region_change => sub {
81 my ($pl, $new, $old) = @_; 113 my ($pl, $new, $old) = @_;
82 114
83 $pl->ob->message ("You are now " . $new->longname . ". H<Use whereami for more details.>", $new->longname); 115 $pl->ob->message ("You are now " . $new->longname . ". H<Use whereami for more details.>", $new->longname);
84 116
85 $MUSIC_QUEUE{$pl->ob->name} = undef; 117 undef $MUSIC_QUEUE{$pl->ob->name};
86 $MUSIC_SCHEDULER->ready; 118 $MUSIC_SCHEDULER->ready;
87 }, 119 },
88 on_map_change => sub { 120 on_map_change => sub {
89 my ($pl, $new) = @_; 121 my ($pl, $new) = @_;
90 122
91 $MUSIC_QUEUE{$pl->ob->name} = undef; 123 undef $MUSIC_QUEUE{$pl->ob->name};
92 $MUSIC_SCHEDULER->ready; 124 $MUSIC_SCHEDULER->ready;
93 }, 125 },
94); 126);
95 127
128sub play_music_once {
129 my ($pl, $music) = @_;
96 130
131 $pl->ns->{music_play_once} = parse_musiclist $music;
132
133 undef $MUSIC_QUEUE{$pl->ob->name};
134 $MUSIC_SCHEDULER->ready;
135}
136

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines