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.78 by root, Wed Apr 12 00:26:50 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; 4use utf8;
5 5
6use Glib; 6use Time::HiRes 'time';
7use Gtk2 -init; 7use Event;
8 8
9use SDL; 9use SDL;
10use SDL::App; 10use SDL::App;
11use SDL::Event; 11use SDL::Event;
12use SDL::Surface; 12use SDL::Surface;
13
14use SDL::Sound;
15use SDL::Mixer;
16
13use SDL::OpenGL; 17use SDL::OpenGL;
14use SDL::OpenGL::Constants;
15 18
16use Crossfire; 19use Crossfire;
17use Crossfire::Protocol; 20use Crossfire::Protocol;
18 21
22use Compress::LZF;
23
19use CFClient; 24use CFClient;
20use CFClient::UI; 25use CFClient::UI;
21 26
22our $VERSION = '0.1'; 27our $VERSION = '0.1';
23 28
24my $MAX_FPS = 60; 29my $MAX_FPS = 60;
25my $TICKS_PER_FRAME = int 1000 / $MAX_FPS - 1; # min ticks per frame 30my $MIN_FPS = 5; # unused as of yet
26 31
32our $META_SERVER = "crossfire.real-time.com:13326";
33
34our $FACEMAP;
35our $TILECACHE;
27our $FACECACHE; 36our $MAPCACHE;
37
38our $LAST_REFRESH;
39our $NOW;
28 40
29our $CFG; 41our $CFG;
30our $CONN; 42our $CONN;
43our $FAST; # fast, low-quality mode, possibly useful for software-rendering
31 44
32our @SDL_MODES; 45our @SDL_MODES;
33our $WIDTH; 46our $WIDTH;
34our $HEIGHT; 47our $HEIGHT;
35our $FULLSCREEN; 48our $FULLSCREEN;
49our $FONTSIZE;
36 50
37our $NOW; 51our $MAP;
38
39our $MAPWIDGET; 52our $MAPWIDGET;
40our $FONTSIZE; 53our $BUTTONBAR;
54our $LOGVIEW;
55our $CONSOLE;
56our $METASERVER;
41 57
58our $GAUGES;
59
42our $SDL_TIMER; 60our $SDL_ACTIVE;
43our $SDL_APP;
44our $SDL_EV; 61our $SDL_EV;
45our %SDL_CB; 62our %SDL_CB;
63
64our $SDL_MIXER;
65our @SOUNDS; # event => file mapping
66our %AUDIO_CHUNKS; # audio files
46 67
47our $ALT_ENTER_MESSAGE; 68our $ALT_ENTER_MESSAGE;
48our $STATUS_LINE; 69our $STATUS_LINE;
49our $DEBUG_STATUS; 70our $DEBUG_STATUS;
50 71
51my $last_refresh; 72sub status {
52my %ANIMATE; 73 $STATUS_LINE->set_text ($_[0]);
53my $refresh_handler; 74 $STATUS_LINE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h} - $STATUS_LINE->{h});
75}
54 76
55our ($tw, $te); # Test widget #d# 77sub debug {
78 $DEBUG_STATUS->set_text ($_[0]);
79 $DEBUG_STATUS->move ($WIDTH - $DEBUG_STATUS->{w}, 0, $DEBUG_STATUS->{w}, $DEBUG_STATUS->{h});
80}
56 81
57sub init_screen { 82sub start_game {
58 $SDL_APP = new SDL::App 83 status "logging in...";
59 -flags => SDL_ANYFORMAT | SDL_HWSURFACE,
60 -title => "Crossfire+ Client",
61 -width => $WIDTH,
62 -height => $HEIGHT,
63 -opengl => 1,
64 -red_size => 5,
65 -green_size => 5,
66 -blue_size => 5,
67 -alpha_size => 0,
68 -double_buffer => 1,
69 -fullscreen => $FULLSCREEN,
70 -resizeable => 0;
71 84
72 $SDL_EV = new SDL::Event; 85 my $mapsize = List::Util::min 32, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
73 $SDL_EV->set_unicode (1);
74 86
75 $SDL_TIMER = add Glib::Timeout 1000 / $MAX_FPS, sub { 87 $MAPCACHE = CFClient::db_table "mapcache_$CFG->{host}";
76 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
77 while $SDL_EV->poll;
78 88
79 1 89 $MAP = new CFClient::Map $mapsize, $mapsize;
80 };
81 90
82 $last_refresh = SDL::GetTicks; 91 my ($host, $port) = split /:/, $CFG->{host};
83
84 CFClient::gl_init;
85
86 $FONTSIZE = int $HEIGHT / 40;
87
88 #############################################################################
89
90 glClearColor 0.45, 0.45, 0.45, 1;
91
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
100 $DEBUG_STATUS = new CFClient::UI::Label padding => 0;
101 $CFClient::UI::TOPLEVEL->add ($DEBUG_STATUS);
102 92
103 $STATUS_LINE = new CFClient::UI::Label
104 padding => 0,
105 y => $HEIGHT * 49 / 50 - $FONTSIZE;
106 $CFClient::UI::TOPLEVEL->add ($STATUS_LINE);
107
108 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
109 padding => 0,
110 y => $HEIGHT * 49 / 50,
111 height => $HEIGHT / 50,
112 text => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
113 $CFClient::UI::TOPLEVEL->add ($ALT_ENTER_MESSAGE);
114
115 $MAPWIDGET = new CFClient::UI::MapWidget;
116 $CFClient::UI::TOPLEVEL->add ($MAPWIDGET);
117 $MAPWIDGET->focus_in;
118}
119
120sub destroy_screen {
121 remove Glib::Source $SDL_TIMER;
122 undef $SDL_APP;
123 undef $SDL_EV;
124 SDL::Quit;
125}
126
127sub config_dialog {
128 my $dialog = new CFClient::UI::FancyFrame x => 300, y => 100,
129 child => (my $vbox = new CFClient::UI::VBox);
130 $vbox->add (new CFClient::UI::Label align => 0, text => "Setup");
131 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
132
133 $table->add (0, 0, new CFClient::UI::Label align => 1, text => "Video Mode");
134 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
135
136 $hbox->add (my $mode_slider = new CFClient::UI::Slider req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
137 $hbox->add (my $mode_label = new CFClient::UI::Label height => $FONTSIZE * 0.8);
138
139 $mode_slider->connect (changed => sub {
140 my (undef, $value) = @_;
141
142 $CFG->{sdl_mode} = $value = int $value + 0.5;
143 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
144 });
145 $mode_slider->emit (changed => $mode_slider->{range}[0]);
146
147 $table->add (0, 1, new CFClient::UI::Label align => 1, text => "Host");
148 $table->add (1, 1, my $host = new CFClient::UI::Entry text => $CFG->{host});
149
150 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Port");
151 $table->add (1, 2, my $port = new CFClient::UI::Entry text => $CFG->{port});
152
153 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Username");
154 $table->add (1, 3, my $user = new CFClient::UI::Entry text => $CFG->{user});
155
156 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "Password");
157 $table->add (1, 4, my $pass = new CFClient::UI::Entry text => $CFG->{password}, hidden => 1);
158
159 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "Map Size");
160 $table->add (1, 5, my $mapsize_slider = new CFClient::UI::Slider req_w => 100, range => [$CFG->{mapsize}, 10, 100 + 1, 1]);
161
162 $vbox->add (my $hbox = new CFClient::UI::HBox);
163 $hbox->add (new CFClient::UI::Button expand => 1, align => 0, text => "Save", connect_activate => sub {
164 warn "save\n";
165 });
166 $hbox->add (new CFClient::UI::Button expand => 1, align => 0, text => "Login", connect_activate => sub {
167 warn "login\n";
168 });
169 $hbox->add (new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
170 warn "apply\n";
171 });
172
173 $CFClient::UI::TOPLEVEL->add ($dialog);
174}
175
176sub start_game {
177 $WIDTH = $CFG->{width};
178 $HEIGHT = $CFG->{height};
179 $FULLSCREEN = 0;
180
181 init_screen;
182
183 config_dialog;
184
185 my $mapsize = List::Util::min 64, List::Util::max 11, int $WIDTH * $CFG->{mapsize} * 0.01 / 32;
186
187 $CONN = new conn 93 $CONN = new conn
188 host => $CFG->{host}, 94 host => $host,
189 port => $CFG->{port}, 95 port => $port || 13327,
190 user => $CFG->{user}, 96 user => $CFG->{user},
191 pass => $CFG->{password}, 97 pass => $CFG->{password},
192 mapw => $mapsize, 98 mapw => $mapsize,
193 maph => $mapsize, 99 maph => $mapsize,
194 ; 100 ;
195 101
102 status "login successful";
103
196 CFClient::lowdelay fileno $CONN->{fh}; 104 CFClient::lowdelay fileno $CONN->{fh};
197} 105}
198 106
199sub stop_game { 107sub stop_game {
200 remove Glib::Source $refresh_handler if $refresh_handler;
201 undef $refresh_handler;
202
203 undef $CONN; 108 undef $CONN;
204 destroy_screen;
205} 109}
206 110
207sub force_refresh { 111sub client_setup {
208 glViewport 0, 0, $WIDTH, $HEIGHT; 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]);
209 116
210 glMatrixMode GL_PROJECTION; 117 $table->add (0, 0, new CFClient::UI::Label align => 1, text => "Video Mode");
211 glLoadIdentity; 118 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
212 glOrtho 0, $WIDTH, $HEIGHT, 0, -10000 , 10000;
213 glMatrixMode GL_MODELVIEW;
214 glLoadIdentity;
215 119
216 glClear GL_COLOR_BUFFER_BIT; 120 $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]);
121 $hbox->add (my $mode_label = new CFClient::UI::Label height => $FONTSIZE * 0.8);
217 122
218 $CFClient::UI::TOPLEVEL->draw; 123 $mode_slider->connect (changed => sub {
124 my ($self, $value) = @_;
219 125
220 SDL::GLSwapBuffers; 126 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
221} 127 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
128 });
129 $mode_slider->emit (changed => $mode_slider->{range}[0]);
222 130
223sub debug { 131 $table->add (0, 1, new CFClient::UI::Label align => 1, text => "Fullscreen");
224 $DEBUG_STATUS->set_text ($_[0]); 132 $table->add (1, 1, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub {
225 my ($w, $h) = $DEBUG_STATUS->size_request; 133 my ($self, $value) = @_;
226 $DEBUG_STATUS->size_allocate ($WIDTH - $w, 0, $w, $h); 134 $CFG->{fullscreen} = $value;
227} 135 });
228 136
229my $FPS; 137 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Fast &amp; 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 });
230 142
231sub refresh { 143 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Fog of War");
232 $refresh_handler ||= add Glib::Idle sub { 144 $table->add (1, 3, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub {
233 if ($SDL_APP) { 145 my ($self, $value) = @_;
234 $NOW = SDL::GetTicks; 146 $CFG->{fow_enable} = $value;
147 });
235 148
236 if ($NOW - $last_refresh < $TICKS_PER_FRAME) { 149 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "FoW Intensity");
237 SDL::Delay $TICKS_PER_FRAME - ($NOW - $last_refresh); 150 $table->add (1, 4, new CFClient::UI::Slider range => [$CFG->{fow_intensity}, 0, 1 + 0.001, 0.001], connect_changed => sub {
238 $NOW = SDL::GetTicks; 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 ]);
243
244 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => $FONTSIZE * 0.8)
245 for 0 .. $#$m;
239 } 246 }
240 247 }
241 my $interval = ($NOW - $last_refresh) * 0.001; 248 });
242 $last_refresh = $NOW; 249}
243 250
244 if ($interval) { 251sub server_setup {
245 $FPS ||= 1 / $interval; 252 my $dialog = new CFClient::UI::FancyFrame
246 $FPS = $FPS * 0.9 + (1 / $interval) * 0.1; 253 child => (my $vbox = new CFClient::UI::VBox);
247 debug sprintf "%5.02f", $FPS; 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 });
272 }
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;
248 } 331 }
332 delete $input->{auto_activated};
333 },
334 connect_activate => sub {
335 my ($input, $text) = @_;
336 $input->set_text ('');
249 337
250 force_refresh; 338 if ($text =~ /^\/(.*)/) {
251 $_->animate ($interval) for grep $_, values %ANIMATE; 339 $::CONN->user_send ($1);
252
253 if (%ANIMATE) {
254 1
255 } else { 340 } else {
256 undef $refresh_handler; 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
257 0 488 };
258 } 489 }
259 } else { 490 } else {
260 undef $refresh_handler; 491 status "unable to open sound config: $!";
261 0
262 } 492 }
263 }; 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
519 SDL::GLSwapBuffers;
520
521 $LAST_REFRESH = $NOW;
522}
523
524my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
525 $NOW = time;
526
527 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->()
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 }
540});
541
542sub refresh {
543 $want_refresh++;
264} 544}
265 545
266sub animation_start { 546sub animation_start {
267 my ($widget) = @_; 547 my ($widget) = @_;
268 $ANIMATE{$widget} = $widget; 548 $animate_object{$widget} = $widget;
269 Scalar::Util::weaken $ANIMATE{$widget};
270
271 refresh;
272} 549}
273 550
274sub animation_stop { 551sub animation_stop {
275 my ($widget) = @_; 552 my ($widget) = @_;
276 delete $ANIMATE{$widget}; 553 delete $animate_object{$widget};
554}
555
556@conn::ISA = Crossfire::Protocol::;
557
558sub conn::stats_update {
559 my ($self, $stats) = @_;
560
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;
584}
585
586sub conn::map_scroll {
587 my ($self, $dx, $dy) = @_;
588
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
614}
615
616sub conn::map_clear {
617 my ($self) = @_;
618
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)
727}
728
729sub conn::face_update {
730 my ($self, $facenum, $face) = @_;
731
732 $TILECACHE->put ($face->{id} => $face->{image}); #TODO: try to avoid duplicate writes
733
734 $self->set_texture ($face->{id} => delete $face->{image});
735}
736
737sub conn::set_texture {
738 my ($self, $id, $data) = @_;
739
740 $self->{texture}[$id] ||= do {
741 my $tex =
742 new_from_image CFClient::Texture
743 $data, minify => 1;
744
745 $MAP->set_texture ($id, @$tex{qw(name w h s t)}, @{$tex->{minified}});
746 $MAPWIDGET->update;
747
748 $tex
749 };
750}
751
752sub conn::sound_play {
753 my ($self, $x, $y, $soundnum, $type) = @_;
754
755 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
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],
786 );
787
788 $LOGVIEW->add_paragraph ($color[$color], $text);
277} 789}
278 790
279%SDL_CB = ( 791%SDL_CB = (
280 SDL_QUIT() => sub { 792 SDL_QUIT() => sub {
281 main_quit Gtk2; 793 Event::unloop -1;
282 }, 794 },
283 SDL_VIDEORESIZE() => sub { 795 SDL_VIDEORESIZE() => sub {
284 }, 796 },
285 SDL_VIDEOEXPOSE() => sub { 797 SDL_VIDEOEXPOSE() => sub {
286 refresh; 798 refresh;
287 }, 799 },
288 SDL_KEYDOWN() => sub { 800 SDL_KEYDOWN() => sub {
289 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) { 801 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) {
290 # alt-enter 802 # alt-enter
291 $FULLSCREEN = !$FULLSCREEN; 803 video_shutdown;
292 init_screen; 804 $CFG->{fullscreen} = !$CFG->{fullscreen};
805 video_init;
293 } else { 806 } else {
294 CFClient::UI::feed_sdl_key_down_event ($SDL_EV); 807 CFClient::UI::feed_sdl_key_down_event ($SDL_EV);
295 } 808 }
296 }, 809 },
297 SDL_KEYUP() => sub { 810 SDL_KEYUP() => sub {
309 SDL_ACTIVEEVENT() => sub { 822 SDL_ACTIVEEVENT() => sub {
310# printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d# 823# printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
311 }, 824 },
312); 825);
313 826
314@conn::ISA = Crossfire::Protocol::;
315
316sub conn::map_update {
317 my ($self, $dirty) = @_;
318
319 $MAPWIDGET->update;
320}
321
322sub conn::map_scroll {
323 my ($self, $dx, $dy) = @_;
324
325# refresh;
326}
327
328sub conn::map_clear {
329 my ($self) = @_;
330
331# refresh;
332}
333
334sub conn::face_find {
335 my ($self, $face) = @_;
336
337 $FACECACHE->{"$face->{chksum},$face->{name}"}
338}
339
340sub conn::face_update {
341 my ($self, $face) = @_;
342
343 $FACECACHE->{"$face->{chksum},$face->{name}"} = $face->{image};
344
345 $face->{texture} = new_from_image CFClient::Texture delete $face->{image};
346}
347
348sub conn::query {
349 my ($self, $flags, $prompt) = @_;
350
351 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
352}
353
354sub gtk_add_cfg_field {
355 my ($tbl, $cfg, $klbl, $key, $value) = @_;
356 my $i = $cfg->{_i}++;
357 $tbl->attach_defaults (my $lbl = Gtk2::Label->new ($klbl), 0, 1, $i, $i + 1);
358 $tbl->attach_defaults (my $ent = Gtk2::Entry->new, 1, 2, $i, $i + 1);
359 if ($key eq 'password') {
360 $ent->set_invisible_char ("*");
361 $ent->set (visibility => 0)
362 }
363 $ent->set_text ($value);
364 $ent->signal_connect (changed => sub {
365 my ($ent) = @_;
366 $cfg->{$key} = $ent->get_text;
367 # TODO: Mapsize should be a slider in the game gui
368 if ($key eq 'mapsize' and $cfg->{$key} > 100) {
369 $cfg->{$key} = 100;
370 } elsif ($key eq 'mapsize' and $cfg->{$key} < 50) {
371 $cfg->{$key} = 50;
372 }
373 });
374}
375
376sub run_config_dialog {
377 my (%events) = @_;
378
379 my $w = Gtk2::Window->new;
380
381 my @cfg = (
382 [qw/Host host/],
383 [qw/Port port/],
384 [qw/Mapsize% mapsize/],
385 [qw/Username user/],
386 [qw/Password password/],
387 );
388
389 my $cfg = {};
390
391 $w->add (my $vb = Gtk2::VBox->new);
392 $vb->pack_start (my $t = Gtk2::Table->new (2, scalar @cfg), 0, 0, 0);
393 my $selmode = $::CFG->{width} . 'x' . $::CFG->{height};
394 $t->attach_defaults (Gtk2::Label->new ("Modes"), 0, 1, 0, 1);
395 $t->attach_defaults (my $cb = Gtk2::ComboBox->new_text, 1, 2, 0, 1);
396 my $i = 0;
397 my $act = 0;
398 for (map { "$_->[0]x$_->[1]" } @SDL_MODES) {
399 if ($_ eq $selmode) { $act = $i }
400 $cb->append_text ($_);
401 $i++;
402 }
403 $cb->set_active ($act);
404 $cb->signal_connect (changed => sub {
405 my ($cb) = @_;
406 my $txt = $cb->get_active_text;
407 if ($txt =~ m/(\d+)x(\d+)/) {
408 $::CFG->{width} = $1;
409 $::CFG->{height} = $2;
410 }
411 });
412
413 $cfg->{_i} = 1;
414 for (@cfg) {
415 gtk_add_cfg_field ($t, $cfg, $_->[0], $_->[1], $::CFG->{$_->[1]});
416 }
417
418 $vb->pack_start (my $hb = Gtk2::HBox->new, 0, 0, 0);
419 $hb->pack_start (my $cb = Gtk2::Button->new ("save"), 1, 1, 5);
420 $cb->signal_connect (clicked => sub {
421 for (keys %$cfg) {
422 $::CFG->{$_} = $cfg->{$_}
423 if $_ ne '_i';
424 }
425 CFClient::write_cfg "$CFrossfire::VARDIR/pclientrc";
426 });
427 $hb->pack_start (my $cb = Gtk2::Button->new ("login"), 1, 1, 5);
428 $cb->signal_connect (clicked => sub {
429 for (keys %$cfg) {
430 $::CFG->{$_} = $cfg->{$_}
431 if $_ ne '_i';
432 }
433 my $cb = $events{login} || sub {};
434 $cb->($::CFG->{user}, $::CFG->{password});
435 });
436 $hb->pack_start (my $cb = Gtk2::Button->new ("logout"), 1, 1, 5);
437 $cb->signal_connect (clicked => sub {
438 my $cb = $events{logout} || sub {};
439 $cb->();
440 });
441 $hb->pack_start (my $cb = Gtk2::Button->new ("quit"), 1, 1, 5);
442 $cb->signal_connect (clicked => sub { $w->destroy });
443
444 $w->show_all;
445
446 $w->signal_connect (destroy => sub { Gtk2->main_quit });
447}
448
449
450############################################################################# 827#############################################################################
451 828
452SDL::Init SDL_INIT_EVERYTHING; 829$SIG{INT} = $SIG{TERM} = sub { exit };
453 830
454@SDL_MODES = reverse map [SDL::RectW ($_), SDL::RectH ($_)], 831$TILECACHE = CFClient::db_table "tilecache";
455 @{ SDL::ListModes 0, SDL_FULLSCREEN|SDL_HWSURFACE }; 832$FACEMAP = CFClient::db_table "facemap";
456 833
457CFClient::read_cfg "$Crossfire::VARDIR/pclientrc"; 834CFClient::read_cfg "$Crossfire::VARDIR/pclientrc";
458 835
459$CFG ||= { 836my %DEF_CFG = (
837 sdl_mode => 0,
460 width => 640, 838 width => 640,
461 height => 480, 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,
462 mapsize => 100, 846 mapsize => 100,
463 fullscreen => 0,
464 host => "crossfire.schmorp.de", 847 host => "crossfire.schmorp.de",
465 port => 13327, 848 say_command => 'say',
466}; 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;
467 865
468{ 866{
469 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf); 867 my @fonts = map CFClient::find_rcfile $_, qw(uifont.ttf uifontb.ttf uifonti.ttf uifontbi.ttf);
470 868
471 CFClient::add_font $_ for @fonts; 869 CFClient::add_font $_ for @fonts;
472 CFClient::set_font $fonts[0]; 870 CFClient::set_font $fonts[0];
473} 871}
474 872
475$FACECACHE = eval { Crossfire::load_ref "$Crossfire::VARDIR/pclient.faces" } || {}; 873video_init;
874audio_init;
476 875
477run_config_dialog 876Event::loop;
478 login => sub { start_game },
479 logout => sub { stop_game };
480 877
481main Gtk2; 878END { SDL::Quit }
482 879
483Crossfire::save_ref $FACECACHE, "$Crossfire::VARDIR/pclient.faces"; 880

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines