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.1 by root, Mon Jun 25 05:43:53 2007 UTC vs.
Revision 1.20 by root, Thu Dec 27 18:35:48 2007 UTC

1#! perl # mandatory depends=login 1#! perl # mandatory depends=login
2 2
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_n id # widgetset new 5# ws_n ws # widgetset new
5# ws_d id # widgetset destroy 6# ws_d ws # widgetset destroy
6# ws_c ws id class args # widgetset create 7# ws_c ws id class @args # widgetset create
8# ws_ct ws templateface \%cfg # widgetset create from template
7# w_c id [rid] name args # widget method call 9# w_c id rid name @args # widget method call
8# w_s id name value # widget member set 10# w_s id @attr # widget member set
9# w_g id rid name # widget member get 11# w_g id rid @attr # widget member get
10# 12#
11# and expects the following exti message types 13# and expects the following exti message types
12# w_r rid res # widget call return
13# w_e id name args # widget_event 14# w_e id @args # widget_call
15
16our $DEBUG = 1;
14 17
15cf::client->attach ( 18cf::client->attach (
16 on_connect => sub { 19 on_connect => sub {
17 my ($ns) = @_; 20 my ($ns) = @_;
18 21
22 Scalar::Util::weaken (my $weakns = $ns);
23
19 $ns->{id} = "a"; 24 $ns->{id} = "a";
25 $ns->{json_coder}->filter_json_single_key_object ("\fw" => sub {
26 $weakns->{widget}{$_[0]}
27 });
20 }, 28 },
21); 29);
30
31sub csc_update_stats {
32 my ($ns) = @_;
33
34 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) {
35 $v->set_text ($ns->pl->ob->stats->$k);
36 }
37}
38
39sub demo_start {
40 my ($ns) = @_;
41
42 my $ws = $ns->{csc} = $ns->new_widgetset;
43
44 my ($tl, $entry) = $ws->template (undef,
45 toplevel => {},
46 entry => {
47 text => "xyz",
48 on_changed => sub {
49 warn "changed<@_>\n";#d#
50 },
51 },
52 );
53
54 $tl->show;
55
56 $ns->{xxxw} = [$tl, $entry];#d#
57
58# $ws->find ("setup_notebook")->add ($ws->{tab});
59# $ws->find ("setup_dialog")->toggle_visibility;
60}
61
62sub csc_start {
63 my ($ns) = @_;
64
65 my $ws = $ns->{csc} = $ns->new_widgetset;
66
67 my $w = $ws->new (Toplevel =>
68 min_w => 600,
69 min_h => 400,
70 x => "center",
71 y => "center",
72 title => "Character Creation",
73 has_close_button => 1,
74 on_delete => sub {
75 $ws->destroy;
76 },
77 );
78
79 $w->add (my $ntb = $ws->new (Notebook => expand => 1));
80
81 $ntb->add_tab (Statistics => (my $stats = $ws->new (Table => expand => 1)), "Basic statistics of your new character");
82
83 $stats->add_at (0, 0, (my $statstable = $ws->new ("Table")));
84
85 for (
86 [0, "Str"],
87 [1, "Dex"],
88 [2, "Con"],
89 [3, "Int"],
90 [4, "Wis"],
91 [5, "Pow"],
92 [6, "Cha"],
93 ) {
94 my ($x, $label) = @$_;
95
96 $statstable->add_at ($x, 0, $ws->new (Label =>
97 can_hover => 1, can_events => 1,
98 align => +1, text => $label, tooltip => "#stat_$label",
99 ));
100 $statstable->add_at ($x, 1, $ws->{stat}{$label} = $ws->new (Label =>
101 can_hover => 1, can_events => 1,
102 align => +1, template => "88", tooltip => "#stat_$label",
103 ));
104 }
105
106 csc_update_stats $ns;
107
108 $ws->{tl} = $w;
109 $w->show;
110}
22 111
23cf::player->attach ( 112cf::player->attach (
24 on_login => sub { 113 on_login => sub {
25 my ($pl) = @_; 114 my ($pl) = @_;
26 115
27 #DEMO CODE 116 return unless $cf::CFG{devel};
28 return unless $pl->ob->name eq "schmorp";
29 117
30 my $ns = $pl->ns; 118 my $ns = $pl->ns;
31 119
32 return unless $ns->{can_widgetx}; 120 return unless $ns->{can_widget};
33 121 #csc_start $ns;
34 my $ws = $ns->new_widgetset; 122 demo_start $ns;
35
36 $ns->async (sub {
37 Coro::Timer::sleep 20;
38 warn "undef\n";#d#
39 undef $ws;#
40 });#d#
41
42 my $w = $ws->new (Toplevel =>
43 x => "center",
44 y => "center",
45 title => "Server Query",
46 has_close_button => 1,
47 on_delete => sub {
48 warn "i was being d-e-l-e-t-e-d\n";
49 },
50 );
51
52 $w->add ($ws->new (Entry =>
53 on_changed => sub {
54 warn "i was changed<@_>\n";
55 }
56 ));
57
58 $ns->async (sub {
59 warn $w->get ("parent");
60 });
61
62 $w->show;
63
64 }, 123 },
65); 124);
66 125
67cf::register_exticmd w_e => sub { 126cf::register_exticmd w_e => sub {
68 my ($ns, $pkt) = @_; 127 my ($ns, $id, @args) = @_;
69 128
70 if (my $w = $ns->{widget}{$pkt->{id}}) { 129 if (my $cb = $ns->{widget_cb}{$id}) {
71 if (my $cb = $w->{ev}{$pkt->{name}}) { 130 $cb->(@args);
72 $_->($w, @{ $pkt->{args} || [] })
73 for @$cb;
74 }
75 }
76
77 ()
78};
79
80cf::register_exticmd w_r => sub {
81 my ($ns, $pkt) = @_;
82
83 if (my $cb = delete $ns->{widget_return}{$pkt->{rid}}) {
84 $cb->(@{$pkt->{res} || [] });
85 } 131 }
86 132
87 () 133 ()
88}; 134};
89 135
93 my $id = ++$self->{id}; 139 my $id = ++$self->{id};
94 140
95 my $ws = bless { 141 my $ws = bless {
96 id => $id, 142 id => $id,
97 ns => $self, 143 ns => $self,
98 w => {}, 144 _w => {},
99 }, "ext::widget::set"; 145 }, "ext::widget::set";
100 146
101 $ws->msg (ws_n => id => $id); 147 $ws->msg (ws_n => $id);
102 148
103 $ws 149 $ws
150}
151
152sub cf::client::alloc_wid {
153 pop @{ $_[0]{ids} }
154 or ++$_[0]{id}
155}
156
157sub cf::client::free_wid {
158 push @{ $_[0]{ids} }, $_[1];
104} 159}
105 160
106############################################################################# 161#############################################################################
107 162
108package ext::widget::set; 163package ext::widget::set;
112} 167}
113 168
114sub destroy { 169sub destroy {
115 my ($self) = @_; 170 my ($self) = @_;
116 171
117 $self->msg (ws_d => id => $self->{id}); 172 $self->msg (ws_d => $self->{id});
118 delete $self->{ns}; 173 delete $self->{ns};
119 $_->destroy 174 $_->destroy
120 for values %{ $self->{w} }; 175 for values %{ $self->{w} };
121} 176}
122 177
123sub msg { 178sub msg {
124 my ($self, $type, %msg) = @_; 179 my ($self, @msg) = @_;
125 180
126 if (my $ns = shift->{ns}) { 181 if (my $ns = shift->{ns}) {
127 $msg{msgtype} = $type; 182 warn "msg " . $ns->{json_coder}->encode (\@msg) if $DEBUG;#d#
128 $ns->send_packet ("ext " . cf::to_json \%msg); 183 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
129 } 184 }
185}
186
187sub alloc {
188 my ($self) = @_;
189
190 my $id = $self->{ns}->alloc_wid;
191
192 my $proxy = bless {
193 id => $id,
194 }, "ext::widget::proxy";
195
196 Scalar::Util::weaken ($proxy->{ns} = $self->{ns});
197 Scalar::Util::weaken ($self->{ns}{widget}{$id} = $proxy);
198
199 $proxy
130} 200}
131 201
132sub new { 202sub new {
133 my ($self, $class, %args) = @_; 203 my ($self, $class, %args) = @_;
134 204
135 my $id = ++$self->{ns}{id}; 205 my $proxy = $self->alloc;
136 206
137 my $proxy = $self->{w}{$id} = bless { 207 Scalar::Util::weaken ($self->{_w}{$proxy->{id}} = $proxy);
138 id => $id,
139 }, "ext::widget::proxy";
140
141 Scalar::Util::weaken ($proxy->{ws} = $self); 208 Scalar::Util::weaken ($proxy->{ws} = $self);
142 Scalar::Util::weaken ($proxy->{ns} = $self->{ns});
143 Scalar::Util::weaken ($self->{ns}{widget}{$id} = $proxy);
144 209
145 for my $ev (grep /^on_/, keys %args) { 210 for my $ev (grep /^on_/, keys %args) {
146 push @{$proxy->{ev}{$ev}}, $args{$ev}; 211 $args{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args{$ev});
147 $args{$ev} = 0;
148 } 212 }
149 213
150 $self->msg (ws_c => 214 $self->msg (ws_c =>
151 ws => $self->{w}{id}, 215 $self->{id},
152 id => $id, 216 $proxy->{id},
153 class => $class, 217 $class,
154 args => \%args, 218 \%args,
155 ); 219 );
156 220
157 $proxy 221 $proxy
222}
223
224sub template {
225 my ($self, $template, @args) = @_;
226
227 my %cfg;
228 my @res;
229
230 while (@args) {
231 my ($name, $args) = splice @args, 0, 2, ();
232
233 my $proxy = $self->alloc;
234
235 Scalar::Util::weaken ($self->{_w}{$proxy->{id}} = $proxy);
236 Scalar::Util::weaken ($proxy->{ws} = $self);
237
238 for my $ev (grep /^on_/, keys %$args) {
239 $args->{$ev} = $proxy->{"_$ev"} = $proxy->cb ($args->{$ev});
240 }
241
242 $cfg{$name} = {
243 %$args,
244 id => $proxy->{id},
245 };
246
247 push @res, $proxy;
248 }
249
250 $self->msg (ws_ct =>
251 $self->{id},
252 $template,
253 \%cfg,
254 );
255
256 @res
257}
258
259sub find {
260 my ($self, @names) = @_;
261
262 my @res;
263 my @alloc;
264
265 for my $name (@names) {
266 push @res, $self->{ns}{widget_wkw}{$name} ||= do {
267 my $proxy = $self->alloc;
268
269 push @alloc, $proxy->{id} => $name;
270
271 $proxy
272 };
273 }
274
275 $self->msg (ws_a => @alloc)
276 if @alloc;
277
278 wantarray ? @res : $res[0]
158} 279}
159 280
160############################################################################# 281#############################################################################
161 282
162package ext::widget::proxy; 283package ext::widget::proxy;
165 my ($self) = @_; 286 my ($self) = @_;
166 287
167 delete $self->{ns}{widget}{$self->{id}}; 288 delete $self->{ns}{widget}{$self->{id}};
168 289
169 if (my $ws = $self->{ws}) { 290 if (my $ws = $self->{ws}) {
291 $self->msg (w_c => 0, "destroy");
170 delete $ws->{w}{$self->{id}}; 292 delete $ws->{_w}{$self->{id}};
171 $self->msg (w_c => name => "destroy");
172 } 293 }
294}
295
296sub cb {
297 my ($self, $cb) = @_;
298
299 my $proxy = bless {
300 ns => $self->{ns},
301 id => $self->{ns}->alloc_wid,
302 }, "ext::widget::callback";
303
304 Scalar::Util::weaken $proxy->{ns};
305
306 $self->{ns}{widget_cb}{$proxy->{id}} = $cb;
307
308 $proxy
309}
310
311sub oneshot_cb {
312 my ($self, $cb) = @_;
313
314 if ("CODE" eq ref $cb) {
315 my $ocb = $cb;
316 $cb = $self->cb (sub {
317 undef $cb;
318 &$ocb
319 });
320 }
321
322 $cb
173} 323}
174 324
175sub msg { 325sub msg {
176 my ($self, $type, %msg) = @_; 326 my ($self, $type, @arg) = @_;
327
328 if (my $ns = $self->{ns}) {
329 my @msg = ($type, $self->{id}, @arg);
330 warn "MSG " . $ns->{json_coder}->encode (\@msg) if $DEBUG;#d#
331 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\@msg));
332 }
333}
334
335sub msg_cb {
336 my ($self, $cb, $type, @arg) = @_;
177 337
178 if (my $ws = $self->{ws}) { 338 if (my $ws = $self->{ws}) {
179 $ws->msg ($type,
180 %msg,
181 id => $self->{id},
182 );
183 }
184}
185
186sub msg_cb {
187 my ($self, $cb, $type, %msg) = @_;
188
189 if (my $ws = $self->{ws}) {
190
191 my $rid = ++$ws->{ns}{id}; 339 my $rid = $ws->{ns}->alloc_wid;
192
193 $self->msg ($type, %msg, rid => $rid);
194 340
195 if ($cb) { 341 if ($cb) {
196 $ws->{ns}{widget_return}{$rid} = $cb; 342 $ws->{ns}{widget_cb}{$rid} = sub {
343 delete $ws->{ns}{widget_cb}{$rid};
344 $ws->{ns}->free_wid ($rid);
345 &$cb
346 };
347
348 $self->msg ($type, $rid, @arg);
197 } else { 349 } else {
198 # synchronous case 350 # synchronous case
199 my $wait = new Coro::Signal; 351 my $wait = new Coro::Signal;
200 my @res; 352 my @res;
201 353
202 $ws->{ns}{widget_return}{$rid} = sub { 354 $ws->{ns}{widget_cb}{$rid} = sub {
355 delete $ws->{ns}{widget_cb}{$rid};
356 $ws->{ns}->free_wid ($rid);
357
203 @res = @_; 358 @res = @_;
204 $wait->send; 359 $wait->send;
205 }; 360 };
361 $self->msg ($type, $rid, @arg);
206 $wait->wait; 362 $wait->wait;
207 363
208 return @res; 364 return @res;
209 } 365 }
210 } 366 }
211 367
212 () 368 ()
213} 369}
214 370
215sub set { 371sub set {
216 my ($self, $member, $value) = @_; 372 my ($self, @kv) = @_;
217 373
218 $self->msg (w_s => name => $member, value => $value); 374 $self->msg (w_s => \@kv);
219} 375}
220 376
221sub get { 377sub get {
222 my ($self, $member, $cb) = @_; 378 my ($self, $member, $cb) = @_;
223 379
224 $self->msg_cb ($cb, w_g => name => $member); 380 $self->msg_cb ($cb, w_g => ref $member ? @$member : $member);
225} 381}
226 382
227sub TO_JSON { 383sub TO_JSON {
228 { __widget_ref__ => $_[0]{id} } 384 { "\fw" => $_[0]{id} }
229} 385}
230 386
231our $AUTOLOAD; 387our $AUTOLOAD;
232 388
233sub AUTOLOAD { 389sub AUTOLOAD {
234 $AUTOLOAD =~ s/^.*:// 390 $AUTOLOAD =~ s/^.*://
235 or return; 391 or return;
236 392
237 my $self = shift; 393 my $self = shift;
238 394
395 #TODO: handle non-void context
239 $self->msg (w_c => name => $AUTOLOAD, args => \@_); 396 $self->msg (w_c => 0, $AUTOLOAD, @_);
240 397
241 () 398 ()
242} 399}
243 400
401package ext::widget::callback;
402
403sub DESTROY {
404 my ($self) = @_;
405
406 if (my $ns = $self->{ns}) {
407 delete $ns->{widget_cb}{$self->{id}};
408 $ns->free_wid ($self->{id});
409 }
410}
411
412sub TO_JSON {
413 { "\fc" => $_[0]{id} }
414}
415

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines