--- deliantra/Deliantra-Client/bin/pclient 2006/04/06 20:15:10 1.3 +++ deliantra/Deliantra-Client/bin/pclient 2006/04/11 12:27:51 1.65 @@ -1,13 +1,10 @@ #!/opt/bin/perl use strict; +use utf8; -use Crossfire::Client; -use Crossfire::Protocol; - -package Crossfire::Client; # uh, yeah - -use strict; +use Glib; +use Gtk2 -init; use SDL; use SDL::App; @@ -16,108 +13,273 @@ use SDL::OpenGL; use SDL::OpenGL::Constants; -my $conn; -my $app; +use Crossfire; +use Crossfire::Protocol; -my $WIDTH = 640; -my $HEIGHT = 480; +use Crossfire::Client; +use Crossfire::Client::Widget; -sub glinit { - # nuke all gl context data - - $app = new SDL::App - -title => "Crossfire+ Client", - -width => $WIDTH, - -height => $HEIGHT, - -depth => 24, - -opengl => 1, +our $VERSION = '0.1'; + +my $MAX_FPS = 30; +my $TICKS_PER_FRAME = int 1000 / $MAX_FPS - 1; # min ticks per frame + +our $FACECACHE; + +our $CFG; +our $CONN; + +our $WIDTH; +our $HEIGHT; +our $FULLSCREEN; + +our $FONTSIZE; + +our $SDL_TIMER; +our $SDL_APP; +our $SDL_EV; +our %SDL_CB; + +our $ALT_ENTER_MESSAGE; +our $STATUS_LINE; +our $DEBUG_STATUS; + +my $last_refresh; +my %ANIMATE; +my $refresh_handler; + +our ($tw, $te); # Test widget #d# + +sub init_screen { + $SDL_APP = new SDL::App + -flags => SDL_ANYFORMAT | SDL_HWSURFACE, + -title => "Crossfire+ Client", + -width => $WIDTH, + -height => $HEIGHT, + -opengl => 1, + -red_size => 5, + -green_size => 5, + -blue_size => 5, + -alpha_size => 0, -double_buffer => 1, - -resizeable => 0; + -fullscreen => $FULLSCREEN, + -resizeable => 0; + + $SDL_EV = new SDL::Event; + $SDL_EV->set_unicode (1); + + $SDL_TIMER = add Glib::Timeout 1000/50, sub { + ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->() + while $SDL_EV->poll; + + 1 + }; + + $last_refresh = SDL::GetTicks; + + Crossfire::Client::gl_init; + + $FONTSIZE = int $HEIGHT / 50; + + ############################################################################# + + glClearColor 0.45, 0.45, 0.45, 1; glEnable GL_TEXTURE_2D; + glEnable GL_COLOR_MATERIAL; glShadeModel GL_FLAT; glDisable GL_DEPTH_TEST; - glMatrixMode GL_PROJECTION; + glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; - #glViewport 0, 0, $WIDTH, $HEIGHT; - # re-bind all textures -} + ############################################################################# -sub refresh { - glClearColor 0.5, 0.5, 0.7, 0; - glClear GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT; + $DEBUG_STATUS = new Crossfire::Client::Widget::Label 0, 0, 1, $FONTSIZE, ""; + $Crossfire::Client::Widget::TOPLEVEL->add ($DEBUG_STATUS); + + $STATUS_LINE = new Crossfire::Client::Widget::Label + 0, $HEIGHT * 59 / 60 - $FONTSIZE, 1, $FONTSIZE, + ""; + $Crossfire::Client::Widget::TOPLEVEL->add ($STATUS_LINE); + + $ALT_ENTER_MESSAGE = new Crossfire::Client::Widget::Label + 0, $HEIGHT * 59 / 60, 1, $HEIGHT / 60, + "Use Alt-Enter to toggle fullscreen mode"; + $Crossfire::Client::Widget::TOPLEVEL->add ($ALT_ENTER_MESSAGE); + + # Test code #d# + unless ($tw) { # haha... + $te = new Crossfire::Client::Widget::FancyFrame; + $te->add (new Crossfire::Client::Widget::Entry); + $te->move (300, 0, 2); + $Crossfire::Client::Widget::TOPLEVEL->add ($te); + + $tw = new Crossfire::Client::Widget::Animator; + my $lbl1 = new Crossfire::Client::Widget::Label + 0, 0, 10, $FONTSIZE, "This is a\nTEST!\nOf a themed\nFrame!"; + my $lbl2 = new Crossfire::Client::Widget::Label + 0, 0, 10, $FONTSIZE, "LBL2"; + + my $vb = new Crossfire::Client::Widget::VBox; + my $f = new Crossfire::Client::Widget::FancyFrame; + my $f2 = new Crossfire::Client::Widget::FancyFrame; + $f->add ($lbl1); + $f2->add ($lbl2); + $vb->add ($f); + $vb->add ($f2, 1); + + $tw->add ($vb); + $tw->w (400); + $tw->h (300); + $tw->move ($WIDTH - 200, 0); + $tw->moveto (0, 0); + $Crossfire::Client::Widget::TOPLEVEL->add ($tw); - glLoadIdentity; - glOrtho 0, $WIDTH / 32, $HEIGHT / 32, 0, -1 , 1; +# $f->move ($WIDTH - 200, 0); +# $Crossfire::Client::Widget::TOPLEVEL->add ($f); + } +} - my $map = $conn->{map}; +sub destroy_screen { + remove Glib::Source $SDL_TIMER; + undef $SDL_APP; + undef $SDL_EV; + SDL::Quit; +} - for my $x (0 .. $conn->{mapw} - 1) { - for my $y (0 .. $conn->{maph} - 1) { +sub start_game { + $WIDTH = $CFG->{width}; + $HEIGHT = $CFG->{height}; + $FULLSCREEN = 0; + + init_screen; + + my $mapsize = List::Util::min 64, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32; + + $CONN = new conn + host => $CFG->{host}, + port => $CFG->{port}, + user => $CFG->{user}, + pass => $CFG->{password}, + mapw => $mapsize, + maph => $mapsize, + ; - my $cell = $map->[$x][$y] - or next; - - for my $num (grep $_, $cell->[0], $cell->[1], $cell->[2]) { - my $tex = $conn->{face}[$num]{texture} || 0; - - glBindTexture GL_TEXTURE_2D, $tex; - - glBegin GL_QUADS; - glTexCoord 0, 0; glVertex $x, $y; - glTexCoord 1, 0; glVertex $x + 1, $y; - glTexCoord 1, 1; glVertex $x + 1, $y + 1; - glTexCoord 0, 1; glVertex $x, $y + 1; - glEnd; - } - } - } - - SDL::GLSwapBuffers; + Crossfire::Client::lowdelay fileno $CONN->{fh}; } -my $ev = new SDL::Event; -my %ev_cb; +sub stop_game { + remove Glib::Source $refresh_handler if $refresh_handler; + undef $refresh_handler; -sub event(&$) { - $ev_cb{$_[0]->()} = $_[1]; + undef $CONN; + destroy_screen; } -sub does(&) { shift } +sub force_refresh { + glViewport 0, 0, $WIDTH, $HEIGHT; -event {SDL_QUIT} does { - exit; -}; + glMatrixMode GL_PROJECTION; + glLoadIdentity; + glOrtho 0, $WIDTH, $HEIGHT, 0, -10000 , 10000; + glMatrixMode GL_MODELVIEW; -event {SDL_VIDEORESIZE} does { - print "resize\n"; -}; + glClear GL_COLOR_BUFFER_BIT; -event {SDL_KEYDOWN} does { - print "keypress\n"; -}; + $Crossfire::Client::Widget::TOPLEVEL->draw; -event {SDL_KEYUP} does { - print "keyup\n";#d# -}; + SDL::GLSwapBuffers; +} -event {SDL_MOUSEMOTION} does { - print "motion\n"; -}; +sub debug { + $DEBUG_STATUS->set_text ($_[0]); + $DEBUG_STATUS->size_allocate ($DEBUG_STATUS->size_request); + $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0); +} -event {SDL_MOUSEBUTTONDOWN} does { - print "button\n"; -}; +my $FPS; -event {SDL_MOUSEBUTTONUP} does { - print "buttup\n"; -}; +sub refresh { + $refresh_handler ||= add Glib::Idle sub { + if ($SDL_APP) { + my $next_refresh = SDL::GetTicks; + + if ($next_refresh - $last_refresh < $TICKS_PER_FRAME) { + SDL::Delay $TICKS_PER_FRAME - ($next_refresh - $last_refresh); + $next_refresh = SDL::GetTicks; + } + + my $interval = ($next_refresh - $last_refresh) * 0.001; + $last_refresh = $next_refresh; + + if ($interval) { + $FPS ||= 1 / $interval; + $FPS = $FPS * 0.96 + (1 / $interval) * 0.04; + debug sprintf "%5.02f\n", $FPS; + } -event {SDL_ACTIVEEVENT} does { - print "active\n"; -}; + force_refresh; + $_->animate ($interval) for grep $_, values %ANIMATE; -package Crossfire::Client; + if (%ANIMATE) { + 1 + } else { + undef $refresh_handler; + 0 + } + } else { + undef $refresh_handler; + 0 + } + }; +} + +sub animation_start { + my ($widget) = @_; + $ANIMATE{$widget} = $widget; + Scalar::Util::weaken $ANIMATE{$widget}; + + refresh; +} + +sub animation_stop { + my ($widget) = @_; + delete $ANIMATE{$widget}; +} + +%SDL_CB = ( + SDL_QUIT() => sub { + main_quit Gtk2; + }, + SDL_VIDEORESIZE() => sub { + }, + SDL_VIDEOEXPOSE() => sub { + refresh; + }, + SDL_KEYDOWN() => sub { + if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) { + # alt-enter + $FULLSCREEN = !$FULLSCREEN; + init_screen; + } else { + Crossfire::Client::Widget::feed_sdl_key_down_event ($SDL_EV); + } + }, + SDL_KEYUP() => sub { + Crossfire::Client::Widget::feed_sdl_key_up_event ($SDL_EV); + }, + SDL_MOUSEMOTION() => sub { + Crossfire::Client::Widget::feed_sdl_motion_event ($SDL_EV); + }, + SDL_MOUSEBUTTONDOWN() => sub { + Crossfire::Client::Widget::feed_sdl_button_down_event ($SDL_EV); + }, + SDL_MOUSEBUTTONUP() => sub { + Crossfire::Client::Widget::feed_sdl_button_up_event ($SDL_EV); + }, + SDL_ACTIVEEVENT() => sub { + printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d# + }, +); @conn::ISA = Crossfire::Protocol::; @@ -130,67 +292,167 @@ sub conn::map_scroll { my ($self, $dx, $dy) = @_; - refresh; +# refresh; } sub conn::map_clear { my ($self) = @_; - refresh; +# refresh; +} + +sub conn::face_find { + my ($self, $face) = @_; + + $FACECACHE->{"$face->{chksum},$face->{name}"} } sub conn::face_update { - my ($self, $num, $face) = @_; + my ($self, $face) = @_; - warn "up face $self,$num,$face\n";#d# - #TODO - open my $fh, ">:raw", "/tmp/x~"; - syswrite $fh, $face->{image}; - close $fh; + $FACECACHE->{"$face->{chksum},$face->{name}"} = $face->{image}; - my $surface = new SDL::Surface -name => "/tmp/x~"; + $face->{texture} = new_from_image Crossfire::Client::Texture delete $face->{image}; +} - unlink "/tmp/x~"; +sub conn::query { + my ($self, $flags, $prompt) = @_; - my ($tex) = @{glGenTextures 1}; - glGetError(); + warn "<<<>>\n";#d# +} - $face->{texture} = $tex; - - glBindTexture GL_TEXTURE_2D, $tex; - my $glerr=glGetError(); die "a: ".gluErrorString($glerr)."\n" if $glerr; - -# glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR; -# glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR; - - $surface->rgba; +sub gtk_add_cfg_field { + my ($tbl, $cfg, $klbl, $key, $value) = @_; + my $i = $cfg->{_i}++; + $tbl->attach_defaults (my $lbl = Gtk2::Label->new ($klbl), 0, 1, $i, $i + 1); + $tbl->attach_defaults (my $ent = Gtk2::Entry->new, 1, 2, $i, $i + 1); + if ($key eq 'password') { + $ent->set_invisible_char ("*"); + $ent->set (visibility => 0) + } + $ent->set_text ($value); + $ent->signal_connect (changed => sub { + my ($ent) = @_; + $cfg->{$key} = $ent->get_text; + # TODO: Mapsize should be a slider in the game gui + if ($key eq 'mapsize' and $cfg->{$key} > 100) { + $cfg->{$key} = 100; + } elsif ($key eq 'mapsize' and $cfg->{$key} < 50) { + $cfg->{$key} = 50; + } + }); +} + +sub run_config_dialog { + my (%events) = @_; + + my $w = Gtk2::Window->new; + + my @cfg = ( + [qw/Host host/], + [qw/Port port/], + [qw/Mapsize% mapsize/], + [qw/Username user/], + [qw/Password password/], + ); + + my $cfg = {}; + + my $a = SDL::ListModes (0, SDL_FULLSCREEN|SDL_HWSURFACE); + my @modes = map { [SDL::RectW ($_), SDL::RectH ($_)] } @$a; + + $w->add (my $vb = Gtk2::VBox->new); + $vb->pack_start (my $t = Gtk2::Table->new (2, scalar @cfg), 0, 0, 0); + my $selmode = $::CFG->{width} . 'x' . $::CFG->{height}; + $t->attach_defaults (Gtk2::Label->new ("Modes"), 0, 1, 0, 1); + $t->attach_defaults (my $cb = Gtk2::ComboBox->new_text, 1, 2, 0, 1); + my $i = 0; + my $act = 0; + for (map { "$_->[0]x$_->[1]" } reverse @modes) { + if ($_ eq $selmode) { $act = $i } + $cb->append_text ($_); + $i++; + } + $cb->set_active ($act); + $cb->signal_connect (changed => sub { + my ($cb) = @_; + my $txt = $cb->get_active_text; + if ($txt =~ m/(\d+)x(\d+)/) { + $::CFG->{width} = $1; + $::CFG->{height} = $2; + } + }); + + $cfg->{_i} = 1; + for (@cfg) { + gtk_add_cfg_field ($t, $cfg, $_->[0], $_->[1], $::CFG->{$_->[1]}); + } - glTexImage2D GL_TEXTURE_2D, 0, - 4, # components - $surface->width, $surface->height, - 0, - GL_RGBA, - GL_UNSIGNED_BYTE, - $surface->pixels; - my $glerr=glGetError(); die "Problem setting up 2d Texture (dimensions not a power of 2?)):".gluErrorString($glerr)."\n" if $glerr; + $vb->pack_start (my $hb = Gtk2::HBox->new, 0, 0, 0); + $hb->pack_start (my $cb = Gtk2::Button->new ("save"), 1, 1, 5); + $cb->signal_connect (clicked => sub { + for (keys %$cfg) { + $::CFG->{$_} = $cfg->{$_} + if $_ ne '_i'; + } + Crossfire::Client::write_cfg "$Crossfire::VARDIR/pclientrc"; + }); + $hb->pack_start (my $cb = Gtk2::Button->new ("login"), 1, 1, 5); + $cb->signal_connect (clicked => sub { + for (keys %$cfg) { + $::CFG->{$_} = $cfg->{$_} + if $_ ne '_i'; + } + my $cb = $events{login} || sub {}; + $cb->($::CFG->{user}, $::CFG->{password}); + }); + $hb->pack_start (my $cb = Gtk2::Button->new ("logout"), 1, 1, 5); + $cb->signal_connect (clicked => sub { + my $cb = $events{logout} || sub {}; + $cb->(); + }); + $hb->pack_start (my $cb = Gtk2::Button->new ("quit"), 1, 1, 5); + $cb->signal_connect (clicked => sub { $w->destroy }); + + $w->show_all; + + $w->signal_connect (destroy => sub { Gtk2->main_quit }); } + ############################################################################# -use Event; +SDL::Init SDL_INIT_EVERYTHING; -glinit; +my $mapwidget = Crossfire::Client::Widget::MapWidget->new; -$conn = new conn - host => "cf.schmorp.de", - port => 13327; +$Crossfire::Client::Widget::TOPLEVEL->add ($mapwidget); +$mapwidget->focus_in; -Event->timer (after => 0, interval => 1/20, hard => 1, cb => sub { - while ($ev->poll) { - ($ev_cb{$ev->type} || sub { warn "unhandled event ", $ev->type })->(); - } -}); +Crossfire::Client::read_cfg "$Crossfire::VARDIR/pclientrc"; + +$CFG ||= { + width => 640, + height => 480, + mapsize => 100, + fullscreen => 0, + host => "crossfire.schmorp.de", + port => 13327, +}; + +{ + my @fonts = map Crossfire::Client::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf); + + Crossfire::Client::add_font $_ for @fonts; + Crossfire::Client::set_font $fonts[0]; +} + +$FACECACHE = eval { Crossfire::load_ref "$Crossfire::VARDIR/pclient.faces" } || {}; -Event::loop; +run_config_dialog + login => sub { start_game }, + logout => sub { stop_game }; +main Gtk2; +Crossfire::save_ref $FACECACHE, "$Crossfire::VARDIR/pclient.faces";