ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/GCE/MapEditor.pm
Revision: 1.73
Committed: Thu Nov 27 22:47:14 2008 UTC (15 years, 5 months ago) by elmex
Branch: MAIN
CVS Tags: pre_cursor_branch, HEAD
Branch point for: cursor
Changes since 1.72: +5 -38 lines
Log Message:
removed feature/bug :-)

File Contents

# Content
1 package GCE::MapEditor;
2
3 =head1 NAME
4
5 GCE::MapEditor - the map editing widget
6
7 =cut
8
9 use Gtk2;
10 use Gtk2::Gdk::Keysyms;
11 use Gtk2::SimpleMenu;
12
13 use Deliantra;
14 use Deliantra::Map;
15 use Deliantra::MapWidget;
16
17 use GCE::AttrEdit;
18 use GCE::Util;
19 use GCE::HashDialog;
20
21 use POSIX qw/strftime/;
22
23 use Glib::Object::Subclass
24 Gtk2::Window;
25
26 use Storable qw/dclone/;
27
28 use strict;
29
30 #################################################################
31 ###### WINDOW MANAGEMENT ########################################
32 #################################################################
33
34 sub save_layout {
35 my ($self) = @_;
36
37 $self->{attach_editor}->save_layout if $self->{attach_editor};
38 $self->{map_properties}->save_layout if $self->{map_properties};
39 $self->{meta_info_win}->save_layout if $self->{meta_info_win};
40
41 $main::CFG->{map_info} = main::get_pos_and_size ($self->{map_info})
42 if $self->{map_info};
43 }
44
45 sub close_windows {
46 my ($self) = @_;
47
48 $self->{attach_editor}->destroy if $self->{attach_editor};
49 $self->{map_properties}->destroy if $self->{map_properties};
50 $self->{meta_info_win}->destroy if $self->{meta_info_win};
51 }
52
53 #################################################################
54 ###### MENU MANAGEMENT ##########################################
55 #################################################################
56
57 sub do_context_menu {
58 my ($self, $map, $event) = @_;
59
60 my ($x, $y) = $map->coord ($event->x, $event->y);
61
62 my $menu = Gtk2::Menu->new;
63 foreach my $cm (
64 [
65 Follow => sub {
66 $::MAINWIN->{edit_collection}{followexit}->edit ($map, $x, $y, $self)
67 },
68 ]
69 ) {
70 my $item = Gtk2::MenuItem->new ($cm->[0]);
71 $menu->append ($item);
72 $item->show;
73 $item->signal_connect (activate => $cm->[1]);
74 }
75
76 $menu->append (my $sep = new Gtk2::SeparatorMenuItem);
77 $sep->show;
78
79 for my $sr (reverse $self->get_stack_refs ($map, $x, $y)) {
80 my $item = Gtk2::MenuItem->new ($sr->longname);
81 $menu->append ($item);
82 $item->set_submenu (my $smenu = new Gtk2::Menu);
83
84 for my $act (
85 [ 'Add inventory' => sub { $_[0]->add_inv ($::MAINWIN->get_pick) } ],
86 [ 'Find in picker' => sub { $::MAINWIN->open_pick_window ({ selection => $sr->picker_folder }) } ],
87 ) {
88 my $sitem = Gtk2::MenuItem->new ($act->[0]);
89 $smenu->append ($sitem);
90 $sitem->signal_connect (activate => sub { $act->[1]->($sr) });
91 $sitem->show;
92 }
93
94 $item->show;
95 }
96
97 $menu->popup (undef, undef, undef, undef, $event->button, $event->time);
98 }
99
100 sub build_menu {
101 my ($self) = @_;
102
103 my $menu_tree = [
104 _File => {
105 item_type => '<Branch>',
106 children => [
107 "_Save" => {
108 callback => sub { $self->save_map },
109 accelerator => '<ctrl>S'
110 },
111 "Save As" => {
112 callback => sub { $self->save_map_as },
113 },
114 "Map _Info" => {
115 callback => sub { $self->open_map_info },
116 accelerator => "<ctrl>I",
117 },
118 "Map _Properties" => {
119 callback => sub { $self->open_map_prop },
120 accelerator => "<ctrl>P"
121 },
122 "Map _Attachments" => {
123 callback => sub { $self->open_attach_edit },
124 accelerator => "<ctrl>A"
125 },
126 # "Map Meta _Info" => {
127 # callback => sub { $self->open_meta_info },
128 # },
129 # Upload => {
130 # item_type => '<Branch>',
131 # children => [
132 # "Upload for testing" => {
133 # callback => sub { $self->upload_map_test },
134 # },
135 # "Upload for inclusion" => {
136 # callback => sub { $self->upload_map_incl },
137 # },
138 # ]
139 # },
140 "_Map Resize" => {
141 callback => sub { $self->open_resize_map },
142 },
143 "Close" => {
144 callback => sub { $self->destroy },
145 accelerator => "<ctrl>W",
146 },
147 ]
148 },
149 _Edit => {
150 item_type => '<Branch>',
151 children => [
152 "_Undo" => {
153 callback => sub { $self->undo },
154 accelerator => "<ctrl>Z"
155 },
156 "_Redo" => {
157 callback => sub { $self->redo },
158 accelerator => "<ctrl>Y"
159 },
160 ]
161 },
162 _Go => {
163 item_type => '<Branch>',
164 children => [
165 "_Up" => {
166 callback => sub { $self->follow ('u') },
167 accelerator => "<ctrl>Up"
168 },
169 "_Down" => {
170 callback => sub { $self->follow ('d') },
171 accelerator => "<ctrl>Down"
172 },
173 "_Right" => {
174 callback => sub { $self->follow ('r') },
175 accelerator => "<ctrl>Right"
176 },
177 "_Left" => {
178 callback => sub { $self->follow ('l') },
179 accelerator => "<ctrl>Left"
180 },
181 ]
182 },
183 _Help => {
184 item_type => '<Branch>',
185 children => [
186 _Manual => {
187 callback => sub { $::MAINWIN->show_help_window },
188 accelerator => "<ctrl>H"
189 },
190 ]
191 },
192 ];
193
194 my $men =
195 Gtk2::SimpleMenu->new (
196 menu_tree => $menu_tree,
197 default_callback => \&default_cb,
198 );
199
200 for (
201 [i => 'pick'],
202 [p => 'place'],
203 [e => 'erase'],
204 [s => 'select'],
205 [l => 'eval'],
206 [t => 'connect'],
207 [f => 'followexit']
208 )
209 {
210 my $tool = $_->[1];
211 $men->{accel_group}->connect ($Gtk2::Gdk::Keysyms{$_->[0]}, [], 'visible',
212 sub { $::MAINWIN->set_edit_tool ($tool) });
213 }
214
215 $men->{accel_group}->connect ($Gtk2::Gdk::Keysyms{'r'}, ['control-mask'], 'visible',
216 sub { $self->redo });
217
218 $self->add_accel_group ($men->{accel_group});
219
220 return $men->{widget};
221 }
222
223 #################################################################
224 ###### EDIT TOOL STUFF ##########################################
225 #################################################################
226
227 sub set_edit_tool {
228 my ($self, $tool) = @_;
229
230 $self->{etool} = $tool;
231
232 if ($self->ea->special_arrow) {
233 $self->{map}{window}->set_cursor (Gtk2::Gdk::Cursor->new ($self->ea->special_arrow));
234 } else {
235 # FIXME: Get the original cursor and insert it here
236 $self->{map}{window}->set_cursor (Gtk2::Gdk::Cursor->new ('GDK_LEFT_PTR'));
237 }
238 }
239
240 sub ea {
241 my ($self) = @_;
242 $self->{ea_alt} || $self->{etool};
243 }
244
245 sub start_drawmode {
246 my ($self, $map) = @_;
247
248 $self->{draw_mode} and return;
249
250 # XXX: is this okay? my ($x, $y) = $map->coord ($event->x, $event->y);
251 my ($x, $y) = $map->coord ($map->get_pointer);
252
253 my $ea = $self->ea;
254
255 $ea->begin ($map, $x, $y, $self);
256
257 $ea->edit ($map, $x, $y, $self)
258 if $x >= 0 and $y >= 0 and $x < $map->{map}{width} and $y < $map->{map}{height};
259
260 $self->{draw_mode} = [$x, $y];
261 }
262
263 sub stop_drawmode {
264 my ($self, $map) = @_;
265
266 $self->{draw_mode} or return;
267
268 my ($x, $y) = $map->coord ($map->get_pointer);
269
270 my $ea = $self->ea;
271 $ea->end ($map, $x, $y, $self);
272
273 delete $self->{draw_mode};
274 }
275
276 #################################################################
277 ###### UTILITY FUNCTIONS ########################################
278 #################################################################
279
280 sub follow {
281 my ($self, $dir) = @_;
282
283 my %dir_to_path = (
284 u => 'tile_path_1',
285 d => 'tile_path_3',
286 r => 'tile_path_2',
287 l => 'tile_path_4',
288 );
289
290 defined $dir_to_path{$dir}
291 or return;
292 my $map = $self->{map}{map}{info}{$dir_to_path{$dir}}
293 or return;
294
295 $map = map2abs ($map, $self);
296 $::MAINWIN->open_map_editor ($map);
297 }
298
299 # FIXME: Fix the automatic update of the attribute editor! and also the stack view!
300 sub undo {
301 my ($self) = @_;
302
303 my $map = $self->{map}; # the Deliantra::MapWidget
304
305 $map->{undo_stack_pos}
306 or return;
307
308 $map->change_swap ($map->{undo_stack}[--$map->{undo_stack_pos}]);
309
310 $::MAINWIN->update_stack_view ();
311 }
312
313 sub get_stack_refs {
314 my ($self, $map, $x, $y) = @_;
315
316 my $cstack = $map->get ($x, $y);
317
318 return [] unless @$cstack;
319
320 my @refs;
321
322 for my $arch (@$cstack) {
323 my ($ix, $iy, $iarch, $istack) = devirtualize ($map, $x, $y, $arch, $cstack);
324 push @refs,
325 GCE::ArchRef->new (
326 arch => $iarch,
327 source => 'map',
328 cb => sub {
329 $map->change_begin ('attredit');
330 $map->change_stack ($ix, $iy, $istack);
331
332 if (my $changeset = $map->change_end) {
333 splice @{ $map->{undo_stack} ||= [] },
334 $map->{undo_stack_pos}++, 1e6,
335 $changeset;
336 }
337 }
338 );
339 }
340
341 return @refs;
342 }
343
344 sub redo {
345 my ($self) = @_;
346
347 my $map = $self->{map}; # the Deliantra::MapWidget
348
349 $map->{undo_stack}
350 and $map->{undo_stack_pos} < @{$map->{undo_stack}}
351 or return;
352
353 $map->change_swap ($map->{undo_stack}[$map->{undo_stack_pos}++]);
354 }
355
356 sub load_meta_info {
357 my ($mapfile) = @_;
358 if (-e "$mapfile.meta") {
359 open my $metafh, "<", "$mapfile.meta"
360 or warn "Couldn't open meta file $mapfile.meta: $!";
361 my $metadata = do { local $/; <$metafh> };
362 return Deliantra::decode_json ($metadata);
363 }
364 }
365
366 sub save_meta_info {
367 my ($mapfile, $metainfo) = @_;
368 open my $metafh, ">", "$mapfile.meta"
369 or warn "Couldn't write meta file $mapfile.meta: $!";
370 print $metafh Deliantra::encode_json ($metainfo);
371 }
372
373 sub open_map {
374 my ($self, $path, $key) = @_;
375
376 $self->{mapkey} = $key;
377
378 if (ref $path) {
379 $self->{map}->set_map ($path);
380 delete $self->{meta_info};
381 $self->set_window_title;
382
383 } else {
384 my $ok = 0;
385 if (-e $path && -f $path) {
386 $ok = 1;
387 } else {
388 unless ($path =~ m/\.map$/) { # yuck
389 my $p = $path . '.map';
390 if ($ok = -e $p && -f $p) {
391 $path = $p;
392 }
393 }
394 }
395 unless ($ok) {
396 die "Couldn't open '$path' or find '$path.map': No such file or it is not a file.\n";
397 }
398 $self->{path} = $path;
399 $self->{map}->set_map (my $m = new_from_file Deliantra::Map $path);
400 $self->{meta_info} = load_meta_info ($path);
401 $self->set_window_title ($self->{path});
402 $::MAINWIN->add_recent($path);
403 }
404 $self->update_overlays;
405 $self->close_windows;
406 }
407
408 sub save_map {
409 my ($self) = @_;
410
411 if ($self->{path}) {
412 $self->{map}{map}->write_file ($self->{path});
413 if ($self->{meta_info}) {
414 save_meta_info ($self->{path}, $self->{meta_info});
415 }
416 quick_msg ($self, "saved to $self->{path}");
417 $self->set_window_title ($self->{path});
418 $::MAINWIN->add_recent($self->{path});
419 } else {
420 $self->save_map_as;
421 }
422 }
423
424 sub set_window_title {
425 my ($self, $title) = @_;
426
427 $title = 'Unsaved'
428 unless $title;
429
430 $self->set_title(File::Basename::basename($title).' - deliantra editor');
431 }
432
433 sub save_map_as {
434 my ($self) = @_;
435
436 my $fc = $::MAINWIN->new_filechooser ('gce - save map', 1, $self->{path});
437
438 if ('ok' eq $fc->run) {
439
440 $::MAINWIN->{fc_last_folder} = $fc->get_current_folder;
441 $::MAINWIN->{fc_last_folders}->{$self->{fc_last_folder}}++;
442
443 if($fc->get_filename) {
444 $self->{path} = $fc->get_filename;
445 $self->save_map;
446 }
447 }
448
449 $fc->destroy;
450 }
451
452 sub _get_conns_for_obj {
453 my ($obj, $x, $y, $rconns) = @_;
454
455 if (defined $obj->{connected}) {
456 $rconns->{$x}->{$y}->{$obj->{connected}} = 1;
457
458 } elsif (defined $obj->{msg}) {
459 my $msg = $obj->{msg};
460
461 while ($msg =~ s/\@trigger\s+(\d+)//) {
462 $rconns->{$x}->{$y}->{$1} = 1;
463 }
464 }
465 }
466
467 sub update_overlays {
468 my ($self, $sx, $sy, $stack) = @_;
469 my $conns = {};
470
471 if (not $stack) {
472 my ($w, $h) = ($self->{map}{map}{width}, $self->{map}{map}{height});
473
474 for (my $x = 0; $x < $w; $x++) {
475 for (my $y = 0; $y < $h; $y++) {
476 _get_conns_for_obj ($_, $x, $y, $conns)
477 for @{$self->{map}->get_ro ($x, $y)};
478 }
479 }
480
481 # delete prev. overlays
482 for (keys %{$self->{_conn_overlays}}) {
483 $self->{map}->overlay ($_);
484 }
485 } else {
486 # del old overlay for this place
487 my $ovl = "connection_$sx\_$sy";
488 $self->{map}->overlay ($ovl) if delete $self->{_conn_overlays}->{$ovl};
489 _get_conns_for_obj ($_, $sx, $sy, $conns)
490 for @$stack;
491 }
492
493 # put new overlays there
494 for my $x (keys %$conns) {
495 for my $y (keys %{$conns->{$x}}) {
496 my $ovlname = "connection_$x\_$y";
497 my $conns_ovl = join (', ', keys %{$conns->{$x}->{$y}});
498 $self->{_conn_overlays}->{$ovlname} = 1;
499 my ($a, $t, $ac)
500 = Gtk2::Pango->parse_markup (
501 "<span size=\"xx-small\">$conns_ovl</span>", ''
502 );
503 my $pl = $self->{map}->create_pango_layout ('');
504 $pl->set_attributes ($a);
505 $pl->set_text ($t);
506 my ($ink_rect, $logical_rect) = $pl->get_pixel_extents;
507
508 $self->{map}->overlay (
509 $ovlname, $x * TILESIZE, $y * TILESIZE, TILESIZE, TILESIZE,
510 sub {
511 my ($mapwin, $x, $y) = @_;
512 if (!$self->{_conn_upd_ovl_gc_fg}) {
513 my $gc
514 = $self->{_conn_upd_ovl_gc_fg}
515 = Gtk2::Gdk::GC->new ($mapwin->{window});
516 my $cm = $mapwin->{window}->get_colormap;
517 $gc->set_foreground (gtk2_get_color ($mapwin, "yellow"));
518 $gc->set_background (gtk2_get_color ($mapwin, "black"));
519 }
520 $mapwin->{window}->draw_rectangle (
521 $mapwin->style->black_gc,
522 1,
523 $x, $y, $logical_rect->{width} + 2, $logical_rect->{height} + 2,
524 );
525 $mapwin->{window}->draw_rectangle (
526 $self->{_conn_upd_ovl_gc_fg},
527 0,
528 $x, $y, $logical_rect->{width} + 2, $logical_rect->{height} + 2,
529 );
530 $mapwin->{window}->draw_layout_with_colors (
531 $mapwin->style->black_gc, $x + 1, $y + 1, $pl,
532 $self->{connection_overlay_foreground},
533 $self->{connection_overlay_background},
534 )
535 }
536 );
537 }
538 }
539 }
540
541 #################################################################
542 ###### DIALOGOUES ###############################################
543 #################################################################
544
545 sub open_resize_map {
546 my ($self) = @_;
547
548 return if $self->{meta_info_win};
549
550 my $w = $self->{meta_info_win} = GCE::HashDialogue->new ();
551
552 $w->init (
553 dialog_default_size => [500, 200, 220, 20],
554 layout_name => 'resize_win',
555 title => 'resize map',
556 ref_hash => $self->{map}{map}{info},
557 dialog => [
558 [width => 'Width' => 'string'],
559 [height => 'Height' => 'string'],
560 ],
561 close_on_save => 1,
562 save_button_label => 'resize',
563 save_cb => sub {
564 my ($info) = @_;
565 $self->{map}{map}->resize ($info->{width}, $info->{height});
566 $self->{map}->set_map ($self->{map}{map});
567 $self->update_overlays;
568 }
569 );
570
571 $w->signal_connect (destroy => sub { delete $self->{meta_info_win} });
572
573 $w->show_all;
574 }
575
576 sub open_attach_edit {
577 my ($self) = @_;
578
579 my $w = GCE::AttachEditor->new;
580 $w->set_attachment (
581 $self->{map}{map}{info}{attach},
582 sub {
583 if (@{$_[0]}) {
584 $self->{map}{map}{info}{attach} = $_[0]
585 } else {
586 delete $self->{map}{map}{info}{attach};
587 }
588 }
589 );
590 $self->{attach_editor} = $w;
591 $w->signal_connect (destroy => sub { delete $self->{attach_editor} });
592 $w->show_all;
593 }
594
595 sub upload_map_incl {
596 my ($self) = @_;
597
598 my $meta = dclone $self->{meta_info};
599
600 my $w = $self->{meta_info_win} = GCE::HashDialogue->new ();
601
602 $w->init (
603 dialog_default_size => [500, 300, 220, 20],
604 layout_name => 'map_upload_incl',
605 title => 'gce - map inclusion upload',
606 ref_hash => $meta,
607 text_entry => { key => 'changes', label => 'Changes (required for inclusion):' },
608 dialog => [
609 [gameserver => 'Game server' => 'label'],
610 [testserver => 'Test server' => 'label'],
611 [undef => x => 'sep' ],
612 [cf_login => 'Server login name' => 'string'],
613 [cf_password=> 'Password' => 'password'],
614 [path => 'Map path' => 'string'],
615 ],
616 close_on_save => 1,
617 save_cb => sub {
618 my ($meta) = @_;
619 warn "UPLOAD[".Deliantra::encode_json ($meta)."]\n";
620 }
621 );
622
623 $w->signal_connect (destroy => sub { delete $self->{meta_info_win} });
624
625 $w->show_all;
626 }
627
628 sub upload_map_test {
629 my ($self) = @_;
630
631 my $meta = dclone $self->{meta_info};
632
633 my $w = $self->{meta_info_win} = GCE::HashDialogue->new ();
634
635 $w->init (
636 dialog_default_size => [500, 300, 220, 20],
637 layout_name => 'map_upload_test',
638 title => 'gce - map test upload',
639 ref_hash => $meta,
640 dialog => [
641 [gameserver => 'Game server' => 'string'],
642 [testserver => 'Test server' => 'string'],
643 [undef => x => 'sep' ],
644 [cf_login => 'Server login name' => 'string'],
645 [cf_password=> 'Password' => 'password'],
646 [path => 'Map path' => 'string'],
647 ],
648 save_cb => sub {
649 my ($meta) = @_;
650 warn "UPLOAD[".Deliantra::encode_json ($meta)."]\n";
651 }
652 );
653
654 $w->signal_connect (destroy => sub { delete $self->{meta_info_win} });
655
656 $w->show_all;
657
658
659 }
660
661 sub open_meta_info {
662 my ($self) = @_;
663
664 return if $self->{meta_info_win};
665
666 my $w = $self->{meta_info_win} = GCE::HashDialogue->new ();
667
668 $w->init (
669 dialog_default_size => [500, 300, 220, 20],
670 layout_name => 'meta_info_win',
671 title => 'meta info',
672 ref_hash => $self->{meta_info},
673 dialog => [
674 [path => 'Map path' => 'string'],
675 [cf_login => 'Login name' => 'string'],
676 [revision => 'CVS Revision' => 'label'],
677 [cvs_root => 'CVS Root' => 'label'],
678 [lib_root => 'LIB Root' => 'label'],
679 [testserver => 'Test server' => 'label'],
680 [gameserver => 'Game server' => 'label'],
681 ],
682 );
683
684 $w->signal_connect (destroy => sub { delete $self->{meta_info_win} });
685
686 $w->show_all;
687 }
688
689 sub open_map_info {
690 my ($self) = @_;
691 return if $self->{map_info};
692
693 my $w = $self->{map_info} = Gtk2::Window->new ('toplevel');
694 $w->set_title ("deliantra editor - map info");
695
696 $w->add (my $vb = Gtk2::VBox->new);
697 $vb->add (my $sw = Gtk2::ScrolledWindow->new);
698 $sw->set_policy ('automatic', 'automatic');
699 $sw->add (my $txt = Gtk2::TextView->new);
700 $vb->pack_start (my $hb = Gtk2::HBox->new (1, 1), 0, 1, 0);
701 $hb->pack_start (my $svbtn = Gtk2::Button->new ("save"), 1, 1, 0);
702 $hb->pack_start (my $logbtn = Gtk2::Button->new ("add log"), 1, 1, 0);
703 $hb->pack_start (my $closebtn = Gtk2::Button->new ("close"), 1, 1, 0);
704
705 my $buf = $txt->get_buffer ();
706 $buf->set_text ($self->{map}{map}{info}{msg});
707
708 $svbtn->signal_connect (clicked => sub {
709 my $buf = $txt->get_buffer ();
710 my $txt = $buf->get_text ($buf->get_start_iter, $buf->get_end_iter, 0);
711 $self->{map}{map}{info}{msg} = $txt;
712 });
713
714 $logbtn->signal_connect (clicked => sub {
715 my $buf = $txt->get_buffer ();
716 $buf->insert ($buf->get_start_iter, "- " . strftime ("%F %T %Z", localtime (time)) . " by " . ($main::CFG->{username} || $ENV{USER}) . ":\n");
717 $txt->set_buffer ($buf);
718 });
719
720 $closebtn->signal_connect (clicked => sub {
721 $w->destroy;
722 });
723
724 ::set_pos_and_size ($w, $main::CFG->{map_info}, 400, 400, 220, 20);
725 $w->signal_connect (destroy => sub {
726 delete $self->{map_info};
727 });
728 $w->show_all;
729 }
730
731 sub open_map_prop {
732 my ($self) = @_;
733
734 return if $self->{map_properties};
735
736 my $w = $self->{map_properties} = GCE::HashDialogue->new ();
737
738 $w->init (
739 dialog_default_size => [500, 500, 220, 20],
740 layout_name => 'map_prop_win',
741 title => 'map properties',
742 ref_hash => $self->{map}{map}{info},
743 close_on_save => 1,
744 dialog => [
745 [qw/name Name string/],
746 [qw/region Region string/],
747 [qw/enter_x Enter-x string/],
748 [qw/enter_y Enter-y string/],
749 [qw/reset_timeout Reset-timeout string/],
750 [qw/swap_time Swap-timeout string/],
751 [undef, qw/x sep/],
752 [qw/difficulty Difficulty string/],
753 [qw/windspeed Windspeed string/],
754 [qw/pressure Pressure string/],
755 [qw/humid Humid string/],
756 [qw/temp Temp string/],
757 [qw/darkness Darkness string/],
758 [qw/sky Sky string/],
759 [qw/winddir Winddir string/],
760 [undef, qw/x sep/],
761 [qw/width Width label/], # sub { $self->{map}{map}->resize ($_[0], $self->{map}{map}{height}) }],
762 [qw/height Height label/], # sub { $self->{map}{map}->resize ($self->{map}{map}{width}, $_[0]) }],
763 [undef, qw/x sep/],
764 # [qw/msg Text text/],
765 # [qw/maplore Maplore text/],
766 [qw/outdoor Outdoor check/],
767 [qw/unique Unique check/],
768 [qw/fixed_resettime Fixed-resettime check/],
769 [per_player => 'Per player' => 'check'],
770 [per_party => 'Per party' => 'check'],
771 [no_reset => 'No reset' => 'check'],
772 [music => 'Map Music' => 'string'],
773 [undef, qw/x sep/],
774 [qw/tile_path_1 Northpath string/],
775 [qw/tile_path_2 Eastpath string/],
776 [qw/tile_path_3 Southpath string/],
777 [qw/tile_path_4 Westpath string/],
778 [qw/tile_path_5 Toppath string/],
779 [qw/tile_path_6 Bottompath string/],
780 [undef, qw/x sep/],
781 [undef, 'For shop description look in the manual',
782 'button', sub { $::MAINWIN->show_help_window }],
783 [qw/shopmin Shopmin string/],
784 [qw/shopmax Shopmax string/],
785 [qw/shoprace Shoprace string/],
786 [qw/shopgreed Shopgreed string/],
787 [qw/shopitems Shopitems string/],
788 ]
789 );
790
791 $w->signal_connect (destroy => sub { delete $self->{map_properties} });
792 $w->show_all;
793 }
794
795 #################################################################
796 ###### MAP EDITOR INIT ##########################################
797 #################################################################
798
799 sub INIT_INSTANCE {
800 my ($self) = @_;
801
802 $self->set_window_title;
803 $self->add (my $vb = Gtk2::VBox->new);
804
805 $vb->pack_start (my $menu = $self->build_menu, 0, 1, 0);
806
807 $vb->pack_start (my $map = $self->{map} = Deliantra::MapWidget->new, 1, 1, 0);
808
809 $map->signal_connect_after (stack_change => sub {
810 my ($map, $x, $y, $stack) = @_;
811 $self->update_overlays ($x, $y, $stack);
812 $::MAINWIN->update_map_pos ($self, $x, $y);
813 });
814 $map->signal_connect_after (swap_stack_change => sub {
815 my ($map, $x, $y, $stack) = @_;
816 $self->update_overlays ($x, $y, $stack);
817 $::MAINWIN->update_map_pos ($self, $x, $y);
818 });
819
820 $self->{connection_overlay_foreground}
821 = Gtk2::Gdk::Color->new (257 * 255, 257 * 255, 0);
822 $self->{connection_overlay_background}
823 = Gtk2::Gdk::Color->new (0, 0, 0);
824 # my $ygc
825 # = $self->{connection_overlay_yellow_gc}
826 # = Gtk2::Gdk::GC->new ($self->{map}{window});
827 # $ygc->set_foreground (Gtk2::Gdk::Color->new (257 * 255, 257 * 255, 0));
828
829 $map->signal_connect_after (key_press_event => sub {
830 my ($map, $event) = @_;
831
832 my $kv = $event->keyval;
833
834 my $ret = 0;
835
836 my ($x, $y) = $map->coord ($map->get_pointer);
837 for ([c => sub { $::MAINWIN->{edit_collection}{select}->copy }],
838 [v => sub { $::MAINWIN->{edit_collection}{select}->paste ($map, $x, $y) }],
839 [n => sub { $::MAINWIN->{edit_collection}{select}->invoke }],
840 )
841 {
842 my $ed = $_;
843
844 if ($kv == $Gtk2::Gdk::Keysyms{$ed->[0]}) {
845 my $was_in_draw = defined $self->{draw_mode};
846
847 $self->stop_drawmode ($map) if $was_in_draw;
848
849 $ed->[1]->();
850 $ret = 1;
851
852 $self->start_drawmode ($map) if $was_in_draw;
853 }
854 }
855
856 if ($self->ea->special_arrow) {
857 $map->{window}->set_cursor (Gtk2::Gdk::Cursor->new ($self->ea->special_arrow));
858 } else {
859 # FIXME: Get the original cursor and insert it here
860 $map->{window}->set_cursor (Gtk2::Gdk::Cursor->new ('GDK_LEFT_PTR'));
861 }
862
863 $ret
864 });
865
866 $map->signal_connect_after (button_press_event => sub {
867 my ($map, $event) = @_;
868
869 if ((not $self->{draw_mode}) and $event->button == 1) {
870 my $ea = $self->ea;
871
872 $self->start_drawmode ($map);
873
874 $ea->want_cursor
875 or $map->disable_tooltip;
876
877 return 1;
878 } elsif ($event->button == 3) {
879 $self->do_context_menu ($map, $event);
880 return 1;
881 }
882
883 0
884 });
885
886 $map->signal_connect_after (motion_notify_event => sub {
887 my ($map, $event) = @_;
888
889 $self->{draw_mode}
890 or return;
891
892 my $ea = $self->ea;
893
894 my ($X, $Y) = @{$self->{draw_mode}}[0,1];
895 my ($x, $y) = $map->coord ($map->get_pointer);
896
897 while ($x != $X || $y != $Y) {
898
899 $X++ if $X < $x;
900 $X-- if $X > $x;
901 $Y++ if $Y < $y;
902 $Y-- if $Y > $y;
903
904 unless ($ea->only_on_click) {
905 $ea->edit ($map, $X, $Y, $self)
906 if $X >= 0 and $Y >= 0 and $X < $map->{map}{width} and $Y < $map->{map}{height};
907 }
908 }
909
910 @{$self->{draw_mode}}[0,1] = ($X, $Y);
911
912 1
913 });
914
915 $map->signal_connect_after (button_release_event => sub {
916 my ($map, $event) = @_;
917
918 if ($self->{draw_mode} and $event->button == 1) {
919 my $ea = $self->ea;
920
921 $self->stop_drawmode ($map);
922
923 $ea->want_cursor
924 or $map->enable_tooltip;
925
926 return 1;
927 }
928
929 0
930 });
931
932 ::set_pos_and_size ($self, $main::CFG->{map_window}, 500, 500, 200, 0);
933 }
934
935 =head1 AUTHOR
936
937 Marc Lehmann <schmorp@schmorp.de>
938 http://home.schmorp.de/
939
940 Robin Redeker <elmex@ta-sa.org>
941 http://www.ta-sa.org/
942
943 =cut
944
945 1
946