ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cfmaps/cfmap2html
Revision: 1.2
Committed: Fri Nov 18 06:57:15 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.1: +0 -4 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/opt/bin/perl
2
3 use Storable;
4
5 my $LIBDIR = $ENV{CROSSFIRE_LIBDIR}
6 or die "\$CROSSFIRE_LIBDIR must be set\n";
7
8 my $T = 32;
9
10 my $arch;
11
12 umask 022;
13
14 sub escape_html($) {
15 local $_ = shift;
16 s/([<>&])/sprintf "&#%d;", ord $1/ge;
17 $_
18 }
19
20 for my $path (@ARGV) {
21 if (!-e "$path.png"
22 || !-e "$path.pst"
23 || -M "$path.pst" > -M $path
24 || -M "$path.png" > -M $path) {
25 # regenerate png and metainfo
26
27 system "cfmap2png", $path;
28 };
29
30 $arch ||= Storable::retrieve "$LIBDIR/archetypes.pst";
31 my $meta = Storable::retrieve "$path.pst";
32
33 open my $fh, ">:utf8", "$path.html"
34 or die "$path.html: $!";
35
36 select $fh;
37
38 my $W = $meta->{width} * $T;
39 my $H = $meta->{height} * $T;
40
41 my (@path) = split /\//, $path;
42
43 print "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">",
44 "<html>",
45 "<head>",
46 "<title>$path</title>",
47 "<style type='text/css'><!--\n",
48 "body { background: white; text-color: black; }\n",
49 "a { text-color: blue; }\n",
50 "a:hover { text-color: red; }\n",
51 "a:visited { text-color: #008; }\n",
52
53 "#nav { border-spacing: 0px; margin: 10px; padding: 0px; }\n",
54 "#nav td { margin: 0px; padding: 0px; border: 0px; }\n",
55 "#thumb { border: 2px solid yellow; width: $meta->{width}px; height: $meta->{height}px; padding: 0px; }\n",
56
57 "#map { table-layout: fixed; width: ${W}px; height: ${H}px; border: 2px solid #777; border-spacing: 0px; ",
58 "background-image: url($path[-1].png); background-position: 0px 0px; background-repeat: no-repeat; background-attachment: relative; }\n",
59 "#map tr { width: ${W}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n",
60
61 "#map td { width: ${T}px; height: ${T}px; border-style: none; margin: 0px; padding: 0px; }\n",
62 "#map td:hover { border: 3px solid yellow; border-style: ridge; }\n",
63
64 "#map span { position: relative; }\n",
65
66 "#map div { display: none; position: absolute; min-width: 40em; ",
67 "font-size: 8pt; border: 0px; background: #eee; border: 3px solid yellow; border-style: ridge; padding: 4px; }\n",
68 "#map td:hover div { display: block; position: absolute; z-index: 1; top: -1px; left: ${T}px; white-space: pre; }\n",
69
70 "p.m { white-space: pre; margin-left: 2em; background: #ddd; padding: 2px; border: 1px solid black; }\n",
71 "-->\n</style>",
72 "</head>",
73 "<body>";
74
75 print "<table id='nav'>",
76 "<tr><td rowspan='3'><span style='font-height: 20pt; font-style: bold;'>";
77 print "<a href='/'>/</a> ";
78 for (0 .. $#path - 1) {
79 print "<a href='/", (join "/", @path[0..$_]), "/'>$path[$_]</a> / ";
80 }
81
82 my @tile = map {
83 $meta->{info}{"tile_path_$_"}
84 ? "<a href='$meta->{info}{\"tile_path_$_\"}.html'><img style='border: 2px solid blue;' src='$meta->{info}{\"tile_path_$_\"}.jpg'/></a>"
85 : ""
86 } 1..4;
87
88 print "$path[-1] ";
89 print "</span></td>",
90 "<td/><td>$tile[0]</td><td/></tr>",
91 "<tr><td>$tile[3]</td>";
92 print "<td><img id='thumb' src='@path[-1].jpg'/></td>",
93 "<td>$tile[1]</td>",
94 "<tr><td/><td>$tile[2]</td><td/></tr>";
95 print "</table>";
96
97 my $W1 = $W + 600;
98
99 print "<p style='width: ${W1}px'><a href='/about.txt'>[about cfmaps.schmorp.de]</a></p>";
100 print "<p class='m' style='white-space: pre; width=auto; '>",
101 escape_html $meta->{info}{msg},
102 "</p>";
103
104 print "<table id='map'>";
105
106 my %ignore = map +($_ => 1), qw(_name x y);
107
108 for my $y (0.. $meta->{height} - 1) {
109 print "<tr>";
110 for my $x (0.. $meta->{width} - 1) {
111 print "<td>";
112 if (my $as = $meta->{map}[$x][$y]) {
113 print "<span><div>($x|$y)<ul>";
114 for my $a (@$as) {
115 my $o = $arch->{$a->{_name}};
116 print "<li>\"$o->{name}\" ($a->{_name})\n";
117 for (sort keys %$a) {
118 next if $ignore{$_};
119 my $v = escape_html $a->{$_};
120
121 if (($o->{type} == 66 || $o->{type} == 41) && $_ eq "slaying") { # door, teleporter
122 $a->{msg} =~ /^final_map\s*(\S+)\s*$/m, $v = $1
123 if $v eq "/!"; # random map
124
125 print "slaying => <a href='$v.html'>$v</a>\n";
126 } elsif ($_ eq "msg") {
127 print "<p class='m'>$v</p>";
128 } else {
129 print "$_ => $v\n";
130 }
131 }
132 }
133 print "</ul></div></span>";
134 }
135 print "</td>";
136 }
137 print "</tr>";
138 }
139
140 print "</table></p><p style='height: 600px;'/></body></html>";
141
142 close $fh;
143
144 system "gzip", "-7f", "$path.html";
145 }
146