--- deliantra/Deliantra-Client/bin/pclient 2006/04/17 19:36:27 1.123 +++ deliantra/Deliantra-Client/bin/pclient 2006/04/18 02:07:37 1.132 @@ -51,6 +51,8 @@ our $CONSOLE; our $METASERVER; +our $GAUGES; + our $SDL_ACTIVE; our $SDL_EV; our %SDL_CB; @@ -61,14 +63,12 @@ sub status { $STATUS_LINE->set_text ($_[0]); - my ($w, $h) = $STATUS_LINE->size_request; - $STATUS_LINE->size_allocate (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $h, $w, $h); + $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h}); } sub debug { $DEBUG_STATUS->set_text ($_[0]); - my ($w, $h) = $DEBUG_STATUS->size_request; - $DEBUG_STATUS->size_allocate ($WIDTH - $w, 0, $w, $h); + $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h}); } sub start_game { @@ -148,6 +148,7 @@ $table->add (1, 5, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub { my ($self, $value) = @_; $CFG->{fow_smooth} = $value; + status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2; }); $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Log Fontsize"); @@ -302,8 +303,8 @@ my $window = new CFClient::UI::FancyFrame border_bg => [1, 1, 1, 0.5], bg => [0.3, 0.3, 0.3, 0.8], - user_w => $::WIDTH/4, - user_h => $::HEIGHT, + user_w => int $::WIDTH / 3, + user_h => int $::HEIGHT / 5, child => (my $vbox = new CFClient::UI::VBox); $vbox->add ($LOGVIEW = new CFClient::UI::TextView @@ -351,8 +352,8 @@ } sub sdl_init { - #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE - SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO + SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE + #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO and die "SDL::Init failed!\n"; } @@ -439,6 +440,17 @@ }); $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup + + my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0); + $tgw->add (my $hbox = new CFClient::UI::HBox ()); + + $hbox->add (my $hg = new CFClient::UI::VGauge (gauge => 'hp')); + $hbox->add (my $mg = new CFClient::UI::VGauge (gauge => 'mana')); + $hbox->add (my $gg = new CFClient::UI::VGauge (gauge => 'grace')); + $hbox->add (my $fg = new CFClient::UI::VGauge (gauge => 'food')); + + $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg }; + $CFClient::UI::ROOT->add ($tgw); } sub destroy_screen { @@ -504,6 +516,27 @@ @conn::ISA = Crossfire::Protocol::; +sub conn::stats_update { + my ($self, $stats) = @_; + + # i love text protocols!!! + # FIXME: the stats are somehow weird + my $hp = $stats->{1}; + my $hp_m = $stats->{2}; + my $sp = $stats->{3}; + my $sp_m = $stats->{4}; + my $fo = $stats->{18}; + my $fo_m = 1000; + my $gr = $stats->{23}; + my $gr_m = $stats->{24}; + + #d# warn "DATA $hp $hp_m $sp $sp_m $fo $fo_m $gr $gr_m\n"; + $GAUGES->{hp}->set_value ($hp, $hp_m); + $GAUGES->{mana}->set_value ($sp, $sp_m); + $GAUGES->{food}->set_value ($fo, $fo_m); + $GAUGES->{grace}->set_value ($gr, $gr_m); +} + sub conn::user_send { my ($self, $command) = @_; @@ -587,7 +620,8 @@ $x += $MAP->ox; $y += $MAP->oy; - $self->load_map ($hash, $x, $y); + $self->load_map ($hash, $x, $y) + unless $self->{neigh}{$hash}[5]++;#d# $neigh->[$tile] = [$x, $y, $w, $h]; @@ -604,8 +638,6 @@ my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); - warn "$ox $oy map_info<$flags, $x, $y, $w, $h, $hash>\n";#d# - my $mapmapw = 250; my $mapmaph = 250; @@ -745,6 +777,8 @@ ############################################################################# +$SIG{INT} = $SIG{TERM} = sub { exit }; + $TILECACHE = CFClient::db_table "tilecache"; $FACEMAP = CFClient::db_table "facemap"; @@ -791,4 +825,6 @@ Event::loop; +END { SDL::Quit } +