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.134 by root, Tue Apr 18 05:13:15 2006 UTC vs.
Revision 1.150 by root, Thu Apr 20 07:12:58 2006 UTC

4use utf8; 4use utf8;
5 5
6use Time::HiRes 'time'; 6use Time::HiRes 'time';
7use Event; 7use Event;
8 8
9use SDL;
10use SDL::App;
11use SDL::Event;
12use SDL::Surface;
13
14use SDL::Sound;
15use SDL::Mixer;
16
17use SDL::OpenGL;
18
19use Crossfire; 9use Crossfire;
20use Crossfire::Protocol; 10use Crossfire::Protocol;
21 11
22use Compress::LZF; 12use Compress::LZF;
23 13
24use CFClient; 14use CFClient;
25use CFClient::UI; 15use CFClient::UI;
16use CFClient::MapWidget;
26 17
27our $VERSION = '0.1'; 18our $VERSION = '0.1';
28 19
29my $MAX_FPS = 60; 20my $MAX_FPS = 60;
30my $MIN_FPS = 5; # unused as of yet 21my $MIN_FPS = 5; # unused as of yet
56our $METASERVER; 47our $METASERVER;
57 48
58our $GAUGES; 49our $GAUGES;
59 50
60our $SDL_ACTIVE; 51our $SDL_ACTIVE;
61our $SDL_EV;
62our %SDL_CB; 52our %SDL_CB;
63 53
64our $SDL_MIXER; 54our $SDL_MIXER;
65our @SOUNDS; # event => file mapping 55our @SOUNDS; # event => file mapping
66our %AUDIO_CHUNKS; # audio files 56our %AUDIO_CHUNKS; # audio files
108 undef $CONN; 98 undef $CONN;
109} 99}
110 100
111sub client_setup { 101sub client_setup {
112 my $dialog = new CFClient::UI::FancyFrame 102 my $dialog = new CFClient::UI::FancyFrame
103 title => "Client Setup",
113 child => (my $vbox = new CFClient::UI::VBox); 104 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]); 105 $vbox->add (my $table = new CFClient::UI::Table expand => 1, col_expand => [0, 1]);
116 106
117 $table->add (0, 0, new CFClient::UI::Label align => 1, text => "Video Mode"); 107 $table->add (0, 0, new CFClient::UI::Label valign => 0, align => 1, text => "Video Mode");
118 $table->add (1, 0, my $hbox = new CFClient::UI::HBox); 108 $table->add (1, 0, my $hbox = new CFClient::UI::HBox);
119 109
120 $hbox->add (my $mode_slider = new CFClient::UI::Slider expand => 1, req_w => 100, range => [$CFG->{sdl_mode}, 0, scalar @SDL_MODES, 1]); 110 $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); 111 $hbox->add (my $mode_label = new CFClient::UI::Label align => 0, valign => 0, height => 0.8, template => "9999x9999");
122 112
123 $mode_slider->connect (changed => sub { 113 $mode_slider->connect (changed => sub {
124 my ($self, $value) = @_; 114 my ($self, $value) = @_;
125 115
126 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value; 116 $CFG->{sdl_mode} = $self->{range}[0] = $value = int $value;
127 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]}); 117 $mode_label->set_text (sprintf "%dx%d", @{$SDL_MODES[$value]});
128 }); 118 });
129 $mode_slider->emit (changed => $mode_slider->{range}[0]); 119 $mode_slider->emit (changed => $mode_slider->{range}[0]);
130 120
131 $table->add (0, 1, new CFClient::UI::Label align => 1, text => "Fullscreen"); 121 $table->add (0, 1, new CFClient::UI::Label valign => 0, align => 1, text => "Fullscreen");
132 $table->add (1, 1, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub { 122 $table->add (1, 1, new CFClient::UI::CheckBox state => $CFG->{fullscreen}, connect_changed => sub {
133 my ($self, $value) = @_; 123 my ($self, $value) = @_;
134 $CFG->{fullscreen} = $value; 124 $CFG->{fullscreen} = $value;
135 }); 125 });
136 126
137 $table->add (0, 2, new CFClient::UI::Label align => 1, text => "Fast & Ugly"); 127 $table->add (0, 2, new CFClient::UI::Label valign => 0, align => 1, text => "Fast & Ugly");
138 $table->add (1, 2, new CFClient::UI::CheckBox state => $CFG->{fast}, connect_changed => sub { 128 $table->add (1, 2, new CFClient::UI::CheckBox state => $CFG->{fast}, connect_changed => sub {
139 my ($self, $value) = @_; 129 my ($self, $value) = @_;
140 $CFG->{fast} = $value; 130 $CFG->{fast} = $value;
141 }); 131 });
142 132
143 $table->add (0, 3, new CFClient::UI::Label align => 1, text => "Fog of War"); 133 $table->add (0, 3, new CFClient::UI::Label valign => 0, align => 1, text => "Fog of War");
144 $table->add (1, 3, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub { 134 $table->add (1, 3, new CFClient::UI::CheckBox state => $CFG->{fow_enable}, connect_changed => sub {
145 my ($self, $value) = @_; 135 my ($self, $value) = @_;
146 $CFG->{fow_enable} = $value; 136 $CFG->{fow_enable} = $value;
147 }); 137 });
148 138
149 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "FoW Intensity"); 139 $table->add (0, 4, new CFClient::UI::Label valign => 0, 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 { 140 $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) = @_; 141 my ($self, $value) = @_;
152 $CFG->{fow_intensity} = $value; 142 $CFG->{fow_intensity} = $value;
153 }); 143 });
154 144
155 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "FoW Smooth"); 145 $table->add (0, 5, new CFClient::UI::Label valign => 0, align => 1, text => "FoW Smooth");
156 $table->add (1, 5, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub { 146 $table->add (1, 5, new CFClient::UI::CheckBox state => $CFG->{fow_smooth}, connect_changed => sub {
157 my ($self, $value) = @_; 147 my ($self, $value) = @_;
158 $CFG->{fow_smooth} = $value; 148 $CFG->{fow_smooth} = $value;
159 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2; 149 status "Fog of War smoothing requires OpenGL 1.2 or higher" if $CFClient::GL_VERSION < 1.2;
160 }); 150 });
161 151
162 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Log Fontsize"); 152 $table->add (0, 6, new CFClient::UI::Label valign => 0, align => 1, text => "GUI Fontsize");
153 $table->add (1, 6, new CFClient::UI::Slider range => [$CFG->{gui_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
154 $CFG->{gui_fontsize} = 0.1 * int $_[1] * 10;
155# $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
156 });
157
158 $table->add (0, 7, new CFClient::UI::Label valign => 0, align => 1, text => "Server Log Fontsize");
163 $table->add (1, 6, new CFClient::UI::Slider range => [$CFG->{log_fontsize}, 8, 30, 1], connect_changed => sub { 159 $table->add (1, 7, new CFClient::UI::Slider range => [$CFG->{log_fontsize}, 0.7, 1.7, 0.1], connect_changed => sub {
164 my ($self, $value) = @_;
165 $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = int $value); 160 $LOGVIEW->set_fontsize ($CFG->{log_fontsize} = 0.1 * int $_[1] * 10);
166 }); 161 });
167 162
168 $table->add (1, 7, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub { 163 $table->add (1, 8, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
169 video_shutdown (); 164 video_shutdown ();
170 video_init (); 165 video_init ();
171 }); 166 });
172 167
168 $table->add (0, 9, new CFClient::UI::Label valign => 0, align => 1, text => "Audio Enable");
169 $table->add (1, 9, new CFClient::UI::CheckBox state => $CFG->{audio_enable}, connect_changed => sub {
170 $CFG->{audio_enable} = $_[1];
171 });
172# $table->add (0, 9, new CFClient::UI::Label valign => 0, align => 1, text => "Effects Volume");
173# $table->add (1, 8, new CFClient::UI::Slider range => [$CFG->{effects_volume}, 0, 128, 1], connect_changed => sub {
174# $CFG->{effects_volume} = $_[1];
175# });
176 $table->add (0, 10, new CFClient::UI::Label valign => 0, align => 1, text => "Background Music");
177 $table->add (1, 10, my $hbox = new CFClient::UI::HBox);
178 $hbox->add (new CFClient::UI::CheckBox expand => 1, state => $CFG->{bgm_enable}, connect_changed => sub {
179 $CFG->{bgm_enable} = $_[1];
180 });
181 $hbox->add (new CFClient::UI::Slider expand => 1, range => [$CFG->{bgm_volume}, 0, 1, 0.1], connect_changed => sub {
182 $CFG->{bgm_volume} = $_[1];
183 CFClient::MixMusic::volume $_[1] * 128;
184 });
185
186 $table->add (1, 11, new CFClient::UI::Button expand => 1, align => 0, text => "Apply", connect_activate => sub {
187 audio_shutdown ();
188 audio_init ();
189 });
190
173 $dialog 191 $dialog
174} 192}
175 193
176sub metaserver_dialog { 194sub metaserver_dialog {
177 my $dialog = new CFClient::UI::FancyFrame 195 my $dialog = new CFClient::UI::FancyFrame
196 title => "Metaserver",
178 child => (my $vbox = new CFClient::UI::VBox); 197 child => (my $vbox = new CFClient::UI::VBox);
179 198
180 $vbox->add ($dialog->{table} = new CFClient::UI::Table); 199 $vbox->add ($dialog->{table} = new CFClient::UI::Table);
181 200
182 $dialog 201 $dialog
239 $HOST->set_text ($CFG->{host} = $host); 258 $HOST->set_text ($CFG->{host} = $host);
240 }), 259 }),
241 (new CFClient::UI::Empty expand => 1), 260 (new CFClient::UI::Empty expand => 1),
242 ]); 261 ]);
243 262
244 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => $FONTSIZE * 0.8) 263 $table->add ($_ + 1, $y, new CFClient::UI::Label align => $align[$_], text => $m->[$_], fontsize => 0.8)
245 for 0 .. $#$m; 264 for 0 .. $#$m;
246 } 265 }
247 } 266 }
248 }); 267 });
249} 268}
250 269
251sub server_setup { 270sub server_setup {
252 my $dialog = new CFClient::UI::FancyFrame 271 my $dialog = new CFClient::UI::FancyFrame
272 title => "Server Setup",
253 child => (my $vbox = new CFClient::UI::VBox); 273 child => (my $vbox = new CFClient::UI::VBox);
254 274
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]); 275 $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"); 276 $table->add (0, 2, new CFClient::UI::Label valign => 0, align => 1, text => "Host:Port");
258 277
259 { 278 {
260 $table->add (1, 2, my $vbox = new CFClient::UI::VBox); 279 $table->add (1, 2, my $vbox = new CFClient::UI::VBox);
261 280
262 $vbox->add (my $HOST = new CFClient::UI::Entry text => $CFG->{host}, connect_changed => sub { 281 $vbox->add (my $HOST = new CFClient::UI::Entry expand => 1, text => $CFG->{host}, connect_changed => sub {
263 my ($self, $value) = @_; 282 my ($self, $value) = @_;
264 $CFG->{host} = $value; 283 $CFG->{host} = $value;
265 }); 284 });
266 285
267 $METASERVER = metaserver_dialog; 286 $METASERVER = metaserver_dialog;
268 287
269 $vbox->add (new CFClient::UI::Flopper text => "Metaserver", other => $METASERVER, connect_open => sub { 288 $vbox->add (new CFClient::UI::Flopper expand => 1, text => "Metaserver", other => $METASERVER, connect_open => sub {
270 update_metaserver $HOST; 289 update_metaserver $HOST;
271 }); 290 });
272 } 291 }
273 292
274 $table->add (0, 4, new CFClient::UI::Label align => 1, text => "Username"); 293 $table->add (0, 4, new CFClient::UI::Label valign => 0, align => 1, text => "Username");
275 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub { 294 $table->add (1, 4, new CFClient::UI::Entry text => $CFG->{user}, connect_changed => sub {
276 my ($self, $value) = @_; 295 my ($self, $value) = @_;
277 $CFG->{user} = $value; 296 $CFG->{user} = $value;
278 }); 297 });
279 298
280 $table->add (0, 5, new CFClient::UI::Label align => 1, text => "Password"); 299 $table->add (0, 5, new CFClient::UI::Label valign => 0, align => 1, text => "Password");
281 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub { 300 $table->add (1, 5, new CFClient::UI::Entry text => $CFG->{password}, hidden => 1, connect_changed => sub {
282 my ($self, $value) = @_; 301 my ($self, $value) = @_;
283 $CFG->{password} = $value; 302 $CFG->{password} = $value;
284 }); 303 });
285 304
286 $table->add (0, 6, new CFClient::UI::Label align => 1, text => "Def. say cmd"); 305 $table->add (0, 6, new CFClient::UI::Label valign => 0, align => 1, text => "Def. say cmd");
287 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry text => $CFG->{say_command}, connect_changed => sub { 306 $table->add (1, 6, my $saycmd = new CFClient::UI::Entry text => $CFG->{say_command}, connect_changed => sub {
288 my ($self, $value) = @_; 307 my ($self, $value) = @_;
289 $CFG->{say_command} = $value; 308 $CFG->{say_command} = $value;
290 }); 309 });
291 310
292 $table->add (0, 7, new CFClient::UI::Label align => 1, text => "Map Size"); 311 $table->add (0, 7, new CFClient::UI::Label valign => 0, align => 1, text => "Map Size");
293 $table->add (1, 7, new CFClient::UI::Slider 312 $table->add (1, 7, new CFClient::UI::Slider
294 req_w => 100, 313 req_w => 100,
295 range => [$CFG->{mapsize}, 10, 100 + 1, 1], 314 range => [$CFG->{mapsize}, 10, 100 + 1, 1],
296 connect_changed => sub { 315 connect_changed => sub {
297 my ($self, $value) = @_; 316 my ($self, $value) = @_;
307 $dialog 326 $dialog
308} 327}
309 328
310sub message_window { 329sub message_window {
311 my $window = new CFClient::UI::FancyFrame 330 my $window = new CFClient::UI::FancyFrame
331 title => "Messages",
312 border_bg => [1, 1, 1, 0.5], 332 border_bg => [1, 1, 1, 0.5],
313 bg => [0.3, 0.3, 0.3, 0.8], 333 bg => [0.3, 0.3, 0.3, 0.8],
314 user_w => int $::WIDTH / 3, 334 user_w => int $::WIDTH / 3,
315 user_h => int $::HEIGHT / 5, 335 user_h => int $::HEIGHT / 5,
316 child => (my $vbox = new CFClient::UI::VBox); 336 child => (my $vbox = new CFClient::UI::VBox);
358 378
359 $window 379 $window
360} 380}
361 381
362sub sdl_init { 382sub sdl_init {
363 #SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE 383 CFClient::SDL_Init
364 SDL::Init SDL_INIT_AUDIO | SDL_INIT_VIDEO
365 and die "SDL::Init failed!\n"; 384 and die "SDL::Init failed!\n";
366} 385}
367 386
368sub video_init { 387sub video_init {
369 sdl_init; 388 sdl_init;
370 389
371 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] }; 390 ($WIDTH, $HEIGHT) = @{ $SDL_MODES[$CFG->{sdl_mode}] };
372 $FULLSCREEN = $CFG->{fullscreen}; 391 $FULLSCREEN = $CFG->{fullscreen};
373 $FAST = $CFG->{fast}; 392 $FAST = $CFG->{fast};
374 393
375 SDL::GLSetAttribute SDL_GL_RED_SIZE, 5; 394 CFClient::SDL_SetVideoMode $WIDTH, $HEIGHT, $FULLSCREEN
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"; 395 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 396
399 $SDL_ACTIVE = 1; 397 $SDL_ACTIVE = 1;
400 398
401 $LAST_REFRESH = time - 0.01; 399 $LAST_REFRESH = time - 0.01;
402 400
403 CFClient::gl_init; 401 CFClient::gl_init;
404 402
405 $FONTSIZE = int $HEIGHT / 40; 403 $FONTSIZE = int $HEIGHT / 40 * $CFG->{gui_fontsize};
406 404
407 ############################################################################# 405 #############################################################################
408 406
409 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100; 407 $DEBUG_STATUS = new CFClient::UI::Label padding => 0, z => 100;
410 $CFClient::UI::ROOT->add ($DEBUG_STATUS); 408 $DEBUG_STATUS->show;
411 409
412 $STATUS_LINE = new CFClient::UI::Label 410 $STATUS_LINE = new CFClient::UI::Label
413 padding => 0, 411 padding => 0,
414 y => $HEIGHT * 44 / 45 - $FONTSIZE; 412 y => $HEIGHT - $FONTSIZE * 1.8;
415 $CFClient::UI::ROOT->add ($STATUS_LINE); 413 $STATUS_LINE->show;
416 414
417 $ALT_ENTER_MESSAGE = new CFClient::UI::Label 415 $ALT_ENTER_MESSAGE = new CFClient::UI::Label
418 padding => 0, 416 padding => 0,
419 y => $HEIGHT * 44 / 45,
420 fontsize => $HEIGHT / 45, 417 fontsize => 0.8,
421 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode"; 418 markup => "Use <b>Alt-Enter</b> to toggle fullscreen mode";
422 $CFClient::UI::ROOT->add ($ALT_ENTER_MESSAGE); 419 $ALT_ENTER_MESSAGE->show;
420 $ALT_ENTER_MESSAGE->move (0, $HEIGHT - $ALT_ENTER_MESSAGE->{h});
423 421
424 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::UI::MapWidget); 422 $CFClient::UI::ROOT->add ($MAPWIDGET = new CFClient::MapWidget);
425 $MAPWIDGET->focus_in; 423 $MAPWIDGET->focus_in;
426 $MAPWIDGET->connect (activate_console => sub { 424 $MAPWIDGET->connect (activate_console => sub {
427 my ($mapwidget, $preset) = @_; 425 my ($mapwidget, $preset) = @_;
428 426
429 if ($CONSOLE) { 427 if ($CONSOLE) {
447 status "Configuration Saved"; 445 status "Configuration Saved";
448 }); 446 });
449 447
450 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup 448 $BUTTONBAR->{children}[1]->emit ("activate"); # pop up server setup
451 449
452 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0); 450 my $tgw = new CFClient::UI::FancyFrame (x => $WIDTH - 300, y => 0, title => "Stats");
453 $tgw->add (my $hbox = new CFClient::UI::HBox ()); 451 $tgw->add (my $hbox = new CFClient::UI::HBox ());
454 452
455 $hbox->add (my $hg = new CFClient::UI::VGauge (gauge => 'hp')); 453 $hbox->add (my $hg = new CFClient::UI::Gauge (type => 'hp'));
456 $hbox->add (my $mg = new CFClient::UI::VGauge (gauge => 'mana')); 454 $hbox->add (my $mg = new CFClient::UI::Gauge (type => 'mana'));
457 $hbox->add (my $gg = new CFClient::UI::VGauge (gauge => 'grace')); 455 $hbox->add (my $gg = new CFClient::UI::Gauge (type => 'grace'));
458 $hbox->add (my $fg = new CFClient::UI::VGauge (gauge => 'food')); 456 $hbox->add (my $fg = new CFClient::UI::Gauge (type => 'food'));
459 457
460 $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg }; 458 $GAUGES = { food => $fg, mana => $mg, hp => $hg, grace => $gg };
461 $CFClient::UI::ROOT->add ($tgw); 459 $CFClient::UI::ROOT->add ($tgw);
462} 460}
463 461
464sub video_shutdown { 462sub video_shutdown {
465 $CFClient::UI::ROOT->{children} = []; 463 $CFClient::UI::ROOT->{children} = [];
466 undef $SDL_ACTIVE; 464 undef $SDL_ACTIVE;
467 undef $SDL_EV;
468} 465}
466
467my $bgmusic;#TODO#hack#d#
469 468
470sub audio_init { 469sub audio_init {
471 if ($CFG->{sound} || 1) { 470 if ($CFG->{audio_enable}) {
472 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") { 471 if (open my $fh, "<:utf8", CFClient::find_rcfile "sounds/config") {
473 $SDL_MIXER = new SDL::Mixer; 472
474 $SDL_MIXER->allocate_channels (8); 473 $SDL_MIXER = !CFClient::Mix_OpenAudio;
474 CFClient::Mix_AllocateChannels 8;
475 CFClient::MixMusic::volume $CFG->{bgm_volume} * 128;
476
477 # TODO: hack, do play loop and mood music
478 if ($CFG->{bgm_enable}) {
479 $bgmusic = new_from_file CFClient::MixMusic CFClient::find_rcfile "music/game3.ogg";
480 $bgmusic->play;
481 }
475 482
476 while (<$fh>) { 483 while (<$fh>) {
477 next if /^\s*#/; 484 next if /^\s*#/;
478 next if /^\s*$/; 485 next if /^\s*$/;
479 486
480 my ($file, $volume, $event) = split /\s+/, $_, 3; 487 my ($file, $volume, $event) = split /\s+/, $_, 3;
481 488
482 push @SOUNDS, "$volume,$file"; 489 push @SOUNDS, "$volume,$file";
483 490
484 $AUDIO_CHUNKS{"$volume,$file"} ||= do { 491 $AUDIO_CHUNKS{"$volume,$file"} ||= do {
485 my $chunk = new SDL::Sound CFClient::find_rcfile "sounds/$file"; 492 my $chunk = new_from_file CFClient::MixChunk CFClient::find_rcfile "sounds/$file";
486 $chunk->volume ($volume * 128 / 100); 493 $chunk->volume ($volume * 128 / 100);
487 $chunk 494 $chunk
488 }; 495 };
489 } 496 }
490 } else { 497 } else {
492 } 499 }
493 } 500 }
494} 501}
495 502
496sub audio_shutdown { 503sub audio_shutdown {
504 CFClient::Mix_CloseAudio if $SDL_MIXER;
497 undef $SDL_MIXER; 505 undef $SDL_MIXER;
498 @SOUNDS = (); 506 @SOUNDS = ();
499 %AUDIO_CHUNKS = (); 507 %AUDIO_CHUNKS = ();
500} 508}
501 509
514 $want_refresh = 0; 522 $want_refresh = 0;
515 $can_refresh = 0; 523 $can_refresh = 0;
516 524
517 $CFClient::UI::ROOT->draw; 525 $CFClient::UI::ROOT->draw;
518 526
519 SDL::GLSwapBuffers; 527 CFClient::SDL_GL_SwapBuffers;
520 528
521 $LAST_REFRESH = $NOW; 529 $LAST_REFRESH = $NOW;
522} 530}
523 531
524my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub { 532my $refresh_watcher = Event->timer (after => 0, hard => 1, interval => 1 / $MAX_FPS, cb => sub {
525 $NOW = time; 533 $NOW = time;
526 534
527 ($SDL_CB{$SDL_EV->type} || sub { warn "unhandled event ", $SDL_EV->type })->() 535 ($SDL_CB{$_->{type}} || sub { warn "unhandled event $_->{type}" })->($_)
528 while $SDL_EV->poll; 536 for CFClient::SDL_PollEvent;
529 537
530 if (%animate_object) { 538 if (%animate_object) {
531 $_->animate ($LAST_REFRESH - $NOW) for values %animate_object; 539 $_->animate ($LAST_REFRESH - $NOW) for values %animate_object;
532 $want_refresh++; 540 $want_refresh++;
533 } 541 }
563 my $hp = $stats->{1}; 571 my $hp = $stats->{1};
564 my $hp_m = $stats->{2}; 572 my $hp_m = $stats->{2};
565 my $sp = $stats->{3}; 573 my $sp = $stats->{3};
566 my $sp_m = $stats->{4}; 574 my $sp_m = $stats->{4};
567 my $fo = $stats->{18}; 575 my $fo = $stats->{18};
568 my $fo_m = 1000; 576 my $fo_m = 999;
569 my $gr = $stats->{23}; 577 my $gr = $stats->{23};
570 my $gr_m = $stats->{24}; 578 my $gr_m = $stats->{24};
571 579
572 #d# warn "DATA $hp $hp_m $sp $sp_m $fo $fo_m $gr $gr_m\n"; 580 #d# warn "DATA $hp $hp_m $sp $sp_m $fo $fo_m $gr $gr_m\n";
573 $GAUGES->{hp}->set_value ($hp, $hp_m); 581 $GAUGES->{hp} ->set_value ($hp, $hp_m);
574 $GAUGES->{mana}->set_value ($sp, $sp_m); 582 $GAUGES->{mana} ->set_value ($sp, $sp_m);
575 $GAUGES->{food}->set_value ($fo, $fo_m); 583 $GAUGES->{food} ->set_value ($fo, $fo_m);
576 $GAUGES->{grace}->set_value ($gr, $gr_m); 584 $GAUGES->{grace}->set_value ($gr, $gr_m);
577} 585}
578 586
579sub conn::user_send { 587sub conn::user_send {
580 my ($self, $command) = @_; 588 my ($self, $command) = @_;
615 623
616sub conn::map_clear { 624sub conn::map_clear {
617 my ($self) = @_; 625 my ($self) = @_;
618 626
619 $self->flush_map; 627 $self->flush_map;
620 delete $self->{neigh}; 628 delete $self->{neigh_map};
621 629
622 $MAP->clear; 630 $MAP->clear;
623} 631}
624 632
625 633
637 } 645 }
638 } 646 }
639} 647}
640 648
641sub conn::flood_fill { 649sub conn::flood_fill {
642 my ($self, $path, $hash, $flags, $x0, $y0, $x1, $y1) = @_; 650 my ($self, $gx, $gy, $path, $hash, $flags) = @_;
643 651
644 # the server does not allow map paths > 6 652 # the server does not allow map paths > 6
645 return if 6 <= length $path; 653 return if 6 <= length $path;
646 654
647 for my $tile (1..4) { 655 my ($x0, $y0, $x1, $y1) = @{$self->{neigh_rect}};
648 next if $self->{neigh}{$hash}[$tile]; 656
657 for (
658 [1, 0, -1],
659 [2, 1, 0],
660 [3, 0, 1],
661 [4, -1, 0],
662 ) {
663 my ($tile, $dx, $dy) = @$_;
664
665 my $gx = $gx + $dx;
666 my $gy = $gy + $dy;
667
649 next unless $flags & (1 << ($tile - 1)); 668 next unless $flags & (1 << ($tile - 1));
669 next if $self->{neigh_grid}{$gx, $gy}++;
650 670
651 my $neigh = $self->{neigh}{$hash} ||= []; 671 my $neigh = $self->{neigh_map}{$hash} ||= [];
652 672 if (my $info = $neigh->[$tile]) {
653 $self->send_mapinfo ("spatial $path$tile", sub {
654 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_; 673 my ($flags, $x, $y, $w, $h, $hash) = @$info;
655 674
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) 675 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
668 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1; 676 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
677
678 } else {
679 $self->send_mapinfo ("spatial $path$tile", sub {
680 my ($mode, $flags, $x, $y, $w, $h, $hash) = @_;
681
682 #warn "map<$path>_$tile=<$mode,$x,$y,$w,$h,$hash>\n";#d#
683 return if $mode ne "spatial";
684
685 $x += $MAP->ox;
686 $y += $MAP->oy;
687
688 $self->load_map ($hash, $x, $y)
689 unless $self->{neigh_map}{$hash}[5]++;#d#
690
691 $neigh->[$tile] = [$flags, $x, $y, $w, $h, $hash];
692
693 $self->flood_fill ($gx, $gy, "$path$tile", $hash, $flags)
694 if $x >= $x0 && $x + $w < $x1 && $y >= $y0 && $y + $h < $y1;
695 });
669 }); 696 }
670 } 697 }
671} 698}
672 699
673sub conn::map_change { 700sub conn::map_change {
674 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_; 701 my ($self, $mode, $flags, $x, $y, $w, $h, $hash) = @_;
677 704
678 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy); 705 my ($ox, $oy) = ($::MAP->ox, $::MAP->oy);
679 706
680 my $mapmapw = 250; 707 my $mapmapw = 250;
681 my $mapmaph = 250; 708 my $mapmaph = 250;
709
710 $self->{neigh_rect} = [
711 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
712 $ox + $mapmapw * 0.5, $oy + $mapmapw * 0.5,
713 ];
682 714
715 delete $self->{neigh_grid};
683 $self->flood_fill ("", $hash, $flags, 716 $self->flood_fill (0, 0, "", $hash, $flags);
684 $ox - $mapmapw * 0.5, $oy - $mapmapw * 0.5,
685 $ox + $mapmapw * 0.5, $oy + $mapmapw * 0.5);
686 717
687 $x += $ox; 718 $x += $ox;
688 $y += $oy; 719 $y += $oy;
689 720
690 $self->{map_info} = [$hash, $x, $y, $w, $h]; 721 $self->{map_info} = [$hash, $x, $y, $w, $h];
750} 781}
751 782
752sub conn::sound_play { 783sub conn::sound_play {
753 my ($self, $x, $y, $soundnum, $type) = @_; 784 my ($self, $x, $y, $soundnum, $type) = @_;
754 785
786 $SDL_MIXER
787 or return;
788
755 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]} 789 my $chunk = $AUDIO_CHUNKS{$SOUNDS[$soundnum]}
756 or return; 790 or return;
757 791
758 $SDL_MIXER->play_channel (-1, $chunk); 792 $chunk->play;
759 warn "sound $x,$y,$soundnum,$type\n";#d# 793# warn "sound $x,$y,$soundnum,$type\n";#d#
760} 794}
761 795
762sub conn::query { 796sub conn::query {
763 my ($self, $flags, $prompt) = @_; 797 my ($self, $flags, $prompt) = @_;
764 798
765 #TODO 799 #TODO, display dialog with relevant information
766 warn "<<<<QUERY:$flags:$prompt>>>\n";#d# 800 warn "<<<<QUERY:$flags:$prompt>>>\n";#d#
767} 801}
768 802
769sub conn::drawinfo { 803sub conn::drawinfo {
770 my ($self, $color, $text) = @_; 804 my ($self, $color, $text) = @_;
786 ); 820 );
787 821
788 $LOGVIEW->add_paragraph ($color[$color], $text); 822 $LOGVIEW->add_paragraph ($color[$color], $text);
789} 823}
790 824
825sub conn::spell_add {
826 my ($self, $spell) = @_;
827
828 $MAPWIDGET->add_command ("invoke $spell->{name}", $spell->{message}, sub {
829 });
830 $MAPWIDGET->add_command ("cast $spell->{name}", $spell->{message}, sub {
831 });
832}
833
834sub conn::spell_delete {
835 my ($self, $spell) = @_;
836}
837
838sub conn::addme_success {
839 my ($self) = @_;
840
841 for my $skill (values %{$self->{skill_info}}) {
842 $MAPWIDGET->add_command ("ready_skill $skill", "", sub {
843 });
844 $MAPWIDGET->add_command ("use_skill $skill", "", sub {
845 });
846 }
847}
848
791%SDL_CB = ( 849%SDL_CB = (
792 SDL_QUIT() => sub { 850 CFClient::SDL_QUIT => sub {
793 Event::unloop -1; 851 Event::unloop -1;
794 }, 852 },
795 SDL_VIDEORESIZE() => sub { 853 CFClient::SDL_VIDEORESIZE => sub {
796 }, 854 },
797 SDL_VIDEOEXPOSE() => sub { 855 CFClient::SDL_VIDEOEXPOSE => sub {
798 refresh; 856 refresh;
799 }, 857 },
800 SDL_KEYDOWN() => sub { 858 CFClient::SDL_KEYDOWN => sub {
801 if ($SDL_EV->key_mod & KMOD_ALT && $SDL_EV->key_sym == SDLK_RETURN) { 859 if ($_[0]{mod} & CFClient::KMOD_ALT && $_[0]{sym} == 13) {
802 # alt-enter 860 # alt-enter
803 video_shutdown; 861 video_shutdown;
804 $CFG->{fullscreen} = !$CFG->{fullscreen}; 862 $CFG->{fullscreen} = !$CFG->{fullscreen};
805 video_init; 863 video_init;
806 } else { 864 } else {
807 CFClient::UI::feed_sdl_key_down_event ($SDL_EV); 865 CFClient::UI::feed_sdl_key_down_event ($_[0]);
808 } 866 }
809 }, 867 },
810 SDL_KEYUP() => sub { 868 CFClient::SDL_KEYUP => sub {
811 CFClient::UI::feed_sdl_key_up_event ($SDL_EV); 869 CFClient::UI::feed_sdl_key_up_event ($_[0]);
812 }, 870 },
813 SDL_MOUSEMOTION() => sub { 871 CFClient::SDL_MOUSEMOTION => sub {
814 CFClient::UI::feed_sdl_motion_event ($SDL_EV); 872 CFClient::UI::feed_sdl_motion_event ($_[0]);
815 }, 873 },
816 SDL_MOUSEBUTTONDOWN() => sub { 874 CFClient::SDL_MOUSEBUTTONDOWN => sub {
817 CFClient::UI::feed_sdl_button_down_event ($SDL_EV); 875 CFClient::UI::feed_sdl_button_down_event ($_[0]);
818 }, 876 },
819 SDL_MOUSEBUTTONUP() => sub { 877 CFClient::SDL_MOUSEBUTTONUP => sub {
820 CFClient::UI::feed_sdl_button_up_event ($SDL_EV); 878 CFClient::UI::feed_sdl_button_up_event ($_[0]);
821 }, 879 },
822 SDL_ACTIVEEVENT() => sub { 880 CFClient::SDL_ACTIVEEVENT => sub {
823# printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d# 881# printf "active %x %x\n", $SDL_EV->active_gain, $SDL_EV->active_state;#d#
824 }, 882 },
825); 883);
826 884
827############################################################################# 885#############################################################################
840 fullscreen => 0, 898 fullscreen => 0,
841 fast => 0, 899 fast => 0,
842 fow_enable => 1, 900 fow_enable => 1,
843 fow_intensity => 0.45, 901 fow_intensity => 0.45,
844 fow_smooth => 0, 902 fow_smooth => 0,
903 gui_fontsize => 1,
845 log_fontsize => 14, 904 log_fontsize => 14,
846 mapsize => 100, 905 mapsize => 100,
847 host => "crossfire.schmorp.de", 906 host => "crossfire.schmorp.de",
848 say_command => 'say', 907 say_command => 'say',
908 audio_enable => 1,
909 bgm_enable => 1,
910 bgm_volume => 0.25,
849); 911);
850 912
851while (my ($k, $v) = each %DEF_CFG) { 913while (my ($k, $v) = each %DEF_CFG) {
852 $CFG->{$k} = $v unless exists $CFG->{$k}; 914 $CFG->{$k} = $v unless exists $CFG->{$k};
853} 915}
854 916
855sdl_init; 917sdl_init;
856 918
857@SDL_MODES = reverse 919@SDL_MODES = reverse
858 grep $_->[0] >= 640 && $_->[1] >= 480, 920 grep $_->[0] >= 640 && $_->[1] >= 480,
859 map [SDL::RectW ($_), SDL::RectH ($_)], 921 CFClient::SDL_ListModes;
860 @{ SDL::ListModes 0, SDL_FULLSCREEN | SDL_HWSURFACE | SDL_OPENGL };
861 922
862@SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)"; 923@SDL_MODES or CFClient::fatal "Unable to find a usable video mode\n(hardware accelerated opengl fullscreen)";
863 924
864$CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES; 925$CFG->{sdl_mode} = 0 if $CFG->{sdl_mode} > @SDL_MODES;
865 926
873video_init; 934video_init;
874audio_init; 935audio_init;
875 936
876Event::loop; 937Event::loop;
877 938
878END { SDL::Quit } 939END { CFClient::SDL_Quit }
879 940
880 941

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines