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.3 by root, Tue Jun 26 04:50:05 2007 UTC vs.
Revision 1.6 by root, Mon Jul 16 09:07:12 2007 UTC

14 14
15cf::client->attach ( 15cf::client->attach (
16 on_connect => sub { 16 on_connect => sub {
17 my ($ns) = @_; 17 my ($ns) = @_;
18 18
19 Scalar::Util::weaken (my $weakns = $ns);
20
19 $ns->{id} = "a"; 21 $ns->{id} = "a";
22 $ns->{json_coder}->filter_json_single_key_object (__widget_ref__ => sub {
23 # cannot deserialise ATM
24 undef
25 });
20 }, 26 },
21); 27);
22 28
23sub csc_update_stats { 29sub csc_update_stats {
24 my ($ns) = @_; 30 my ($ns) = @_;
25 31
26 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) { 32 while (my ($k, $v) = each %{ $ns->{csc}{stat} }) {
27 $v->set_text ($ns->pl->ob->stats->$k); 33 $v->set_text ($ns->pl->ob->stats->$k);
28 } 34 }
35}
36
37sub demo_map {
38 my ($ns) = @_;
39
40 my $ws = $ns->{csc} = $ns->new_widgetset;
41
42 my $w = $ws->new (Toplevel =>
43 w => 200,
44 h => 200,
45 x => "center",
46 y => "center",
47 title => "Worldmap",
48 has_close_button => 1,
49 on_delete => sub {
50 $ws->destroy;
51 },
52 );
53
54 my $face = cf::face::find "res/worldmap.jpg";
55 $ns->send_face ($face);
56
57 $w->add (my $sw = $ws->new (ScrolledWindow => scroll_x => 1, scroll_y => 1));
58 $sw->add (my $vb = $ws->new (VBox => expand => 1));
59 #$vb->add ($ws->new (Label => text => "lb1"));
60 $vb->add ($ws->new (Face => expand => 1, size_w => undef, size_h => undef, face => $face));
61 $sw->show;
62 $vb->show;
63
64 $w->show;
29} 65}
30 66
31sub csc_start { 67sub csc_start {
32 my ($ns) = @_; 68 my ($ns) = @_;
33 69
79 115
80cf::player->attach ( 116cf::player->attach (
81 on_login => sub { 117 on_login => sub {
82 my ($pl) = @_; 118 my ($pl) = @_;
83 119
84 return unless $cf::CFG{devel}; 120 #return unless $cf::CFG{devel};
85 121
86 my $ns = $pl->ns; 122 my $ns = $pl->ns;
87 123
88 return unless $ns->{can_widget}; 124 return unless $ns->{can_widget};
89 125
126 demo_map $ns;
90 csc_start $ns; 127 #csc_start $ns;
91 }, 128 },
92); 129);
93 130
94cf::register_exticmd w_e => sub { 131cf::register_exticmd w_e => sub {
95 my ($ns, $pkt) = @_; 132 my ($ns, $pkt) = @_;
150sub msg { 187sub msg {
151 my ($self, $type, %msg) = @_; 188 my ($self, $type, %msg) = @_;
152 189
153 if (my $ns = shift->{ns}) { 190 if (my $ns = shift->{ns}) {
154 $msg{msgtype} = $type; 191 $msg{msgtype} = $type;
155 $ns->send_packet ("ext " . cf::to_json \%msg); 192 $ns->send_packet ("ext " . $ns->{json_coder}->encode (\%msg));
156 } 193 }
157} 194}
158 195
159sub new { 196sub new {
160 my ($self, $class, %args) = @_; 197 my ($self, $class, %args) = @_;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines