ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/gde/GCE/Util.pm
(Generate patch)

Comparing deliantra/gde/GCE/Util.pm (file contents):
Revision 1.3 by elmex, Sun Mar 12 12:18:55 2006 UTC vs.
Revision 1.7 by elmex, Fri Mar 17 01:18:01 2006 UTC

16use List::Util qw(min max); 16use List::Util qw(min max);
17 17
18use Crossfire; 18use Crossfire;
19use Crossfire::MapWidget; 19use Crossfire::MapWidget;
20 20
21our @EXPORT = qw(insert_arch_stack_layer replace_arch_stack_layer new_arch_pb fill_pb_from_arch arch_is_floor stack_find_floor stack_find_wall stack_find arch_is_wall arch_is_monster); 21our @EXPORT = qw(insert_arch_stack_layer replace_arch_stack_layer new_arch_pb fill_pb_from_arch arch_is_floor stack_find_floor stack_find_wall stack_find arch_is_wall arch_is_monster add_table_widget quick_msg def arch_is_exit);
22
23sub def($$) {
24 return defined ($_[0]) ? $_[0] : $_[1];
25}
26
27sub quick_msg {
28 my $wid = shift;
29 my $msg;
30 my $win = $::MAINWIN;
31 if (ref $wid) {
32 $win = $wid;
33 $msg = shift;
34 } else {
35 $msg = $wid;
36 }
37 my $dia = Gtk2::Dialog->new ('Message', $win, 'destroy-with-parent', 'gtk-ok' => 'none');
38
39 my $lbl = Gtk2::Label->new ($msg);
40 $dia->vbox->add ($lbl);
41 $dia->signal_connect (response => sub { $_[0]->destroy });
42
43 unless (defined $_[0]) {
44 Glib::Timeout->add (1000, sub { $dia->destroy; 0 });
45 }
46
47 $dia->show_all;
48}
22 49
23sub new_arch_pb { 50sub new_arch_pb {
24 # this is awful, is this really the best way? 51 # this is awful, is this really the best way?
25 my $pb = new Gtk2::Gdk::Pixbuf 'rgb', 1, 8, TILESIZE, TILESIZE; 52 my $pb = new Gtk2::Gdk::Pixbuf 'rgb', 1, 8, TILESIZE, TILESIZE;
26 return $pb; 53 return $pb;
27} 54}
28 55
29sub fill_pb_from_arch { 56sub fill_pb_from_arch {
30 my ($pb, $arch) = @_; 57 my ($pb, $a) = @_;
58
59 my $o = $Crossfire::ARCH{$a->{_name}};
60 my $face = $Crossfire::FACE{$a->{face} || $o->{face} || "blank.111"}
61 or warn "no gfx found for arch '$a->{_name}' at ($x|$y)\n";
62
63 $face or return;
31 64
32 $pb->fill (0x00000000); 65 $pb->fill (0x00000000);
33 $TILE->composite ($pb, 66 $TILE->composite ($pb,
34 0, 0, 67 0, 0,
35 TILESIZE, TILESIZE, 68 TILESIZE, TILESIZE,
36 - ($arch->{_face} % 64) * TILESIZE, - TILESIZE * int $arch->{_face} / 64, 69 - ($face->{idx} % 64) * TILESIZE, - TILESIZE * int $face->{idx} / 64,
37 1, 1, 'nearest', 255 70 1, 1, 'nearest', 255
38 ); 71 );
39} 72}
40 73
41sub classify_arch_layer { 74sub classify_arch_layer {
51 84
52 } else { # $arch->{is_floor} and all other arches are 'between' monsters and floor 85 } else { # $arch->{is_floor} and all other arches are 'between' monsters and floor
53 86
54 return 'between'; 87 return 'between';
55 } 88 }
89}
90
91sub arch_is_exit {
92 my ($a) = @_;
93 my $type = $Crossfire::ARCH{$a->{_name}}->{type};
94 return $type eq '66' || $type eq '41';
56} 95}
57 96
58sub arch_is_floor { 97sub arch_is_floor {
59 my ($a) = @_; 98 my ($a) = @_;
60 return $Crossfire::ARCH{$a->{_name}}->{is_floor}; 99 return $Crossfire::ARCH{$a->{_name}}->{is_floor};
162 } 201 }
163 202
164 return \@outstack; 203 return \@outstack;
165} 204}
166 205
206sub add_table_widget {
207 my ($table, $row, $data, $type, $cb) = @_;
208 my $edwid;
209
210 if ($type eq 'string') {
211 $table->attach_defaults (my $lbl = Gtk2::Label->new ($data->[0]), 0, 1, $row, $row + 1);
212 $edwid = Gtk2::Entry->new;
213 $edwid->set_text ($data->[1]);
214 $edwid->signal_connect (changed => sub {
215 $data->[1] = $_[0]->get_text;
216 $cb->($data->[1]) if $cb;
217 });
218 $table->attach_defaults ($edwid, 1, 2, $row, $row + 1);
219
220 } elsif ($type eq 'button') {
221 $table->attach_defaults (my $b = Gtk2::Button->new_with_label ($data), 0, 2, $row, $row + 1);
222 $b->signal_connect (clicked => ($cb || sub {}));
223
224 } elsif ($type eq 'label') {
225 $table->attach_defaults (my $lbl = Gtk2::Label->new ($data->[0]), 0, 1, $row, $row + 1);
226 $edwid = Gtk2::Label->new ($data->[1]);
227 $table->attach_defaults ($edwid, 1, 2, $row, $row + 1);
228
229 } else {
230 $edwid = Gtk2::Label->new ("FOO");
231 }
232}
233
167sub replace_arch_stack_layer { 234sub replace_arch_stack_layer {
168 my ($stack, $arch) = @_; 235 my ($stack, $arch) = @_;
169 236
170 my @outstack; 237 my @outstack;
171 238

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines