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.1 by elmex, Mon Feb 20 18:21:04 2006 UTC vs.
Revision 1.6 by elmex, Thu Mar 16 14:00:24 2006 UTC

13 13
14use Carp (); 14use Carp ();
15use Storable; 15use Storable;
16use List::Util qw(min max); 16use List::Util qw(min max);
17 17
18our @EXPORT = qw(insert_arch_stack_layer replace_arch_stack_layer); 18use Crossfire;
19use Crossfire::MapWidget;
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 add_table_widget quick_msg def);
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}
49
50sub new_arch_pb {
51 # this is awful, is this really the best way?
52 my $pb = new Gtk2::Gdk::Pixbuf 'rgb', 1, 8, TILESIZE, TILESIZE;
53 return $pb;
54}
55
56sub fill_pb_from_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;
64
65 $pb->fill (0x00000000);
66 $TILE->composite ($pb,
67 0, 0,
68 TILESIZE, TILESIZE,
69 - ($face->{idx} % 64) * TILESIZE, - TILESIZE * int $face->{idx} / 64,
70 1, 1, 'nearest', 255
71 );
72}
19 73
20sub classify_arch_layer { 74sub classify_arch_layer {
21 my ($arch) = @_; 75 my ($arch) = @_;
22 76
23 if ($arch->{invisible}) { # just a heuristic for 'special' tiles (er. pedestals) 77 if ($arch->{invisible}) { # just a heuristic for 'special' tiles (er. pedestals)
30 84
31 } 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
32 86
33 return 'between'; 87 return 'between';
34 } 88 }
89}
90
91sub arch_is_floor {
92 my ($a) = @_;
93 return $Crossfire::ARCH{$a->{_name}}->{is_floor};
94}
95
96sub arch_is_wall {
97 my ($a) = @_;
98 return $Crossfire::ARCH{$a->{_name}}->{no_pass};
99}
100
101sub arch_is_monster {
102 my ($a) = @_;
103 my $arch = $Crossfire::ARCH{$a->{_name}};
104 return $arch->{alive} and ($arch->{monster} or $arch->{generator});
105}
106
107sub stack_find {
108 my ($stack, $dir, $pred) = @_;
109
110
111 if ($dir eq 'from_top') {
112 my $i = scalar (@$stack) - 1;
113 if ($i < 0) { $i = 0 }
114
115 for (reverse @$stack) {
116 $pred->($_)
117 and return $i;
118
119 $i--;
120 }
121
122 } else {
123 my $i = 0;
124
125 for (@$stack) {
126 $pred->($_)
127 and return $i;
128
129 $i++;
130 }
131 }
132
133 return 0;
134
135}
136
137sub stack_find_floor {
138 my ($stack, $dir) = @_;
139 return stack_find ($stack, $dir, \&arch_is_floor);
140}
141
142sub stack_find_wall {
143 my ($stack, $dir) = @_;
144 return stack_find ($stack, $dir, \&arch_is_wall);
35} 145}
36 146
37sub insert_arch_stack_layer { 147sub insert_arch_stack_layer {
38 my ($stack, $arch) = @_; 148 my ($stack, $arch) = @_;
39 149
85 } 195 }
86 196
87 return \@outstack; 197 return \@outstack;
88} 198}
89 199
200sub add_table_widget {
201 my ($table, $row, $data, $type, $cb) = @_;
202 my $edwid;
203
204 if ($type eq 'string') {
205 $table->attach_defaults (my $lbl = Gtk2::Label->new ($data->[0]), 0, 1, $row, $row + 1);
206 $edwid = Gtk2::Entry->new;
207 $edwid->set_text ($data->[1]);
208 $edwid->signal_connect (changed => sub {
209 $data->[1] = $_[0]->get_text;
210 $cb->($data->[1]) if $cb;
211 });
212 $table->attach_defaults ($edwid, 1, 2, $row, $row + 1);
213
214 } elsif ($type eq 'button') {
215 $table->attach_defaults (my $b = Gtk2::Button->new_with_label ($data), 0, 2, $row, $row + 1);
216 $b->signal_connect (clicked => ($cb || sub {}));
217
218 } elsif ($type eq 'label') {
219 $table->attach_defaults (my $lbl = Gtk2::Label->new ($data->[0]), 0, 1, $row, $row + 1);
220 $edwid = Gtk2::Label->new ($data->[1]);
221 $table->attach_defaults ($edwid, 1, 2, $row, $row + 1);
222
223 } else {
224 $edwid = Gtk2::Label->new ("FOO");
225 }
226}
227
90sub replace_arch_stack_layer { 228sub replace_arch_stack_layer {
91 my ($stack, $arch) = @_; 229 my ($stack, $arch) = @_;
92 230
93 my @outstack; 231 my @outstack;
94 232

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines