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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines