ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC.pm
(Generate patch)

Comparing deliantra/Deliantra-Client/DC.pm (file contents):
Revision 1.190 by root, Tue Sep 2 17:08:44 2008 UTC vs.
Revision 1.191 by root, Wed Sep 3 06:07:39 2008 UTC

145 print $msg, "\n"; 145 print $msg, "\n";
146} 146}
147 147
148package DC; 148package DC;
149 149
150our @RC_THEME = ("theme-blue", "."); 150our $RC_THEME;
151our $THEME;
152our @RC_PATH;
151our $RC_BASE; 153our $RC_BASE;
152 154
153for (grep !ref, @INC) { 155for (grep !ref, @INC) {
154 $RC_BASE = "$_/Deliantra/Client/private/resources"; 156 $RC_BASE = "$_/Deliantra/Client/private/resources";
155 last if -d $RC_BASE; 157 last if -d $RC_BASE;
156} 158}
157 159
158sub find_rcfile($) { 160sub find_rcfile($) {
159 my $path; 161 my $path;
160 162
161 for (@RC_THEME) { 163 for (@RC_PATH, "") {
162 $path = "$RC_BASE/$_/$_[0]"; 164 $path = "$RC_BASE/$_/$_[0]";
163 return $path if -r $path; 165 return $path if -r $path;
164 } 166 }
165 167
166 die "FATAL: can't find required file \"$_[0]\" in \"$RC_BASE\"\n"; 168 die "FATAL: can't find required file \"$_[0]\" in \"$RC_BASE\"\n";
169}
170
171sub set_theme($) {
172 return if $RC_THEME eq $_[0];
173 $RC_THEME = $_[0];
174
175 @RC_PATH = "theme-$RC_THEME";
176
177 {
178 open my $fh, "<:raw", find_rcfile "theme.json"
179 or die "cannot open theme description file";
180
181 local $/;
182 $THEME = JSON::XS->new->utf8->relaxed->decode (<$fh>);
183 }
184
185 @RC_PATH = @{ $THEME->{path} } if $THEME->{path};
167} 186}
168 187
169sub read_cfg { 188sub read_cfg {
170 my ($file) = @_; 189 my ($file) = @_;
171 190

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines