ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/map-world.ext
Revision: 1.1
Committed: Sat Jan 20 23:30:15 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Log Message:
add virtual worldmap plug-in

File Contents

# User Rev Content
1 root 1.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     for my $X (0 .. $WORLD->{tilew} - 1) {
60     Coro::cede;
61     for my $Y (0 .. $WORLD->{tileh} - 1) {
62     my $ob = cf::object::new "deep_sea";
63     $self->insert ($ob, $X, $Y);
64     }
65     }
66     $self->set_object_flag (cf::FLAG_NO_MAP_SAVE, 1);
67     }
68     }
69    
70     sub pre_load {
71     my ($self) = @_;
72    
73     my ($x, $y) = $self->wxwy;
74    
75     my $stride = ($WORLD->{maxx} - $WORLD->{minx} + 1) * $WORLD->{tilew};
76     my $top = ($y - $WORLD->{miny}) * $WORLD->{tileh} * $stride
77     + ($x - $WORLD->{minx}) * $WORLD->{tilew};
78    
79     for my $Y (0 .. $WORLD->{tileh} - 1) {
80     Coro::cede;
81     my $row = substr $WORLD->{data}, $top + $Y * $stride, $WORLD->{tilew};
82     for my $X (0 .. $WORLD->{tilew} - 1) {
83     my $ob = cf::object::new $WORLD->{arch}[ord substr $row, $X];
84     $self->insert ($ob, $X, $Y);
85     }
86     }
87    
88     $self->set_object_flag (cf::FLAG_NO_MAP_SAVE, 1);
89     }
90    
91     1
92