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

Comparing deliantra/Deliantra-Client/DC/Main.pm (file contents):
Revision 1.5 by root, Fri Dec 30 10:59:00 2011 UTC vs.
Revision 1.24 by root, Sat Nov 17 10:40:09 2012 UTC

18} 18}
19 19
20use common::sense; 20use common::sense;
21use Carp 'verbose'; 21use Carp 'verbose';
22use Cwd (); 22use Cwd ();
23use Digest::MD5 ();
23use EV; 24use EV;
24BEGIN { *time = \&EV::time } 25BEGIN { *time = \&EV::time }
25 26
26use List::Util qw(max min); 27use List::Util qw(max min);
27 28
28use Deliantra; 29use Deliantra;
30use Deliantra::Util;
29use Deliantra::Protocol::Constants; 31use Deliantra::Protocol::Constants;
30 32
31use AnyEvent::Util (); 33use AnyEvent::Util ();
32use AnyEvent::Socket (); 34use AnyEvent::Socket ();
33use AnyEvent::DNS (); 35use AnyEvent::DNS ();
34 36
35use Compress::LZF; 37use Compress::LZF;
36use JSON::XS; 38use JSON::XS;
39use Urlader;
37 40
38use DC; 41use DC;
39 42
40sub crash($;$) { 43sub crash($;$) {
41 # nop at compiletime 44 # nop at compiletime
43 46
44BEGIN { 47BEGIN {
45 $SIG{__DIE__} = sub { 48 $SIG{__DIE__} = sub {
46 return if $^S; # quick reject 49 return if $^S; # quick reject
47 50
48 # return if there are any eval contexts in the csall stack 51 # return if there are any eval contexts in the call stack
49 for my $i (0..999) { 52 for my $i (0..999) {
50 my ($sub, $is_require) = (caller $i)[3, 7] 53 my ($sub, $is_require) = (caller $i)[3, 7]
51 or last; 54 or last;
52 return if $sub eq "(eval)" && !$is_require; 55 return if $sub eq "(eval)" && !$is_require;
53 } 56 }
56 DC::fatal Carp::longmess "$_[0]"; 59 DC::fatal Carp::longmess "$_[0]";
57 } 60 }
58} 61}
59 62
60use DC::OpenGL (); 63use DC::OpenGL ();
64use DC::Audio ();
61use DC::Protocol; 65use DC::Protocol;
62use DC::DB; 66use DC::DB;
63use DC::UI; 67use DC::UI;
64use DC::UI::Canvas; 68use DC::UI::Canvas;
65use DC::UI::Inventory; 69use DC::UI::Inventory;
125our $MENUBAR; # the hbox at the top 129our $MENUBAR; # the hbox at the top
126our $MENUPOPUP; 130our $MENUPOPUP;
127our $BUTTONBAR; # the menu buttons 131our $BUTTONBAR; # the menu buttons
128our $METASERVER; 132our $METASERVER;
129our $LOGIN_BUTTON; 133our $LOGIN_BUTTON;
134our $LOGIN_ERROR;
130our $QUIT_DIALOG; 135our $QUIT_DIALOG;
131our $HOST_ENTRY; 136our $HOST_ENTRY;
132our $FULLSCREEN_ENABLE; 137our $FULLSCREEN_ENABLE;
133our $PICKUP_ENABLE; 138our $PICKUP_ENABLE;
134our $SERVER_INFO; 139our $SERVER_INFO;
142our $PL_NOTEBOOK; 147our $PL_NOTEBOOK;
143our $PL_WINDOW; 148our $PL_WINDOW;
144 149
145our $MUSIC_PLAYING_WIDGET; 150our $MUSIC_PLAYING_WIDGET;
146our $LICENSE_WIDGET; 151our $LICENSE_WIDGET;
152our $DOWNLOADS_WIDGET;
147 153
148our $PICKUP_PAGE; 154our $PICKUP_PAGE;
149our $INVENTORY_PAGE; 155our $INVENTORY_PAGE;
150our $STATS_PAGE; 156our $STATS_PAGE;
151our $SKILL_PAGE; 157our $SKILL_PAGE;
194 AnyEvent::Util::fh_nonblocking $fh, 1; 200 AnyEvent::Util::fh_nonblocking $fh, 1;
195 201
196 $msg =~ s/\s+$//; 202 $msg =~ s/\s+$//;
197 203
198 # backtrace as second step, in case it crashes, too 204 # backtrace as second step, in case it crashes, too
199 crash Carp::longmess "$msg\nbacktrace, for client version $DC::VERSION, generated" 205 crash Carp::longmess "$msg\nbacktrace, for client version $DC::VERSION$Urlader::EXE_VER, generated"
200 if $backtrace; 206 if $backtrace;
201}; 207};
202 208
203sub clienterror($;$) { 209sub clienterror($;$) {
204 my ($msg, $backtrace) = @_; 210 my ($msg, $backtrace) = @_;
206 warn $msg; 212 warn $msg;
207 213
208 return unless $CONN; 214 return unless $CONN;
209 215
210 $CONN->send_exti_msg (clientlog => $msg); 216 $CONN->send_exti_msg (clientlog => $msg);
211 $CONN->send_exti_msg (clientlog => Carp::longmess "$msg\nbacktrace, for client version $DC::VERSION, generated") if $backtrace; 217 $CONN->send_exti_msg (clientlog => Carp::longmess "$msg\nbacktrace, for client version $DC::VERSION$Urlader::EXE_VER, generated") if $backtrace;
212} 218}
213 219
214############################################################################# 220#############################################################################
215 221
216sub status { 222sub status {
247 : "[<span foreground='#888'>num</span>]"; 253 : "[<span foreground='#888'>num</span>]";
248 254
249 # <tt> around next statement works around some bug that keeps the 255 # <tt> around next statement works around some bug that keeps the
250 # "font =>" from being used on windows 256 # "font =>" from being used on windows
251 $MODBOX->set_markup ("<tt>$markup</tt>"); 257 $MODBOX->set_markup ("<tt>$markup</tt>");
258}
259
260sub errorbox {
261 my ($msg) = @_;
262
263 status $msg;
264
265 my $dialog = new DC::UI::Toplevel
266 x => "center",
267 y => "center",
268 z => 200,
269 title => "Error",
270 child => my $vbox = new DC::UI::VBox,
271 has_close_button => 1,
272 on_delete => sub {
273 $_[0]->destroy;
274 },
275 ;
276
277 add $vbox new DC::UI::Label
278 align => 0.5,
279 ellipsise => 0,
280 text => $msg;
281
282 add $vbox new DC::UI::Button
283 expand => 1,
284 text => "OK",
285 on_activate => sub {
286 $dialog->destroy;
287 0
288 }
289 ;
290
291 $dialog->show;
252} 292}
253 293
254############################################################################# 294#############################################################################
255#TODO: maybe move into own audio module... 295#TODO: maybe move into own audio module...
256 296
471 audio_music_push; 511 audio_music_push;
472} 512}
473 513
474sub audio_init { 514sub audio_init {
475 if ($CFG->{audio_enable}) { 515 if ($CFG->{audio_enable}) {
476 if (length $CFG->{audio_driver}) { 516 DC::Audio::init $CFG->{audio_driver};
477 local $ENV{SDL_AUDIODRIVER} = $CFG->{audio_driver};
478 DC::SDL_Init DC::SDL_INIT_AUDIO
479 and die "SDL::Init failed!\n";
480 } else {
481 DC::SDL_Init DC::SDL_INIT_AUDIO
482 and die "SDL::Init failed!\n";
483 }
484
485 $ENV{MIX_EFFECTSMAXSPEED} = 1;
486 $SDL_MIXER = !DC::Mix_OpenAudio
487 $CFG->{audio_hw_frequency},
488 DC::MIX_DEFAULT_FORMAT,
489 $CFG->{audio_hw_channels},
490 $CFG->{audio_hw_chunksize};
491 517
492 if ($SDL_MIXER) { 518 if ($SDL_MIXER) {
493 DC::Mix_AllocateChannels $CFG->{audio_mix_channels};
494
495 audio_music_finished; 519 audio_music_finished;
496 } else { 520 } else {
497 status "Unable to open sound device: there will be no sound"; 521 status "Unable to open sound device: there will be no sound";
498 } 522 }
499 } else { 523 } else {
521 545
522 DC::Mix_CloseAudio if $SDL_MIXER; 546 DC::Mix_CloseAudio if $SDL_MIXER;
523 undef $SDL_MIXER; 547 undef $SDL_MIXER;
524 548
525 DC::SDL_QuitSubSystem DC::SDL_INIT_AUDIO; 549 DC::SDL_QuitSubSystem DC::SDL_INIT_AUDIO;
550}
551
552#############################################################################
553# Over-the-air updates
554
555sub ota_update {
556 my ($face, $size, $md5) = @_;
557
558 my $coro = Coro::async_pool {
559 my $override = "$Urlader::EXE_DIR/override";
560
561 $MESSAGE_DIST->add_channel ({
562 id => "ota_update",
563 title => "Update",
564 tooltip => "<b>Software Update Log</b>",
565 });
566
567 $MESSAGE_DIST->message ({ type => "ota_update", markup => "preparing override..." });
568
569 my $fh = Coro::AIO::aio_open "$override.tmp", IO::AIO::O_WRONLY | IO::AIO::O_CREAT | IO::AIO::O_TRUNC, 0777;
570
571 unless ($fh) {
572 $MESSAGE_DIST->message ({ type => "ota_update", markup => (DC::asxml "unable to write software update:\n$Urlader::EXE_DIR/override.tmp:\n$!") });
573 return;
574 }
575
576 $MESSAGE_DIST->message ({ type => "ota_update", markup => "downloading $size bytes..." });
577
578 my $cv = AE::cv;
579 my $error;
580
581 $cv->begin (Coro::rouse_cb);
582 $CONN->ask_face (
583 $face,
584 -1000,
585 sub {
586 $STATUSBOX->add (
587 (sprintf "update download: %d/%d", $size - $_[1], $size),
588 pri => -9, group => "ota_update", timeout => 60, fg => [1, 1, 0, 1]
589 );
590
591 $cv->begin;
592 my $len = length $_[2];
593 IO::AIO::aio_write $fh, $_[1], $len, $_[2], undef, sub {
594 $error ||= $_[0] != $len;
595 $cv->end;
596 };
597 },
598 sub {
599 $cv->end;
600 },
601 );
602
603 Coro::rouse_wait;
604
605 $STATUSBOX->clr_group ("ota_update");
606
607 $error ||= Coro::AIO::aio_fsync $fh;
608 $error ||= Coro::AIO::aio_close $fh;
609
610 if ($error) {
611 $MESSAGE_DIST->message ({ type => "ota_update", markup => "file write error, update aborted." });
612 Coro::AIO::aio_unlink "$override.tmp";
613 return;
614 }
615
616 {
617 $MESSAGE_DIST->message ({ type => "ota_update", markup => "verifying update file..." });
618
619 my $fh = Coro::AIO::aio_open "$override.tmp", IO::AIO::O_RDONLY, 0;
620
621 if ($fh) {
622 $error ||= Coro::AIO::aio_stat "$override.tmp";
623 $error ||= -s _ != $size;
624 Coro::AIO::aio_readahead $fh, 0, $size;
625
626 my $f_md5 = new Digest::MD5;
627 binmode $fh; # ugh :(
628 $f_md5->addfile ($fh);
629 $f_md5 = $f_md5->hexdigest;
630 $error ||= $md5 ne $f_md5;
631 }
632 }
633
634 if ($error) {
635 $MESSAGE_DIST->message ({ type => "ota_update", markup => "verification failed, update aborted." });
636 Coro::AIO::aio_unlink "$override.tmp";
637 return;
638 }
639
640 $MESSAGE_DIST->message ({ type => "ota_update", markup => "replacing override file..." });
641
642 if (Coro::AIO::aio_rename "$override.tmp", $override) {
643 $MESSAGE_DIST->message ({ type => "ota_update", markup => "unable to replace override file, update aborted." });
644 Coro::AIO::aio_unlink "$override.tmp";
645 }
646
647 $MESSAGE_DIST->message ({ type => "ota_update", markup => "success - update becomes active after restarting." });
648 };
649
650 $CONN->{ota_update} = Guard::guard {
651 $coro->cancel;
652 };
653}
654
655sub ota_update_ask {
656 my ($ok, $face, $ver, $size, $md5, $changes) = @_;
657
658 $CONN->{w}{ota_dialog} = my $dialog = new DC::UI::Toplevel
659 x => "center",
660 y => "center",
661 z => 55,
662 force_w => $::WIDTH * 0.7,
663 force_h => $::HEIGHT * 0.7,
664 title => "Software update available",
665 child => my $vbox = new DC::UI::VBox,
666 ;
667
668 $vbox->add (new DC::UI::Label
669 ellipsise => 0,
670 text => "The server offers a software update, "
671 . "do you want to start downloading this update in the background?",
672 );
673
674 $vbox->add (new DC::UI::FancyFrame
675 expand => 1,
676 label => "Details",
677 child => (new DC::UI::TextScroller
678 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4,
679 par => [{
680 markup => "<tt>Old revision: $Urlader::EXE_VER\n"
681 . "New revision: $ver\n"
682 . "Download size: $size bytes</tt>\n\n"
683 . "Changes:\n\n"
684 . DC::asxml $changes
685 }],
686 ),
687 );
688
689 $vbox->add (my $hbox = new DC::UI::HBox);
690
691 $hbox->add (new DC::UI::Button
692 expand => 1,
693 text => "Not now",
694 on_activate => sub {
695 $dialog->destroy;
696 0
697 }
698 );
699 $hbox->add (new DC::UI::Button
700 expand => 1,
701 text => "Yes, start downloading",
702 on_activate => sub {
703 $dialog->destroy;
704 ota_update $face, $size, $md5;
705 0
706 },
707 );
708
709 $dialog->show;
710}
711
712sub ota_update_check {
713 return unless defined $Urlader::EXE_ID;
714
715 ::message { markup => "Checking for software update..." };
716
717 $CONN->send_exti_req (ota_update => $Urlader::URLADER_VERSION, $Urlader::EXE_ID, $Urlader::EXE_VER, sub {
718 my ($ok, $face, $ver, $size, $md5, $changes) = @_;
719
720 if ($ok) {
721 if (defined $ver) {
722 ::message { markup => "Server offers version $ver (we are version $Urlader::EXE_VER)." };
723 &ota_update_ask;
724 } else {
725 ::message { markup => "Server has no newer version." };
726 }
727 } else {
728 ::message { markup => "Server does not support software update." };
729 }
730
731 ()
732 });
526} 733}
527 734
528############################################################################# 735#############################################################################
529 736
530sub destroy_query_dialog { 737sub destroy_query_dialog {
757 $vbox->add (@dialog); 964 $vbox->add (@dialog);
758 $dialog->show; 965 $dialog->show;
759} 966}
760 967
761sub dc_connect { 968sub dc_connect {
762 my ($host, $port) = @_; 969 my ($host, $port, $create) = @_;
763 970
764 my $mapw = List::Util::min 48, List::Util::max 11, int 1.5 + $WIDTH * $CFG->{mapsize} * 0.01 / 32; 971 my $mapw = List::Util::min 48, List::Util::max 11, int 1.5 + $WIDTH * $CFG->{mapsize} * 0.01 / 32;
765 my $maph = List::Util::min 48, List::Util::max 11, int 1.5 + $HEIGHT * $CFG->{mapsize} * 0.01 / 32; 972 my $maph = List::Util::min 48, List::Util::max 11, int 1.5 + $HEIGHT * $CFG->{mapsize} * 0.01 / 32;
766 973
767 $CONN = 974 $CONN =
768 new DC::Protocol 975 new DC::Protocol
769 host => $host, 976 host => $host,
770 port => $port, 977 port => $port,
978 create_login => $create,
771 user => $PROFILE->{user}, 979 user => $PROFILE->{user},
772 pass => $PROFILE->{password}, 980 pass => (pack "H*", $PROFILE->{password}),
773 mapw => $mapw, 981 mapw => $mapw,
774 maph => $maph, 982 maph => $maph,
775 983
776 c_version => { 984 c_version => {
777 client => "deliantra", 985 client => "deliantra",
778 clientver => $DC::VERSION, 986 clientver => "$DC::VERSION$Urlader::EXE_VER",
779 gl_vendor => DC::OpenGL::gl_vendor, 987 gl_vendor => DC::OpenGL::gl_vendor,
780 gl_version => DC::OpenGL::gl_version, 988 gl_version => DC::OpenGL::gl_version,
781 }, 989 },
782 990
783 map_widget => $MAPWIDGET, 991 map_widget => $MAPWIDGET,
792 1000
793 on_connect => sub { 1001 on_connect => sub {
794 if ($_[0]) { 1002 if ($_[0]) {
795 DC::lowdelay fileno $CONN->{fh}; 1003 DC::lowdelay fileno $CONN->{fh};
796 1004
1005 ota_update_check;
1006
797 status "successfully connected to the server"; 1007 status "successfully connected to the server";
798 } else { 1008 } else {
799 undef $CONN; 1009 undef $CONN;
800 status "unable to connect: $!"; 1010 $LOGIN_ERROR->{fg} = [1, 0, 0];
1011 $LOGIN_ERROR->set_text ("Unable to connect to server: $!");
801 stop_game(); 1012 stop_game();
802 } 1013 }
803 }, 1014 },
1015
1016 on_addme => sub {
1017 my ($ok, $msg) = @_;
1018
1019 $LOGIN_ERROR->{fg} = $ok ? [0, 1, 0] : [1, 0, 0];
1020 $LOGIN_ERROR->set_text ($msg);
1021 },
804 ; 1022 ;
805} 1023}
806 1024
807sub start_game { 1025sub start_game($) {
1026 my ($create) = @_;
1027
808 status "logging in..."; 1028 status "logging in...";
809 1029
810 my $server = $PROFILE->{host} || $DEFAULT_SERVER; 1030 my $server = $PROFILE->{host} || $DEFAULT_SERVER;
811 my ($host, $port) = AnyEvent::Socket::parse_hostport $server, "deliantra=13327" 1031 my ($host, $port) = AnyEvent::Socket::parse_hostport $server, "deliantra=13327"
812 or return status "$server: unable to parse server address, try an empty field."; 1032 or return status "$server: unable to parse server address, try an empty field.";
827 status "dns failure, using hardcoded address"; 1047 status "dns failure, using hardcoded address";
828 $host = "194.126.175.154"; 1048 $host = "194.126.175.154";
829 } 1049 }
830 } 1050 }
831 1051
832 dc_connect $host, $port; 1052 dc_connect $host, $port, $create;
833 }; 1053 };
834 } else { 1054 } else {
835 dc_connect $host, $port; 1055 dc_connect $host, $port, $create;
836 } 1056 }
837} 1057}
838 1058
839sub stop_game { 1059sub stop_game {
840 crash "stop_game"; 1060 crash "stop_game";
1673 $vbox->add (new DC::UI::FancyFrame 1893 $vbox->add (new DC::UI::FancyFrame
1674 label => "Login Settings", 1894 label => "Login Settings",
1675 child => (my $table = new DC::UI::Table expand => 1, col_expand => [0, 1]), 1895 child => (my $table = new DC::UI::Table expand => 1, col_expand => [0, 1]),
1676 ); 1896 );
1677 1897
1898 my $nullpw = "\x00" x 16;
1899
1678 $table->add_at (0, 4, new DC::UI::Label align => 1, text => "Username"); 1900 $table->add_at (0, 0, new DC::UI::Label align => 1, text => "Username");
1679 $table->add_at (1, 4, new DC::UI::Entry 1901 $table->add_at (1, 0, new DC::UI::Entry
1680 text => $PROFILE->{user}, 1902 text => $PROFILE->{user},
1681 tooltip => "The name of your character on the server. The name is case-sensitive!", 1903 tooltip => "The name of your character on the server. The name is case-sensitive!",
1682 on_changed => sub { my ($self, $value) = @_; $PROFILE->{user} = $value; 1 } 1904 on_changed => sub { my ($self, $value) = @_; $PROFILE->{user} = $value; 1 }
1683 ); 1905 );
1684 1906
1685 $table->add_at (0, 5, new DC::UI::Label align => 1, text => "Password"); 1907 $table->add_at (0, 1, new DC::UI::Label align => 1, text => "Password");
1686 $table->add_at (1, 5, new DC::UI::Entry 1908 $table->add_at (1, 1, my $pw1 = new DC::UI::Entry
1687 text => $PROFILE->{password}, 1909 text => $PROFILE->{password} ? $nullpw : "",
1688 hidden => 1, 1910 hidden => 1,
1689 tooltip => "The password for your character.", 1911 tooltip => "The password for your character.",
1690 on_changed => sub { my ($self, $value) = @_; $PROFILE->{password} = $value; 1 } 1912 on_focus_in => sub {
1913 my ($self) = @_;
1914 $self->set_text ("")
1915 if $self->{text} eq $nullpw;
1916 0
1917 },
1918 on_changed => sub {
1919 my ($self, $value) = @_;
1920 $PROFILE->{password} = pack "H*", Deliantra::Util::hash_pw $value
1921 if length $value && $value ne $nullpw;
1922 1
1923 },
1691 ); 1924 );
1692 1925
1693 $table->add_at (1, 11, $LOGIN_BUTTON = new DC::UI::Button 1926 $table->add_at (1, 2, $LOGIN_BUTTON = new DC::UI::Button
1694 expand => 1, 1927 expand => 1,
1695 text => "Login / Register", 1928 text => "Login to Existing Account",
1696 tooltip => "This button will either login to the account configured above or register a new account.", 1929 tooltip => "This button will login to the account given by the <b>Username</b> and <b>Password</b> fields above.",
1697 on_activate => sub { 1930 on_activate => sub {
1698 $CONN ? stop_game 1931 $CONN ? stop_game
1699 : start_game; 1932 : start_game 0;
1700 1 1933 1
1701 }, 1934 },
1702 ); 1935 );
1703 1936
1937 $table->add_at (0, 3, new DC::UI::Label align => 1, text => "Password");
1938 $table->add_at (1, 3, my $pw2 = new DC::UI::Entry
1939 hidden => 1,
1940 tooltip => "The new password for your character",
1941 );
1942
1943 $table->add_at (1, 4, new DC::UI::Button
1944 expand => 1,
1945 text => "Create New Account",
1946 tooltip => "This button will try to create a new account - you need to fill out the <b>Username</b> and the two <b>Password</b> fields above, using the same password for both <b>Password</b> fields.",
1947 on_activate => sub {
1948 if ($pw1->{text} ne $pw2->{text}) {
1949 $LOGIN_ERROR->{fg} = [1, 0, 0];
1950 $LOGIN_ERROR->set_text ("The passwords do not match - try to enter them again.");
1951 } else {
1952 $CONN or start_game 1;
1953 }
1954 1
1955 },
1956 );
1957
1958 $vbox->add (new DC::UI::FancyFrame
1959 label => "Server Message",
1960 tooltip => "The last message, or error, form the server.",
1961 child => ($LOGIN_ERROR = new DC::UI::Label valign => 0, ellipsise => 0),
1962 );
1963
1704 $vbox->add (new DC::UI::FancyFrame 1964 $vbox->add (new DC::UI::FancyFrame
1705 label => "How to Play", 1965 label => "How to Play",
1706 min_h => 240, 1966 min_h => 240,#d# should not be necessary - widget bug
1707 child => (new DC::UI::Label valign => 0, ellipsise => 0, 1967 child => (new DC::UI::Label valign => 0, ellipsise => 0,
1708 markup => 1968 markup =>
1709 "First select a suitable video resolution in the <b>Graphics</b> tab, above.\n\n" 1969 "First select a suitable video resolution in the <b>Graphics</b> tab, above.\n\n"
1710 . "Then register a new account (or use an existing one if you have one). " 1970 . "Then create a new account (or use an existing one if you have one).\n\n"
1711 . "To register an account, choose a username that hasn't been taken yet (just guess) and " 1971 . "To create an account, choose a username that hasn't been taken yet (just guess) and "
1712 . "try to log-in. Follow the instructions in the Log tab in the message window.", 1972 . "fill out the top two <b>Password</b> fields using the same password, then press <b>Create New Account</b>.",
1713 ), 1973 ),
1714 ); 1974 );
1715 1975
1716 $vbox 1976 $vbox
1717} 1977}
1835 $table->add_at (2, $row++, new DC::UI::Button 2095 $table->add_at (2, $row++, new DC::UI::Button
1836 text => "Save Now", 2096 text => "Save Now",
1837 tooltip => "Use this to manually save configuration and UI layout when " 2097 tooltip => "Use this to manually save configuration and UI layout when "
1838 . "autosave is disabled.", 2098 . "autosave is disabled.",
1839 on_activate => sub { 2099 on_activate => sub {
1840 DC::write_cfg; 2100 DC::save_cfg;
1841 0 2101 0
1842 } 2102 }
1843 ); 2103 );
1844 } 2104 }
1845 2105
1854 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $DC::DB::DBDIR, tooltip => ""); 2114 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $DC::DB::DBDIR, tooltip => "");
1855 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Urlader (Prebuilt)"); 2115 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Urlader (Prebuilt)");
1856 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_VERSION}, tooltip => ""); 2116 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_VERSION}, tooltip => "");
1857 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Branch (Prebuilt)"); 2117 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Branch (Prebuilt)");
1858 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_ID}, tooltip => ""); 2118 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_ID}, tooltip => "");
1859 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Version (Prebuilt)"); 2119 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Revision (Prebuilt)");
1860 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_VER}, tooltip => ""); 2120 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_VER}, tooltip => "");
1861 } 2121 }
1862 2122
1863 $vbox 2123 $vbox
1864} 2124}
2039 2299
2040sub media_window { 2300sub media_window {
2041 my $vb = new DC::UI::VBox; 2301 my $vb = new DC::UI::VBox;
2042 2302
2043 $vb->add (new DC::UI::FancyFrame 2303 $vb->add (new DC::UI::FancyFrame
2044 label => "Currently playing music", 2304 label => "Current background music",
2045 child => new DC::UI::ScrolledWindow scroll_x => 1, scroll_y => 0, 2305 child => new DC::UI::ScrolledWindow scroll_x => 1, scroll_y => 0,
2046 child => ($MUSIC_PLAYING_WIDGET = new DC::UI::Label ellipsise => 0, fontsize => 0.8), 2306 child => ($MUSIC_PLAYING_WIDGET = new DC::UI::Label ellipsise => 0, fontsize => 0.8),
2047 ); 2307 );
2308
2309 $vb->add (new DC::UI::FancyFrame
2310 label => "Current downloads",
2311 child => ($DOWNLOADS_WIDGET = new DC::UI::Table
2312 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4),
2313 );
2314
2315 $DOWNLOADS_WIDGET->connect (visibility_change => sub {
2316 my ($self) = @_;
2317
2318 delete $self->{updater};
2319 return unless $_[1];
2320
2321 $self->{updater} = AE::timer 0, 0.7, sub {
2322 $self->clear;
2323
2324 return unless $CONN;
2325
2326 my @nums = sort { $b <=> $a } keys %{ $CONN->{ix_recv_buf} };
2327 return unless @nums;
2328
2329 $self->add_at (0, 0, new DC::UI::Label align => 1, text => "Face");
2330 $self->add_at (1, 0, new DC::UI::Label align => 0, text => "Octets/Total");
2331
2332 for my $row (0 .. $#nums) {
2333 my $num = $nums[$row];
2334
2335 my $total = length $CONN->{ix_recv_buf}{$num};
2336 my $got = $total - $CONN->{ix_recv_ofs}{$num};
2337
2338 $self->add_at (0, $row + 1, new DC::UI::Label align => 1, text => $num, tooltip => "");
2339 $self->add_at (1, $row + 1, new DC::UI::Label align => 0, text => "$got/$total", tooltip => "");
2340 }
2341 };
2342 });
2048 2343
2049 $vb->add (new DC::UI::FancyFrame 2344 $vb->add (new DC::UI::FancyFrame
2050 label => "Other media used in this session", 2345 label => "Other media used in this session",
2051 expand => 1, 2346 expand => 1,
2052 child => ($LICENSE_WIDGET = new DC::UI::TextScroller 2347 child => ($LICENSE_WIDGET = new DC::UI::TextScroller
2053 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4), 2348 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4),
2054 ); 2349 );
2055 2350
2056 $vb 2351 $vb
2057} 2352}
2058 2353
2243sub open_quit_dialog { 2538sub open_quit_dialog {
2244 unless ($QUIT_DIALOG) { 2539 unless ($QUIT_DIALOG) {
2245 $QUIT_DIALOG = new DC::UI::Toplevel 2540 $QUIT_DIALOG = new DC::UI::Toplevel
2246 x => "center", 2541 x => "center",
2247 y => "center", 2542 y => "center",
2248 z => 50, 2543 z => 60,
2249 title => "Really Quit?", 2544 title => "Really Quit?",
2250 on_key_down => sub { 2545 on_key_down => sub {
2251 my ($dialog, $ev) = @_; 2546 my ($dialog, $ev) = @_;
2252 $ev->{sym} == 27 and $dialog->hide; 2547 $ev->{sym} == 27 and $dialog->hide;
2253 } 2548 }
2446 DC::set_theme $CFG->{uitheme}; 2741 DC::set_theme $CFG->{uitheme};
2447 2742
2448 DC::SDL_InitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT; 2743 DC::SDL_InitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT;
2449 $SDL_REINIT = 0; 2744 $SDL_REINIT = 0;
2450 2745
2451 @SDL_MODES = DC::SDL_ListModes 8, $CFG->{disable_alpha} ? 0 : 8; 2746 @SDL_MODES = DC::SDL_ListModes 8, $CFG->{disable_alpha} ? 0 : 2;
2452 @SDL_MODES = DC::SDL_ListModes 8, 8 unless @SDL_MODES; 2747 @SDL_MODES = DC::SDL_ListModes 8, 8 unless @SDL_MODES;
2453 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES; 2748 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES;
2454 @SDL_MODES or DC::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)"; 2749 @SDL_MODES or DC::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
2455 2750
2456 @SDL_MODES = sort { $a->[0] * $a->[1] <=> $b->[0] * $b->[1] } @SDL_MODES; 2751 @SDL_MODES = sort { $a->[0] * $a->[1] <=> $b->[0] * $b->[1] } @SDL_MODES;
2469 my ($old_w, $old_h) = ($WIDTH, $HEIGHT); 2764 my ($old_w, $old_h) = ($WIDTH, $HEIGHT);
2470 2765
2471 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] }; 2766 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
2472 $FULLSCREEN = $CFG->{fullscreen}; 2767 $FULLSCREEN = $CFG->{fullscreen};
2473 $FAST = $CFG->{fast}; 2768 $FAST = $CFG->{fast};
2769
2770 DC::SDL_WM_SetCaption "Deliantra MORPG Client $DC::VERSION$Urlader::EXE_VER", "Deliantra"; # must be after SDL_Init
2474 2771
2475 # due to mac os x braindamage, we simply retry with !fullscreen in case of an error 2772 # due to mac os x braindamage, we simply retry with !fullscreen in case of an error
2476 DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, $FULLSCREEN 2773 DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, $FULLSCREEN
2477 or DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, !$FULLSCREEN 2774 or DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, !$FULLSCREEN
2478 or die "SDL_SetVideoMode failed: " . (DC::SDL_GetError) . "\n"; 2775 or die "SDL_SetVideoMode failed: " . (DC::SDL_GetError) . "\n";
2736 EV::unloop; 3033 EV::unloop;
2737 #d# TODO calling exit here hangs the process in some futex 3034 #d# TODO calling exit here hangs the process in some futex
2738}; 3035};
2739 3036
2740# due to mac os x + sdl combined braindamage, we need this contortion 3037# due to mac os x + sdl combined braindamage, we need this contortion
2741sub DC::Main::main { 3038sub DC::Main::run {
2742 { 3039 DC::SDL_main_hack {
3040 {
2743 DC::Pod::load_docwiki DC::find_rcfile "docwiki.pst"; 3041 DC::Pod::load_docwiki DC::find_rcfile "docwiki.pst";
2744 3042
2745 if (-e "$Deliantra::VARDIR/client.cf") { 3043 DC::load_cfg;
2746 DC::read_cfg "$Deliantra::VARDIR/client.cf"; 3044 DC::upgrade_cfg;
2747 } else {
2748 #TODO: compatibility cruft
2749 DC::read_cfg "$Deliantra::OLDDIR/cfplusrc";
2750 print STDERR "INFO: used old configuration file\n";
2751 }
2752 3045
3046 DC::Audio::probe;
3047
2753 DC::DB::Server::run; 3048 DC::DB::Server::run;
2754 3049
2755 if ($CFG->{db_schema} < 1) { 3050 if ($CFG->{db_schema} < 1) {
2756 warn "INFO: upgrading database schema from 0 to 1, mapcache and tilecache will be lost\n"; 3051 warn "INFO: upgrading database schema from 0 to 1, mapcache and tilecache will be lost\n";
2757 DC::DB::nuke_db; 3052 DC::DB::nuke_db;
2758 $CFG->{db_schema} = 1; 3053 $CFG->{db_schema} = 1;
2759 DC::write_cfg; 3054 DC::save_cfg;
2760 }
2761
2762 DC::DB::open_db;
2763
2764 DC::UI::set_layout ($::CFG->{layout});
2765
2766 my %DEF_CFG = (
2767 config_autosave => 1,
2768 sdl_mode => undef,
2769 fullscreen => 1,
2770 fast => 0,
2771 force_opengl11 => undef,
2772 disable_alpha => 0,
2773 smooth_movement => 1,
2774 smooth_transitions => 1,
2775 texture_compression => 1,
2776 map_scale => 1,
2777 fow_enable => 1,
2778 fow_intensity => 0,
2779 fow_texture => 0,
2780 map_smoothing => 1,
2781 gui_fontsize => 1,
2782 log_fontsize => 0.7,
2783 gauge_fontsize => 1,
2784 gauge_size => 0.35,
2785 stat_fontsize => 0.7,
2786 mapsize => 100,
2787 audio_enable => 1,
2788 audio_hw_channels => 0,
2789 audio_hw_frequency => 0,
2790 audio_hw_chunksize => 0,
2791 audio_mix_channels => 8,
2792 effects_enable => 1,
2793 effects_volume => 1,
2794 bgm_enable => 1,
2795 bgm_volume => 0.5,
2796 output_rate => "",
2797 pickup => PICKUP_SPELLBOOK | PICKUP_SKILLSCROLL | PICKUP_VALUABLES,
2798 inv_sort => "mtime",
2799 default => "profile", # default profile
2800 show_tips => 1,
2801 logview_max_par => 1000,
2802 shift_fire_stop => 0,
2803 uitheme => "wood",
2804 map_shift_x => -24, # arbitrary
2805 map_shift_y => +24, # arbitrary
2806 );
2807
2808 while (my ($k, $v) = each %DEF_CFG) {
2809 $CFG->{$k} = $v unless exists $CFG->{$k};
2810 }
2811
2812 my @args = @ARGV;
2813
2814 # OS X passes some process serial number of other shit. they
2815 # could have used an env var or any other sane mechanism. but
2816 # would it be os x then? no...
2817 shift @args if $args[0] =~ /^-psn_/;
2818
2819 my $profile = 'default';
2820
2821 for (my $i = 0; $i < @args; $i++) {
2822 if ($args[$i] =~ /^--?profile$/) {
2823 $profile = $args[$i + 1];
2824 splice @args, $i, 2, ();
2825 $i = 0;
2826 } elsif ($args[$i] =~ /^--?h/) {
2827 print STDERR "Usage: $0 [--profile name] [host [user [password]]]\n";
2828 exit 0;
2829 } 3055 }
2830 }
2831 3056
2832 $CFG->{profile}{$profile} ||= {}; 3057 DC::DB::open_db;
2833 $PROFILE = $CFG->{profile}{$profile};
2834 $PROFILE->{host} ||= "gameserver.deliantra.net";
2835 3058
2836 $PROFILE->{host} = $args[0] if @args > 0; 3059 DC::UI::set_layout ($::CFG->{layout});
2837 $PROFILE->{user} = $args[1] if @args > 1;
2838 $PROFILE->{password} = $args[2] if @args > 2;
2839 3060
2840 # convert old bindings (only default profile matters) 3061 my @args = @ARGV;
2841 if (my $bindings = delete $PROFILE->{bindings}) { 3062
2842 while (my ($mod, $syms) = each %$bindings) { 3063 # OS X passes some process serial number of other shit. they
2843 while (my ($sym, $cmds) = each %$syms) { 3064 # could have used an env var or any other sane mechanism. but
2844 push @{ $PROFILE->{macro} }, { 3065 # would it be os x then? no...
2845 accelkey => [$mod*1, $sym*1], 3066 shift @args if $args[0] =~ /^-psn_/;
2846 action => $cmds, 3067
3068 my $profile = 'default';
3069
3070 for (my $i = 0; $i < @args; $i++) {
3071 if ($args[$i] =~ /^--?profile$/) {
3072 $profile = $args[$i + 1];
3073 splice @args, $i, 2, ();
2847 }; 3074 $i = 0;
3075 } elsif ($args[$i] =~ /^--?h/) {
3076 print STDERR "Usage: $0 [--profile name] [host [user [password]]]\n";
3077 exit 0;
2848 } 3078 }
2849 } 3079 }
3080
3081 $CFG->{profile}{$profile} ||= {};
3082 $PROFILE = $CFG->{profile}{$profile};
3083 $PROFILE->{host} ||= "gameserver.deliantra.net";
3084
3085 $PROFILE->{host} = $args[0] if @args > 0;
3086 $PROFILE->{user} = $args[1] if @args > 1;
3087 $PROFILE->{password} = unpack "H*", Deliantra::Util::hash_pw $args[2] if @args > 2;
3088
3089 # convert old bindings (only default profile matters)
3090 if (my $bindings = delete $PROFILE->{bindings}) {
3091 while (my ($mod, $syms) = each %$bindings) {
3092 while (my ($sym, $cmds) = each %$syms) {
3093 push @{ $PROFILE->{macro} }, {
3094 accelkey => [$mod*1, $sym*1],
3095 action => $cmds,
3096 };
3097 }
3098 }
2850 } 3099 }
2851 3100
2852 # fontconfig doesn't support relative paths anymore, so use abs_path and keep fingers crossed 3101 # fontconfig doesn't support relative paths anymore, so use abs_path and keep fingers crossed
2853 # these are ignored under windows, for some reason, and thus set in the loader 3102 # these are ignored under windows, for some reason, and thus set in the loader
2854 $ENV{FONTCONFIG_FILE} = "fonts.conf"; 3103 $ENV{FONTCONFIG_FILE} = "fonts.conf";
2855 $ENV{FONTCONFIG_PATH} = Cwd::abs_path DC::find_rcfile "fonts"; 3104 $ENV{FONTCONFIG_PATH} = Cwd::abs_path DC::find_rcfile "fonts";
2856 $ENV{FONTCONFIG_DIR} = $ENV{FONTCONFIG_PATH}; # helps with older versions 3105 $ENV{FONTCONFIG_DIR} = $ENV{FONTCONFIG_PATH}; # helps with older versions
2857 3106
2858 { 3107 {
2859 my @fonts = map DC::find_rcfile "fonts/$_", qw( 3108 my @fonts = map DC::find_rcfile "fonts/$_", qw(
2860 DejaVuSans.ttf 3109 DejaVuSans.ttf
2861 DejaVuSansMono.ttf 3110 DejaVuSansMono.ttf
2862 DejaVuSans-Bold.ttf 3111 DejaVuSans-Bold.ttf
2863 DejaVuSansMono-Bold.ttf 3112 DejaVuSansMono-Bold.ttf
2864 DejaVuSans-Oblique.ttf 3113 DejaVuSans-Oblique.ttf
2865 DejaVuSansMono-Oblique.ttf 3114 DejaVuSansMono-Oblique.ttf
2866 DejaVuSans-BoldOblique.ttf 3115 DejaVuSans-BoldOblique.ttf
2867 DejaVuSansMono-BoldOblique.ttf 3116 DejaVuSansMono-BoldOblique.ttf
2868 mona.ttf 3117 mona.ttf
2869 ); 3118 );
2870 3119
2871 DC::add_font $_ for @fonts; 3120 DC::add_font $_ for @fonts;
2872 3121
2873 $FONT_PROP = new_from_file DC::Font $fonts[0]; 3122 $FONT_PROP = new_from_file DC::Font $fonts[0];
2874 $FONT_FIXED = new_from_file DC::Font $fonts[1]; 3123 $FONT_FIXED = new_from_file DC::Font $fonts[1];
2875 3124
2876 $FONT_PROP->make_default; 3125 $FONT_PROP->make_default;
2877 3126
2878 DC::pango_init; 3127 DC::pango_init;
2879 } 3128 }
2880 3129
2881# compare mono (ft) vs. rgba (cairo) 3130# compare mono (ft) vs. rgba (cairo)
2882# ft - 1.8s, cairo 3s, even in alpha-only mode 3131# ft - 1.8s, cairo 3s, even in alpha-only mode
2883# for my $rgba (0..1) { 3132# for my $rgba (0..1) {
2884# my $t1 = Time::HiRes::time; 3133# my $t1 = Time::HiRes::time;
2889# } 3138# }
2890# my $t2 = Time::HiRes::time; 3139# my $t2 = Time::HiRes::time;
2891# warn $t2-$t1; 3140# warn $t2-$t1;
2892# } 3141# }
2893 3142
3143 }
3144
3145 DC::SDL_Init 0;
2894 DC::IMG_Init; video_init; 3146 DC::IMG_Init; video_init;
2895 DC::Mix_Init; audio_init; 3147 DC::Mix_Init; audio_init;
2896 }
2897 3148
2898 show_tip_of_the_day if $CFG->{show_tips}; 3149 show_tip_of_the_day if $CFG->{show_tips};
2899 3150
2900 my $STARTUP_CANCEL; $STARTUP_CANCEL = EV::idle sub { 3151 my $STARTUP_CANCEL; $STARTUP_CANCEL = EV::idle sub {
2901 undef $STARTUP_CANCEL; 3152 undef $STARTUP_CANCEL;
2902 (pop @::STARTUP_DONE)->() 3153 (pop @::STARTUP_DONE)->()
2903 while @::STARTUP_DONE; 3154 while @::STARTUP_DONE;
3155 };
3156
3157 debug_toggle 0;
3158
3159 delete $SIG{__DIE__};
3160 EV::loop;
3161
3162 DC::save_cfg if $CFG->{config_autosave};
3163
3164 #video_shutdown;
3165 #audio_shutdown;
3166
3167 DC::OpenGL::quit;
3168 DC::SDL_Quit;
3169 DC::DB::Server::stop;
2904 }; 3170 };
2905
2906 debug_toggle 0;
2907
2908 delete $SIG{__DIE__};
2909 EV::loop;
2910
2911 DC::write_cfg if $CFG->{config_autosave};
2912
2913 #video_shutdown;
2914 #audio_shutdown;
2915
2916 DC::OpenGL::quit;
2917 DC::SDL_Quit;
2918 DC::DB::Server::stop;
2919} 3171}
2920
2921*DC::Main::run = \&DC::SDL_braino; # see sub above
2922 3172
29231 31731

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines