ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/map-world.ext
Revision: 1.2
Committed: Sat Jan 20 23:39:08 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.1: +4 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #! perl # OPTIONAL
2
3 # optional plug-in to speed up worldmap rendering by dynamically
4 # generating it out of a image
5 # - saves loading time (less data to read)
6 # - saves temporary space (only overlay stuff needs to be saved)
7
8 our $WORLD = Storable::retrieve cf::datadir . "/world.pst"
9 or die "unable to load world.pst";
10
11 $WORLD->{version} == 1
12 or die "world.pst version mismatch, expected version 1, got $WORLD->{version}";
13
14 cf::map->register (qr{^/world/world_(\d\d\d)_(\d\d\d)$}, 100);
15
16 sub init {
17 my ($self) = @_;
18
19 1
20 }
21
22 sub wxwy {
23 $_[0]->path =~ m{/world/world_(\d\d\d)_(\d\d\d)$}
24 ? ($1, $2)
25 : (0, 0)
26 }
27
28 sub load_header_orig {
29 my ($self) = @_;
30
31 $self->width ($WORLD->{tilew});
32 $self->height ($WORLD->{tileh});
33
34 my ($x, $y) = $self->wxwy;
35
36 $self->tile_path (0, sprintf "/world/world_%03d_%03d", $x, $y - 1) if $y > 0;
37 $self->tile_path (1, sprintf "/world/world_%03d_%03d", $x + 1, $y) if $x < 999;
38 $self->tile_path (2, sprintf "/world/world_%03d_%03d", $x, $y + 1) if $y < 999;
39 $self->tile_path (3, sprintf "/world/world_%03d_%03d", $x - 1, $y) if $x > 0;
40
41 $self->msg ("worldmap dynamically created by map-world extension");
42
43 #TODO: region
44
45 $self->{load_path} = sprintf "%s/%s/world-overlay/world_%03d_%03d", cf::datadir, cf::mapdir, $x, $y
46 if $x >= $WORLD->{minx} && $x <= $WORLD->{maxx}
47 && $y >= $WORLD->{miny} && $y <= $WORLD->{maxy};
48
49
50 1
51 }
52
53 sub load {
54 my ($self) = @_;
55
56 if ($self->{load_path}) {
57 $self->SUPER::load;
58 } else {
59 $self->alloc;
60
61 for my $X (0 .. $WORLD->{tilew} - 1) {
62 Coro::cede;
63 for my $Y (0 .. $WORLD->{tileh} - 1) {
64 my $ob = cf::object::new "deep_sea";
65 $self->insert ($ob, $X, $Y);
66 }
67 }
68 $self->set_object_flag (cf::FLAG_NO_MAP_SAVE, 1);
69
70 $self->in_memory (cf::MAP_IN_MEMORY);
71 }
72 }
73
74 sub pre_load {
75 my ($self) = @_;
76
77 my ($x, $y) = $self->wxwy;
78
79 my $stride = ($WORLD->{maxx} - $WORLD->{minx} + 1) * $WORLD->{tilew};
80 my $top = ($y - $WORLD->{miny}) * $WORLD->{tileh} * $stride
81 + ($x - $WORLD->{minx}) * $WORLD->{tilew};
82
83 for my $Y (0 .. $WORLD->{tileh} - 1) {
84 Coro::cede;
85 my $row = substr $WORLD->{data}, $top + $Y * $stride, $WORLD->{tilew};
86 for my $X (0 .. $WORLD->{tilew} - 1) {
87 my $ob = cf::object::new $WORLD->{arch}[ord substr $row, $X];
88 $self->insert ($ob, $X, $Y);
89 }
90 }
91
92 $self->set_object_flag (cf::FLAG_NO_MAP_SAVE, 1);
93 }
94
95 1
96