ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.62
Committed: Mon Apr 10 19:34:04 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.61: +17 -21 lines
Log Message:
preliminary support for older opengl implementations (NPOT vs. POT)

File Contents

# Content
1 #!/opt/bin/perl
2
3 use strict;
4 use utf8;
5
6 use Glib;
7 use Gtk2 -init;
8
9 use SDL;
10 use SDL::App;
11 use SDL::Event;
12 use SDL::Surface;
13 use SDL::OpenGL;
14 use SDL::OpenGL::Constants;
15
16 use Crossfire;
17 use Crossfire::Protocol;
18
19 use Crossfire::Client;
20 use Crossfire::Client::Widget;
21
22 our $FACECACHE;
23
24 our $VERSION = '0.1';
25
26 our $CFG;
27 our $CONN;
28
29 our $WIDTH;
30 our $HEIGHT;
31 our $FULLSCREEN;
32
33 our $FONTSIZE;
34
35 our $SDL_TIMER;
36 our $SDL_APP;
37 our $SDL_EV;
38 our %SDL_CB;
39
40 our $ALT_ENTER_MESSAGE;
41 our $STATUS_LINE;
42
43 my $last_refresh;
44 my %ANIMATE;
45 my $refresh_handler;
46
47 our ($tw, $te); # Test widget #d#
48
49 sub init_screen {
50 $SDL_APP = new SDL::App
51 -flags => SDL_ANYFORMAT | SDL_HWSURFACE,
52 -title => "Crossfire+ Client",
53 -width => $WIDTH,
54 -height => $HEIGHT,
55 -opengl => 1,
56 -red_size => 5,
57 -green_size => 5,
58 -blue_size => 5,
59 -alpha_size => 0,
60 -double_buffer => 1,
61 -fullscreen => $FULLSCREEN,
62 -resizeable => 0;
63
64 $SDL_EV = new SDL::Event;
65 $SDL_EV->set_unicode (1);
66
67 $SDL_TIMER = add Glib::Timeout 1000/50, sub {
68 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
69 while $SDL_EV->poll;
70
71 1
72 };
73
74 $last_refresh = SDL::GetTicks;
75
76 Crossfire::Client::gl_init;
77
78 $FONTSIZE = int $HEIGHT / 50;
79
80 #############################################################################
81
82 glClearColor 0.45, 0.45, 0.45, 1;
83
84 glEnable GL_TEXTURE_2D;
85 glEnable GL_COLOR_MATERIAL;
86 glShadeModel GL_FLAT;
87 glDisable GL_DEPTH_TEST;
88 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
89
90 #############################################################################
91
92 $STATUS_LINE = new Crossfire::Client::Widget::Label
93 0, $HEIGHT * 59 / 60 - $FONTSIZE, 1, $FONTSIZE,
94 "";
95 $Crossfire::Client::Widget::TOPLEVEL->add ($STATUS_LINE);
96
97 $ALT_ENTER_MESSAGE = new Crossfire::Client::Widget::Label
98 0, $HEIGHT * 59 / 60, 1, $HEIGHT / 60,
99 "Use <b>Alt-Enter</b> to toggle fullscreen mode";
100 $Crossfire::Client::Widget::TOPLEVEL->add ($ALT_ENTER_MESSAGE);
101
102 # Test code #d#
103 unless ($tw) { # haha...
104 $te = new Crossfire::Client::Widget::FancyFrame;
105 $te->add (new Crossfire::Client::Widget::Entry);
106 $te->move (300, 0, 2);
107 $Crossfire::Client::Widget::TOPLEVEL->add ($te);
108
109 $tw = new Crossfire::Client::Widget::Animator;
110 my $lbl1 = new Crossfire::Client::Widget::Label
111 0, 0, 10, $FONTSIZE, "<i>This</i> is a\n<u>TEST</u>!\nOf a themed\nFrame!";
112 my $lbl2 = new Crossfire::Client::Widget::Label
113 0, 0, 10, $FONTSIZE, "LBL2";
114
115 my $vb = new Crossfire::Client::Widget::VBox;
116 my $f = new Crossfire::Client::Widget::FancyFrame;
117 my $f2 = new Crossfire::Client::Widget::FancyFrame;
118 $f->add ($lbl1);
119 $f2->add ($lbl2);
120 $vb->add ($f);
121 $vb->add ($f2, 1);
122
123 $tw->add ($vb);
124 $tw->w (400);
125 $tw->h (300);
126 $tw->move ($WIDTH - 200, 0);
127 $tw->moveto (0, 0);
128 $Crossfire::Client::Widget::TOPLEVEL->add ($tw);
129
130 # $f->move ($WIDTH - 200, 0);
131 # $Crossfire::Client::Widget::TOPLEVEL->add ($f);
132 }
133 }
134
135 sub destroy_screen {
136 remove Glib::Source $SDL_TIMER;
137 undef $SDL_APP;
138 undef $SDL_EV;
139 SDL::Quit;
140 }
141
142 sub start_game {
143 $WIDTH = $CFG->{width};
144 $HEIGHT = $CFG->{height};
145 $FULLSCREEN = 0;
146
147 init_screen;
148
149 my $mapsize = List::Util::min 64, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
150
151 $CONN = new conn
152 host => $CFG->{host},
153 port => $CFG->{port},
154 user => $CFG->{user},
155 pass => $CFG->{password},
156 mapw => $mapsize,
157 maph => $mapsize,
158 ;
159
160 Crossfire::Client::lowdelay fileno $CONN->{fh};
161 }
162
163 sub stop_game {
164 remove Glib::Source $refresh_handler if $refresh_handler;
165 undef $refresh_handler;
166
167 undef $CONN;
168 destroy_screen;
169 }
170
171 sub force_refresh {
172 glViewport 0, 0, $WIDTH, $HEIGHT;
173
174 glMatrixMode GL_PROJECTION;
175 glLoadIdentity;
176 glOrtho 0, $WIDTH, $HEIGHT, 0, -10000 , 10000;
177 glMatrixMode GL_MODELVIEW;
178
179 glClear GL_COLOR_BUFFER_BIT;
180
181 $Crossfire::Client::Widget::TOPLEVEL->draw;
182
183 SDL::GLSwapBuffers;
184 }
185
186 sub refresh {
187 $refresh_handler ||= add Glib::Idle sub {
188 if ($SDL_APP) {
189 my $next_refresh = SDL::GetTicks;
190 my $interval = ($next_refresh - $last_refresh) * 0.001;
191 $last_refresh = $next_refresh;
192
193 force_refresh;
194 $_->animate ($interval) for grep $_, values %ANIMATE;
195
196 if (%ANIMATE) {
197 1
198 } else {
199 undef $refresh_handler;
200 0
201 }
202 } else {
203 undef $refresh_handler;
204 0
205 }
206 };
207 }
208
209 sub animation_start {
210 my ($widget) = @_;
211 $ANIMATE{$widget} = $widget;
212 Scalar::Util::weaken $ANIMATE{$widget};
213
214 refresh;
215 }
216
217 sub animation_stop {
218 my ($widget) = @_;
219 delete $ANIMATE{$widget};
220 }
221
222 %SDL_CB = (
223 SDL_QUIT() => sub {
224 main_quit Gtk2;
225 },
226 SDL_VIDEORESIZE() => sub {
227 },
228 SDL_VIDEOEXPOSE() => sub {
229 refresh;
230 },
231 SDL_KEYDOWN() => sub {
232 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) {
233 # alt-enter
234 $FULLSCREEN = !$FULLSCREEN;
235 init_screen;
236 } else {
237 Crossfire::Client::Widget::feed_sdl_key_down_event ($SDL_EV);
238 }
239 },
240 SDL_KEYUP() => sub {
241 Crossfire::Client::Widget::feed_sdl_key_up_event ($SDL_EV);
242 },
243 SDL_MOUSEMOTION() => sub {
244 Crossfire::Client::Widget::feed_sdl_motion_event ($SDL_EV);
245 },
246 SDL_MOUSEBUTTONDOWN() => sub {
247 Crossfire::Client::Widget::feed_sdl_button_down_event ($SDL_EV);
248 },
249 SDL_MOUSEBUTTONUP() => sub {
250 Crossfire::Client::Widget::feed_sdl_button_up_event ($SDL_EV);
251 },
252 SDL_ACTIVEEVENT() => sub {
253 printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
254 },
255 );
256
257 @conn::ISA = Crossfire::Protocol::;
258
259 sub conn::map_update {
260 my ($self, $dirty) = @_;
261
262 refresh;
263 }
264
265 sub conn::map_scroll {
266 my ($self, $dx, $dy) = @_;
267
268 # refresh;
269 }
270
271 sub conn::map_clear {
272 my ($self) = @_;
273
274 # refresh;
275 }
276
277 sub conn::face_find {
278 my ($self, $face) = @_;
279
280 $FACECACHE->{"$face->{chksum},$face->{name}"}
281 }
282
283 sub conn::face_update {
284 my ($self, $face) = @_;
285
286 $FACECACHE->{"$face->{chksum},$face->{name}"} = $face->{image};
287
288 $face->{texture} = new_from_image Crossfire::Client::Texture delete $face->{image};
289 }
290
291 sub conn::query {
292 my ($self, $flags, $prompt) = @_;
293
294 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
295 }
296
297 sub gtk_add_cfg_field {
298 my ($tbl, $cfg, $klbl, $key, $value) = @_;
299 my $i = $cfg->{_i}++;
300 $tbl->attach_defaults (my $lbl = Gtk2::Label->new ($klbl), 0, 1, $i, $i + 1);
301 $tbl->attach_defaults (my $ent = Gtk2::Entry->new, 1, 2, $i, $i + 1);
302 if ($key eq 'password') {
303 $ent->set_invisible_char ("*");
304 $ent->set (visibility => 0)
305 }
306 $ent->set_text ($value);
307 $ent->signal_connect (changed => sub {
308 my ($ent) = @_;
309 $cfg->{$key} = $ent->get_text;
310 # TODO: Mapsize should be a slider in the game gui
311 if ($key eq 'mapsize' and $cfg->{$key} > 100) {
312 $cfg->{$key} = 100;
313 } elsif ($key eq 'mapsize' and $cfg->{$key} < 50) {
314 $cfg->{$key} = 50;
315 }
316 });
317 }
318
319 sub run_config_dialog {
320 my (%events) = @_;
321
322 my $w = Gtk2::Window->new;
323
324 my @cfg = (
325 [qw/Host host/],
326 [qw/Port port/],
327 [qw/Mapsize% mapsize/],
328 [qw/Username user/],
329 [qw/Password password/],
330 );
331
332 my $cfg = {};
333
334 my $a = SDL::ListModes (0, SDL_FULLSCREEN|SDL_HWSURFACE);
335 my @modes = map { [SDL::RectW ($_), SDL::RectH ($_)] } @$a;
336
337 $w->add (my $vb = Gtk2::VBox->new);
338 $vb->pack_start (my $t = Gtk2::Table->new (2, scalar @cfg), 0, 0, 0);
339 my $selmode = $::CFG->{width} . 'x' . $::CFG->{height};
340 $t->attach_defaults (Gtk2::Label->new ("Modes"), 0, 1, 0, 1);
341 $t->attach_defaults (my $cb = Gtk2::ComboBox->new_text, 1, 2, 0, 1);
342 my $i = 0;
343 my $act = 0;
344 for (map { "$_->[0]x$_->[1]" } reverse @modes) {
345 if ($_ eq $selmode) { $act = $i }
346 $cb->append_text ($_);
347 $i++;
348 }
349 $cb->set_active ($act);
350 $cb->signal_connect (changed => sub {
351 my ($cb) = @_;
352 my $txt = $cb->get_active_text;
353 if ($txt =~ m/(\d+)x(\d+)/) {
354 $::CFG->{width} = $1;
355 $::CFG->{height} = $2;
356 }
357 });
358
359 $cfg->{_i} = 1;
360 for (@cfg) {
361 gtk_add_cfg_field ($t, $cfg, $_->[0], $_->[1], $::CFG->{$_->[1]});
362 }
363
364 $vb->pack_start (my $hb = Gtk2::HBox->new, 0, 0, 0);
365 $hb->pack_start (my $cb = Gtk2::Button->new ("save"), 1, 1, 5);
366 $cb->signal_connect (clicked => sub {
367 for (keys %$cfg) {
368 $::CFG->{$_} = $cfg->{$_}
369 if $_ ne '_i';
370 }
371 Crossfire::Client::write_cfg "$Crossfire::VARDIR/pclientrc";
372 });
373 $hb->pack_start (my $cb = Gtk2::Button->new ("login"), 1, 1, 5);
374 $cb->signal_connect (clicked => sub {
375 for (keys %$cfg) {
376 $::CFG->{$_} = $cfg->{$_}
377 if $_ ne '_i';
378 }
379 my $cb = $events{login} || sub {};
380 $cb->($::CFG->{user}, $::CFG->{password});
381 });
382 $hb->pack_start (my $cb = Gtk2::Button->new ("logout"), 1, 1, 5);
383 $cb->signal_connect (clicked => sub {
384 my $cb = $events{logout} || sub {};
385 $cb->();
386 });
387 $hb->pack_start (my $cb = Gtk2::Button->new ("quit"), 1, 1, 5);
388 $cb->signal_connect (clicked => sub { $w->destroy });
389
390 $w->show_all;
391
392 $w->signal_connect (destroy => sub { Gtk2->main_quit });
393 }
394
395
396 #############################################################################
397
398 SDL::Init SDL_INIT_EVERYTHING;
399
400 my $mapwidget = Crossfire::Client::Widget::MapWidget->new;
401
402 $Crossfire::Client::Widget::TOPLEVEL->add ($mapwidget);
403 $mapwidget->focus_in;
404
405 Crossfire::Client::read_cfg "$Crossfire::VARDIR/pclientrc";
406
407 $CFG ||= {
408 width => 640,
409 height => 480,
410 mapsize => 100,
411 fullscreen => 0,
412 host => "crossfire.schmorp.de",
413 port => 13327,
414 };
415
416 Crossfire::Client::set_font Crossfire::Client::find_rcfile "uifont.ttf";
417
418 $FACECACHE = eval { Crossfire::load_ref "$Crossfire::VARDIR/pclient.faces" } || {};
419
420 run_config_dialog
421 login => sub { start_game },
422 logout => sub { stop_game };
423
424 main Gtk2;
425
426 Crossfire::save_ref $FACECACHE, "$Crossfire::VARDIR/pclient.faces";