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

Comparing deliantra/server/ext/map-world.ext (file contents):
Revision 1.24 by root, Thu Apr 19 16:23:46 2007 UTC vs.
Revision 1.28 by root, Tue Jul 17 11:24:48 2007 UTC

1#! perl # OPTIONAL 1#! perl # optional
2 2
3# optional plug-in to speed up worldmap rendering by dynamically 3# optional plug-in to speed up worldmap rendering by dynamically
4# generating it out of an image 4# generating it out of an image
5# - saves loading time (less data to read) 5# - saves loading time (less data to read)
6# - saves temporary space (only overlay stuff needs to be saved) 6# - saves temporary space (only overlay stuff needs to be saved)
119 $self->tile_path (0, sprintf "/world/world_%03d_%03d", $x, $y - 1) if $y > 0; 119 $self->tile_path (0, sprintf "/world/world_%03d_%03d", $x, $y - 1) if $y > 0;
120 $self->tile_path (1, sprintf "/world/world_%03d_%03d", $x + 1, $y) if $x < 999; 120 $self->tile_path (1, sprintf "/world/world_%03d_%03d", $x + 1, $y) if $x < 999;
121 $self->tile_path (2, sprintf "/world/world_%03d_%03d", $x, $y + 1) if $y < 999; 121 $self->tile_path (2, sprintf "/world/world_%03d_%03d", $x, $y + 1) if $y < 999;
122 $self->tile_path (3, sprintf "/world/world_%03d_%03d", $x - 1, $y) if $x > 0; 122 $self->tile_path (3, sprintf "/world/world_%03d_%03d", $x - 1, $y) if $x > 0;
123 123
124 $self->{load_path} = sprintf "%s/world-overlay/world_%03d_%03d.map", $cf::MAPDIR, $x, $y 124 my $overlay = sprintf "%s/world-overlay/world_%03d_%03d.map", $cf::MAPDIR, $x, $y;
125 if $x >= 100 && $x <= 129 && $y >= 100 && $y <= 129; 125
126 $self->{load_path} = $overlay
127 unless Coro::AIO::aio_stat $overlay;
126 128
127 $self->{need_create_treasure} = 1; 129 $self->{need_create_treasure} = 1;
128 130
129 1 131 1
130} 132}
143 $self->SUPER::load; 145 $self->SUPER::load;
144 } else { 146 } else {
145 $self->alloc; 147 $self->alloc;
146 $self->fill; 148 $self->fill;
147 $self->in_memory (cf::MAP_IN_MEMORY); 149 $self->in_memory (cf::MAP_IN_MEMORY);
150 $self->activate;
148 } 151 }
149} 152}
150 153
151sub post_load { 154sub post_load {
152 my ($self) = @_; 155 my ($self) = @_;
153 156
157 {
154 my $guard = cf::lock_acquire "ext::world_gridmap"; 158 my $guard = cf::lock_acquire "ext::world_gridmap";
155 159
156 my ($x, $y) = $self->wxwy; 160 my ($x, $y) = $self->wxwy;
157 161
158 if ($x >= 100 && $x <= 129 && $y >= 100 && $y <= 129) { 162 if ($x >= 100 && $x <= 129 && $y >= 100 && $y <= 129) {
159 my $stride = $WORLD->{grid_w} * $WORLD->{tile_w}; 163 my $stride = $WORLD->{grid_w} * $WORLD->{tile_w};
160 my $top = ($y - 100) * $WORLD->{tile_h} * $stride 164 my $top = ($y - 100) * $WORLD->{tile_h} * $stride
161 + ($x - 100) * $WORLD->{tile_w}; 165 + ($x - 100) * $WORLD->{tile_w};
162 166
163 $self->add_underlay ($WORLD->{arc_data}, $top, $stride, $WORLD->{arc_plt}); 167 $self->add_underlay ($WORLD->{arc_data}, $top, $stride, $WORLD->{arc_plt});
164 $self->set_regiondata ($WORLD->{reg_data}, $top, $stride, $WORLD->{reg_plt}); 168 $self->set_regiondata ($WORLD->{reg_data}, $top, $stride, $WORLD->{reg_plt});
165 169
166 } else { 170 } else {
167 $self->fill; 171 $self->fill;
172 }
168 } 173 }
169 174
170 $self->create_region_treasure 175 $self->create_region_treasure
171 if delete $self->{need_create_treasure}; 176 if delete $self->{need_create_treasure};
172} 177}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines