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.551 by root, Sun May 16 13:48:07 2010 UTC vs.
Revision 1.558 by root, Tue Oct 5 22:35:30 2010 UTC

1861sub generate_random_map { 1861sub generate_random_map {
1862 my ($self, $rmp) = @_; 1862 my ($self, $rmp) = @_;
1863 1863
1864 my $lock = cf::lock_acquire "generate_random_map"; # the random map generator is NOT reentrant ATM 1864 my $lock = cf::lock_acquire "generate_random_map"; # the random map generator is NOT reentrant ATM
1865 1865
1866 # mit "rum" bekleckern, nicht
1867 $self->_create_random_map ( 1866 $self->_create_random_map ($rmp);
1868 $rmp->{wallstyle}, $rmp->{wall_name}, $rmp->{floorstyle}, $rmp->{monsterstyle},
1869 $rmp->{treasurestyle}, $rmp->{layoutstyle}, $rmp->{doorstyle}, $rmp->{decorstyle}, $rmp->{miningstyle},
1870 $rmp->{origin_map}, $rmp->{final_map}, $rmp->{exitstyle}, $rmp->{this_map},
1871 $rmp->{exit_on_final_map},
1872 $rmp->{xsize}, $rmp->{ysize},
1873 $rmp->{expand2x}, $rmp->{layoutoptions1}, $rmp->{layoutoptions2}, $rmp->{layoutoptions3},
1874 $rmp->{symmetry}, $rmp->{difficulty}, $rmp->{difficulty_given}, $rmp->{difficulty_increase},
1875 $rmp->{dungeon_level}, $rmp->{dungeon_depth}, $rmp->{decoroptions}, $rmp->{orientation},
1876 $rmp->{origin_y}, $rmp->{origin_x}, $rmp->{random_seed}, $rmp->{total_map_hp},
1877 $rmp->{map_layout_style}, $rmp->{treasureoptions}, $rmp->{symmetry_used},
1878 (cf::region::find $rmp->{region}), $rmp->{custom}
1879 )
1880} 1867}
1881 1868
1882=item cf::map->register ($regex, $prio) 1869=item cf::map->register ($regex, $prio)
1883 1870
1884Register a handler for the map path matching the given regex at the 1871Register a handler for the map path matching the given regex at the
2186 2173
2187 $self->in_memory (cf::MAP_ACTIVE); 2174 $self->in_memory (cf::MAP_ACTIVE);
2188 } 2175 }
2189 2176
2190 $self->post_load; 2177 $self->post_load;
2178
2179 1
2191} 2180}
2192 2181
2193# customize the map for a given player, i.e. 2182# customize the map for a given player, i.e.
2194# return the _real_ map. used by e.g. per-player 2183# return the _real_ map. used by e.g. per-player
2195# maps to change the path to ~playername/mappath 2184# maps to change the path to ~playername/mappath
3437 3426
3438 cf::face::set_visibility $idx, $info->{visibility}; 3427 cf::face::set_visibility $idx, $info->{visibility};
3439 cf::face::set_magicmap $idx, $info->{magicmap}; 3428 cf::face::set_magicmap $idx, $info->{magicmap};
3440 cf::face::set_data $idx, 0, $info->{data32}, $info->{hash32}; 3429 cf::face::set_data $idx, 0, $info->{data32}, $info->{hash32};
3441 cf::face::set_data $idx, 1, $info->{data64}, $info->{hash64}; 3430 cf::face::set_data $idx, 1, $info->{data64}, $info->{hash64};
3431 cf::face::set_data $idx, 2, $info->{glyph} , $info->{glyph} ;
3442 3432
3443 cf::cede_to_tick; 3433 cf::cede_to_tick;
3444 } 3434 }
3445 3435
3446 while (my ($face, $info) = each %$faces) { 3436 while (my ($face, $info) = each %$faces) {
4149 IO::AIO::min_parallel 8; 4139 IO::AIO::min_parallel 8;
4150 IO::AIO::max_poll_time $TICK * 0.1; 4140 IO::AIO::max_poll_time $TICK * 0.1;
4151 undef $AnyEvent::AIO::WATCHER; 4141 undef $AnyEvent::AIO::WATCHER;
4152} 4142}
4153 4143
4154my $_log_backtrace; 4144our $_log_backtrace;
4145our $_log_backtrace_last;
4155 4146
4156sub _log_backtrace { 4147sub _log_backtrace {
4157 my ($msg, @addr) = @_; 4148 my ($msg, @addr) = @_;
4158 4149
4159 $msg =~ s/\n//; 4150 $msg =~ s/\n$//;
4160 4151
4152 if ($_log_backtrace_last eq $msg) {
4153 LOG llevInfo, "[ABT] $msg\n";
4154 LOG llevInfo, "[ABT] [duplicate, suppressed]\n";
4161 # limit the # of concurrent backtraces 4155 # limit the # of concurrent backtraces
4162 if ($_log_backtrace < 2) { 4156 } elsif ($_log_backtrace < 2) {
4157 $_log_backtrace_last = $msg;
4163 ++$_log_backtrace; 4158 ++$_log_backtrace;
4164 my $perl_bt = Carp::longmess $msg; 4159 my $perl_bt = Carp::longmess $msg;
4165 async { 4160 async {
4166 $Coro::current->{desc} = "abt $msg"; 4161 $Coro::current->{desc} = "abt $msg";
4167 4162
4187 LOG llevInfo, "[ABT] $_\n" for @bt; 4182 LOG llevInfo, "[ABT] $_\n" for @bt;
4188 --$_log_backtrace; 4183 --$_log_backtrace;
4189 }; 4184 };
4190 } else { 4185 } else {
4191 LOG llevInfo, "[ABT] $msg\n"; 4186 LOG llevInfo, "[ABT] $msg\n";
4192 LOG llevInfo, "[ABT] [suppressed]\n"; 4187 LOG llevInfo, "[ABT] [overload, suppressed]\n";
4193 } 4188 }
4194} 4189}
4195 4190
4196# load additional modules 4191# load additional modules
4197require "cf/$_.pm" for @EXTRA_MODULES; 4192require "cf/$_.pm" for @EXTRA_MODULES;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines