ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/GCE/PickWindow.pm
Revision: 1.26
Committed: Sat Aug 25 19:31:39 2007 UTC (16 years, 9 months ago) by elmex
Branch: MAIN
CVS Tags: rel-2_2
Changes since 1.25: +2 -3 lines
Log Message:
fixed picker window for bigtile monsters

File Contents

# User Rev Content
1 elmex 1.1 package GCE::PickWindow;
2    
3     =head1 NAME
4    
5     GCE::PickWindow - the arch picker window class for gce
6    
7     =cut
8    
9     use Gtk2;
10     use Gtk2::Gdk::Keysyms;
11 elmex 1.8 use Gtk2::SimpleMenu;
12 elmex 1.1
13 elmex 1.2 use Crossfire;
14     use Crossfire::MapWidget;
15 elmex 1.1
16 elmex 1.8 use GCE::AttrEdit;
17     use GCE::MapEditor;
18     use GCE::StackView;
19     use GCE::EditAction;
20     use GCE::PickWindow;
21 elmex 1.26 use GCE::Util;
22 elmex 1.8
23 elmex 1.16 use GCE::DragHelper;
24    
25 elmex 1.8 use Glib::Object::Subclass
26     Gtk2::Window;
27    
28     use strict;
29 elmex 1.2
30 elmex 1.8 sub INIT_INSTANCE {
31 elmex 1.4 my ($self) = @_;
32 elmex 1.3
33 elmex 1.4 $self->{earchs} = editor_archs ();
34 elmex 1.1
35 elmex 1.2 for (keys %{$self->{earchs}}) {
36     my @a = split /\//;
37     push @{$self->{toplevel_archs}->{$a[0]}}, @{$self->{earchs}->{$_}};
38     }
39    
40 elmex 1.8 $self->set_title ("gce - picker");
41 elmex 1.2
42 elmex 1.8 $self->add (my $hb = Gtk2::VBox->new);
43 elmex 1.4
44 elmex 1.13 $hb->pack_start (my $cb = $self->{combo} = Gtk2::ComboBox->new_text, 0, 1, 0);
45 elmex 1.4
46 elmex 1.13 my $idx = 0;
47 root 1.6 for (sort keys %{$self->{toplevel_archs}}) {
48 elmex 1.5
49 root 1.6 $cb->append_text ($_);
50 elmex 1.13 $self->{arch_txt_to_idx}->{$_} = $idx++;
51 root 1.6 }
52 elmex 1.4
53 root 1.6 $cb->signal_connect (changed => sub {
54 elmex 1.4
55 root 1.6 my $arch = $cb->get_active_text;
56 elmex 1.8 $self->set_selection ($arch);
57 root 1.6 });
58 elmex 1.3
59 root 1.6 $hb->pack_start (my $map = $self->{map} = new Crossfire::MapWidget, 1, 1, 0);
60 elmex 1.16 # XXX: Doesn't work yet beacuse of tooltips
61     # GCE::DragHelper::set_drag_source (
62     # $map, arch => sub { { arch => $self->{last_pick} } }
63     # );
64 elmex 1.4
65 root 1.6 $map->set_size_request (TILESIZE * 10, TILESIZE * 10);
66 elmex 1.4
67 root 1.6 $map->signal_connect (button_press_event => sub {
68 elmex 1.16 my ($map, $event) = @_;
69 elmex 1.4
70 elmex 1.19 if ($event->button == 1) {
71 elmex 1.4
72 root 1.6 my ($mx, $my) = $map->coord ($event->x, $event->y);
73 root 1.7 my $as = $map->get ($mx, $my);
74 elmex 1.2
75 root 1.7 my $arch = $as->[-1]
76 root 1.6 or return;
77    
78 elmex 1.26 my ($x, $y, $arch, $as) = devirtualize ($map, $mx, $my, $arch, $as);
79 elmex 1.11
80 elmex 1.16 $self->{last_pick} = $arch;
81 elmex 1.21
82 elmex 1.25 my $ar = GCE::ArchRef->new (arch => $arch, source => 'picker');
83 elmex 1.21 $::MAINWIN->update_attr_editor ($ar);
84 elmex 1.20
85     } elsif ($event->button == 3) {
86    
87     my ($mx, $my) = $map->coord ($event->x, $event->y);
88     my $as = $map->get ($mx, $my);
89    
90     my $arch = $as->[-1]
91     or return;
92    
93     if ($arch->{_virtual}) {
94     $arch = $arch->{_virtual};
95     }
96    
97     $self->do_context_menu ($map, $event, $arch);
98 root 1.6 }
99 elmex 1.16
100     #my $d = $map->disable_tooltip;
101    
102     1
103     });
104    
105     $map->signal_connect (button_release_event => sub {
106     my ($map, $event) = @_;
107    
108     # $map->enable_tooltip;
109    
110     1
111 root 1.6 });
112 elmex 1.16
113 elmex 1.8 }
114    
115 elmex 1.20 sub do_context_menu {
116     my ($self, $map, $event, $arch) = @_;
117    
118     my ($x, $y) = $map->coord ($event->x, $event->y);
119    
120     my $menu = Gtk2::Menu->new;
121     foreach my $cm (
122     [
123     "Add to inventory" => sub {
124     my $pa = $::MAINWIN->{attr_edit}->get_arch;
125 elmex 1.21 $pa->add_inv ({ _name => $arch->{_name} }) if $pa;
126 elmex 1.20 }
127     ]
128     ) {
129     my $item = Gtk2::MenuItem->new ($cm->[0]);
130     $menu->append ($item);
131     $item->show;
132     $item->signal_connect (activate => $cm->[1]);
133     }
134     $menu->popup (undef, undef, undef, undef, $event->button, $event->time);
135     }
136    
137 elmex 1.8 sub set_selection {
138     my ($self, $arch) = @_;
139    
140     return unless defined $arch;
141    
142 elmex 1.18 return unless defined $self->{toplevel_archs}->{$arch};
143    
144 elmex 1.8 $self->{map}->set_map (
145 elmex 1.18 new_pickmap Crossfire::Map ($self->{toplevel_archs}->{$arch})
146 elmex 1.8 );
147 elmex 1.16 $self->{map}->enable_tooltip;
148 elmex 1.8
149 elmex 1.13 $self->{combo}->set_active ($self->{arch_txt_to_idx}->{$arch});
150    
151 elmex 1.8 $self->{last_selection} = $arch;
152 elmex 1.1 }
153    
154 elmex 1.2
155 elmex 1.1 =head1 AUTHOR
156    
157     Marc Lehmann <schmorp@schmorp.de>
158     http://home.schmorp.de/
159    
160     Robin Redeker <elmex@ta-sa.org>
161     http://www.ta-sa.org/
162    
163     =cut
164     1;