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.3 by root, Thu Dec 29 07:13:44 2011 UTC vs.
Revision 1.28 by root, Wed Dec 24 06:12:21 2014 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
42} 45}
43 46
44BEGIN { 47BEGIN {
45 $SIG{__DIE__} = sub { 48 $SIG{__DIE__} = sub {
46 return if $^S; 49 return if $^S; # quick reject
50
51 # return if there are any eval contexts in the call stack
52 for my $i (0..999) {
53 my ($sub, $is_require) = (caller $i)[3, 7]
54 or last;
55 return if $sub eq "(eval)" && !$is_require;
56 }
57
47 crash "CRASH/DIE: $_[0]" => 1; 58 crash "CRASH/DIE: $_[0]" => 1;
48 DC::fatal Carp::longmess "$_[0]"; 59 DC::fatal Carp::longmess "$_[0]";
49 } 60 }
50} 61}
51 62
52use DC::OpenGL (); 63use DC::OpenGL ();
64use DC::Audio ();
53use DC::Protocol; 65use DC::Protocol;
54use DC::DB; 66use DC::DB;
55use DC::UI; 67use DC::UI;
56use DC::UI::Canvas; 68use DC::UI::Canvas;
57use DC::UI::Inventory; 69use DC::UI::Inventory;
117our $MENUBAR; # the hbox at the top 129our $MENUBAR; # the hbox at the top
118our $MENUPOPUP; 130our $MENUPOPUP;
119our $BUTTONBAR; # the menu buttons 131our $BUTTONBAR; # the menu buttons
120our $METASERVER; 132our $METASERVER;
121our $LOGIN_BUTTON; 133our $LOGIN_BUTTON;
134our $LOGIN_ERROR;
122our $QUIT_DIALOG; 135our $QUIT_DIALOG;
123our $HOST_ENTRY; 136our $HOST_ENTRY;
124our $FULLSCREEN_ENABLE; 137our $FULLSCREEN_ENABLE;
125our $PICKUP_ENABLE; 138our $PICKUP_ENABLE;
126our $SERVER_INFO; 139our $SERVER_INFO;
134our $PL_NOTEBOOK; 147our $PL_NOTEBOOK;
135our $PL_WINDOW; 148our $PL_WINDOW;
136 149
137our $MUSIC_PLAYING_WIDGET; 150our $MUSIC_PLAYING_WIDGET;
138our $LICENSE_WIDGET; 151our $LICENSE_WIDGET;
152our $DOWNLOADS_WIDGET;
139 153
140our $PICKUP_PAGE; 154our $PICKUP_PAGE;
141our $INVENTORY_PAGE; 155our $INVENTORY_PAGE;
142our $STATS_PAGE; 156our $STATS_PAGE;
143our $SKILL_PAGE; 157our $SKILL_PAGE;
186 AnyEvent::Util::fh_nonblocking $fh, 1; 200 AnyEvent::Util::fh_nonblocking $fh, 1;
187 201
188 $msg =~ s/\s+$//; 202 $msg =~ s/\s+$//;
189 203
190 # backtrace as second step, in case it crashes, too 204 # backtrace as second step, in case it crashes, too
191 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"
192 if $backtrace; 206 if $backtrace;
193}; 207};
194 208
195sub clienterror($;$) { 209sub clienterror($;$) {
196 my ($msg, $backtrace) = @_; 210 my ($msg, $backtrace) = @_;
198 warn $msg; 212 warn $msg;
199 213
200 return unless $CONN; 214 return unless $CONN;
201 215
202 $CONN->send_exti_msg (clientlog => $msg); 216 $CONN->send_exti_msg (clientlog => $msg);
203 $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;
204} 218}
205 219
206############################################################################# 220#############################################################################
207 221
208sub status { 222sub status {
239 : "[<span foreground='#888'>num</span>]"; 253 : "[<span foreground='#888'>num</span>]";
240 254
241 # <tt> around next statement works around some bug that keeps the 255 # <tt> around next statement works around some bug that keeps the
242 # "font =>" from being used on windows 256 # "font =>" from being used on windows
243 $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;
244} 292}
245 293
246############################################################################# 294#############################################################################
247#TODO: maybe move into own audio module... 295#TODO: maybe move into own audio module...
248 296
463 audio_music_push; 511 audio_music_push;
464} 512}
465 513
466sub audio_init { 514sub audio_init {
467 if ($CFG->{audio_enable}) { 515 if ($CFG->{audio_enable}) {
468 if (length $CFG->{audio_driver}) { 516 DC::Audio::init;
469 local $ENV{SDL_AUDIODRIVER} = $CFG->{audio_driver};
470 DC::SDL_Init DC::SDL_INIT_AUDIO
471 and die "SDL::Init failed!\n";
472 } else {
473 DC::SDL_Init DC::SDL_INIT_AUDIO
474 and die "SDL::Init failed!\n";
475 }
476
477 $ENV{MIX_EFFECTSMAXSPEED} = 1;
478 $SDL_MIXER = !DC::Mix_OpenAudio
479 $CFG->{audio_hw_frequency},
480 DC::MIX_DEFAULT_FORMAT,
481 $CFG->{audio_hw_channels},
482 $CFG->{audio_hw_chunksize};
483 517
484 if ($SDL_MIXER) { 518 if ($SDL_MIXER) {
485 DC::Mix_AllocateChannels $CFG->{audio_mix_channels};
486
487 audio_music_finished; 519 audio_music_finished;
488 } else { 520 } else {
489 status "Unable to open sound device: there will be no sound"; 521 status "Unable to open sound device: there will be no sound";
490 } 522 }
491 } else { 523 } else {
513 545
514 DC::Mix_CloseAudio if $SDL_MIXER; 546 DC::Mix_CloseAudio if $SDL_MIXER;
515 undef $SDL_MIXER; 547 undef $SDL_MIXER;
516 548
517 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 });
518} 733}
519 734
520############################################################################# 735#############################################################################
521 736
522sub destroy_query_dialog { 737sub destroy_query_dialog {
749 $vbox->add (@dialog); 964 $vbox->add (@dialog);
750 $dialog->show; 965 $dialog->show;
751} 966}
752 967
753sub dc_connect { 968sub dc_connect {
754 my ($host, $port) = @_; 969 my ($host, $port, $create) = @_;
755 970
756 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;
757 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;
758 973
759 $CONN = 974 $CONN =
760 new DC::Protocol 975 new DC::Protocol
761 host => $host, 976 host => $host,
762 port => $port, 977 port => $port,
978 create_login => $create,
763 user => $PROFILE->{user}, 979 user => $PROFILE->{user},
764 pass => $PROFILE->{password}, 980 pass => (pack "H*", $PROFILE->{password}),
765 mapw => $mapw, 981 mapw => $mapw,
766 maph => $maph, 982 maph => $maph,
767 983
768 c_version => { 984 c_version => {
769 client => "deliantra", 985 client => "deliantra",
770 clientver => $DC::VERSION, 986 clientver => "$DC::VERSION$Urlader::EXE_VER",
771 gl_vendor => DC::OpenGL::gl_vendor, 987 gl_vendor => DC::OpenGL::gl_vendor,
772 gl_version => DC::OpenGL::gl_version, 988 gl_version => DC::OpenGL::gl_version,
773 }, 989 },
774 990
775 map_widget => $MAPWIDGET, 991 map_widget => $MAPWIDGET,
784 1000
785 on_connect => sub { 1001 on_connect => sub {
786 if ($_[0]) { 1002 if ($_[0]) {
787 DC::lowdelay fileno $CONN->{fh}; 1003 DC::lowdelay fileno $CONN->{fh};
788 1004
1005 ota_update_check;
1006
789 status "successfully connected to the server"; 1007 status "successfully connected to the server";
790 } else { 1008 } else {
791 undef $CONN; 1009 undef $CONN;
792 status "unable to connect: $!"; 1010 $LOGIN_ERROR->{fg} = [1, 0, 0];
1011 $LOGIN_ERROR->set_text ("Unable to connect to server: $!");
793 stop_game(); 1012 stop_game();
794 } 1013 }
795 }, 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 },
796 ; 1022 ;
797} 1023}
798 1024
799sub start_game { 1025sub start_game($) {
1026 my ($create) = @_;
1027
800 status "logging in..."; 1028 status "logging in...";
801 1029
802 my $server = $PROFILE->{host} || $DEFAULT_SERVER; 1030 my $server = $PROFILE->{host} || $DEFAULT_SERVER;
803 my ($host, $port) = AnyEvent::Socket::parse_hostport $server, "deliantra=13327" 1031 my ($host, $port) = AnyEvent::Socket::parse_hostport $server, "deliantra=13327"
804 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.";
819 status "dns failure, using hardcoded address"; 1047 status "dns failure, using hardcoded address";
820 $host = "194.126.175.154"; 1048 $host = "194.126.175.154";
821 } 1049 }
822 } 1050 }
823 1051
824 dc_connect $host, $port; 1052 dc_connect $host, $port, $create;
825 }; 1053 };
826 } else { 1054 } else {
827 dc_connect $host, $port; 1055 dc_connect $host, $port, $create;
828 } 1056 }
829} 1057}
830 1058
831sub stop_game { 1059sub stop_game {
832 crash "stop_game"; 1060 crash "stop_game";
950 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Compress Textures"); 1178 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Compress Textures");
951 $table->add_at (1, $row++, new DC::UI::CheckBox 1179 $table->add_at (1, $row++, new DC::UI::CheckBox
952 state => $CFG->{texture_compression}, 1180 state => $CFG->{texture_compression},
953 tooltip => "Use texture compression. Normally this will not reduce visual quality noticable but " 1181 tooltip => "Use texture compression. Normally this will not reduce visual quality noticable but "
954 . "will save a lot of memory and increase performance (and also fall prey to the ever-buggy Mac OS X software renderer). " 1182 . "will save a lot of memory and increase performance (and also fall prey to the ever-buggy Mac OS X software renderer). "
955 . "The compression algorithm can differ form card to card, so your mileage may vary. This setting is ignored in " 1183 . "The compression algorithm can differ from card to card, so your mileage may vary. This setting is ignored in "
956 . "forced OpenGL 1.1 mode and when using the Apple renderer.", 1184 . "forced OpenGL 1.1 mode and when using the Apple renderer.",
957 on_changed => sub { my ($self, $value) = @_; $CFG->{texture_compression} = $value; 0 } 1185 on_changed => sub { my ($self, $value) = @_; $CFG->{texture_compression} = $value; 0 }
958 ); 1186 );
959 1187
960 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Fast & Ugly"); 1188 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Fast & Ugly");
1665 $vbox->add (new DC::UI::FancyFrame 1893 $vbox->add (new DC::UI::FancyFrame
1666 label => "Login Settings", 1894 label => "Login Settings",
1667 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]),
1668 ); 1896 );
1669 1897
1898 my $nullpw = "\x00" x 16;
1899
1670 $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");
1671 $table->add_at (1, 4, new DC::UI::Entry 1901 $table->add_at (1, 0, new DC::UI::Entry
1672 text => $PROFILE->{user}, 1902 text => $PROFILE->{user},
1673 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!",
1674 on_changed => sub { my ($self, $value) = @_; $PROFILE->{user} = $value; 1 } 1904 on_changed => sub { my ($self, $value) = @_; $PROFILE->{user} = $value; 1 }
1675 ); 1905 );
1676 1906
1677 $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");
1678 $table->add_at (1, 5, new DC::UI::Entry 1908 $table->add_at (1, 1, my $pw1 = new DC::UI::Entry
1679 text => $PROFILE->{password}, 1909 text => $PROFILE->{password} ? $nullpw : "",
1680 hidden => 1, 1910 hidden => 1,
1681 tooltip => "The password for your character.", 1911 tooltip => "The password for your character.",
1682 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} = unpack "H*", Deliantra::Util::hash_pw $value
1921 if length $value && $value ne $nullpw;
1922 1
1923 },
1683 ); 1924 );
1684 1925
1685 $table->add_at (1, 11, $LOGIN_BUTTON = new DC::UI::Button 1926 $table->add_at (1, 2, $LOGIN_BUTTON = new DC::UI::Button
1686 expand => 1, 1927 expand => 1,
1687 text => "Login / Register", 1928 text => "Login to Existing Account",
1688 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.",
1689 on_activate => sub { 1930 on_activate => sub {
1690 $CONN ? stop_game 1931 $CONN ? stop_game
1691 : start_game; 1932 : start_game 0;
1692 1 1933 1
1693 }, 1934 },
1694 ); 1935 );
1695 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, from the server.",
1961 child => ($LOGIN_ERROR = new DC::UI::Label valign => 0, ellipsise => 0),
1962 );
1963
1696 $vbox->add (new DC::UI::FancyFrame 1964 $vbox->add (new DC::UI::FancyFrame
1697 label => "How to Play", 1965 label => "How to Play",
1698 min_h => 240, 1966 min_h => 240,#d# should not be necessary - widget bug
1699 child => (new DC::UI::Label valign => 0, ellipsise => 0, 1967 child => (new DC::UI::Label valign => 0, ellipsise => 0,
1700 markup => 1968 markup =>
1701 "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"
1702 . "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"
1703 . "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 "
1704 . "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>.",
1705 ), 1973 ),
1706 ); 1974 );
1707 1975
1708 $vbox 1976 $vbox
1709} 1977}
1827 $table->add_at (2, $row++, new DC::UI::Button 2095 $table->add_at (2, $row++, new DC::UI::Button
1828 text => "Save Now", 2096 text => "Save Now",
1829 tooltip => "Use this to manually save configuration and UI layout when " 2097 tooltip => "Use this to manually save configuration and UI layout when "
1830 . "autosave is disabled.", 2098 . "autosave is disabled.",
1831 on_activate => sub { 2099 on_activate => sub {
1832 DC::write_cfg; 2100 DC::save_cfg;
1833 0 2101 0
1834 } 2102 }
1835 ); 2103 );
1836 } 2104 }
1837 2105
1842 2110
1843 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Data Directory"); 2111 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Data Directory");
1844 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $Deliantra::VARDIR, tooltip => ""); 2112 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $Deliantra::VARDIR, tooltip => "");
1845 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Database Directory"); 2113 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Database Directory");
1846 $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 => "");
2115 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Urlader (Prebuilt)");
2116 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_VERSION}, tooltip => "");
1847 $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)");
1848 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $::EXE_ID, tooltip => ""); 2118 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_ID}, tooltip => "");
1849 $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)");
1850 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $::EXE_VER, tooltip => ""); 2120 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $ENV{URLADER_EXE_VER}, tooltip => "");
1851 $table->add_at (0, $row , new DC::UI::Label align => 1, text => "Update (Prebuilt)");
1852 $table->add_at (1, $row++, new DC::UI::Label align => 0, text => $::UPDPAR, tooltip => "");
1853 } 2121 }
1854 2122
1855 $vbox 2123 $vbox
1856} 2124}
1857 2125
2031 2299
2032sub media_window { 2300sub media_window {
2033 my $vb = new DC::UI::VBox; 2301 my $vb = new DC::UI::VBox;
2034 2302
2035 $vb->add (new DC::UI::FancyFrame 2303 $vb->add (new DC::UI::FancyFrame
2036 label => "Currently playing music", 2304 label => "Current background music",
2037 child => new DC::UI::ScrolledWindow scroll_x => 1, scroll_y => 0, 2305 child => new DC::UI::ScrolledWindow scroll_x => 1, scroll_y => 0,
2038 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),
2039 ); 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 });
2040 2343
2041 $vb->add (new DC::UI::FancyFrame 2344 $vb->add (new DC::UI::FancyFrame
2042 label => "Other media used in this session", 2345 label => "Other media used in this session",
2043 expand => 1, 2346 expand => 1,
2044 child => ($LICENSE_WIDGET = new DC::UI::TextScroller 2347 child => ($LICENSE_WIDGET = new DC::UI::TextScroller
2045 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4), 2348 expand => 1, fontsize => 0.8, padding_x => 4, padding_y => 4),
2046 ); 2349 );
2047 2350
2048 $vb 2351 $vb
2049} 2352}
2050 2353
2235sub open_quit_dialog { 2538sub open_quit_dialog {
2236 unless ($QUIT_DIALOG) { 2539 unless ($QUIT_DIALOG) {
2237 $QUIT_DIALOG = new DC::UI::Toplevel 2540 $QUIT_DIALOG = new DC::UI::Toplevel
2238 x => "center", 2541 x => "center",
2239 y => "center", 2542 y => "center",
2240 z => 50, 2543 z => 60,
2241 title => "Really Quit?", 2544 title => "Really Quit?",
2242 on_key_down => sub { 2545 on_key_down => sub {
2243 my ($dialog, $ev) = @_; 2546 my ($dialog, $ev) = @_;
2244 $ev->{sym} == 27 and $dialog->hide; 2547 $ev->{sym} == 27 and $dialog->hide;
2245 } 2548 }
2292 make_playerbook; 2595 make_playerbook;
2293 2596
2294 $MENUPOPUP = DC::UI::Menu->new (items => [ 2597 $MENUPOPUP = DC::UI::Menu->new (items => [
2295 ["Setup…\tF9" , sub { $SETUP_DIALOG->toggle_visibility }], 2598 ["Setup…\tF9" , sub { $SETUP_DIALOG->toggle_visibility }],
2296 ["Playerbook…\tTab" , sub { $PL_WINDOW ->toggle_visibility }], 2599 ["Playerbook…\tTab" , sub { $PL_WINDOW ->toggle_visibility }],
2297 ["…Statistics\tF2" , sub { toggle_player_page ($::STATS_PAGE) }], 2600 ["…Statistics\tF2" , sub { toggle_player_page ($::STATS_PAGE) }],
2298 ["…Skills\tF3" , sub { toggle_player_page ($::SKILL_PAGE) }], 2601 ["…Skills\tF3" , sub { toggle_player_page ($::SKILL_PAGE) }],
2299 ["…Spells\tF4" , sub { toggle_player_page ($::SPELL_PAGE) }], 2602 ["…Spells\tF4" , sub { toggle_player_page ($::SPELL_PAGE) }],
2300 ["…Inventory\tF5" , sub { toggle_player_page ($::INVENTORY_PAGE) }], 2603 ["…Inventory\tF5" , sub { toggle_player_page ($::INVENTORY_PAGE) }],
2301 ["Help Browser…\tF1" , sub { $HELP_WINDOW ->toggle_visibility }], 2604 ["Help Browser…\tF1" , sub { $HELP_WINDOW ->toggle_visibility }],
2302 ["Quit…" , sub { 2605 ["Quit…" , sub {
2303 if ($CONN) { 2606 if ($CONN) {
2438 DC::set_theme $CFG->{uitheme}; 2741 DC::set_theme $CFG->{uitheme};
2439 2742
2440 DC::SDL_InitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT; 2743 DC::SDL_InitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT;
2441 $SDL_REINIT = 0; 2744 $SDL_REINIT = 0;
2442 2745
2443 @SDL_MODES = DC::SDL_ListModes 8, $CFG->{disable_alpha} ? 0 : 8; 2746 @SDL_MODES = DC::SDL_ListModes 8, $CFG->{disable_alpha} ? 0 : 2;
2444 @SDL_MODES = DC::SDL_ListModes 8, 8 unless @SDL_MODES; 2747 @SDL_MODES = DC::SDL_ListModes 8, 8 unless @SDL_MODES;
2445 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES; 2748 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES;
2446 @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)";
2447 2750
2448 @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;
2461 my ($old_w, $old_h) = ($WIDTH, $HEIGHT); 2764 my ($old_w, $old_h) = ($WIDTH, $HEIGHT);
2462 2765
2463 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] }; 2766 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
2464 $FULLSCREEN = $CFG->{fullscreen}; 2767 $FULLSCREEN = $CFG->{fullscreen};
2465 $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
2466 2771
2467 # 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
2468 DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, $FULLSCREEN 2773 DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, $FULLSCREEN
2469 or DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, !$FULLSCREEN 2774 or DC::SDL_SetVideoMode $WIDTH, $HEIGHT, $rgb, $alpha, !$FULLSCREEN
2470 or die "SDL_SetVideoMode failed: " . (DC::SDL_GetError) . "\n"; 2775 or die "SDL_SetVideoMode failed: " . (DC::SDL_GetError) . "\n";
2728 EV::unloop; 3033 EV::unloop;
2729 #d# TODO calling exit here hangs the process in some futex 3034 #d# TODO calling exit here hangs the process in some futex
2730}; 3035};
2731 3036
2732# 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
2733sub DC::Main::main { 3038sub DC::Main::run {
2734 { 3039 DC::SDL_main_hack {
3040 {
2735 DC::Pod::load_docwiki DC::find_rcfile "docwiki.pst"; 3041 DC::Pod::load_docwiki DC::find_rcfile "docwiki.pst";
2736 3042
2737 if (-e "$Deliantra::VARDIR/client.cf") { 3043 DC::load_cfg;
2738 DC::read_cfg "$Deliantra::VARDIR/client.cf"; 3044 DC::upgrade_cfg;
2739 } else {
2740 #TODO: compatibility cruft
2741 DC::read_cfg "$Deliantra::OLDDIR/cfplusrc";
2742 print STDERR "INFO: used old configuration file\n";
2743 }
2744 3045
3046 DC::Audio::probe;
3047
2745 DC::DB::Server::run; 3048 DC::DB::Server::run;
2746 3049
2747 if ($CFG->{db_schema} < 1) { 3050 if ($CFG->{db_schema} < 1) {
2748 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";
2749 DC::DB::nuke_db; 3052 DC::DB::nuke_db;
2750 $CFG->{db_schema} = 1; 3053 $CFG->{db_schema} = 1;
2751 DC::write_cfg; 3054 DC::save_cfg;
2752 }
2753
2754 DC::DB::open_db;
2755
2756 DC::UI::set_layout ($::CFG->{layout});
2757
2758 my %DEF_CFG = (
2759 config_autosave => 1,
2760 sdl_mode => undef,
2761 fullscreen => 1,
2762 fast => 0,
2763 force_opengl11 => undef,
2764 disable_alpha => 0,
2765 smooth_movement => 1,
2766 smooth_transitions => 1,
2767 texture_compression => 1,
2768 map_scale => 1,
2769 fow_enable => 1,
2770 fow_intensity => 0,
2771 fow_texture => 0,
2772 map_smoothing => 1,
2773 gui_fontsize => 1,
2774 log_fontsize => 0.7,
2775 gauge_fontsize => 1,
2776 gauge_size => 0.35,
2777 stat_fontsize => 0.7,
2778 mapsize => 100,
2779 audio_enable => 1,
2780 audio_hw_channels => 0,
2781 audio_hw_frequency => 0,
2782 audio_hw_chunksize => 0,
2783 audio_mix_channels => 8,
2784 effects_enable => 1,
2785 effects_volume => 1,
2786 bgm_enable => 1,
2787 bgm_volume => 0.5,
2788 output_rate => "",
2789 pickup => PICKUP_SPELLBOOK | PICKUP_SKILLSCROLL | PICKUP_VALUABLES,
2790 inv_sort => "mtime",
2791 default => "profile", # default profile
2792 show_tips => 1,
2793 logview_max_par => 1000,
2794 shift_fire_stop => 0,
2795 uitheme => "wood",
2796 map_shift_x => -24, # arbitrary
2797 map_shift_y => +24, # arbitrary
2798 );
2799
2800 while (my ($k, $v) = each %DEF_CFG) {
2801 $CFG->{$k} = $v unless exists $CFG->{$k};
2802 }
2803
2804 my @args = @ARGV;
2805
2806 # OS X passes some process serial number of other shit. they
2807 # could have used an env var or any other sane mechanism. but
2808 # would it be os x then? no...
2809 shift @args if $args[0] =~ /^-psn_/;
2810
2811 my $profile = 'default';
2812
2813 for (my $i = 0; $i < @args; $i++) {
2814 if ($args[$i] =~ /^--?profile$/) {
2815 $profile = $args[$i + 1];
2816 splice @args, $i, 2, ();
2817 $i = 0;
2818 } elsif ($args[$i] =~ /^--?h/) {
2819 print STDERR "Usage: $0 [--profile name] [host [user [password]]]\n";
2820 exit 0;
2821 } 3055 }
2822 }
2823 3056
2824 $CFG->{profile}{$profile} ||= {}; 3057 DC::DB::open_db;
2825 $PROFILE = $CFG->{profile}{$profile};
2826 $PROFILE->{host} ||= "gameserver.deliantra.net";
2827 3058
2828 $PROFILE->{host} = $args[0] if @args > 0; 3059 DC::UI::set_layout ($::CFG->{layout});
2829 $PROFILE->{user} = $args[1] if @args > 1;
2830 $PROFILE->{password} = $args[2] if @args > 2;
2831 3060
2832 # convert old bindings (only default profile matters) 3061 my @args = @ARGV;
2833 if (my $bindings = delete $PROFILE->{bindings}) { 3062
2834 while (my ($mod, $syms) = each %$bindings) { 3063 # OS X passes some process serial number of other shit. they
2835 while (my ($sym, $cmds) = each %$syms) { 3064 # could have used an env var or any other sane mechanism. but
2836 push @{ $PROFILE->{macro} }, { 3065 # would it be os x then? no...
2837 accelkey => [$mod*1, $sym*1], 3066 shift @args if $args[0] =~ /^-psn_/;
2838 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, ();
2839 }; 3074 $i = 0;
3075 } elsif ($args[$i] =~ /^--?h/) {
3076 print STDERR "Usage: $0 [--profile name] [host [user [password]]]\n";
3077 exit 0;
2840 } 3078 }
2841 } 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 }
2842 } 3099 }
2843 3100
2844 # 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
3102 # these are ignored under windows, for some reason, and thus set in the loader
2845 $ENV{FONTCONFIG_FILE} = "fonts.conf"; 3103 $ENV{FONTCONFIG_FILE} = "fonts.conf";
2846 $ENV{FONTCONFIG_PATH} = Cwd::abs_path DC::find_rcfile "fonts"; 3104 $ENV{FONTCONFIG_PATH} = Cwd::abs_path DC::find_rcfile "fonts";
2847 $ENV{FONTCONFIG_DIR} = $ENV{FONTCONFIG_PATH}; 3105 $ENV{FONTCONFIG_DIR} = $ENV{FONTCONFIG_PATH}; # helps with older versions
2848 3106
2849 { 3107 {
2850 my @fonts = map DC::find_rcfile "fonts/$_", qw( 3108 my @fonts = map DC::find_rcfile "fonts/$_", qw(
2851 DejaVuSans.ttf 3109 DejaVuSans.ttf
2852 DejaVuSansMono.ttf 3110 DejaVuSansMono.ttf
2853 DejaVuSans-Bold.ttf 3111 DejaVuSans-Bold.ttf
2854 DejaVuSansMono-Bold.ttf 3112 DejaVuSansMono-Bold.ttf
2855 DejaVuSans-Oblique.ttf 3113 DejaVuSans-Oblique.ttf
2856 DejaVuSansMono-Oblique.ttf 3114 DejaVuSansMono-Oblique.ttf
2857 DejaVuSans-BoldOblique.ttf 3115 DejaVuSans-BoldOblique.ttf
2858 DejaVuSansMono-BoldOblique.ttf 3116 DejaVuSansMono-BoldOblique.ttf
2859 mona.ttf 3117 mona.ttf
2860 ); 3118 );
2861 3119
2862 DC::add_font $_ for @fonts; 3120 DC::add_font $_ for @fonts;
2863 3121
2864 $FONT_PROP = new_from_file DC::Font $fonts[0]; 3122 $FONT_PROP = new_from_file DC::Font $fonts[0];
2865 $FONT_FIXED = new_from_file DC::Font $fonts[1]; 3123 $FONT_FIXED = new_from_file DC::Font $fonts[1];
2866 3124
2867 $FONT_PROP->make_default; 3125 $FONT_PROP->make_default;
2868 3126
2869 DC::pango_init; 3127 DC::pango_init;
2870 } 3128 }
2871 3129
2872# compare mono (ft) vs. rgba (cairo) 3130# compare mono (ft) vs. rgba (cairo)
2873# ft - 1.8s, cairo 3s, even in alpha-only mode 3131# ft - 1.8s, cairo 3s, even in alpha-only mode
2874# for my $rgba (0..1) { 3132# for my $rgba (0..1) {
2875# my $t1 = Time::HiRes::time; 3133# my $t1 = Time::HiRes::time;
2880# } 3138# }
2881# my $t2 = Time::HiRes::time; 3139# my $t2 = Time::HiRes::time;
2882# warn $t2-$t1; 3140# warn $t2-$t1;
2883# } 3141# }
2884 3142
3143 }
3144
3145 DC::SDL_Init 0;
2885 DC::IMG_Init; video_init; 3146 DC::IMG_Init; video_init;
2886 DC::Mix_Init; audio_init; 3147 DC::Mix_Init; audio_init;
2887 }
2888 3148
2889 show_tip_of_the_day if $CFG->{show_tips}; 3149 show_tip_of_the_day if $CFG->{show_tips};
2890 3150
2891 my $STARTUP_CANCEL; $STARTUP_CANCEL = EV::idle sub { 3151 my $STARTUP_CANCEL; $STARTUP_CANCEL = EV::idle sub {
2892 undef $STARTUP_CANCEL; 3152 undef $STARTUP_CANCEL;
2893 (pop @::STARTUP_DONE)->() 3153 (pop @::STARTUP_DONE)->()
2894 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;
2895 }; 3170 };
2896
2897 debug_toggle 0;
2898
2899 delete $SIG{__DIE__};
2900 EV::loop;
2901
2902 DC::write_cfg if $CFG->{config_autosave};
2903
2904 #video_shutdown;
2905 #audio_shutdown;
2906
2907 DC::OpenGL::quit;
2908 DC::SDL_Quit;
2909 DC::DB::Server::stop;
2910} 3171}
2911
2912*DC::Main::run = \&DC::SDL_braino; # see sub above
2913 3172
29141 31731

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines