ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/style.C
(Generate patch)

Comparing deliantra/server/random_maps/style.C (file contents):
Revision 1.10 by root, Wed Dec 27 09:28:02 2006 UTC vs.
Revision 1.12 by root, Sat Dec 30 10:16:11 2006 UTC

106 * isn't, and difficult is -1, it returns a random style map. 106 * isn't, and difficult is -1, it returns a random style map.
107 * Otherwise, it tries to match the difficulty given with a style 107 * Otherwise, it tries to match the difficulty given with a style
108 * file, named style_name_# where # is an integer 108 * file, named style_name_# where # is an integer
109 */ 109 */
110 110
111/* remove extern, so visible to command_style_map_info function */
112maptile *styles = NULL;
113
114
115maptile * 111maptile *
116load_style_map (char *style_name) 112load_style_map (char *style_name)
117{ 113{
118 maptile *style_map; 114 maptile *style_map = maptile::find_map (style_name, 0);
119 115 style_map->load ();
120 /* Given a file. See if its in memory */
121 for (style_map = styles; style_map != NULL; style_map = style_map->next)
122 if (!strcmp (style_name, style_map->path))
123 return style_map;
124
125 style_map = load_original_map (style_name, MAP_STYLE);
126
127 /* Remove it from global list, put it on our local list */
128 if (style_map)
129 {
130 maptile *tmp;
131
132 if (style_map == first_map)
133 first_map = style_map->next;
134 else
135 {
136 for (tmp = first_map; tmp && tmp->next != style_map; tmp = tmp->next);
137 if (tmp)
138 tmp->next = style_map->next;
139 }
140
141 style_map->next = styles;
142 styles = style_map;
143 }
144
145 return style_map; 116 return style_map;
146} 117}
147 118
148maptile * 119maptile *
149find_style (const char *dirname, const char *stylename, int difficulty) 120find_style (const char *dirname, const char *stylename, int difficulty)
247 } 218 }
248 return style_map; 219 return style_map;
249 220
250} 221}
251 222
252
253/* picks a random object from a style map. 223/* picks a random object from a style map.
254 * Redone by MSW so it should be faster and not use static 224 * Redone by MSW so it should be faster and not use static
255 * variables to generate tables. 225 * variables to generate tables.
256 */ 226 */
257object * 227object *
272 x = RANDOM () % style->width; 242 x = RANDOM () % style->width;
273 y = RANDOM () % style->height; 243 y = RANDOM () % style->height;
274 new_obj = GET_MAP_OB (style, x, y); 244 new_obj = GET_MAP_OB (style, x, y);
275 } 245 }
276 while (new_obj == NULL && limit < 1000); 246 while (new_obj == NULL && limit < 1000);
247
277 if (new_obj->head) 248 if (new_obj->head)
278 return new_obj->head; 249 return new_obj->head;
279 else 250 else
280 return new_obj; 251 return new_obj;
281} 252}
282 253
283
284void
285free_style_maps (void)
286{
287 maptile *next;
288 int style_maps = 0;
289
290 /* delete_map will try to free it from the linked list,
291 * but won't find it, so we need to do it ourselves
292 */
293 while (styles)
294 {
295 next = styles->next;
296 delete_map (styles);
297 styles = next;
298 style_maps++;
299 }
300 LOG (llevDebug, "free_style_maps: Freed %d maps\n", style_maps);
301}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines