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.9 by root, Fri Apr 7 13:53:38 2006 UTC vs.
Revision 1.134 by root, Tue Apr 18 05:13:15 2006 UTC

1#!/opt/bin/perl 1#!/opt/bin/perl
2 2
3use strict; 3use strict;
4use utf8;
4 5
5use Crossfire::Client; 6use Time::HiRes 'time';
6use Crossfire::Protocol; 7use Event;
7
8package Crossfire::Client; # uh, yeah
9
10use strict;
11 8
12use SDL; 9use SDL;
13use SDL::App; 10use SDL::App;
14use SDL::Event; 11use SDL::Event;
15use SDL::Surface; 12use SDL::Surface;
13
14use SDL::Sound;
15use SDL::Mixer;
16
16use SDL::OpenGL; 17use SDL::OpenGL;
17use SDL::OpenGL::Constants;
18 18
19my $conn; 19use Crossfire;
20my $app; 20use Crossfire::Protocol;
21 21
22my $WIDTH = 640; 22use Compress::LZF;
23my $HEIGHT = 480;
24 23
25sub glinit { 24use CFClient;
26 # nuke all gl context data 25use CFClient::UI;
26
27our $VERSION = '0.1';
28
29my $MAX_FPS = 60;
30my $MIN_FPS = 5; # unused as of yet
31
32our $META_SERVER = "crossfire.real-time.com:13326";
33
34our $FACEMAP;
35our $TILECACHE;
36our $MAPCACHE;
37
38our $LAST_REFRESH;
39our $NOW;
40
41our $CFG;
42our $CONN;
43our $FAST; # fast, low-quality mode, possibly useful for software-rendering
44
45our @SDL_MODES;
46our $WIDTH;
47our $HEIGHT;
48our $FULLSCREEN;
49our $FONTSIZE;
50
51our $MAP;
52our $MAPWIDGET;
53our $BUTTONBAR;
54our $LOGVIEW;
55our $CONSOLE;
56our $METASERVER;
57
58our $GAUGES;
59
60our $SDL_ACTIVE;
61our $SDL_EV;
62our %SDL_CB;
63
64our $SDL_MIXER;
65our @SOUNDS; # event => file mapping
66our %AUDIO_CHUNKS; # audio files
67
68our $ALT_ENTER_MESSAGE;
69our $STATUS_LINE;
70our $DEBUG_STATUS;
71
72sub status {
73 $STATUS_LINE->set_text ($_[0]);
74 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
75}
76
77sub debug {
78 $DEBUG_STATUS->set_text ($_[0]);
79 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
80}
81
82sub start_game {
83 status "logging in...";
84
85 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
86
87 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
88
89 $MAP = new CFClient::Map $mapsize, $mapsize;
90
91 my ($host, $port) = split /:/, $CFG->{host};
27 92
28 $app = new SDL::App 93 $CONN = new conn
29 -flags => SDL_ANYFORMAT | SDL_HWSURFACE, 94 host => $host,
30 -title => "Crossfire+ Client", 95 port => $port || 13327,
31 -width => $WIDTH, 96 user => $CFG->{user},
32 -height => $HEIGHT, 97 pass => $CFG->{password},
33 -opengl => 1, 98 mapw => $mapsize,
34 -red_size => 8, 99 maph => $mapsize,
35 -green_size => 8, 100 ;
36 -blue_size => 8,
37 -double_buffer => 1,
38 -resizeable => 0;
39 101
40 glEnable GL_TEXTURE_2D; 102 status "login successful";
41 glTexEnv GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE;
42 glShadeModel GL_FLAT;
43 glDisable GL_DEPTH_TEST;
44 glBlendFunc GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA;
45 glEnable GL_BLEND;
46 103
47 glMatrixMode GL_PROJECTION; 104 CFClient::lowdelay fileno $CONN->{fh};
48 glLoadIdentity;
49 glOrtho 0, $WIDTH / 32, $HEIGHT / 32, 0, -1 , 1;
50
51 # re-bind all textures
52} 105}
53 106
54sub refresh { 107sub stop_game {
55 glClearColor 0, 0, 0, 0; 108 undef $CONN;
56 glClear GL_COLOR_BUFFER_BIT; 109}
57 110
58 my $map = $conn->{map}; 111sub client_setup {
112 my $dialog = new CFClient::UI::FancyFrame
113 child => (my $vbox = new CFClient::UI::VBox);
114 $vbox->add (new CFClient::UI::Label align => 0, text => "Client Setup");
115 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
59 116
60 for my $x (0 .. $conn->{mapw} - 1) { 117 $table->add (0, 0, new CFClient::UI::Label align => 1, text => "Video Mode");
61 for my $y (0 .. $conn->{maph} - 1) { 118 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
62 119
63 my $cell = $map->[$x][$y] 120 $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
64 or next; 121 $hbox->add (my $mode_label = new CFClient::UI::Label height => $FONTSIZE * 0.8);
65 122
66 my $darkness = $cell->[3] * (1 / 255); 123 $mode_slider->connect (changed => sub {
67 my $darkness = 0.8 + 0.2*rand; 124 my ($self, $value) = @_;
68 glColor $darkness, $darkness, $darkness;
69 125
70 for my $num (grep $_, $cell->[0], $cell->[1], $cell->[2]) { 126 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
71 my $tex = $conn->{face}[$num]{texture} || 0; 127 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
72 128 });
73 glBindTexture GL_TEXTURE_2D, $tex; 129 $mode_slider->emit (changed => $mode_slider->{range}[0]);
74 130
75 glBegin GL_QUADS; 131 $table->add (0, 1, new CFClient::UI::Label align => 1, text => "Fullscreen");
76 glTexCoord 0, 0; glVertex $x, $y; 132 $table->add (1, 1, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub {
77 glTexCoord 0, 1; glVertex $x, $y + 1; 133 my ($self, $value) = @_;
78 glTexCoord 1, 1; glVertex $x + 1, $y + 1; 134 $CFG->{fullscreen} = $value;
79 glTexCoord 1, 0; glVertex $x + 1, $y; 135 });
136
137 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Fast & Ugly");
138 $table->add (1, 2, new CFClient::UI::CheckBox state => $CFG->{fast}, connect_changed => sub {
139 my ($self, $value) = @_;
140 $CFG->{fast} = $value;
141 });
142
143 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Fog of War");
144 $table->add (1, 3, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub {
145 my ($self, $value) = @_;
146 $CFG->{fow_enable} = $value;
147 });
148
149 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "FoW Intensity");
150 $table->add (1, 4, new CFClient::UI::Slider range => [$CFG->{fow_intensity}, 0, 1 + 0.001, 0.001], connect_changed => sub {
151 my ($self, $value) = @_;
152 $CFG->{fow_intensity} = $value;
153 });
154
155 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "FoW Smooth");
156 $table->add (1, 5, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub {
157 my ($self, $value) = @_;
158 $CFG->{fow_smooth} = $value;
159 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
160 });
161
162 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Log Fontsize");
163 $table->add (1, 6, new CFClient::UI::Slider range => [$CFG->{log_fontsize}, 8, 30, 1], connect_changed => sub {
164 my ($self, $value) = @_;
165 $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = int $value);
166 });
167
168 $table->add (1, 7, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
169 video_shutdown ();
170 video_init ();
171 });
172
173 $dialog
174}
175
176sub metaserver_dialog {
177 my $dialog = new CFClient::UI::FancyFrame
178 child => (my $vbox = new CFClient::UI::VBox);
179
180 $vbox->add ($dialog->{table} = new CFClient::UI::Table);
181
182 $dialog
183}
184
185sub update_metaserver {
186 my ($HOST) = @_;
187
188 status "fetching metaserver list...";
189
190 my $buf;
191
192 my $fh = new IO::Socket::INET PeerHost => $META_SERVER, Blocking => 0;
193
194 Event->io (fd => $fh, poll => 'r', cb => sub {
195 my $res = sysread $fh, $buf, 8192, length $buf;
196
197 if (!defined $res) {
198 $_[0]->w->cancel;
199 status "metaserver: $!";
200 } elsif ($res == 0) {
201 $_[0]->w->cancel;
202 status "server list retrieved";
203
204 my $table = $METASERVER->{table};
205
206 $table->clear;
207
208 my @col = qw(Use #Users Host Uptime Version Description);
209 $table->add ($_, 0, new CFClient::UI::Label align => 0, fg => [1, 1, 0], text => $col[$_])
210 for 0 .. $#col;
211
212 my @align = qw(1 0 1 1 -1);
213
214 my $y = 0;
215 for my $m (sort { $b->[3] <=> $a->[3] } map [split /\|/], split /\015?\012/, $buf) {
216 my ($ip, $last, $host, $users, $version, $desc, $ibytes, $obytes, $uptime) = @$m;
217
218 for ($desc) {
219 s/<br>/\n/gi;
220 s/<li>/\n· /gi;
221 s/<.*?>//sgi;
222 s/&/&amp;/g;
223 s/</&lt;/g;
224 s/>/&gt;/g;
225 }
226
227 $uptime = sprintf "%dd %02d:%02d:%02d",
228 (int $m->[8] / 86400),
229 (int $m->[8] / 3600) % 24,
230 (int $m->[8] / 60) % 60,
231 $m->[8] % 60;
232
233 $m = [$users, $host, $uptime, $version, $desc];
234
235 $y++;
236
237 $table->add (0, $y, new CFClient::UI::VBox children => [
238 (new CFClient::UI::Button text => " ", connect_activate => sub {
239 $HOST->set_text ($CFG->{host} = $host);
240 }),
241 (new CFClient::UI::Empty expand => 1),
242 ]);
80 glEnd; 243
244 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => $FONTSIZE * 0.8)
245 for 0 .. $#$m;
81 } 246 }
82 } 247 }
248 });
249}
250
251sub server_setup {
252 my $dialog = new CFClient::UI::FancyFrame
253 child => (my $vbox = new CFClient::UI::VBox);
254
255 $vbox->add (new CFClient::UI::Label align => 0, text => "Server Setup");
256 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
257 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Host:Port");
258
259 {
260 $table->add (1, 2, my $vbox = new CFClient::UI::VBox);
261
262 $vbox->add (my $HOST = new CFClient::UI::Entry text => $CFG->{host}, connect_changed => sub {
263 my ($self, $value) = @_;
264 $CFG->{host} = $value;
265 });
266
267 $METASERVER = metaserver_dialog;
268
269 $vbox->add (new CFClient::UI::Flopper text => "Metaserver", other => $METASERVER, connect_open => sub {
270 update_metaserver $HOST;
271 });
83 } 272 }
84 273
274 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "Username");
275 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub {
276 my ($self, $value) = @_;
277 $CFG->{user} = $value;
278 });
279
280 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "Password");
281 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub {
282 my ($self, $value) = @_;
283 $CFG->{password} = $value;
284 });
285
286 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Def. say cmd");
287 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry text => $CFG->{say_command}, connect_changed => sub {
288 my ($self, $value) = @_;
289 $CFG->{say_command} = $value;
290 });
291
292 $table->add (0, 7, new CFClient::UI::Label align => 1, text => "Map Size");
293 $table->add (1, 7, new CFClient::UI::Slider
294 req_w => 100,
295 range => [$CFG->{mapsize}, 10, 100 + 1, 1],
296 connect_changed => sub {
297 my ($self, $value) = @_;
298
299 $CFG->{mapsize} = $self->{range}[0] = $value = int $value;
300 },
301 );
302
303 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
304 start_game;
305 });
306
307 $dialog
308}
309
310sub message_window {
311 my $window = new CFClient::UI::FancyFrame
312 border_bg => [1, 1, 1, 0.5],
313 bg => [0.3, 0.3, 0.3, 0.8],
314 user_w => int $::WIDTH / 3,
315 user_h => int $::HEIGHT / 5,
316 child => (my $vbox = new CFClient::UI::VBox);
317
318 $vbox->add ($LOGVIEW = new CFClient::UI::TextView
319 expand => 1,
320 fontsize => $::CFG->{log_fontsize},
321 );
322
323 $vbox->add (my $input = new CFClient::UI::Entry
324 connect_focus_in => sub {
325 my ($input, $prev_focus) = @_;
326
327 delete $input->{refocus_map};
328
329 if ($prev_focus == $MAPWIDGET && $input->{auto_activated}) {
330 $input->{refocus_map} = 1;
331 }
332 delete $input->{auto_activated};
333 },
334 connect_activate => sub {
335 my ($input, $text) = @_;
336 $input->set_text ('');
337
338 if ($text =~ /^\/(.*)/) {
339 $::CONN->user_send ($1);
340 } else {
341 my $say_cmd = $::CFG->{say_command} || 'say';
342 $::CONN->user_send ("$say_cmd $text");
343 }
344 if ($input->{refocus_map}) {
345 delete $input->{refocus_map};
346 $MAPWIDGET->focus_in
347 }
348 },
349 connect_escape => sub {
350 $MAPWIDGET->focus_in
351 },
352 );
353
354 $CONSOLE = {
355 window => $window,
356 input => $input
357 };
358
359 $window
360}
361
362sub sdl_init {
363 #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE
364 SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO
365 and die "SDL::Init failed!\n";
366}
367
368sub video_init {
369 sdl_init;
370
371 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
372 $FULLSCREEN = $CFG->{fullscreen};
373 $FAST = $CFG->{fast};
374
375 SDL::GLSetAttribute SDL_GL_RED_SIZE, 5;
376 SDL::GLSetAttribute SDL_GL_GREEN_SIZE, 5;
377 SDL::GLSetAttribute SDL_GL_BLUE_SIZE, 5;
378 SDL::GLSetAttribute SDL_GL_ALPHA_SIZE, 1;
379
380 SDL::GLSetAttribute SDL_GL_ACCUM_RED_SIZE, 0;
381 SDL::GLSetAttribute SDL_GL_ACCUM_GREEN_SIZE, 0;
382 SDL::GLSetAttribute SDL_GL_ACCUM_BLUE_SIZE, 0;
383 SDL::GLSetAttribute SDL_GL_ACCUM_ALPHA_SIZE, 0;
384
385 SDL::GLSetAttribute SDL_GL_DOUBLEBUFFER, 1;
386 SDL::GLSetAttribute SDL_GL_BUFFER_SIZE, 15;
387 SDL::GLSetAttribute SDL_GL_DEPTH_SIZE, 0;
388
389 SDL::SetVideoMode $WIDTH, $HEIGHT, 0,
390 SDL_HWSURFACE | SDL_ANYFORMAT | SDL_OPENGL | SDL_DOUBLEBUF
391 | ($FULLSCREEN ? SDL_FULLSCREEN : 0)
392 or die "SDL::SetVideoMode failed!\n";
393
394 SDL::WMSetCaption "Crossfire+ Client", "Crossfire+";
395
396 $SDL_EV = new SDL::Event;
397 $SDL_EV->set_unicode (1);
398
399 $SDL_ACTIVE = 1;
400
401 $LAST_REFRESH = time - 0.01;
402
403 CFClient::gl_init;
404
405 $FONTSIZE = int $HEIGHT / 40;
406
407 #############################################################################
408
409 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
410 $CFClient::UI::ROOT->add ($DEBUG_STATUS);
411
412 $STATUS_LINE = new CFClient::UI::Label
413 padding => 0,
414 y => $HEIGHT * 44 / 45 - $FONTSIZE;
415 $CFClient::UI::ROOT->add ($STATUS_LINE);
416
417 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
418 padding => 0,
419 y => $HEIGHT * 44 / 45,
420 fontsize => $HEIGHT / 45,
421 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
422 $CFClient::UI::ROOT->add ($ALT_ENTER_MESSAGE);
423
424 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::UI::MapWidget);
425 $MAPWIDGET->focus_in;
426 $MAPWIDGET->connect (activate_console => sub {
427 my ($mapwidget, $preset) = @_;
428
429 if ($CONSOLE) {
430 $CONSOLE->{input}->{auto_activated} = 1;
431 $CONSOLE->{input}->focus_in;
432
433 if ($preset && $CONSOLE->{input}->get_text eq '') {
434 $CONSOLE->{input}->set_text ($preset);
435 }
436 }
437 });
438
439 $CFClient::UI::ROOT->add ($BUTTONBAR = new CFClient::UI::HBox);
440
441 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Client Setup", other => client_setup);
442 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Server Setup", other => server_setup);
443 $BUTTONBAR->add (new CFClient::UI::Flopper text => "Message Window", other => message_window);
444
445 $BUTTONBAR->add (new CFClient::UI::Button text => "Save Config", connect_activate => sub {
446 CFClient::write_cfg "$Crossfire::VARDIR/pclientrc";
447 status "Configuration Saved";
448 });
449
450 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
451
452 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0);
453 $tgw->add (my $hbox = new CFClient::UI::HBox ());
454
455 $hbox->add (my $hg = new CFClient::UI::VGauge (gauge => 'hp'));
456 $hbox->add (my $mg = new CFClient::UI::VGauge (gauge => 'mana'));
457 $hbox->add (my $gg = new CFClient::UI::VGauge (gauge => 'grace'));
458 $hbox->add (my $fg = new CFClient::UI::VGauge (gauge => 'food'));
459
460 $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg };
461 $CFClient::UI::ROOT->add ($tgw);
462}
463
464sub video_shutdown {
465 $CFClient::UI::ROOT->{children} = [];
466 undef $SDL_ACTIVE;
467 undef $SDL_EV;
468}
469
470sub audio_init {
471 if ($CFG->{sound} || 1) {
472 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") {
473 $SDL_MIXER = new SDL::Mixer;
474 $SDL_MIXER->allocate_channels (8);
475
476 while (<$fh>) {
477 next if /^\s*#/;
478 next if /^\s*$/;
479
480 my ($file, $volume, $event) = split /\s+/, $_, 3;
481
482 push @SOUNDS, "$volume,$file";
483
484 $AUDIO_CHUNKS{"$volume,$file"} ||= do {
485 my $chunk = new SDL::Sound CFClient::find_rcfile "sounds/$file";
486 $chunk->volume ($volume * 128 / 100);
487 $chunk
488 };
489 }
490 } else {
491 status "unable to open sound config: $!";
492 }
493 }
494}
495
496sub audio_shutdown {
497 undef $SDL_MIXER;
498 @SOUNDS = ();
499 %AUDIO_CHUNKS = ();
500}
501
502my %animate_object;
503my $animate_timer;
504
505my $want_refresh;
506my $can_refresh;
507
508my $fps = 9;
509
510sub force_refresh {
511 $fps = $fps * 0.95 + 1 / ($NOW - $LAST_REFRESH) * 0.05;
512 debug sprintf "%3.2f", $fps;
513
514 $want_refresh = 0;
515 $can_refresh = 0;
516
517 $CFClient::UI::ROOT->draw;
518
85 SDL::GLSwapBuffers; 519 SDL::GLSwapBuffers;
86}
87 520
88my $ev = new SDL::Event; 521 $LAST_REFRESH = $NOW;
89my %ev_cb;
90
91sub event(&$) {
92 $ev_cb{$_[0]->()} = $_[1];
93} 522}
94 523
95sub does(&) { shift } 524my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
525 $NOW = time;
96 526
97event {SDL_QUIT} does { 527 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
98 exit; 528 while $SDL_EV->poll;
529
530 if (%animate_object) {
531 $_->animate ($LAST_REFRESH - $NOW) for values %animate_object;
532 $want_refresh++;
533 }
534
535 if ($want_refresh) {
536 force_refresh;
537 } else {
538 $can_refresh = 1;
539 }
99}; 540});
100 541
101event {SDL_VIDEORESIZE} does { 542sub refresh {
102 print "resize\n"; 543 $want_refresh++;
103}; 544}
104 545
105event {SDL_VIDEOEXPOSE} does { 546sub animation_start {
106 refresh; 547 my ($widget) = @_;
107}; 548 $animate_object{$widget} = $widget;
549}
108 550
109event {SDL_KEYDOWN} does { 551sub animation_stop {
110 print "keypress\n"; 552 my ($widget) = @_;
111}; 553 delete $animate_object{$widget};
112 554}
113event {SDL_KEYUP} does {
114 print "keyup\n";#d#
115};
116
117event {SDL_MOUSEMOTION} does {
118 print "motion\n";
119};
120
121event {SDL_MOUSEBUTTONDOWN} does {
122 print "button\n";
123};
124
125event {SDL_MOUSEBUTTONUP} does {
126 print "buttup\n";
127};
128
129event {SDL_ACTIVEEVENT} does {
130 print "active\n";
131};
132
133package Crossfire::Client;
134 555
135@conn::ISA = Crossfire::Protocol::; 556@conn::ISA = Crossfire::Protocol::;
136 557
137sub conn::map_update { 558sub conn::stats_update {
138 my ($self, $dirty) = @_; 559 my ($self, $stats) = @_;
139 560
140 refresh; 561 # i love text protocols!!!
562 # FIXME: the stats are somehow weird
563 my $hp = $stats->{1};
564 my $hp_m = $stats->{2};
565 my $sp = $stats->{3};
566 my $sp_m = $stats->{4};
567 my $fo = $stats->{18};
568 my $fo_m = 1000;
569 my $gr = $stats->{23};
570 my $gr_m = $stats->{24};
571
572 #d# warn "DATA $hp $hp_m $sp $sp_m $fo $fo_m $gr $gr_m\n";
573 $GAUGES->{hp}->set_value ($hp, $hp_m);
574 $GAUGES->{mana}->set_value ($sp, $sp_m);
575 $GAUGES->{food}->set_value ($fo, $fo_m);
576 $GAUGES->{grace}->set_value ($gr, $gr_m);
577}
578
579sub conn::user_send {
580 my ($self, $command) = @_;
581
582 $self->send_command ($command);
583 status $command;
141} 584}
142 585
143sub conn::map_scroll { 586sub conn::map_scroll {
144 my ($self, $dx, $dy) = @_; 587 my ($self, $dx, $dy) = @_;
145 588
146 refresh; 589 $MAP->scroll ($dx, $dy);
590}
591
592sub conn::feed_map1a {
593 my ($self, $data) = @_;
594
595# $self->Crossfire::Protocol::feed_map1a ($data);
596
597 $MAP->map1a_update ($data);
598 $MAPWIDGET->update;
599}
600
601sub conn::flush_map {
602 my ($self) = @_;
603
604 my $map_info = delete $self->{map_info}
605 or return;
606
607 my ($hash, $x, $y, $w, $h) = @$map_info;
608
609 my $data = $MAP->get_rect ($x, $y, $w, $h);
610 $MAPCACHE->put ($hash => Compress::LZF::compress $data);
611
612 warn sprintf "SAVEmap[%s] length %d\n", $hash, length $data;#d#
613
147} 614}
148 615
149sub conn::map_clear { 616sub conn::map_clear {
150 my ($self) = @_; 617 my ($self) = @_;
151 618
152 refresh; 619 $self->flush_map;
620 delete $self->{neigh};
621
622 $MAP->clear;
623}
624
625
626sub conn::load_map($$$) {
627 my ($self, $hash, $x, $y) = @_;
628
629 if (defined (my $data = $MAPCACHE->get ($hash))) {
630 $data = Compress::LZF::decompress $data;
631 warn sprintf "LOADmap[%s,%d,%d] length %d\n", $hash, $x, $y, length $data;#d#
632 for my $id ($MAP->set_rect ($x, $y, $data)) {
633 my $data = $TILECACHE->get ($id)
634 or next;
635
636 $self->set_texture ($id => $data);
637 }
638 }
639}
640
641sub conn::flood_fill {
642 my ($self, $path, $hash, $flags, $x0, $y0, $x1, $y1) = @_;
643
644 # the server does not allow map paths > 6
645 return if 6 <= length $path;
646
647 for my $tile (1..4) {
648 next if $self->{neigh}{$hash}[$tile];
649 next unless $flags & (1 << ($tile - 1));
650
651 my $neigh = $self->{neigh}{$hash} ||= [];
652
653 $self->send_mapinfo ("spatial $path$tile", sub {
654 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
655
656 #warn "map<$path>_$tile=<$mode,$x,$y,$w,$h,$hash>\n";#d#
657 return if $mode ne "spatial";
658
659 $x += $MAP->ox;
660 $y += $MAP->oy;
661
662 $self->load_map ($hash, $x, $y)
663 unless $self->{neigh}{$hash}[5]++;#d#
664
665 $neigh->[$tile] = [$x, $y, $w, $h];
666
667 $self->flood_fill ("$path$tile", $hash, $flags, $x0, $y0, $x1, $y1)
668 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
669 });
670 }
671}
672
673sub conn::map_change {
674 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
675
676 $self->flush_map;
677
678 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
679
680 my $mapmapw = 250;
681 my $mapmaph = 250;
682
683 $self->flood_fill ("", $hash, $flags,
684 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
685 $ox + $mapmapw * 0.5, $oy + $mapmapw * 0.5);
686
687 $x += $ox;
688 $y += $oy;
689
690 $self->{map_info} = [$hash, $x, $y, $w, $h];
691
692 $self->load_map ($hash, $x, $y);
693}
694
695sub conn::face_find {
696 my ($self, $facenum, $face) = @_;
697
698 my $hash = "$face->{chksum},$face->{name}";
699
700 my $id = $FACEMAP->get ($hash);
701
702 unless ($id) {
703 # create new id for face
704 # i love transactions
705 for (1..100) {
706 my $txn = $CFClient::DB_ENV->txn_begin;
707 my $status = $FACEMAP->db_get (id => $id, BerkeleyDB::DB_RMW);
708 if ($status == 0 || $status == BerkeleyDB::DB_NOTFOUND) {
709 $id++;
710 if ($FACEMAP->put (id => $id) == 0
711 && $FACEMAP->put ($hash => $id) == 0) {
712 $txn->txn_commit;
713
714 goto gotid;
715 }
716 }
717 $txn->abort;
718 }
719
720 CFClient::fatal "maximum number of transaction retries reached - database problems?";
721 }
722
723gotid:
724 $face->{id} = $id;
725 $MAP->set_face ($facenum => $id);
726 $TILECACHE->get ($id)
153} 727}
154 728
155sub conn::face_update { 729sub conn::face_update {
156 my ($self, $num, $face) = @_; 730 my ($self, $facenum, $face) = @_;
157 731
158 warn "up face $self,$num,$face\n";#d# 732 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
159 use Gtk2;
160 733
161 my $pb = new Gtk2::Gdk::PixbufLoader; 734 $self->set_texture ($face->{id} => delete $face->{image});
162 $pb->write ($face->{image}); 735}
163 $pb->close;
164 736
165 $pb = $pb->get_pixbuf; 737sub conn::set_texture {
166 $pb = $pb->add_alpha (0, 0, 0, 0); 738 my ($self, $id, $data) = @_;
167 739
168 glGetError(); 740 $self->{texture}[$id] ||= do {
169 my ($tex) = @{glGenTextures 1}; 741 my $tex =
742 new_from_image CFClient::Texture
743 $data, minify => 1;
170 744
171 $face->{texture} = $tex; 745 $MAP->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
746 $MAPWIDGET->update;
747
748 $tex
172 749 };
173 glBindTexture GL_TEXTURE_2D, $tex; 750}
174 my $glerr=glGetError(); die "a: ".gluErrorString($glerr)."\n" if $glerr; 751
175 752sub conn::sound_play {
176 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR; 753 my ($self, $x, $y, $soundnum, $type) = @_;
177 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR;#_MIPMAP_LINEAR; 754
178 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP; 755 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
179 glTexParameter GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP; 756 or return;
757
758 $SDL_MIXER->play_channel (-1, $chunk);
759 warn "sound $x,$y,$soundnum,$type\n";#d#
760}
761
762sub conn::query {
763 my ($self, $flags, $prompt) = @_;
764
765 #TODO
766 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
767}
768
769sub conn::drawinfo {
770 my ($self, $color, $text) = @_;
771
772 my @color = (
773 [1.00, 1.00, 1.00], #[0.00, 0.00, 0.00],
774 [1.00, 1.00, 1.00],
775 [0.50, 0.50, 1.00], #[0.00, 0.00, 0.55]
776 [1.00, 0.00, 0.00],
777 [1.00, 0.54, 0.00],
778 [0.11, 0.56, 1.00],
779 [0.93, 0.46, 0.00],
780 [0.18, 0.54, 0.34],
781 [0.56, 0.73, 0.56],
782 [0.80, 0.80, 0.80],
783 [0.55, 0.41, 0.13],
784 [0.99, 0.77, 0.26],
785 [0.74, 0.65, 0.41],
180 786 );
181 glTexImage2D GL_TEXTURE_2D, 0, 787
182 GL_RGBA8, 788 $LOGVIEW->add_paragraph ($color[$color], $text);
183 $pb->get_width, $pb->get_height,
184 0,
185 GL_RGBA,
186 GL_UNSIGNED_BYTE,
187 $pb->get_pixels;
188 my $glerr=glGetError(); die "Problem setting up 2d Texture (dimensions not a power of 2?)):".gluErrorString($glerr)."\n" if $glerr;
189} 789}
790
791%SDL_CB = (
792 SDL_QUIT() => sub {
793 Event::unloop -1;
794 },
795 SDL_VIDEORESIZE() => sub {
796 },
797 SDL_VIDEOEXPOSE() => sub {
798 refresh;
799 },
800 SDL_KEYDOWN() => sub {
801 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) {
802 # alt-enter
803 video_shutdown;
804 $CFG->{fullscreen} = !$CFG->{fullscreen};
805 video_init;
806 } else {
807 CFClient::UI::feed_sdl_key_down_event ($SDL_EV);
808 }
809 },
810 SDL_KEYUP() => sub {
811 CFClient::UI::feed_sdl_key_up_event ($SDL_EV);
812 },
813 SDL_MOUSEMOTION() => sub {
814 CFClient::UI::feed_sdl_motion_event ($SDL_EV);
815 },
816 SDL_MOUSEBUTTONDOWN() => sub {
817 CFClient::UI::feed_sdl_button_down_event ($SDL_EV);
818 },
819 SDL_MOUSEBUTTONUP() => sub {
820 CFClient::UI::feed_sdl_button_up_event ($SDL_EV);
821 },
822 SDL_ACTIVEEVENT() => sub {
823# printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
824 },
825);
190 826
191############################################################################# 827#############################################################################
192 828
193use Event; 829$SIG{INT} = $SIG{TERM} = sub { exit };
194 830
195glinit; 831$TILECACHE = CFClient::db_table "tilecache";
832$FACEMAP = CFClient::db_table "facemap";
196 833
197$conn = new conn 834CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
835
836my %DEF_CFG = (
837 sdl_mode => 0,
838 width => 640,
839 height => 480,
840 fullscreen => 0,
841 fast => 0,
842 fow_enable => 1,
843 fow_intensity => 0.45,
844 fow_smooth => 0,
845 log_fontsize => 14,
846 mapsize => 100,
198 host => "cf.schmorp.de", 847 host => "crossfire.schmorp.de",
199 port => 13327; 848 say_command => 'say',
200
201Event->timer (after => 0, interval => 1/20, hard => 1, cb => sub {
202 while ($ev->poll) {
203 ($ev_cb{$ev->type} || sub { warn "unhandled event ", $ev->type })->();
204 }
205}); 849);
850
851while (my ($k, $v) = each %DEF_CFG) {
852 $CFG->{$k} = $v unless exists $CFG->{$k};
853}
854
855sdl_init;
856
857@SDL_MODES = reverse
858 grep $_->[0] >= 640 && $_->[1] >= 480,
859 map [SDL::RectW ($_), SDL::RectH ($_)],
860 @{ SDL::ListModes 0, SDL_FULLSCREEN | SDL_HWSURFACE | SDL_OPENGL };
861
862@SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
863
864$CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
865
866{
867 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf);
868
869 CFClient::add_font $_ for @fonts;
870 CFClient::set_font $fonts[0];
871}
872
873video_init;
874audio_init;
206 875
207Event::loop; 876Event::loop;
208 877
878END { SDL::Quit }
209 879
880

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines