ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra/res2pm
Revision: 1.5
Committed: Wed Feb 22 22:36:45 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.4: +8 -2 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     } elsif ($arch->{type} =~ s/^bool_special$/bool/) {
105     $arch->{value} = [$e->attr ("false"), $e->attr ("true")];
106 root 1.2 }
107    
108     $sect->{$e->attr ("arch") || $e->attr("arch_begin")} = $arch;
109 root 1.1 }
110    
111     sub parse_type {
112     my ($e, $type) = @_;
113    
114 root 1.5 my %main;
115    
116 root 1.1 for my $e (grep ref, @{$e->contents}) {
117     if ($e->name eq "required") {
118     for my $i (grep ref, @{$e->contents}) {
119     $type->{required}{$i->attr ("arch")} = $i->attr ("value");
120     }
121     } elsif ($e->name eq "attribute") {
122 root 1.5 parse_attr $e, $type->{attr} ||= {};
123 root 1.1 } elsif ($e->name eq "ignore") {
124     for my $i (grep ref, @{$e->contents}) {
125     if ($i->name eq "ignore_list") {
126     push @{$type->{ignore}}, $ignore_list{$i->attr ("name")} ||= [];
127     } elsif ($i->name eq "attribute") {
128     push @{$type->{ignore}}, $i->attr ("arch");
129     }
130     }
131     } elsif ($e->name eq "import_type") {
132 root 1.3 push @{$type->{import}}, $type{$e->attr ("name")} ||= {};
133 root 1.1 } elsif ($e->name eq "use") {
134     $type->{use} = string $e;
135     } elsif ($e->name eq "description") {
136     $type->{desc} = string $e;
137     } elsif ($e->name eq "section") {
138 root 1.5 my %attr;
139 root 1.1 for my $i (grep ref, @{$e->contents}) {
140 root 1.5 parse_attr $i, \%attr;
141 root 1.1 }
142 root 1.5 push @{ $type->{section} }, [$e->attr ("name") => \%attr];
143 root 1.1 } else {
144     warn "unknown types subelement ", $e->name;
145     }
146     }
147    
148     $type
149     }
150    
151     for my $e (grep ref, @{$type->root->contents}) {
152     if ($e->name eq "bitmask") {
153 root 1.2 my $bm = $bitmask{$e->attr ("name")} ||= {};
154 root 1.1 for my $b (grep ref, @{$e->contents}) {
155     $bm->{$b->attr ("bit")} = $b->attr ("name");
156     }
157     } elsif ($e->name eq "list") {
158 root 1.2 my $list = $list{$e->attr ("name")} ||= {};
159 root 1.1 for my $b (grep ref, @{$e->contents}) {
160     $list->{$b->attr ("value")} = $b->attr ("name");
161     }
162     } elsif ($e->name eq "ignore_list") {
163     my $list = $ignore_list{$e->attr ("name")} ||= [];
164     for my $b (grep ref, @{$e->contents}) {
165     push @$list, $b->attr ("arch");
166     }
167     } elsif ($e->name eq "default_type") {
168     parse_type $e, \%default_attr;
169     } elsif ($e->name eq "type") {
170 root 1.3 my $type = $type{$e->attr ("name")} ||= {};
171 root 1.1 parse_type $e, $type;
172 root 1.3 #unshift @{$type->{import}}, \%default_attr;
173    
174     if ($e->attr ("number") > 0) {
175     $attr{$e->attr ("number")} = $type;
176     } elsif ($e->attr ("name") eq "Misc") {
177     delete $type->{required};
178     } else {
179     push @attr0, $type;
180     }
181 root 1.1
182     } else {
183     warn "unknown types element ", $e->name;
184     }
185     }
186    
187     my $type = XML::Parser->new (Style => 'grove')->parsefile ("res/typenumbers.xml");
188    
189     for (grep ref, @{$type->root->contents}) {
190 root 1.3 $typename{$_->attr ("number")} = $_->attr ("name");
191 root 1.1 }
192    
193     my $spell = XML::Parser->new (Style => 'grove')->parsefile ("res/spells.xml")
194     or die;
195    
196     for (grep ref, @{$spell->root->contents}) {
197     $spell{$_->attr ("id")} = $_->attr ("name");
198     }
199    
200 root 1.3 dump_hash ["BITMASK", "LIST", "IGNORE_LIST", "DEFAULT_ATTR", "TYPE", "ATTR0", "ATTR", "TYPENAME", "SPELL"],
201     [\%bitmask, \%list, \%ignore_list, \%default_attr, \%type, \@attr0, \%attr, \%typename, \%spell];
202 root 1.1
203     print <<EOF;
204    
205     =head1 AUTHOR
206    
207     Marc Lehmann <schmorp@schmorp.de>
208     http://home.schmorp.de/
209    
210     The source files are part of the CFJavaEditor.
211    
212     =cut
213    
214     1
215     EOF
216