--- deliantra/Deliantra-Client/bin/cfplus 2006/06/02 16:32:12 1.44 +++ deliantra/Deliantra-Client/bin/cfplus 2006/06/06 03:05:16 1.61 @@ -27,7 +27,6 @@ if %PAR::LibCache; use Time::HiRes 'time'; -use Pod::POM; use Event; use Crossfire; @@ -41,8 +40,11 @@ use CFClient::UI; use CFClient::MapWidget; +$SIG{QUIT} = sub { Carp::cluck "QUIT" }; + $Event::DIED = sub { # TODO: display dialog box or so + Carp::confess $_[1];#d#TODO: remove when stable CFClient::error $_[1]; }; @@ -84,8 +86,15 @@ our $LOGIN_BUTTON; our $QUIT_DIALOG; our $HOST_ENTRY; -our $SERVER_SETUP; +our $SETUP_DIALOG; +our $SETUP_NOTEBOOK; +our $SETUP_SERVER; +our $SETUP_KEYBOARD; +our $SETUP_SPELLS; + +our $STATS_WINDOW; +our $MESSAGE_WINDOW; our $FLOORBOX; our $GAUGES; our $STATWIDS; @@ -106,10 +115,8 @@ our $INVR; our $INV_RIGHT_HB; -our $BIND_WINDOW; our $BIND_EDITOR; -our $SPELL_LIST; our $PICKUP_CFG; sub status { @@ -120,11 +127,192 @@ $DEBUG_STATUS->set_text ($_[0]); } +sub destroy_query_dialog { + (delete $_[0]{query_dialog})->destroy + if $_[0]{query_dialog}; +} + +# server query dialog +sub server_query { + my ($conn, $flags, $prompt) = @_; + + $conn->{query_dialog} = my $dialog = new CFClient::UI::FancyFrame + x => "center", + y => "center", + title => "Server Query", + child => my $vbox = new CFClient::UI::VBox, + ; + + my @dialog = my $label = new CFClient::UI::Label + max_w => $::WIDTH * 0.4, + ellipsise => 0, + text => $prompt; + + if ($flags & CS_QUERY_YESNO) { + push @dialog, my $hbox = new CFClient::UI::HBox; + + $hbox->add (new CFClient::UI::Button + text => "No", + on_activate => sub { + $conn->send ("reply n"); + $dialog->destroy; + } + ); + $hbox->add (new CFClient::UI::Button + text => "Yes", + on_activate => sub { + $conn->send ("reply y"); + destroy_query_dialog $conn; + }, + ); + + $dialog->focus_in; + + } elsif ($flags & CS_QUERY_SINGLECHAR) { + $dialog->{tooltip} = "Press a key (click on the entry to make sure it has keyboard focus)"; + + if ($prompt =~ /Now choose a character|Press any key for the next race/i) { + $MESSAGE_WINDOW->show; + + unshift @dialog, new CFClient::UI::Label + max_w => $::WIDTH * 0.4, + ellipsise => 0, + markup => "\nOr use your keyboard:\n"; + + unshift @dialog, my $table = new CFClient::UI::Table; + + $table->add (0, 0, new CFClient::UI::Button + text => "Next Race", + on_activate => sub { + $conn->send ("reply n"); + destroy_query_dialog $conn; + }, + ); + $table->add (2, 0, new CFClient::UI::Button + text => "Accept", + on_activate => sub { + $conn->send ("reply d"); + destroy_query_dialog $conn; + }, + ); + + unshift @dialog, new CFClient::UI::Label + max_w => $::WIDTH * 0.4, + ellipsise => 0, + markup => + "Character Creation: Race\n\n" + . "Look at the Messages window to see a description of this race " + . "(or hover with your mouse over the bottommost entry in the status area in the lower left area of the screen) " + . "and the center of the screen to see how this race looks like " + . "(this is below this dialog window, you may need to click on the display area to make it visible).\n\n" + . "You can look at another race, or accept this race (you will come back to this race eventually, " + . "so you can take your time making this important choice." + ; + + } elsif ($prompt =~ /roll new stats/) { + if (my $stat = delete $conn->{stat_change_with}) { + $conn->send ("reply $stat"); + destroy_query_dialog $conn; + return; + } + + $STATS_WINDOW->show; + $MESSAGE_WINDOW->hide; + + unshift @dialog, new CFClient::UI::Label + max_w => $::WIDTH * 0.4, + ellipsise => 0, + markup => "\nOr use your keyboard:\n"; + + unshift @dialog, my $table = new CFClient::UI::Table; + + # left: re-roll + $table->add (0, 0, new CFClient::UI::Button + text => "Roll Again", + on_activate => sub { + $conn->send ("reply y"); + destroy_query_dialog $conn; + }, + ); + + # center: swap stats + my ($sw1, $sw2) = map +(new CFClient::UI::Combobox + value => $_, + options => [ + [Str => 1, "Strength ($conn->{stat}{+CS_STAT_STR})"], + [Dex => 2, "Dexterity ($conn->{stat}{+CS_STAT_DEX})"], + [Con => 3, "Constitution ($conn->{stat}{+CS_STAT_CON})"], + [Int => 4, "Intelligence ($conn->{stat}{+CS_STAT_INT})"], + [Wis => 5, "Wisdom ($conn->{stat}{+CS_STAT_WIS})"], + [Pow => 6, "Power ($conn->{stat}{+CS_STAT_POW})"], + [Cha => 7, "Charisma ($conn->{stat}{+CS_STAT_CHA})"], + ], + ), 1 .. 2; + + $table->add (2, 0, new CFClient::UI::Button + text => "Swap Stats", + on_activate => sub { + $conn->{stat_change_with} = $sw2->{value}; + $conn->send ("reply $sw1->{value}"); + destroy_query_dialog $conn; + }, + ); + $table->add (2, 1, new CFClient::UI::HBox children => [$sw1, $sw2]); + + # right: accept + $table->add (4, 0, new CFClient::UI::Button + text => "Accept", + on_activate => sub { + $conn->send ("reply n"); + $STATS_WINDOW->hide; + destroy_query_dialog $conn; + }, + ); + + unshift @dialog, new CFClient::UI::Label + max_w => $::WIDTH * 0.4, + ellipsise => 0, + markup => + "Character Creation: Stats\n\n" + . "Look at the Stats window to see your basic stats " + . "(first column: 1 strength, 2 dexterity, 3 constitution, 4 intelligence, 5 wisdom, 6 power and 7 charisma).\n\n" + . "You can create another set of stats, swap two stat values with each other or accept the stats as they are now and continue. " + . "Race selection will influence those values later on." + ; + } + + push @dialog, my $entry = new CFClient::UI::Entry + on_changed => sub { + $conn->send ("reply $_[1]"); + destroy_query_dialog $conn; + }, + ; + + $entry->focus_in; + + } else { + $dialog->{tooltip} = "Enter the reply and press return (click on the entry to make sure it has keyboard focus)"; + + push @dialog, my $entry = new CFClient::UI::Entry + $flags & CS_QUERY_HIDEINPUT ? (hidden => "*") : (), + on_activate => sub { + $conn->send ("reply $_[1]"); + destroy_query_dialog $conn; + }, + ; + + $entry->focus_in; + } + + $vbox->add (@dialog); + $dialog->show; +} + sub start_game { status "logging in..."; $LOGIN_BUTTON->set_text ("Logout"); - $SERVER_SETUP->hide; + $SETUP_DIALOG->hide; my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32; @@ -146,6 +334,7 @@ statusbox => $STATUSBOX, map => $MAP, mapmap => $MAPMAP, + query => \&server_query, sound_play => sub { my ($x, $y, $soundnum, $type) = @_; @@ -172,25 +361,21 @@ sub stop_game { $LOGIN_BUTTON->set_text ("Login"); - $SERVER_SETUP->show; + $SETUP_NOTEBOOK->set_current_page ($SETUP_SERVER); + $SETUP_DIALOG->show; $INV_WINDOW->hide; - $LOGVIEW->hide; return unless $CONN; status "connection closed"; + destroy_query_dialog $CONN; $CONN->destroy; $CONN = 0; # false, does not autovivify } -sub client_setup { - my $dialog = new CFClient::UI::FancyFrame - x => 1, - y => $HEIGHT * (1/8), - name => "client_setup", - title => "Client Setup", - child => (my $vbox = new CFClient::UI::VBox); +sub graphics_setup { + my $vbox = new CFClient::UI::VBox; $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]); @@ -325,6 +510,16 @@ } ); + $vbox +} + +sub audio_setup { + my $vbox = new CFClient::UI::VBox; + + $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]); + + my $row = 0; + $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Audio Enable"); $table->add (1, $row++, new CFClient::UI::CheckBox state => $CFG->{audio_enable}, @@ -364,19 +559,7 @@ } ); - $table->add (0, $row, new CFClient::UI::Label valign => 0, align => 1, text => "Chat Command"); - $table->add (1, $row++, my $saycmd = new CFClient::UI::Entry - text => $CFG->{say_command}, - tooltip => "This is the command that will be used if you write a line in the message window entry or press \" in the map window. " - . "Usually you want to enter something like 'say' or 'shout' or 'gsay' here. " - . "But you could also set it to tell playername to only chat with that user.", - on_changed => sub { - my ($self, $value) = @_; - $CFG->{say_command} = $value; - } - ); - - $dialog + $vbox } sub set_stats_window_fontsize { @@ -445,7 +628,7 @@ } -sub make_stats_window { +sub stats_window { my $tgw = new CFClient::UI::FancyFrame y => $HEIGHT * (2/8), x => "max", @@ -559,8 +742,8 @@ $tgw } -sub formsep { - reverse join ",", grep length, split /(...)/, reverse $_[0] * 1 +sub formsep($) { + scalar reverse join ",", unpack "(A3)*", reverse $_[0] * 1 } sub update_stats_window { @@ -716,6 +899,7 @@ name => 'metaserver_dialog', x => 'center', y => 'center', + z => 3, child => (my $vbox = new CFClient::UI::VBox), on_visibility_change => sub { update_metaserver if $_[1]; @@ -728,13 +912,7 @@ } sub server_setup { - my $dialog = $SERVER_SETUP = new CFClient::UI::FancyFrame - x => "center", - y => "center", - name => "server_setup", - title => "Server Setup", - child => (my $vbox = new CFClient::UI::VBox), - ; + my $vbox = new CFClient::UI::VBox; $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]); $table->add (0, 2, new CFClient::UI::Label valign => 0, align => 1, text => "Host:Port"); @@ -837,7 +1015,19 @@ }, ); - $dialog + $table->add (0, 12, new CFClient::UI::Label valign => 0, align => 1, text => "Chat Command"); + $table->add (1, 12, my $saycmd = new CFClient::UI::Entry + text => $CFG->{say_command}, + tooltip => "This is the command that will be used if you write a line in the message window entry or press \" in the map window. " + . "Usually you want to enter something like 'say' or 'shout' or 'gsay' here. " + . "But you could also set it to tell playername to only chat with that user.", + on_changed => sub { + my ($self, $value) = @_; + $CFG->{say_command} = $value; + } + ); + + $vbox } sub message_window { @@ -848,8 +1038,8 @@ bg => [0, 0, 0, 0.75], x => "max", y => 0, - force_w => $::WIDTH / 3, - force_h => $::HEIGHT / 5, + force_w => $::WIDTH * 0.4, + force_h => $::HEIGHT * 0.5, child => (my $vbox = new CFClient::UI::VBox); $vbox->add ($LOGVIEW); @@ -873,12 +1063,7 @@ my ($input, $text) = @_; $input->set_text (''); - if ($text =~ /^\/bind\s+(.*)$/) { - CFClient::Binder::open_binding_dialog (sub { - my ($mod, $sym) = @_; - $::CFG->{bindings}->{$mod}->{$sym} = [$1]; - }); - } elsif ($text =~ /^\/(.*)/) { + if ($text =~ /^\/(.*)/) { $::CONN->user_send ($1); } else { my $say_cmd = $::CFG->{say_command} || 'say'; @@ -907,6 +1092,7 @@ $QUIT_DIALOG = new CFClient::UI::FancyFrame x => "center", y => "center", + z => 50, title => "Really Quit?", ; @@ -933,75 +1119,76 @@ $QUIT_DIALOG->show; } -sub make_pickup_cfg_window { - $PICKUP_CFG = new CFClient::UI::FancyFrame - title => "Autopickup configuration", - x => "center", - y => "center", - force_w => $WIDTH * 3/10, - force_h => $HEIGHT * 9/10; - - my $tbl = new CFClient::UI::Table; - my $tblrow = 0; - - $PICKUP_CFG->add (my $sw = new CFClient::UI::ScrolledWindow scrolled => $tbl, expand => 1); +sub autopickup_setup { + my $table = new CFClient::UI::Table; for ( - ["Enable (new) autopickup" => CFClient::Pickup::PU_NEWMODE], - ["Inhibit autopickup" => CFClient::Pickup::PU_INHIBIT], - ["Stop before pickup" => CFClient::Pickup::PU_STOP], - ["Debug autopickup" => CFClient::Pickup::PU_DEBUG], - ["Weapons"], - ["All weapons" => CFClient::Pickup::PU_ALLWEAPON], - ["Missile weapons" => CFClient::Pickup::PU_MISSILEWEAPON], - ["Bows" => CFClient::Pickup::PU_BOW], - ["Arrows" => CFClient::Pickup::PU_ARROW], - ["Armour"], - ["Helmets" => CFClient::Pickup::PU_HELMET], - ["Shields" => CFClient::Pickup::PU_SHIELD], - ["Body Armour" => CFClient::Pickup::PU_ARMOUR], - ["Boots" => CFClient::Pickup::PU_BOOTS], - ["Gloves" => CFClient::Pickup::PU_GLOVES], - ["Cloaks" => CFClient::Pickup::PU_CLOAK], - ["Readables"], - ["Spellbooks" => CFClient::Pickup::PU_SPELLBOOK], - ["Skillscrolls" => CFClient::Pickup::PU_SKILLSCROLL], - ["Normal Books/Scrolls" => CFClient::Pickup::PU_READABLES], - ["Misc"], - ["Food" => CFClient::Pickup::PU_FOOD], - ["Drinks" => CFClient::Pickup::PU_DRINK], - ["Valuables (Money, Gems)" => CFClient::Pickup::PU_VALUABLES], - ["Keys" => CFClient::Pickup::PU_KEY], - ["Magical Items" => CFClient::Pickup::PU_MAGICAL], - ["Potions" => CFClient::Pickup::PU_POTION], - ["Magic Devices" => CFClient::Pickup::PU_MAGIC_DEVICE], - ["Ignore cursed" => CFClient::Pickup::PU_NOT_CURSED], - ["Jewelery" => CFClient::Pickup::PU_JEWELS], + ["General", 0, 0, + ["Enable autopickup" => PICKUP_NEWMODE], + ["Inhibit autopickup" => PICKUP_INHIBIT], + ["Stop before pickup" => PICKUP_STOP], + ["Debug autopickup" => PICKUP_DEBUG], + ], + ["Weapons", 0, 6, + ["All weapons" => PICKUP_ALLWEAPON], + ["Missile weapons" => PICKUP_MISSILEWEAPON], + ["Bows" => PICKUP_BOW], + ["Arrows" => PICKUP_ARROW], + ], + ["Armour", 0, 12, + ["Helmets" => PICKUP_HELMET], + ["Shields" => PICKUP_SHIELD], + ["Body Armour" => PICKUP_ARMOUR], + ["Boots" => PICKUP_BOOTS], + ["Gloves" => PICKUP_GLOVES], + ["Cloaks" => PICKUP_CLOAK], + ], + + ["Readables", 2, 2, + ["Spellbooks" => PICKUP_SPELLBOOK], + ["Skillscrolls" => PICKUP_SKILLSCROLL], + ["Normal Books/Scrolls" => PICKUP_READABLES], + ], + ["Misc", 2, 7, + ["Food" => PICKUP_FOOD], + ["Drinks" => PICKUP_DRINK], + ["Valuables (Money, Gems)" => PICKUP_VALUABLES], + ["Keys" => PICKUP_KEY], + ["Magical Items" => PICKUP_MAGICAL], + ["Potions" => PICKUP_POTION], + ["Magic Devices" => PICKUP_MAGIC_DEVICE], + ["Ignore cursed" => PICKUP_NOT_CURSED], + ["Jewelery" => PICKUP_JEWELS], + ], ) { - unless (defined $_->[1]) { - $tbl->add (0, $tblrow++, new CFClient::UI::Label text => $_->[0], align => 0); - } else { + my ($title, $x, $y, @bits) = @$_; + $table->add ($x, $y, new CFClient::UI::Label text => $title, align => 1, fg => [1, 1, 0]); + + for (@bits) { + ++$y; + my $mask = $_->[1]; - $tbl->add (0, $tblrow, new CFClient::UI::Label text => $_->[0], align => -1); - $tbl->add (1, $tblrow++, new CFClient::UI::CheckBox + $table->add ($x , $y, new CFClient::UI::Label text => $_->[0], align => 1, expand => 1); + $table->add ($x+1, $y, new CFClient::UI::CheckBox state => $CFG->{pickup} & $mask, on_changed => sub { my ($box, $value) = @_; if ($value) { - $CFG->{pickup} |= $mask; + $::CFG->{pickup} |= $mask; } else { - $CFG->{pickup} = $CFG->{pickup} & ~$mask; + $::CFG->{pickup} = $::CFG->{pickup} & ~$mask; } - $::CONN->send (sprintf "command pickup %u", $CFG->{pickup}); + $::CONN->send (sprintf "command pickup %u", $::CFG->{pickup}) + if defined $::CONN; }); } } - $PICKUP_CFG + $table } -sub make_inventory_window { +sub inventory_window { my $invwin = $INV_WINDOW = new CFClient::UI::FancyFrame x => "center", y => "center", @@ -1028,14 +1215,11 @@ $invwin } -sub make_spell_list { - $SPELL_LIST = new CFClient::UI::SpellList - force_w => $WIDTH * (9/10), - force_h => $HEIGHT * (9/10); - $SPELL_LIST +sub spell_setup { + new CFClient::UI::SpellList } -sub make_binding_window { +sub keyboard_setup { my $binding_list = new CFClient::UI::VBox; my $refresh; @@ -1069,13 +1253,15 @@ delete $::CFG->{bindings}->{$mod}->{$sym}; $::CFG->{bindings}->{$nmod}->{$nsym} = $ncmds; $refresh->(); - $::BIND_WINDOW->show; + $SETUP_NOTEBOOK->set_current_page ($SETUP_KEYBOARD); + $SETUP_DIALOG->show; }, sub { - $::BIND_WINDOW->show; + $SETUP_NOTEBOOK->set_current_page ($SETUP_KEYBOARD); + $SETUP_DIALOG->show; }); $::BIND_EDITOR->show; - $::BIND_WINDOW->hide; + $SETUP_DIALOG->hide; }); $hb->add (new CFClient::UI::Label text => "(Key: $nam)"); @@ -1084,20 +1270,10 @@ } }; - $BIND_WINDOW = new CFClient::UI::FancyFrame - title => "Bindings", - x => "center", - y => "center", - def_w => int $WIDTH * 9/10, - def_h => int $HEIGHT * 9/10, - on_visibility_change => sub { - my ($self, $visible) = @_; - $refresh->() if $visible; - }; - - $BIND_WINDOW->add (my $vb = new CFClient::UI::VBox); + my $vb = new CFClient::UI::VBox; $vb->add ($binding_list); $vb->add (my $hb = new CFClient::UI::HBox); + $hb->add (new CFClient::UI::Button text => "record new", expand => 1, @@ -1108,32 +1284,38 @@ my ($mod, $sym, $cmds) = @_; $::CFG->{bindings}->{$mod}->{$sym} = $cmds; $refresh->(); - $::BIND_WINDOW->show; + $SETUP_NOTEBOOK->set_current_page ($SETUP_KEYBOARD); + $SETUP_DIALOG->show; }, sub { - $::BIND_WINDOW->show; - }); - $::BIND_WINDOW->hide; + $SETUP_NOTEBOOK->set_current_page ($SETUP_KEYBOARD); + $SETUP_DIALOG->show; + }, + ); + $SETUP_DIALOG->hide; $::BIND_EDITOR->show; }, ); + $hb->add (new CFClient::UI::Button text => "close", tooltip => "Closes the binding window", expand => 1, on_activate => sub { - $::BIND_WINDOW->hide; + $SETUP_DIALOG->hide; } ); $refresh->(); - $BIND_WINDOW + + $vb } sub make_help_window { my $win = new CFClient::UI::FancyFrame x => 'center', y => 'center', + z => 2, name => 'doc_browser', force_w => int $WIDTH * 7/8, force_h => int $HEIGHT * 7/8, @@ -1155,13 +1337,13 @@ $buttons->add (new CFClient::UI::Button text => $label, on_activate => sub { - my $parser = new Pod::POM; - my $pom = $parser->parse_file (CFClient::find_rcfile "pod/$pod.pod"); + my $pom = CFClient::load_pod CFClient::find_rcfile "pod/$pod.pod", + doc_viewer => 1, sub { CFClient::pod_to_pango_list $_[0] }; $viewer->clear; $viewer->add_paragraph ([1, 1, 1, 1], $_->[1], $_->[0]) - for @{ CFClient::pod_to_pango_list $pom }; + for @$pom; $viewer->set_offset (0); }, @@ -1218,7 +1400,7 @@ $BIND_EDITOR = new CFClient::UI::BindEditor (x => "max", y => 0); $STATUSBOX = new CFClient::UI::Statusbox; - $STATUSBOX->add ("Use Alt-Enter to toggle fullscreen mode", pri => -100, color => [1, 1, 1, 0.8]); + $STATUSBOX->add ("Use Alt-Enter to toggle fullscreen mode", timeout => 864000, pri => -100, color => [1, 1, 1, 0.8]); (new CFClient::UI::Frame bg => [0, 0, 0, 0.4], @@ -1228,7 +1410,7 @@ )->show; CFClient::UI::FancyFrame->new ( - title => "Mini Map", + title => "Map", name => "mapmap", x => 0, y => $FONTSIZE + 8, @@ -1259,27 +1441,58 @@ expand => 1, font => $FONT_FIXED, fontsize => $::CFG->{log_fontsize}, + indent => -4, can_hover => 1, can_events => 1, tooltip => "Server Log. This text viewer contains all the messages sent by the server.", ; - $BUTTONBAR = new CFClient::UI::HBox x => 0, y => 0; + $SETUP_DIALOG = new CFClient::UI::FancyFrame + title => "Setup", + name => "setup_dialog", + x => 'center', + y => 'center', + z => 2, + force_w => $::WIDTH * 0.6, + force_h => $::HEIGHT * 0.6, + ; + + $SETUP_DIALOG->add ($SETUP_NOTEBOOK = new CFClient::UI::Notebook expand => 1, debug => 1, + filter => new CFClient::UI::ScrolledWindow expand => 1, scroll_y => 1); + + $SETUP_NOTEBOOK->add (Server => $SETUP_SERVER = server_setup, + "Configure the server to play on, your username, password and other server-related options."); + $SETUP_NOTEBOOK->add (Pickup => autopickup_setup, + "Configure autopickup settings, i.e. which items you will pick up automatically when walking (or running) over them."); + $SETUP_NOTEBOOK->add (Graphics => graphics_setup, + "Configure the video mode, performance, fonts and other graphical aspects of the game."); + $SETUP_NOTEBOOK->add (Audio => audio_setup, + "Configure the use of audio, sound effects and background music."); + $SETUP_NOTEBOOK->add (Keyboard => $SETUP_KEYBOARD = keyboard_setup, + "Lets you define, edit and delete bindings." + . "There is a shortcut for making bindings: Left Control + Insert opens the binding editor " + . "with nothing set and the recording started. After doing the actions you " + . "want to record press Insert and you will be asked to press a key-combo. " + . "After pressing the combo the binding will be saved automatically and the " + . "binding editor closes"); + $SETUP_NOTEBOOK->add (Spells => $SETUP_SPELLS = spell_setup, + "Displays all spells you have and lets you edit keyboard shortcuts for them."); + + $BUTTONBAR = new CFClient::UI::Buttonbar x => 0, y => 0, z => 200; # put on top - $BUTTONBAR->add (new CFClient::UI::Flopper text => "Client Setup", other => client_setup, - tooltip => "Toggles a dialog where you can configure various aspects of the client, such as graphics mode, performance, and audio options."); - $BUTTONBAR->add (new CFClient::UI::Flopper text => "Server Setup", other => server_setup, - tooltip => "Toggles a dialog where you can configure the server to play on, your username, password and other server-related options."); - $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => message_window, + $BUTTONBAR->add (new CFClient::UI::Flopper text => "Setup", other => $SETUP_DIALOG, + tooltip => "Toggles a dialog where you can configure all aspects of this client."); + + $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => $MESSAGE_WINDOW = message_window, tooltip => "Toggles the server message log, where the client collects all messages from the server."); make_gauge_window->show; # XXX: this has to be set before make_stats_window as make_stats_window calls update_stats_window which updated the gauges also X-D - $BUTTONBAR->add (new CFClient::UI::Flopper text => "Stats Window", other => make_stats_window, + $BUTTONBAR->add (new CFClient::UI::Flopper text => "Stats Window", other => $STATS_WINDOW = stats_window, tooltip => "Toggles the statistics window, where all your Stats and Resistances are being displayed at all times."); - $BUTTONBAR->add (new CFClient::UI::Flopper text => "Inventory", other => make_inventory_window, - tooltip => "Toggles the inventory window, where you can manage your loot (or treaures :)." - ."You can also hit the Tab-key to show/hide the Inventory."); + $BUTTONBAR->add (new CFClient::UI::Flopper text => "Inventory", other => inventory_window, + tooltip => "Toggles the inventory window, where you can manage your loot (or treasures :). " + . "You can also hit the Tab-key to show/hide the Inventory."); $BUTTONBAR->add (new CFClient::UI::Button text => "Save Config", @@ -1294,28 +1507,6 @@ $BUTTONBAR->add (new CFClient::UI::Flopper text => "Help!", other => make_help_window, tooltip => "View Documentation"); - $BUTTONBAR->add (new CFClient::UI::Flopper - text => "Bindings", - other => make_binding_window, - tooltip => - "Lets you define, edit and delete bindings." - ."There is a shortcut for making bindings: LCTRL+Insert opens the binding editor " - ."with nothing set and the recording started. After doing the actions you " - ."want to record press Insert and you will be asked to press a key-combo." - ."After pressing the combo the binding will be saved automatically and the " - ."binding editor closes"); - - $BUTTONBAR->add (new CFClient::UI::Flopper - text => "Spells", - other => make_spell_list, - tooltip => "The spell list"); - - $BUTTONBAR->add (new CFClient::UI::Flopper - text => "Pickup", - other => make_pickup_cfg_window, - tooltip => "The pickup dialog"); - - $BUTTONBAR->add (new CFClient::UI::Button text => "Quit", tooltip => "Terminates the program", @@ -1329,10 +1520,10 @@ ); $BUTTONBAR->show; - $SERVER_SETUP->show; - - $STATUSBOX->add ("Set video mode $WIDTH×$HEIGHT", timeout => 10, fg => [1, 1, 1, 0.5]); + $SETUP_DIALOG->show; } + + $STATUSBOX->add ("Set video mode $WIDTH×$HEIGHT", timeout => 10, fg => [1, 1, 1, 0.5]); } sub video_shutdown { @@ -1474,7 +1665,7 @@ CFClient::SDL_GL_SwapBuffers; } -my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub { +my $refresh_watcher = Event->timer (after => 0, hard => 0, interval => 1 / $MAX_FPS, cb => sub { $NOW = time; ($SDL_CB{$_->{type}} || sub { warn "unhandled event $_->{type}" })->($_) @@ -1551,7 +1742,11 @@ $SIG{INT} = $SIG{TERM} = sub { exit }; { - local $SIG{__DIE__} = sub { CFClient::fatal $_[0] if defined $^S && !$^S }; + local $SIG{__DIE__} = sub { + return unless defined $^S && !$^S; + Carp::confess $_[1];#d#TODO: remove when stable + CFClient::fatal $_[0]; + }; CFClient::read_cfg "$Crossfire::VARDIR/cfplusrc"; CFClient::UI::set_layout ($::CFG->{layout}); @@ -1567,10 +1762,10 @@ fow_intensity => 0.45, fow_smooth => 0, gui_fontsize => 1, - log_fontsize => 1, + log_fontsize => 0.7, gauge_fontsize=> 1, gauge_size => 0.35, - stat_fontsize => 1, + stat_fontsize => 0.7, mapsize => 100, host => "crossfire.schmorp.de", say_command => 'say',