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

Comparing deliantra/Deliantra-Client/bin/deliantra (file contents):
Revision 1.47 by root, Mon Jul 7 05:02:03 2008 UTC vs.
Revision 1.54 by root, Fri Jul 18 22:56:11 2008 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2
3{
4package Deliantra::Client; # work around CPAN breakage
5}
6 2
7if ($ENV{DELIANTRA_CORO_DEBUG}) { 3if ($ENV{DELIANTRA_CORO_DEBUG}) {
8 eval ' 4 eval '
9 use Coro; 5 use Coro;
10 use Coro::EV; 6 use Coro::EV;
102 98
103use Deliantra; 99use Deliantra;
104use Deliantra::Protocol::Constants; 100use Deliantra::Protocol::Constants;
105 101
106use AnyEvent::DNS; 102use AnyEvent::DNS;
103use AnyEvent::Socket ();
107 104
108use Compress::LZF; 105use Compress::LZF;
109 106
110use DC; 107use DC;
111BEGIN { $SIG{__DIE__} = sub { DC::fatal Carp::longmess "$@" unless $^S } } 108BEGIN { $SIG{__DIE__} = sub { DC::fatal Carp::longmess "$_[0]" unless $^S } }
112use DC::OpenGL (); 109use DC::OpenGL ();
113use DC::Protocol; 110use DC::Protocol;
114use DC::DB; 111use DC::DB;
115use DC::UI; 112use DC::UI;
116use DC::UI::Canvas; 113use DC::UI::Canvas;
144our $PROFILE; # current profile 141our $PROFILE; # current profile
145our $FAST; # fast, low-quality mode, possibly useful for software-rendering 142our $FAST; # fast, low-quality mode, possibly useful for software-rendering
146 143
147our $WANT_REFRESH; 144our $WANT_REFRESH;
148 145
146our $MODE_SLIDER;
147our $CAVEAT_LABEL;
148
149our @SDL_MODES; 149our @SDL_MODES;
150our $SDL_REINIT = 1;
150our $WIDTH; 151our $WIDTH;
151our $HEIGHT; 152our $HEIGHT;
152our $FULLSCREEN; 153our $FULLSCREEN;
153our $FONTSIZE; 154our $FONTSIZE;
154 155
740 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32; 741 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
741 742
742 $CONN = 743 $CONN =
743 new DC::Protocol 744 new DC::Protocol
744 host => $host, 745 host => $host,
745 port => $port || 13327, 746 port => $port,
746 user => $PROFILE->{user}, 747 user => $PROFILE->{user},
747 pass => $PROFILE->{password}, 748 pass => $PROFILE->{password},
748 mapw => $mapsize, 749 mapw => $mapsize,
749 maph => $mapsize, 750 maph => $mapsize,
750 751
778 status "logging in..."; 779 status "logging in...";
779 780
780 $LOGIN_BUTTON->set_text ("Logout"); 781 $LOGIN_BUTTON->set_text ("Logout");
781 $SETUP_DIALOG->hide; 782 $SETUP_DIALOG->hide;
782 783
783 my ($host, $port) = split /:/, $PROFILE->{host}; 784 my ($host, $port) = AnyEvent::Socket::parse_hostport $PROFILE->{host}, "deliantra=13327";
784 785
785 $MAP = new DC::Map; 786 $MAP = new DC::Map;
786 787
787 # hack to make SURE we find the IP address all right 788 # hack to make SURE we find the IP address all right
788 # can be removed once AnyEvent::DNS is proven stable. 789 # can be removed once AnyEvent::DNS is proven stable.
831 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "OpenGL Info"); 832 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "OpenGL Info");
832 $table->add_at (1, $row++, new DC::UI::Label fontsize => 0.8, text => DC::OpenGL::gl_vendor . ", " . DC::OpenGL::gl_version, 833 $table->add_at (1, $row++, new DC::UI::Label fontsize => 0.8, text => DC::OpenGL::gl_vendor . ", " . DC::OpenGL::gl_version,
833 can_events => 1, 834 can_events => 1,
834 tooltip => "<tt><span size='8192'>" . (DC::OpenGL::gl_extensions) . "</span></tt>"); 835 tooltip => "<tt><span size='8192'>" . (DC::OpenGL::gl_extensions) . "</span></tt>");
835 836
837 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Caveats");
838 $table->add_at (1, $row++, $CAVEAT_LABEL = new DC::UI::Label fontsize => 0.8,
839 can_events => 1,
840 tooltip => "This field shows any known issues with your config or driver, such as "
841 . "a non-accelerated display format. You can try to work around these issues "
842 . "by selecting a different video mode, changing the settings below or "
843 . "by installing the right driver for your graphics card.");
844
836 my $vidmode_tooltip = 845 my $vidmode_tooltip =
837 "<b>Video Mode.</b> The video mode to use for fullscreen (and the window size for windowed operation). " 846 "<b>Video Mode.</b> The video mode to use for fullscreen (and the window size for windowed operation). "
838 . "The format is <i>width</i> x <i>height</i> \@ <i>depth-per-channel</i> + <i>alpha-channel</i>."; 847 . "The format is <i>width</i> x <i>height</i> \@ <i>depth-per-channel</i> + <i>alpha-channel</i>.";
839 848
840 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Video Mode"); 849 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Video Mode");
841 $table->add_at (1, $row++, my $hbox = new DC::UI::HBox); 850 $table->add_at (1, $row++, my $hbox = new DC::UI::HBox);
842 851
843 $hbox->add (my $mode_slider = new DC::UI::Slider 852 $hbox->add ($MODE_SLIDER = new DC::UI::Slider
844 force_w => $WIDTH * 0.1, expand => 1, range => [$CFG->{sdl_mode}, 0, $#SDL_MODES, 0, 1], 853 force_w => $WIDTH * 0.1, expand => 1,
845 tooltip => $vidmode_tooltip); 854 tooltip => $vidmode_tooltip);
846 $hbox->add (my $mode_label = new DC::UI::Label 855 $hbox->add (my $mode_label = new DC::UI::Label
847 height => 0.8, template => "9999x9999@9+9", 856 height => 0.8, template => "9999x9999@9+9",
848 can_events => 1, tooltip => $vidmode_tooltip); 857 can_events => 1, tooltip => $vidmode_tooltip);
849 858
850 $mode_slider->connect (changed => sub { 859 $MODE_SLIDER->connect (changed => sub {
851 my ($self, $value) = @_; 860 my ($self, $value) = @_;
852 861
853 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value; 862 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
854 $mode_label->set_text (sprintf '%dx%d@%d+%d', @{$SDL_MODES[$value]}); 863 $mode_label->set_text (sprintf '%dx%d@%d+%d', @{$SDL_MODES[$value]});
855 }); 864 });
856 $mode_slider->emit (changed => $mode_slider->{range}[0]); 865 $MODE_SLIDER->emit (changed => $MODE_SLIDER->{range}[0]);
857 866
858 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Fullscreen"); 867 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Fullscreen");
859 $table->add_at (1, $row++, $FULLSCREEN_ENABLE = new DC::UI::CheckBox 868 $table->add_at (1, $row++, $FULLSCREEN_ENABLE = new DC::UI::CheckBox
860 state => $CFG->{fullscreen}, 869 state => $CFG->{fullscreen},
861 tooltip => "Bring the client into fullscreen mode.", 870 tooltip => "Bring the client into fullscreen mode.",
867 state => $CFG->{force_opengl11}, 876 state => $CFG->{force_opengl11},
868 tooltip => "Limit Deliantra to use OpenGL 1.1 features only. This will normally result in " 877 tooltip => "Limit Deliantra to use OpenGL 1.1 features only. This will normally result in "
869 . "higher memory usage and slower performance. It will, however, help tremendously on " 878 . "higher memory usage and slower performance. It will, however, help tremendously on "
870 . "cards that claim to support a feature but fall back to software rendering. " 879 . "cards that claim to support a feature but fall back to software rendering. "
871 . "Nvidia Geforce FX cards are known to claim features the hardware doesn't support, " 880 . "Nvidia Geforce FX cards are known to claim features the hardware doesn't support, "
872 . "but cards and drivers from other vendors (ATI) are often just as bad. <b>If you " 881 . "but cards and drivers from other vendors (ATI) are often just as bad. "
873 . "experience extremely low framerates and your card should do better, try this option.</b>", 882 . "<b>If you experience extremely low framerates and your card should do better, try this option.</b>",
874 on_changed => sub { my ($self, $value) = @_; $CFG->{force_opengl11} = $value; 0 } 883 on_changed => sub { my ($self, $value) = @_; $CFG->{force_opengl11} = $value; 0 }
884 );
885
886 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Forbid Alpha");
887 $table->add_at (1, $row++, new DC::UI::CheckBox
888 state => $CFG->{disable_alpha},
889 tooltip => "Forbid off the use of the alpha channel. This makes Deliantra look a lot worse "
890 . "by disabling a number of textures and transparency effects. Normally, these "
891 . "effects do not cost a lot of resources, but some graphics cards might fall "
892 . "back to etxremely slow rendering if this is enabled. If disabling this option "
893 . "noticably improves the framerate of the client please report this! "
894 . "<b>If you experience extremely low framerates and your card should do better, try this option.</b>",
895 on_changed => sub {
896 my ($self, $value) = @_;
897 $CFG->{disable_alpha} = $value;
898 $SDL_REINIT = 1; # SDL_SetVideoMode ignores GL attr changes
899 0
900 }
875 ); 901 );
876 902
877 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Compress Textures"); 903 $table->add_at (0, $row, new DC::UI::Label align => 1, text => "Compress Textures");
878 $table->add_at (1, $row++, new DC::UI::CheckBox 904 $table->add_at (1, $row++, new DC::UI::CheckBox
879 state => $CFG->{texture_compression}, 905 state => $CFG->{texture_compression},
2150 $dialog->show; 2176 $dialog->show;
2151 }; 2177 };
2152} 2178}
2153 2179
2154sub sdl_init { 2180sub sdl_init {
2155 DC::SDL_Init 2181 DC::SDL_Init DC::SDL_INIT_AUDIO #| DC::SDL_NOPARACHUTE
2156 and die "SDL::Init failed!\n"; 2182 and die "SDL::Init failed!\n";
2157} 2183}
2158 2184
2159sub video_init { 2185sub video_init {
2186 DC::SDL_InitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT;
2187 $SDL_REINIT = 0;
2188
2189 @SDL_MODES = DC::SDL_ListModes 8, $CFG->{disable_alpha} ? 0 : 8;
2190 @SDL_MODES = DC::SDL_ListModes 8, 8 unless @SDL_MODES;
2191 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES;
2192 @SDL_MODES or DC::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
2193
2194 @SDL_MODES = sort { $a->[0] * $a->[1] <=> $b->[0] * $b->[1] } @SDL_MODES;
2195
2160 $CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} >= @SDL_MODES; 2196 if (!exists $CFG->{sdl_mode} or $CFG->{sdl_mode} >= @SDL_MODES) {
2197 $CFG->{sdl_mode} = 0;
2198 for (reverse 0 .. $#SDL_MODES) {
2199 $CFG->{sdl_mode} = $_ if $SDL_MODES[$_][0] * $SDL_MODES[$_][1] >= 800 * 600;
2200 }
2201 }
2161 2202
2162 my ($old_w, $old_h) = ($WIDTH, $HEIGHT); 2203 my ($old_w, $old_h) = ($WIDTH, $HEIGHT);
2163 2204
2164 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] }; 2205 ($WIDTH, $HEIGHT, my ($rgb, $alpha)) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
2165 $FULLSCREEN = $CFG->{fullscreen}; 2206 $FULLSCREEN = $CFG->{fullscreen};
2349 $BUTTONBAR->show; 2390 $BUTTONBAR->show;
2350 $SETUP_DIALOG->show; 2391 $SETUP_DIALOG->show;
2351 $MESSAGE_WINDOW->show; 2392 $MESSAGE_WINDOW->show;
2352 } 2393 }
2353 2394
2395 $MODE_SLIDER->set_range ([$CFG->{sdl_mode}, 0, $#SDL_MODES, 1, 1]);
2396 $MODE_SLIDER->emit (changed => $CFG->{sdl_mode});
2397
2398 $CAVEAT_LABEL->set_text ("None :)");
2399 $CAVEAT_LABEL->set_text ("Sofwtare Rendering (very slow)")
2400 unless DC::SDL_GL_GetAttribute DC::SDL_GL_ACCELERATED_VISUAL;
2401
2354 $STATUSBOX->add ("Set video mode $WIDTH×$HEIGHT", timeout => 10, fg => [1, 1, 1, 0.5]); 2402 $STATUSBOX->add ("Set video mode $WIDTH×$HEIGHT", timeout => 10, fg => [1, 1, 1, 0.5]);
2355} 2403}
2356 2404
2357sub video_shutdown { 2405sub video_shutdown {
2358 DC::OpenGL::shutdown; 2406 DC::OpenGL::shutdown;
2407 DC::SDL_QuitSubSystem DC::SDL_INIT_VIDEO if $SDL_REINIT;
2359 2408
2360 undef $SDL_ACTIVE; 2409 undef $SDL_ACTIVE;
2361} 2410}
2362 2411
2363my %animate_object; 2412my %animate_object;
2424# printf "M\n" if $_[0]{state} & DC::SDL_APPMOUSEFOCUS; 2473# printf "M\n" if $_[0]{state} & DC::SDL_APPMOUSEFOCUS;
2425 }, 2474 },
2426 DC::SDL_KEYDOWN => sub { 2475 DC::SDL_KEYDOWN => sub {
2427 if ($_[0]{mod} & DC::KMOD_ALT && $_[0]{sym} == 13) { 2476 if ($_[0]{mod} & DC::KMOD_ALT && $_[0]{sym} == 13) {
2428 # alt-enter 2477 # alt-enter
2478 video_shutdown;
2429 $FULLSCREEN_ENABLE->toggle; 2479 $FULLSCREEN_ENABLE->toggle;
2430 video_shutdown;
2431 video_init; 2480 video_init;
2432 } else { 2481 } else {
2433 &DC::UI::feed_sdl_key_down_event; 2482 &DC::UI::feed_sdl_key_down_event;
2434 } 2483 }
2435 update_modbox; 2484 update_modbox;
2484 my %DEF_CFG = ( 2533 my %DEF_CFG = (
2485 sdl_mode => 0, 2534 sdl_mode => 0,
2486 fullscreen => 1, 2535 fullscreen => 1,
2487 fast => 0, 2536 fast => 0,
2488 force_opengl11 => undef, 2537 force_opengl11 => undef,
2538 disable_alpha => 0,
2489 texture_compression => 1, 2539 texture_compression => 1,
2490 map_scale => 1, 2540 map_scale => 1,
2491 fow_enable => 1, 2541 fow_enable => 1,
2492 fow_intensity => 0, 2542 fow_intensity => 0,
2493 map_smoothing => 1, 2543 map_smoothing => 1,
2534 } 2584 }
2535 } 2585 }
2536 2586
2537 sdl_init; 2587 sdl_init;
2538 2588
2539 @SDL_MODES = DC::SDL_ListModes 8, 8;
2540 @SDL_MODES = DC::SDL_ListModes 5, 0 unless @SDL_MODES;
2541 @SDL_MODES or DC::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
2542
2543 @SDL_MODES = sort { $a->[0] * $a->[1] <=> $b->[0] * $b->[1] } @SDL_MODES;
2544
2545 $CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
2546
2547 { 2589 {
2548 my @fonts = map DC::find_rcfile "fonts/$_", qw( 2590 my @fonts = map DC::find_rcfile "fonts/$_", qw(
2549 DejaVuSans.ttf 2591 DejaVuSans.ttf
2550 DejaVuSansMono.ttf 2592 DejaVuSansMono.ttf
2551 DejaVuSans-Bold.ttf 2593 DejaVuSans-Bold.ttf

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines