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.185 by root, Fri Aug 1 13:50:08 2008 UTC vs.
Revision 1.192 by root, Wed Sep 3 10:36:25 2008 UTC

16package App::Deliantra; # try to reserve namespace 16package App::Deliantra; # try to reserve namespace
17package DC; 17package DC;
18 18
19use Carp (); 19use Carp ();
20 20
21our $VERSION;
22
21BEGIN { 23BEGIN {
22 $VERSION = '0.9974'; 24 $VERSION = '0.9975';
23 25
24 use XSLoader; 26 use XSLoader;
25 XSLoader::load "Deliantra::Client", $VERSION; 27 XSLoader::load "Deliantra::Client", $VERSION;
26} 28}
27 29
28use utf8; 30use utf8;
31use strict qw(vars subs);
29 32
30use AnyEvent (); 33use AnyEvent ();
31use Pod::POM (); 34use Pod::POM ();
32use File::Path (); 35use File::Path ();
33use Storable (); # finally 36use Storable (); # finally
142 print $msg, "\n"; 145 print $msg, "\n";
143} 146}
144 147
145package DC; 148package DC;
146 149
150our $RC_THEME;
151our %THEME;
152our @RC_PATH;
153our $RC_BASE;
154
155for (grep !ref, @INC) {
156 $RC_BASE = "$_/Deliantra/Client/private/resources";
157 last if -d $RC_BASE;
158}
159
147sub find_rcfile($) { 160sub find_rcfile($) {
148 my $path; 161 my $path;
149 162
150 for (grep !ref, @INC) { 163 for (@RC_PATH, "") {
151 $path = "$_/Deliantra/Client/private/resources/$_[0]"; 164 $path = "$RC_BASE/$_/$_[0]";
152 return $path if -r $path; 165 return $path if -r $path;
153 } 166 }
154 167
155 die "FATAL: can't find required file $_[0]\n"; 168 die "FATAL: can't find required file \"$_[0]\" in \"$RC_BASE\"\n";
169}
170
171sub load_json($) {
172 my ($file) = @_;
173
174 open my $fh, $file
175 or return;
176
177 local $/;
178 JSON::XS->new->utf8->relaxed->decode (<$fh>)
179}
180
181sub set_theme($) {
182 return if $RC_THEME eq $_[0];
183 $RC_THEME = $_[0];
184
185 # kind of hacky, find the main theme file, then load all theme files and merge them
186
187 %THEME = ();
188 @RC_PATH = "theme-$RC_THEME";
189
190 my $theme = load_json find_rcfile "theme.json"
191 or die "FATAL: theme resource file not found";
192
193 @RC_PATH = @{ $theme->{path} } if $theme->{path};
194
195 for (@RC_PATH, "") {
196 my $theme = load_json "$RC_BASE/$_/theme.json"
197 or next;
198
199 %THEME = ( %$theme, %THEME );
200 }
156} 201}
157 202
158sub read_cfg { 203sub read_cfg {
159 my ($file) = @_; 204 my ($file) = @_;
160 205
161 open my $fh, $file 206 $::CFG = load_json $file;
162 or return;
163
164 local $/;
165 my $CFG = <$fh>;
166
167 $::CFG = decode_json $CFG;
168} 207}
169 208
170sub write_cfg { 209sub write_cfg {
171 my $file = "$Deliantra::VARDIR/client.cf"; 210 my $file = "$Deliantra::VARDIR/client.cf";
172 211

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines