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

Comparing deliantra/Deliantra-Client/bin/pclient (file contents):
Revision 1.22 by root, Fri Apr 7 20:13:13 2006 UTC vs.
Revision 1.43 by elmex, Sun Apr 9 01:40:32 2006 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2
2use strict; 3use strict;
4use utf8;
3 5
4use Glib; 6use Glib;
5use Gtk2 -init; 7use Gtk2 -init;
6 8
7use SDL; 9use SDL;
13 15
14use Crossfire; 16use Crossfire;
15use Crossfire::Client; 17use Crossfire::Client;
16use Crossfire::Protocol; 18use Crossfire::Protocol;
17 19
18use Crossfire::Client::Util;
19use Crossfire::Client::Widget; 20use Crossfire::Client::Widget;
20 21
21our $FACECACHE; 22our $FACECACHE;
22 23
23our $VERSION = '0.1'; 24our $VERSION = '0.1';
25
26our %GL_EXT;
24 27
25our $CFG; 28our $CFG;
26our $CONN; 29our $CONN;
30
31our $WIDTH;
32our $HEIGHT;
33our $FULLSCREEN;
34
35our $FONTSIZE;
27 36
28our $SDL_TIMER; 37our $SDL_TIMER;
29our $SDL_APP; 38our $SDL_APP;
30our $SDL_EV = new SDL::Event; 39our $SDL_EV = new SDL::Event;
31our %SDL_CB; 40our %SDL_CB;
32 41
33our @GL_INIT; # hooks called on every gl init 42our @GL_INIT; # hooks called on every gl init
34 43
44our $ALT_ENTER_MESSAGE;
45
46our $TOPLEVEL;
47
48our $tw; # Test widget #d#
49
35sub init_screen { 50sub init_screen {
36 $SDL_APP = new SDL::App 51 $SDL_APP = new SDL::App
37 -flags => SDL_ANYFORMAT | SDL_HWSURFACE, 52 -flags => SDL_ANYFORMAT | SDL_HWSURFACE,
38 -title => "Crossfire+ Client", 53 -title => "Crossfire+ Client",
39 -width => $CFG->{width}, 54 -width => $WIDTH,
40 -height => $CFG->{height}, 55 -height => $HEIGHT,
41 -opengl => 1, 56 -opengl => 1,
42 -red_size => 8, 57 -red_size => 8,
43 -green_size => 8, 58 -green_size => 8,
44 -blue_size => 8, 59 -blue_size => 8,
45 -double_buffer => 1, 60 -double_buffer => 1,
46 -fullscreen => $CFG->{fullscreen}, 61 -fullscreen => $FULLSCREEN,
47 -resizeable => 0; 62 -resizeable => 0;
48 63
64 %GL_EXT = map +($_ => 1), split /\s+/, Crossfire::Client::gl_extensions;
65
66 $GL_EXT{GL_ARB_texture_non_power_of_two}
67 or warn "WARNING: non-power-of-two opengl extension required";
68
69 $FONTSIZE = int $HEIGHT / 50;
70
71 $ALT_ENTER_MESSAGE = new Crossfire::Client::Widget::Label
72 0, $FONTSIZE, $HEIGHT - $FONTSIZE, $FONTSIZE,
73 "Use <b>Alt-Enter</b> to toggle fullscreen mode";
74 $ALT_ENTER_MESSAGE->move (0, $HEIGHT - ($ALT_ENTER_MESSAGE->size_request)[1]);
75 $TOPLEVEL->add ($ALT_ENTER_MESSAGE);
76
77 # Test code #d#
78 unless ($tw) { # haha...
79 my $frm = new Crossfire::Client::Widget::Frame;
80 $tw = new Crossfire::Client::Widget::Window;
81 $frm->add (my $te = new Crossfire::Client::Widget::TextEntry 0, 0, 10, $FONTSIZE, "Foo in the garden!");
82 $tw->add ($frm);
83
84 $tw->move (0, $HEIGHT - 120);
85 $TOPLEVEL->add ($tw);
86 $te->focus_in;
87 }
88
49 glClearColor 0, 0, 0, 0; 89 glClearColor 0, 0, 0, 0;
50 90
51 glEnable GL_TEXTURE_2D; 91 glEnable GL_TEXTURE_2D;
52 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE; 92 glEnable GL_COLOR_MATERIAL;
53 glShadeModel GL_FLAT; 93 glShadeModel GL_FLAT;
54 glDisable GL_DEPTH_TEST; 94 glDisable GL_DEPTH_TEST;
55 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA; 95 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
56 glEnable GL_BLEND; 96
97 $_->() for @GL_INIT;
98}
99
100sub start_game {
101 $SDL_TIMER = add Glib::Timeout 1000/100, sub {
102 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
103 while $SDL_EV->poll;
104
105 1
106 };
107
108 $WIDTH = $CFG->{width};
109 $HEIGHT = $CFG->{height};
110 $FULLSCREEN = 0;
111
112 init_screen;
113
114 $CONN = new conn
115 host => $CFG->{host},
116 port => $CFG->{port},
117 user => $CFG->{user},
118 pass => $CFG->{password},
119 mapw => 50,
120 maph => 37,
121 ;
122}
123
124sub stop_game {
125 remove Glib::Source $SDL_TIMER;
126
127 undef $SDL_APP;
128 SDL::Quit;
129}
130
131
132sub force_refresh {
133 glViewport 0, 0, $WIDTH, $HEIGHT;
57 134
58 glMatrixMode GL_PROJECTION; 135 glMatrixMode GL_PROJECTION;
59 glLoadIdentity; 136 glLoadIdentity;
60 glOrtho 0, $CFG->{width} / 32, $CFG->{height} / 32, 0, -100 , 100; 137 glOrtho 0, $WIDTH, $HEIGHT, 0, -100 , 100;
61
62 glMatrixMode GL_MODELVIEW; 138 glMatrixMode GL_MODELVIEW;
63 139
64 $_->() for @GL_INIT; 140 glClear GL_COLOR_BUFFER_BIT;
65}
66 141
67sub start_game { 142 $TOPLEVEL->draw;
68 $SDL_TIMER = add Glib::Timeout 1000/20, sub { 143
69 while ($SDL_EV->poll) { 144 SDL::GLSwapBuffers;
70 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->(); 145}
146
147my $refresh_handler;
148
149sub refresh {
150 $refresh_handler ||= add Glib::Idle sub {
151 force_refresh;
152 undef $refresh_handler;
71 } 153 0
72
73 1
74 }; 154 };
75
76 init_screen;
77
78 $CONN = new conn
79 host => $CFG->{host},
80 port => $CFG->{port};
81}
82
83sub stop_game {
84 remove Glib::Source $SDL_TIMER;
85
86 undef $SDL_APP;
87 SDL::Quit;
88}
89
90sub refresh {
91 glClear GL_COLOR_BUFFER_BIT;
92
93 $_->draw for values %Crossfire::Client::Widget::ACTIVE_WIDGETS;
94
95 SDL::GLSwapBuffers;
96} 155}
97 156
98%SDL_CB = ( 157%SDL_CB = (
99 SDL_QUIT() => sub { 158 SDL_QUIT() => sub {
100 main_quit Gtk2; 159 main_quit Gtk2;
105 refresh; 164 refresh;
106 }, 165 },
107 SDL_KEYDOWN() => sub { 166 SDL_KEYDOWN() => sub {
108 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) { 167 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) {
109 # alt-enter 168 # alt-enter
110 $CFG->{fullscreen} = !$CFG->{fullscreen}; 169 $FULLSCREEN = !$FULLSCREEN;
111 init_screen; 170 init_screen;
112 } else { 171 } else {
113 Crossfire::Client::Widget::feed_sdl_key_down_event ($SDL_EV); 172 Crossfire::Client::Widget::feed_sdl_key_down_event ($SDL_EV);
114 } 173 }
115 }, 174 },
162 $FACECACHE->{"$face->{chksum},$face->{name}"} = $face->{image}; 221 $FACECACHE->{"$face->{chksum},$face->{name}"} = $face->{image};
163 222
164 $face->{texture} = new_from_image Crossfire::Client::Texture delete $face->{image}; 223 $face->{texture} = new_from_image Crossfire::Client::Texture delete $face->{image};
165} 224}
166 225
226sub conn::query {
227 my ($self, $flags, $prompt) = @_;
228
229 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
230}
231
232sub gtk_add_cfg_field {
233 my ($tbl, $cfg, $klbl, $key, $value) = @_;
234 my $i = $cfg->{_i}++;
235 $tbl->attach_defaults (my $lbl = Gtk2::Label->new ($klbl), 0, 1, $i, $i + 1);
236 $tbl->attach_defaults (my $ent = Gtk2::Entry->new, 1, 2, $i, $i + 1);
237 if ($key eq 'password') {
238 $ent->set_invisible_char ("*");
239 $ent->set (visibility => 0)
240 }
241 $ent->set_text ($value);
242 $ent->signal_connect (changed => sub {
243 my ($ent) = @_;
244 $cfg->{$key} = $ent->get_text;
245 });
246}
247
248sub run_config_dialog {
249 my (%events) = @_;
250
251 my $w = Gtk2::Window->new;
252
253 my @cfg = (
254 [qw/Host host/],
255 [qw/Port port/],
256 [qw/Username user/],
257 [qw/Password password/],
258 );
259
260 my $cfg = {};
261
262 my $a = SDL::ListModes (0, SDL_FULLSCREEN|SDL_HWSURFACE);
263 my @modes = map { [SDL::RectW ($_), SDL::RectH ($_)] } @$a;
264
265 $w->add (my $vb = Gtk2::VBox->new);
266 $vb->pack_start (my $t = Gtk2::Table->new (2, scalar @cfg), 0, 0, 0);
267 my $selmode = $::CFG->{width} . 'x' . $::CFG->{height};
268 $t->attach_defaults (Gtk2::Label->new ("Modes"), 0, 1, 0, 1);
269 $t->attach_defaults (my $cb = Gtk2::ComboBox->new_text, 1, 2, 0, 1);
270 my $i = 0;
271 my $act = 0;
272 for (map { "$_->[0]x$_->[1]" } reverse @modes) {
273 if ($_ eq $selmode) { $act = $i }
274 $cb->append_text ($_);
275 $i++;
276 }
277 $cb->set_active ($act);
278 $cb->signal_connect (changed => sub {
279 my ($cb) = @_;
280 my $txt = $cb->get_active_text;
281 if ($txt =~ m/(\d+)x(\d+)/) {
282 $::CFG->{width} = $1;
283 $::CFG->{height} = $2;
284 }
285 });
286
287 $cfg->{_i} = 1;
288 for (@cfg) {
289 gtk_add_cfg_field ($t, $cfg, $_->[0], $_->[1], $::CFG->{$_->[1]});
290 }
291
292 $vb->pack_start (my $hb = Gtk2::HBox->new, 0, 0, 0);
293 $hb->pack_start (my $cb = Gtk2::Button->new ("save"), 1, 1, 5);
294 $cb->signal_connect (clicked => sub {
295 for (keys %$cfg) {
296 $::CFG->{$_} = $cfg->{$_}
297 if $_ ne '_i';
298 }
299 Crossfire::Client::write_cfg "$Crossfire::VARDIR/pclientrc";
300 });
301 $hb->pack_start (my $cb = Gtk2::Button->new ("login"), 1, 1, 5);
302 $cb->signal_connect (clicked => sub {
303 for (keys %$cfg) {
304 $::CFG->{$_} = $cfg->{$_}
305 if $_ ne '_i';
306 }
307 my $cb = $events{login} || sub {};
308 $cb->($::CFG->{user}, $::CFG->{password});
309 });
310 $hb->pack_start (my $cb = Gtk2::Button->new ("logout"), 1, 1, 5);
311 $cb->signal_connect (clicked => sub {
312 my $cb = $events{login} || sub {};
313 $cb->();
314 });
315 $hb->pack_start (my $cb = Gtk2::Button->new ("quit"), 1, 1, 5);
316 $cb->signal_connect (clicked => sub { $w->destroy });
317
318 $w->show_all;
319
320 $w->signal_connect (destroy => sub { Gtk2->main_quit });
321}
322
323
167############################################################################# 324#############################################################################
168 325
169SDL::Init(SDL_INIT_EVERYTHING()); 326SDL::Init SDL_INIT_EVERYTHING;
327
328$TOPLEVEL = Crossfire::Client::Widget::Toplevel->new;
170 329
171my $mapwidget = Crossfire::Client::Widget::MapWidget->new; 330my $mapwidget = Crossfire::Client::Widget::MapWidget->new;
172 331
173#find_rcfile "uifont.ttf"; 332$TOPLEVEL->add ($mapwidget);
174
175$mapwidget->activate;
176$mapwidget->focus_in; 333$mapwidget->focus_in;
177 334
178Crossfire::Client::read_cfg "$Crossfire::VARDIR/pclientrc"; 335Crossfire::Client::read_cfg "$Crossfire::VARDIR/pclientrc";
179
180$FACECACHE = eval { Crossfire::load_ref "$Crossfire::VARDIR/pclient.faces" } || {};
181 336
182$CFG ||= { 337$CFG ||= {
183 width => 640, 338 width => 640,
184 height => 480, 339 height => 480,
185 fullscreen => 0, 340 fullscreen => 0,
186 host => "crossfire.schmorp.de", 341 host => "crossfire.schmorp.de",
187 port => 13327, 342 port => 13327,
188}; 343};
189 344
190Crossfire::Client::Util::run_config_dialog 345Crossfire::Client::set_font Crossfire::Client::find_rcfile "uifont.ttf";
346
347$FACECACHE = eval { Crossfire::load_ref "$Crossfire::VARDIR/pclient.faces" } || {};
348
349run_config_dialog
191 login => sub { start_game }, 350 login => sub { start_game },
192 logout => sub { stop_game }; 351 logout => sub { stop_game };
193 352
194main Gtk2; 353main Gtk2;
195 354

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines