ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/player-env.ext
Revision: 1.6
Committed: Thu Jul 12 19:10:48 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.5: +10 -12 lines
Log Message:
*** empty log message ***

File Contents

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