ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/res2pm
Revision: 1.10
Committed: Tue Jul 3 00:16:50 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
Changes since 1.9: +2 -1 lines
Log Message:
the import mechanism was rather borked due to an over-optimisation

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 root 1.8 push @$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 root 1.9 # not used
121     #for my $i (grep ref, @{$e->contents}) {
122     # $type->{required}{$i->attr ("arch")} = $i->attr ("value");
123     #}
124 root 1.1 } elsif ($e->name eq "attribute") {
125 root 1.8 parse_attr $e, $type->{attr} ||= [];
126 root 1.1 } elsif ($e->name eq "ignore") {
127     for my $i (grep ref, @{$e->contents}) {
128     if ($i->name eq "ignore_list") {
129     push @{$type->{ignore}}, $ignore_list{$i->attr ("name")} ||= [];
130     } elsif ($i->name eq "attribute") {
131     push @{$type->{ignore}}, $i->attr ("arch");
132     }
133     }
134     } elsif ($e->name eq "import_type") {
135 root 1.10 #push @{$type->{import}}, $type{$e->attr ("name")} ||= {};
136     push @{$type->{import}}, $e->attr ("name");
137 root 1.1 } elsif ($e->name eq "use") {
138     $type->{use} = string $e;
139     } elsif ($e->name eq "description") {
140     $type->{desc} = string $e;
141     } elsif ($e->name eq "section") {
142 root 1.8 my @attr;
143 root 1.1 for my $i (grep ref, @{$e->contents}) {
144 root 1.8 parse_attr $i, \@attr;
145 root 1.1 }
146 root 1.8 push @{ $type->{section} }, [$e->attr ("name") => \@attr];
147 root 1.1 } else {
148     warn "unknown types subelement ", $e->name;
149     }
150     }
151    
152     $type
153     }
154    
155     for my $e (grep ref, @{$type->root->contents}) {
156     if ($e->name eq "bitmask") {
157 root 1.2 my $bm = $bitmask{$e->attr ("name")} ||= {};
158 root 1.1 for my $b (grep ref, @{$e->contents}) {
159     $bm->{$b->attr ("bit")} = $b->attr ("name");
160     }
161     } elsif ($e->name eq "list") {
162 root 1.2 my $list = $list{$e->attr ("name")} ||= {};
163 root 1.1 for my $b (grep ref, @{$e->contents}) {
164     $list->{$b->attr ("value")} = $b->attr ("name");
165     }
166     } elsif ($e->name eq "ignore_list") {
167     my $list = $ignore_list{$e->attr ("name")} ||= [];
168     for my $b (grep ref, @{$e->contents}) {
169     push @$list, $b->attr ("arch");
170     }
171     } elsif ($e->name eq "default_type") {
172     parse_type $e, \%default_attr;
173     } elsif ($e->name eq "type") {
174 root 1.3 my $type = $type{$e->attr ("name")} ||= {};
175 root 1.6
176     $type->{name} = $e->attr ("name");
177    
178 root 1.1 parse_type $e, $type;
179 root 1.3
180     if ($e->attr ("number") > 0) {
181     $attr{$e->attr ("number")} = $type;
182     } elsif ($e->attr ("name") eq "Misc") {
183     delete $type->{required};
184     } else {
185     push @attr0, $type;
186     }
187 root 1.1
188     } else {
189     warn "unknown types element ", $e->name;
190     }
191     }
192    
193     my $type = XML::Parser->new (Style => 'grove')->parsefile ("res/typenumbers.xml");
194    
195     for (grep ref, @{$type->root->contents}) {
196 root 1.3 $typename{$_->attr ("number")} = $_->attr ("name");
197 root 1.1 }
198    
199     my $spell = XML::Parser->new (Style => 'grove')->parsefile ("res/spells.xml")
200     or die;
201    
202     for (grep ref, @{$spell->root->contents}) {
203     $spell{$_->attr ("id")} = $_->attr ("name");
204     }
205    
206 root 1.9 dump_hash ["BITMASK", "LIST", "IGNORE_LIST", "DEFAULT_ATTR", "TYPE", "ATTR", "TYPENAME", "SPELL"],
207     [\%bitmask, \%list, \%ignore_list, \%default_attr, \%type, \%attr, \%typename, \%spell];
208 root 1.1
209     print <<EOF;
210    
211     =head1 AUTHOR
212    
213     Marc Lehmann <schmorp@schmorp.de>
214     http://home.schmorp.de/
215    
216     The source files are part of the CFJavaEditor.
217    
218     =cut
219    
220     1
221     EOF
222