ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/widget.ext
(Generate patch)

Comparing deliantra/server/ext/widget.ext (file contents):
Revision 1.19 by root, Sat Sep 1 07:22:20 2007 UTC vs.
Revision 1.22 by root, Fri Dec 28 12:44:45 2007 UTC

3# sends the following ext message types 3# sends the following ext message types
4# ws_a id name... # associate well-known widget with given id 4# ws_a id name... # associate well-known widget with given id
5# ws_n ws # widgetset new 5# ws_n ws # widgetset new
6# ws_d ws # widgetset destroy 6# ws_d ws # widgetset destroy
7# ws_c ws id class @args # widgetset create 7# ws_c ws id class @args # widgetset create
8# ws_ct ws ttype ttext done_cb \%cfg # widgetset create from template
8# w_c id rid name @args # widget method call 9# w_c id rid name @args # widget method call
9# w_s id @attr # widget member set 10# w_s id @attr # widget member set
10# w_g id rid @attr # widget member get 11# w_g id rid @attr # widget member get
11# 12#
12# and expects the following exti message types 13# and expects the following exti message types
33 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) { 34 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) {
34 $v->set_text ($ns->pl->ob->stats->$k); 35 $v->set_text ($ns->pl->ob->stats->$k);
35 } 36 }
36} 37}
37 38
38sub demo_start { 39my $cg_template = eval <<EOF;
39 my ($ns) = @_; 40[
40 41 Toplevel => {
41 my $ws = $ns->{csc} = $ns->new_widgetset; 42 s_id => "toplevel",
42 43 title => "Character Creation",
43 $ws->{tab} = $ws->new (Label => text => "dumb tst", c_tab => ["hull"]); 44 x => "center",
45 y => "center",
46 z => 5,
47 force_w => 760,
48 force_h => 440,
49 s_cl => [VBox => { s_cl => [
50 Label => {
51 text => "Character Creation",
52 fontsize => 1,
53 align => 0,
54 },
55 Label => {
56 markup => "View or Edit your character attributes below, then press <b>Finish</b> to create your character",
57 fontsize => 0.8,
58 align => 0,
59 },
60 HBox => { s_cl => [
61 Face => {
62 s_id => "face",
63 face => 0,
64 bg => [.2, .2, .2, 1],
65 min_w => 64,
66 min_h => 64,
67 },
68 Label => {
69 s_id => "desc",
70 fontsize => 0.8,
71 ellipsize => 0,
72 },
73 ]},
74 Notebook => {
75 expand => 1,
76 s_cl => [
77 Table => {
78 c_tab => ["Basics", "Title, background and other information of your character."],
79 },
80 Table => {
81 c_tab => ["Stats", "Your character's primary stats such as strength, dexterity and so on."],
82 },
83 Table => {
84 c_tab => ["Race", "Your character's race."],
85 },
86 Table => {
87 c_tab => ["Class", "Your character's initial class."],
88 },
89 ],
90 },
91 Button => {
92 s_id => "finish",
93 text => "Finish",
94 },
95 ]}],
44 96 },
45 $ws->find ("setup_notebook")->add ($ws->{tab}); 97]
46 $ws->find ("setup_dialog")->toggle_visibility; 98EOF
47} 99die if $@;
48 100
49sub csc_start { 101sub csc_start {
50 my ($ns) = @_; 102 my ($ns) = @_;
51 103
52 my $ws = $ns->{csc} = $ns->new_widgetset; 104 my $ws = $ns->{csc} = $ns->new_widgetset;
92 144
93 csc_update_stats $ns; 145 csc_update_stats $ns;
94 146
95 $ws->{tl} = $w; 147 $ws->{tl} = $w;
96 $w->show; 148 $w->show;
149
150# my ($tl, $entry) = $ws->template (inline => $cg_template,
151# [
152# toplevel => {},
153# entry => {
154# text => "xyz",
155# on_changed => sub {
156# warn "changed<@_>\n";#d#
157# },
158# },
159# ],
160# );
161#
162# $tl->show;
163#
164# $ns->{xxxw} = [$tl, $entry];#d#
165#
166# $ws->find ("setup_notebook")->add ($ws->{tab});
167# $ws->find ("setup_dialog")->toggle_visibility;
97} 168}
98 169
99cf::player->attach ( 170cf::player->attach (
100 on_login => sub { 171 on_login => sub {
101 my ($pl) = @_; 172 my ($pl) = @_;
102 173
174 my $ns = $pl->ns;
175 return unless $ns->{can_widget};
176
103 return unless $cf::CFG{devel}; 177 return unless $cf::CFG{devel};
104 178
105 my $ns = $pl->ns;
106
107 return unless $ns->{can_widget};
108 #csc_start $ns; 179 #csc_start $ns;
109 #demo_start $ns;
110 }, 180 },
111); 181);
112 182
113cf::register_exticmd w_e => sub { 183cf::register_exticmd w_e => sub {
114 my ($ns, $id, @args) = @_; 184 my ($ns, $id, @args) = @_;
206 ); 276 );
207 277
208 $proxy 278 $proxy
209} 279}
210 280
281sub template {
282 my ($self, $type, $template, $args, $done_cb) = @_;
283
284 my %cfg;
285
286 while (@$args) {
287 my ($name, $args) = splice @$args, 0, 2, ();
288
289 my $proxy = $self->alloc;
290
291 $self->{delete $args->{alias} or $name} = $proxy;
292
293 Scalar::Util::weaken ($self->{_w}{$proxy->{id}} = $proxy);
294 Scalar::Util::weaken ($proxy->{ws} = $self);
295
296 for my $ev (grep /^on_/, keys %$args) {
297 $args->{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args->{$ev});
298 }
299
300 $cfg{$name} = {
301 %$args,
302 id => $proxy->{id},
303 };
304 }
305
306 if ($done_cb) {
307 my $proxy = $self->alloc;
308 my $ocb = $done_cb;
309 $done_cb = $proxy->cb (sub {
310 undef $proxy;
311 undef $done_cb;
312 &$ocb
313 });
314 }
315
316 if ($type eq "face") {
317 $self->{ns}->send_face ($template, 100);
318 $self->{ns}->flush_fx;
319 }
320
321 $self->msg (ws_ct =>
322 $self->{id},
323 $type => $template,
324 $done_cb,
325 \%cfg,
326 );
327}
328
211sub find { 329sub find {
212 my ($self, @names) = @_; 330 my ($self, @names) = @_;
213 331
214 my @res; 332 my @res;
215 my @alloc; 333 my @alloc;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines