ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/bin/pclient
Revision: 1.76
Committed: Tue Apr 11 22:14:14 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.75: +2 -2 lines
Log Message:
implement fancyframe move & resize, fix firts round of bugs

File Contents

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