ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/res2pm
Revision: 1.7
Committed: Thu Mar 9 19:09:48 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.6: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #!/opt/bin/perl
2    
3 root 1.2 # usage: res2pm
4    
5     open STDOUT, ">:utf8", "Crossfire/Data.pm"
6     or die "Crossfire/Data.pm: $!";
7 root 1.1
8     print <<EOF;
9     =head1 NAME
10    
11     Crossfire::Data - various data structures useful for understanding archs and objects
12    
13     =head1
14    
15     THIS FILE IS AUTOGENERATED, DO NOT EDIT!
16    
17     It's a translation of the following files:
18    
19     res/spells.xml
20     res/types.xml
21     res/typenumbers.xml
22    
23     See F<res/README> for more info.
24    
25     =cut
26    
27 root 1.5 package Crossfire::Data;
28    
29 root 1.1 EOF
30    
31     use Data::Dumper;
32     use XML::Parser::Grove;
33    
34     sub dump_hash {
35 root 1.3 my ($names, $refs) = @_;
36    
37     $d = new Data::Dumper ($refs, [map "*$_", @$names]);
38 root 1.1 $d->Terse (1);
39     $d->Indent (1);
40     $d->Quotekeys (0);
41 root 1.3 $d->Useqq (0);
42     $d->Useperl(1);
43 root 1.1 $d->Sortkeys (sub {
44     [sort {
45     $a > 0 && $b > 0 ? $a <=> $b
46     : $a cmp $b
47     } keys %{+shift}]
48     });
49 root 1.3
50     my @vals = $d->Dump;
51    
52     while (@vals) {
53     my $v = shift @vals;
54     $v =~ s/^ /\t\t/gm;
55     $v =~ s/^ /\t/gm;
56     $v =~ s/\s+$//;
57    
58     my $name = shift @$names;
59     my $ref = shift @$refs;
60    
61     my $sigil = ref $ref eq "ARRAY" ? '@' : '%';
62    
63     print "our $sigil$name = $v;\n\n";
64     }
65 root 1.1 }
66    
67     my $type = XML::Parser->new (Style => 'grove')->parsefile ("res/types.xml");
68    
69     my %bitmask;
70     my %list;
71     my %type;
72 root 1.3 my %typename;
73     my @attr0;
74     my %attr;
75 root 1.1 my %ignore_list;
76     my %default_attr;
77 root 1.3 my %spell;
78 root 1.1
79     sub string($) {
80     local $_ = join "", @{shift->contents};
81     $_ =~ s/^\s+//;
82     $_ =~ s/\s+$//;
83     $_ =~ s/\s+/ /g;
84     $_
85     }
86    
87     sub parse_attr {
88     my ($e, $sect) = @_;
89    
90 root 1.2 my $arch = {
91 root 1.3 type => $e->attr ("type"),
92 root 1.1 name => $e->attr ("editor"),
93     desc => string $e,
94     $e->attr("arch_begin") ? (end => $e->attr("arch_end")) : (),
95     };
96 root 1.2
97 root 1.3 delete $arch->{name} unless defined $arch->{name};
98     delete $arch->{desc} unless length $arch->{desc};
99    
100 root 1.2 if ($arch->{type} =~ s/^(bitmask)_(.*)/$1/) {
101 root 1.3 $arch->{value} = $bitmask{$2} ||= {};
102     } elsif ($arch->{type} =~ s/^(list)_(.*)/$1/) {
103     $arch->{value} = $list{$2} ||= {};
104 root 1.7 } elsif ($arch->{type} eq "fixed") {
105     $arch->{value} = $e->attr ("value");
106 root 1.3 } elsif ($arch->{type} =~ s/^bool_special$/bool/) {
107     $arch->{value} = [$e->attr ("false"), $e->attr ("true")];
108 root 1.2 }
109    
110     $sect->{$e->attr ("arch") || $e->attr("arch_begin")} = $arch;
111 root 1.1 }
112    
113     sub parse_type {
114     my ($e, $type) = @_;
115    
116 root 1.5 my %main;
117    
118 root 1.1 for my $e (grep ref, @{$e->contents}) {
119     if ($e->name eq "required") {
120     for my $i (grep ref, @{$e->contents}) {
121     $type->{required}{$i->attr ("arch")} = $i->attr ("value");
122     }
123     } elsif ($e->name eq "attribute") {
124 root 1.5 parse_attr $e, $type->{attr} ||= {};
125 root 1.1 } elsif ($e->name eq "ignore") {
126     for my $i (grep ref, @{$e->contents}) {
127     if ($i->name eq "ignore_list") {
128     push @{$type->{ignore}}, $ignore_list{$i->attr ("name")} ||= [];
129     } elsif ($i->name eq "attribute") {
130     push @{$type->{ignore}}, $i->attr ("arch");
131     }
132     }
133     } elsif ($e->name eq "import_type") {
134 root 1.3 push @{$type->{import}}, $type{$e->attr ("name")} ||= {};
135 root 1.1 } elsif ($e->name eq "use") {
136     $type->{use} = string $e;
137     } elsif ($e->name eq "description") {
138     $type->{desc} = string $e;
139     } elsif ($e->name eq "section") {
140 root 1.5 my %attr;
141 root 1.1 for my $i (grep ref, @{$e->contents}) {
142 root 1.5 parse_attr $i, \%attr;
143 root 1.1 }
144 root 1.5 push @{ $type->{section} }, [$e->attr ("name") => \%attr];
145 root 1.1 } else {
146     warn "unknown types subelement ", $e->name;
147     }
148     }
149    
150     $type
151     }
152    
153     for my $e (grep ref, @{$type->root->contents}) {
154     if ($e->name eq "bitmask") {
155 root 1.2 my $bm = $bitmask{$e->attr ("name")} ||= {};
156 root 1.1 for my $b (grep ref, @{$e->contents}) {
157     $bm->{$b->attr ("bit")} = $b->attr ("name");
158     }
159     } elsif ($e->name eq "list") {
160 root 1.2 my $list = $list{$e->attr ("name")} ||= {};
161 root 1.1 for my $b (grep ref, @{$e->contents}) {
162     $list->{$b->attr ("value")} = $b->attr ("name");
163     }
164     } elsif ($e->name eq "ignore_list") {
165     my $list = $ignore_list{$e->attr ("name")} ||= [];
166     for my $b (grep ref, @{$e->contents}) {
167     push @$list, $b->attr ("arch");
168     }
169     } elsif ($e->name eq "default_type") {
170     parse_type $e, \%default_attr;
171     } elsif ($e->name eq "type") {
172 root 1.3 my $type = $type{$e->attr ("name")} ||= {};
173 root 1.6
174     $type->{name} = $e->attr ("name");
175    
176 root 1.1 parse_type $e, $type;
177 root 1.3
178     if ($e->attr ("number") > 0) {
179     $attr{$e->attr ("number")} = $type;
180     } elsif ($e->attr ("name") eq "Misc") {
181     delete $type->{required};
182     } else {
183     push @attr0, $type;
184     }
185 root 1.1
186     } else {
187     warn "unknown types element ", $e->name;
188     }
189     }
190    
191     my $type = XML::Parser->new (Style => 'grove')->parsefile ("res/typenumbers.xml");
192    
193     for (grep ref, @{$type->root->contents}) {
194 root 1.3 $typename{$_->attr ("number")} = $_->attr ("name");
195 root 1.1 }
196    
197     my $spell = XML::Parser->new (Style => 'grove')->parsefile ("res/spells.xml")
198     or die;
199    
200     for (grep ref, @{$spell->root->contents}) {
201     $spell{$_->attr ("id")} = $_->attr ("name");
202     }
203    
204 root 1.3 dump_hash ["BITMASK", "LIST", "IGNORE_LIST", "DEFAULT_ATTR", "TYPE", "ATTR0", "ATTR", "TYPENAME", "SPELL"],
205     [\%bitmask, \%list, \%ignore_list, \%default_attr, \%type, \@attr0, \%attr, \%typename, \%spell];
206 root 1.1
207     print <<EOF;
208    
209     =head1 AUTHOR
210    
211     Marc Lehmann <schmorp@schmorp.de>
212     http://home.schmorp.de/
213    
214     The source files are part of the CFJavaEditor.
215    
216     =cut
217    
218     1
219     EOF
220