ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/DC.pm
Revision: 1.216
Committed: Sat Nov 17 10:40:08 2012 UTC (11 years, 5 months ago) by root
Branch: MAIN
Changes since 1.215: +9 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 =head1 NAME
2    
3 root 1.169 DC - undocumented utility garbage for our deliantra client
4 root 1.1
5     =head1 SYNOPSIS
6    
7 root 1.169 use DC;
8 root 1.1
9     =head1 DESCRIPTION
10    
11     =over 4
12    
13     =cut
14    
15 root 1.169 package DC;
16 root 1.1
17 root 1.121 use Carp ();
18    
19 root 1.187 our $VERSION;
20    
21 root 1.1 BEGIN {
22 root 1.213 $VERSION = '3.0';
23 root 1.1
24 root 1.2 use XSLoader;
25 root 1.168 XSLoader::load "Deliantra::Client", $VERSION;
26 root 1.1 }
27    
28 root 1.62 use utf8;
29 root 1.187 use strict qw(vars subs);
30 root 1.62
31 root 1.200 use Socket ();
32 root 1.52 use AnyEvent ();
33 root 1.200 use AnyEvent::Util ();
34 root 1.89 use Pod::POM ();
35 root 1.135 use File::Path ();
36 root 1.89 use Storable (); # finally
37 root 1.141 use Fcntl ();
38 root 1.159 use JSON::XS qw(encode_json decode_json);
39 root 1.202 use Guard qw(guard);
40 root 1.103
41 root 1.212 # modules to support other DC::* packages
42     use List::Util ();
43     use IO::AIO ();
44     use Coro::AIO ();
45     use AnyEvent::AIO ();
46    
47 root 1.216 use Deliantra::Util ();
48 root 1.214 use Deliantra::Protocol::Constants ();
49    
50 root 1.133 =item shorten $string[, $maxlength]
51    
52     =cut
53    
54     sub shorten($;$) {
55     my ($str, $len) = @_;
56     substr $str, $len, (length $str), "..." if $len + 3 <= length $str;
57     $str
58     }
59    
60 root 1.105 sub asxml($) {
61     local $_ = $_[0];
62 root 1.89
63 root 1.105 s/&/&amp;/g;
64     s/>/&gt;/g;
65     s/</&lt;/g;
66 root 1.89
67 root 1.105 $_
68 root 1.89 }
69    
70 root 1.127 sub background(&;&) {
71     my ($bg, $cb) = @_;
72 root 1.123
73 root 1.200 my ($fh_r, $fh_w) = AnyEvent::Util::portable_socketpair
74     or die "unable to create background socketpair: $!";
75 root 1.123
76     my $pid = fork;
77    
78     if (defined $pid && !$pid) {
79 root 1.124 local $SIG{__DIE__};
80 root 1.123
81     open STDOUT, ">&", $fh_w;
82     open STDERR, ">&", $fh_w;
83     close $fh_r;
84     close $fh_w;
85    
86     $| = 1;
87    
88 root 1.127 eval { $bg->() };
89 root 1.124
90     if ($@) {
91     my $msg = $@;
92     $msg =~ s/\n+/\n/;
93     warn "FATAL: $msg";
94 root 1.169 DC::_exit 1;
95 root 1.124 }
96 root 1.123
97     # win32 is fucked up, of course. exit will clean stuff up,
98     # which destroys our database etc. _exit will exit ALL
99     # forked processes, because of the dreaded fork emulation.
100 root 1.169 DC::_exit 0;
101 root 1.123 }
102    
103     close $fh_w;
104    
105     my $buffer;
106    
107 root 1.126 my $w; $w = AnyEvent->io (fh => $fh_r, poll => 'r', cb => sub {
108 root 1.123 unless (sysread $fh_r, $buffer, 4096, length $buffer) {
109 root 1.126 undef $w;
110 root 1.127 $cb->();
111     return;
112 root 1.123 }
113    
114     while ($buffer =~ s/^(.*)\n//) {
115     my $line = $1;
116 root 1.124 $line =~ s/\s+$//;
117 root 1.123 utf8::decode $line;
118 root 1.127 if ($line =~ /^\x{e877}json_msg (.*)$/s) {
119 root 1.139 $cb->(JSON::XS->new->allow_nonref->decode ($1));
120 root 1.127 } else {
121     ::message ({
122 root 1.169 markup => "background($pid): " . DC::asxml $line,
123 root 1.127 });
124     }
125 root 1.123 }
126     });
127     }
128    
129 root 1.127 sub background_msg {
130     my ($msg) = @_;
131    
132 root 1.139 $msg = "\x{e877}json_msg " . JSON::XS->new->allow_nonref->encode ($msg);
133 root 1.127 $msg =~ s/\n//g;
134     utf8::encode $msg;
135     print $msg, "\n";
136     }
137    
138 root 1.169 package DC;
139 root 1.52
140 root 1.191 our $RC_THEME;
141 root 1.192 our %THEME;
142 root 1.191 our @RC_PATH;
143 root 1.187 our $RC_BASE;
144    
145     for (grep !ref, @INC) {
146     $RC_BASE = "$_/Deliantra/Client/private/resources";
147     last if -d $RC_BASE;
148     }
149    
150 root 1.5 sub find_rcfile($) {
151     my $path;
152    
153 root 1.191 for (@RC_PATH, "") {
154 root 1.189 $path = "$RC_BASE/$_/$_[0]";
155 root 1.205 return $path if -e $path;
156 root 1.189 }
157 root 1.5
158 root 1.187 die "FATAL: can't find required file \"$_[0]\" in \"$RC_BASE\"\n";
159 root 1.5 }
160    
161 root 1.192 sub load_json($) {
162     my ($file) = @_;
163    
164     open my $fh, $file
165     or return;
166    
167     local $/;
168 root 1.203 eval { JSON::XS->new->utf8->relaxed->decode (<$fh>) }
169 root 1.192 }
170    
171 root 1.191 sub set_theme($) {
172     return if $RC_THEME eq $_[0];
173     $RC_THEME = $_[0];
174    
175 root 1.192 # kind of hacky, find the main theme file, then load all theme files and merge them
176    
177     %THEME = ();
178 root 1.191 @RC_PATH = "theme-$RC_THEME";
179    
180 root 1.192 my $theme = load_json find_rcfile "theme.json"
181     or die "FATAL: theme resource file not found";
182 root 1.191
183 root 1.192 @RC_PATH = @{ $theme->{path} } if $theme->{path};
184    
185     for (@RC_PATH, "") {
186     my $theme = load_json "$RC_BASE/$_/theme.json"
187     or next;
188    
189     %THEME = ( %$theme, %THEME );
190 root 1.191 }
191     }
192    
193 root 1.215 sub read_cfg($) {
194 root 1.5 my ($file) = @_;
195    
196 root 1.201 $::CFG = (load_json $file) || (load_json "$file.bak");
197 root 1.5 }
198    
199 root 1.215 sub write_cfg($) {
200 root 1.178 my $file = "$Deliantra::VARDIR/client.cf";
201 root 1.5
202 root 1.107 $::CFG->{VERSION} = $::VERSION;
203 root 1.201 $::CFG->{layout} = DC::UI::get_layout ();
204 root 1.107
205 root 1.201 open my $fh, ">:utf8", "$file~"
206 root 1.5 or return;
207 root 1.180 print $fh JSON::XS->new->utf8->pretty->encode ($::CFG);
208 root 1.201 close $fh;
209    
210     rename $file, "$file.bak";
211     rename "$file~", $file;
212 root 1.5 }
213    
214 root 1.215 sub load_cfg() {
215     if (-e "$Deliantra::VARDIR/client.cf") {
216     DC::read_cfg "$Deliantra::VARDIR/client.cf";
217     } else {
218 root 1.216 $::CFG = { cfg_schema => 1, db_schema => 1 };
219 root 1.215 }
220     }
221    
222     sub save_cfg() {
223     write_cfg "$Deliantra::VARDIR/client.cf";
224     }
225    
226 root 1.214 sub upgrade_cfg() {
227     my %DEF_CFG = (
228     config_autosave => 1,
229     sdl_mode => undef,
230     fullscreen => 1,
231     fast => 0,
232     force_opengl11 => undef,
233     disable_alpha => 0,
234     smooth_movement => 1,
235     smooth_transitions => 1,
236     texture_compression => 1,
237     map_scale => 1,
238     fow_enable => 1,
239     fow_intensity => 0,
240     fow_texture => 0,
241     map_smoothing => 1,
242     gui_fontsize => 1,
243     log_fontsize => 0.7,
244     gauge_fontsize => 1,
245     gauge_size => 0.35,
246     stat_fontsize => 0.7,
247     mapsize => 100,
248     audio_enable => 1,
249     audio_hw_channels => 0,
250     audio_hw_frequency => 0,
251     audio_hw_chunksize => 0,
252     audio_mix_channels => 8,
253     effects_enable => 1,
254     effects_volume => 1,
255     bgm_enable => 1,
256     bgm_volume => 0.5,
257     output_rate => "",
258     pickup => Deliantra::Protocol::Constants::PICKUP_SPELLBOOK
259     | Deliantra::Protocol::Constants::PICKUP_SKILLSCROLL
260     | Deliantra::Protocol::Constants::PICKUP_VALUABLES,
261     inv_sort => "mtime",
262     default => "profile", # default profile
263     show_tips => 1,
264     logview_max_par => 1000,
265     shift_fire_stop => 0,
266     uitheme => "wood",
267     map_shift_x => -24, # arbitrary
268     map_shift_y => +24, # arbitrary
269     );
270    
271     while (my ($k, $v) = each %DEF_CFG) {
272     $::CFG->{$k} = $v unless exists $::CFG->{$k};
273     }
274 root 1.216
275     if ($::CFG->{cfg_schema} < 1) {
276     for my $profile (values %{ $::CFG->{profile} }) {
277     $profile->{password} = unpack "H*", Deliantra::Util::hash_pw $profile->{password};
278     }
279     $::CFG->{cfg_schema} = 1;
280     }
281 root 1.214 }
282    
283 root 1.122 sub http_proxy {
284     my @proxy = win32_proxy_info;
285    
286     if (@proxy) {
287     "http://" . (@proxy < 2 ? "" : @proxy < 3 ? "$proxy[1]\@" : "$proxy[1]:$proxy[2]\@") . $proxy[0]
288     } elsif (exists $ENV{http_proxy}) {
289     $ENV{http_proxy}
290     } else {
291     ()
292     }
293     }
294    
295     sub set_proxy {
296     my $proxy = http_proxy
297     or return;
298    
299     $ENV{http_proxy} = $proxy;
300     }
301    
302 root 1.127 sub lwp_useragent {
303     require LWP::UserAgent;
304    
305 root 1.169 DC::set_proxy;
306 root 1.127
307     my $ua = LWP::UserAgent->new (
308 root 1.171 agent => "deliantra $VERSION",
309 root 1.127 keep_alive => 1,
310     env_proxy => 1,
311     timeout => 30,
312     );
313     }
314    
315     sub lwp_check($) {
316     my ($res) = @_;
317    
318     $res->is_error
319     and die $res->status_line;
320    
321     $res
322     }
323    
324 root 1.141 sub fh_nonblocking($$) {
325     my ($fh, $nb) = @_;
326    
327 root 1.142 if ($^O eq "MSWin32") {
328     $nb = (! ! $nb) + 0;
329 root 1.143 ioctl $fh, 0x8004667e, \$nb; # FIONBIO
330 root 1.141 } else {
331     fcntl $fh, &Fcntl::F_SETFL, $nb ? &Fcntl::O_NONBLOCK : 0;
332     }
333     }
334    
335 root 1.169 package DC::Layout;
336 root 1.97
337 root 1.169 $DC::OpenGL::INIT_HOOK{"DC::Layout"} = sub {
338 root 1.164 glyph_cache_restore;
339     };
340    
341 root 1.169 $DC::OpenGL::SHUTDOWN_HOOK{"DC::Layout"} = sub {
342 root 1.164 glyph_cache_backup;
343 root 1.97 };
344    
345 root 1.1 1;
346    
347     =back
348    
349     =head1 AUTHOR
350    
351     Marc Lehmann <schmorp@schmorp.de>
352     http://home.schmorp.de/
353    
354     =cut
355