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.3 by root, Fri Apr 7 18:20:13 2006 UTC vs.
Revision 1.216 by root, Sat Nov 17 10:40:08 2012 UTC

1=head1 NAME 1=head1 NAME
2 2
3Crossfire::Client - undocumented utility garbage for our crossfire client 3DC - undocumented utility garbage for our deliantra client
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 use Crossfire::Client; 7 use DC;
8 8
9=head1 DESCRIPTION 9=head1 DESCRIPTION
10 10
11=over 4 11=over 4
12 12
13=cut 13=cut
14 14
15package Crossfire::Client; 15package DC;
16
17use Carp ();
18
19our $VERSION;
16 20
17BEGIN { 21BEGIN {
18 $VERSION = '0.1'; 22 $VERSION = '3.0';
19 23
20 use XSLoader; 24 use XSLoader;
21 XSLoader::load "Crossfire::Client", $VERSION; 25 XSLoader::load "Deliantra::Client", $VERSION;
22} 26}
23 27
24package Crossfire::Client::Texture; 28use utf8;
29use strict qw(vars subs);
25 30
26use Scalar::Util; 31use Socket ();
32use AnyEvent ();
33use AnyEvent::Util ();
34use Pod::POM ();
35use File::Path ();
36use Storable (); # finally
37use Fcntl ();
38use JSON::XS qw(encode_json decode_json);
39use Guard qw(guard);
27 40
28use SDL::OpenGL; 41# modules to support other DC::* packages
42use List::Util ();
43use IO::AIO ();
44use Coro::AIO ();
45use AnyEvent::AIO ();
29 46
30my @textures; 47use Deliantra::Util ();
48use Deliantra::Protocol::Constants ();
31 49
32sub new_from_file { 50=item shorten $string[, $maxlength]
33 my ($class, $path) = @_;
34 51
35 open my $fh, "<:raw", $path 52=cut
36 or die "$path: $!"; 53
54sub shorten($;$) {
55 my ($str, $len) = @_;
56 substr $str, $len, (length $str), "..." if $len + 3 <= length $str;
57 $str
58}
59
60sub asxml($) {
61 local $_ = $_[0];
62
63 s/&/&amp;/g;
64 s/>/&gt;/g;
65 s/</&lt;/g;
66
67 $_
68}
69
70sub background(&;&) {
71 my ($bg, $cb) = @_;
72
73 my ($fh_r, $fh_w) = AnyEvent::Util::portable_socketpair
74 or die "unable to create background socketpair: $!";
75
76 my $pid = fork;
77
78 if (defined $pid && !$pid) {
79 local $SIG{__DIE__};
80
81 open STDOUT, ">&", $fh_w;
82 open STDERR, ">&", $fh_w;
83 close $fh_r;
84 close $fh_w;
85
86 $| = 1;
87
88 eval { $bg->() };
89
90 if ($@) {
91 my $msg = $@;
92 $msg =~ s/\n+/\n/;
93 warn "FATAL: $msg";
94 DC::_exit 1;
95 }
96
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 DC::_exit 0;
101 }
102
103 close $fh_w;
104
105 my $buffer;
106
107 my $w; $w = AnyEvent->io (fh => $fh_r, poll => 'r', cb => sub {
108 unless (sysread $fh_r, $buffer, 4096, length $buffer) {
109 undef $w;
110 $cb->();
111 return;
112 }
113
114 while ($buffer =~ s/^(.*)\n//) {
115 my $line = $1;
116 $line =~ s/\s+$//;
117 utf8::decode $line;
118 if ($line =~ /^\x{e877}json_msg (.*)$/s) {
119 $cb->(JSON::XS->new->allow_nonref->decode ($1));
120 } else {
121 ::message ({
122 markup => "background($pid): " . DC::asxml $line,
123 });
124 }
125 }
126 });
127}
128
129sub background_msg {
130 my ($msg) = @_;
131
132 $msg = "\x{e877}json_msg " . JSON::XS->new->allow_nonref->encode ($msg);
133 $msg =~ s/\n//g;
134 utf8::encode $msg;
135 print $msg, "\n";
136}
137
138package DC;
139
140our $RC_THEME;
141our %THEME;
142our @RC_PATH;
143our $RC_BASE;
144
145for (grep !ref, @INC) {
146 $RC_BASE = "$_/Deliantra/Client/private/resources";
147 last if -d $RC_BASE;
148}
149
150sub find_rcfile($) {
151 my $path;
152
153 for (@RC_PATH, "") {
154 $path = "$RC_BASE/$_/$_[0]";
155 return $path if -e $path;
156 }
157
158 die "FATAL: can't find required file \"$_[0]\" in \"$RC_BASE\"\n";
159}
160
161sub load_json($) {
162 my ($file) = @_;
163
164 open my $fh, $file
165 or return;
37 166
38 local $/; 167 local $/;
39 $class->new_from_data (<$fh>) 168 eval { JSON::XS->new->utf8->relaxed->decode (<$fh>) }
40} 169}
41 170
42sub new_from_image { 171sub set_theme($) {
43 my ($class, $image) = @_; 172 return if $RC_THEME eq $_[0];
173 $RC_THEME = $_[0];
44 174
45 my $self = bless { 175 # kind of hacky, find the main theme file, then load all theme files and merge them
46 image => $data, 176
177 %THEME = ();
178 @RC_PATH = "theme-$RC_THEME";
179
180 my $theme = load_json find_rcfile "theme.json"
181 or die "FATAL: theme resource file not found";
182
183 @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 );
47 }; 190 }
48
49 push @textures, $self;
50 Scalar::Util::weaken $textures[-1];
51
52 $self->upload;
53
54 $self
55} 191}
56 192
57sub upload { 193sub read_cfg($) {
58 my ($self) = @_; 194 my ($file) = @_;
59 195
60 return unless $SDL::App::USING_OPENGL; 196 $::CFG = (load_json $file) || (load_json "$file.bak");
197}
61 198
62 my ($data, $width, $height); 199sub write_cfg($) {
200 my $file = "$Deliantra::VARDIR/client.cf";
63 201
64 if (exists $self->{data}) { 202 $::CFG->{VERSION} = $::VERSION;
65 ($data, $width, $height) = ($self->{data}, $self->{width}, $self->{height}); 203 $::CFG->{layout} = DC::UI::get_layout ();
204
205 open my $fh, ">:utf8", "$file~"
206 or return;
207 print $fh JSON::XS->new->utf8->pretty->encode ($::CFG);
208 close $fh;
209
210 rename $file, "$file.bak";
211 rename "$file~", $file;
212}
213
214sub load_cfg() {
215 if (-e "$Deliantra::VARDIR/client.cf") {
216 DC::read_cfg "$Deliantra::VARDIR/client.cf";
66 } else { 217 } else {
67 my $pb = new Gtk2::Gdk::PixbufLoader; 218 $::CFG = { cfg_schema => 1, db_schema => 1 };
68 $pb->write ($self->{data});
69 $pb->close;
70
71 $pb = $pb->get_pixbuf;
72 $pb = $pb->add_alpha (0, 0, 0, 0);
73
74 ($data, $width, $height) = ($pb->get_pixels, $pb->get_width, $pb->get_height);
75 } 219 }
220}
76 221
77 ($self->{name}) = @{glGenTextures 1}; 222sub save_cfg() {
223 write_cfg "$Deliantra::VARDIR/client.cf";
224}
78 225
79 glBindTexture GL_TEXTURE_2D, $self->{name}; 226sub 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 );
80 270
81 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR; 271 while (my ($k, $v) = each %DEF_CFG) {
82 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR;#_MIPMAP_LINEAR; 272 $::CFG->{$k} = $v unless exists $::CFG->{$k};
83 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP; 273 }
84 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP; 274
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}
282
283sub 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
295sub set_proxy {
296 my $proxy = http_proxy
297 or return;
298
299 $ENV{http_proxy} = $proxy;
300}
301
302sub lwp_useragent {
303 require LWP::UserAgent;
85 304
86 glTexImage2D GL_TEXTURE_2D, 0, 305 DC::set_proxy;
87 GL_RGBA8,
88 $width, $height,
89 0,
90 GL_RGBA,
91 GL_UNSIGNED_BYTE,
92 $data;
93}
94 306
95sub DESTROY { 307 my $ua = LWP::UserAgent->new (
308 agent => "deliantra $VERSION",
309 keep_alive => 1,
310 env_proxy => 1,
311 timeout => 30,
312 );
313}
314
315sub lwp_check($) {
96 my ($self) = @_; 316 my ($res) = @_;
97 317
98 return unless exists $self->{name}; 318 $res->is_error
319 and die $res->status_line;
99 320
100 glDeleteTextures delete $self->{name}; 321 $res
101} 322}
102 323
103push @::GLINIT, sub { 324sub fh_nonblocking($$) {
104 $_->upload 325 my ($fh, $nb) = @_;
105 for grep $_, @textures; 326
327 if ($^O eq "MSWin32") {
328 $nb = (! ! $nb) + 0;
329 ioctl $fh, 0x8004667e, \$nb; # FIONBIO
330 } else {
331 fcntl $fh, &Fcntl::F_SETFL, $nb ? &Fcntl::O_NONBLOCK : 0;
332 }
333}
334
335package DC::Layout;
336
337$DC::OpenGL::INIT_HOOK{"DC::Layout"} = sub {
338 glyph_cache_restore;
339};
340
341$DC::OpenGL::SHUTDOWN_HOOK{"DC::Layout"} = sub {
342 glyph_cache_backup;
106}; 343};
107 344
1081; 3451;
109 346
110=back 347=back

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines