ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/nimbus.ext
(Generate patch)

Comparing deliantra/maps/perl/nimbus.ext (file contents):
Revision 1.12 by root, Fri Aug 25 15:07:43 2006 UTC vs.
Revision 1.15 by root, Wed Aug 30 08:34:21 2006 UTC

1#! perl 1#! perl
2#CONVERSION: PARTIAL
3 2
4# handle the nimbus map and other stuff 3# handle the nimbus map and other stuff
5 4
6my @STATS = qw( 5my @STATS = qw(
7 Str Dex Con Wis Cha Int Pow 6 Str Dex Con Wis Cha Int Pow
81 80
82 my $path = sprintf "%s/%s/%s/%s", 81 my $path = sprintf "%s/%s/%s/%s",
83 cf::localdir, cf::playerdir, $ob->name, "nimbus"; 82 cf::localdir, cf::playerdir, $ob->name, "nimbus";
84 83
85 if ($ob->map->path ne $path) { 84 if ($ob->map->path ne $path) {
86 my $nimbus = cf::map::get_map "/schmorp/nimbus"; 85 my $nimbus = cf::map::find "/schmorp/nimbus";
87 $nimbus->set_path ($path); 86 $nimbus->set_path ($path);
88 $nimbus->set_unique (1); 87 $nimbus->set_unique (1);
89 88
90 $pl->set_savebed ($path, 24, 12); 89 $pl->set_savebed ($path, 24, 12);
91 } 90 }
108 $portal->apply ($pl->ob); 107 $portal->apply ($pl->ob);
109 108
110 $portal->free; 109 $portal->free;
111} 110}
112 111
113sub on_trigger { 112cf::register_attachment nimbus_exit =>
114 my ($event, $porter, $ob) = @_; 113 on_trigger => sub {
114 my ($self, $ob) = @_;
115 115
116 my $options = $event->options;
117 my $pl = $ob->contr; 116 my $pl = $ob->contr;
118 my @savebed; 117 my @savebed;
119 118
120 if (my $save = delete $ob->{in_nimbus}) { 119 if (my $save = delete $ob->{in_nimbus}) {
121 @savebed = @{$save->{savebed}}; 120 @savebed = @{$save->{savebed}};
122 121
123 if ($options eq "restore") { 122 if ($self->{nimbus_exit}{restore}) {
124 $ob->message ("The gods acknowledge your success.\n"); 123 $ob->message ("The gods acknowledge your success.\n");
125 stats_set $ob->stats, $save->{stats}; 124 stats_set $ob->stats, $save->{stats};
126 stats_set $pl->orig_stats, $save->{orig_stats}; 125 stats_set $pl->orig_stats, $save->{orig_stats};
127 $ob->player_lvl_adj; # update overall level 126 $ob->player_lvl_adj; # update overall level
128 skills_set $ob, $save->{skill_exp}; 127 skills_set $ob, $save->{skill_exp};
128 } else {
129 $ob->message ("The gods are disappointed with you.\n");
130 }
131
129 } else { 132 } else {
130 $ob->message ("The gods are disappointed with you.\n"); 133 @savebed = ("/scorn/taverns/inn", 10, 5);
131 } 134 }
132 135
133 } else { 136 $pl->set_savebed (@savebed);
134 @savebed = ("/scorn/taverns/inn", 10, 5);
135 }
136 137
137 $pl->set_savebed (@savebed); 138 my $map = $ob->map;
138 139
139 my $map = $ob->map; 140 teleport $pl, @savebed;
140 141
141 teleport $pl, @savebed; 142 # should make this a temporary map and let cf deal with it
143 unlink $map->path;
144 unlink $map->path . ".pst";
145 unlink $map->path . ".cfperl";
142 146
143 # should make this a temporary map and let cf deal with it
144 unlink $map->path;
145 unlink $map->path . ".cfperl";
146 $map->delete_map; 147 $map->delete_map;
147 148
148 $pl->play_sound_player_only (cf::SOUND_PLAYER_DIES); 149 $pl->play_sound_player_only (cf::SOUND_PLAYER_DIES);
149 150
150 $ob->message ("You feel as if you woke up from a dream.\n"); 151 $ob->message ("You feel as if you woke up from a dream.\n");
151 $ob->message ("You have a headache.\n"); 152 $ob->message ("You have a headache.\n");
152 $ob->message ("Maybe you should have a drink.\n"); 153 $ob->message ("Maybe you should have a drink.\n");
153 154
154 1 155 cf::override;
155} 156 },
157;
156 158
159cf::attach_to_maps #TODO#d# remove, onyl for upgrading old to new nimbus
160 on_upgrade => sub {
161 my ($map) = @_;
162
163 if ($map->path =~ /\/nimbus$/) {
164 warn "NIMBUS UPGRADE ", $map->path, "\n";
165
166 (grep length $_->slaying, $map->at (11, 1))[0]->attach (nimbus_exit => restore => 1);
167
168 for my $x (37 .. 58) {
169 for my $y (32 .. 53) {
170 $_->remove for $map->at ($x, $y);
171
172 my $portal = cf::object::new "well";
173
174 $portal->set_name ("free ride, courtesy of your friendly upgrade script");
175 $portal->set_slaying ($map->path);
176 $portal->set_hp (1);
177 $portal->set_sp (1);
178
179 $portal->insert_ob_in_map_at ($map, undef, cf::INS_ABOVE_FLOOR_ONLY, $x, $y);
180 }
181 }
182 }
183 },
184;
185

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines