ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/random_maps/monster.C
Revision: 1.33
Committed: Mon Oct 29 23:55:54 2012 UTC (11 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_1
Changes since 1.32: +5 -5 lines
Log Message:
trailing space removal

File Contents

# Content
1 /*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992 Frank Tore Johansen
7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
21 *
22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */
24
25 #include <global.h>
26 #include <rmg.h>
27 #include <rproto.h>
28
29 /* place some monsters into the map. */
30 void
31 place_monsters (maptile *map, const char *monsterstyle, int difficulty, random_map_params *RP)
32 {
33 int failed_placements;
34 sint64 exp_per_sq, total_experience;
35 int number_monsters = 0;
36 archetype *at;
37
38 maptile *style_map = find_style ("/styles/monsterstyles", monsterstyle, difficulty);
39 if (!style_map)
40 return;
41
42 /* fill up the map with random monsters from the monster style */
43
44 total_experience = 0;
45 failed_placements = 0;
46 exp_per_sq = 0;
47 while (exp_per_sq <= level_exp (difficulty, 1.0) && failed_placements < 100 && number_monsters < (RP->Xsize * RP->Ysize) / 8)
48 {
49 object *this_monster = style_map->pick_random_object (rmg_rndm);
50 int x, y, freeindex;
51
52 if (this_monster == NULL)
53 return; /* no monster?? */
54
55 x = rmg_rndm (RP->Xsize);
56 y = rmg_rndm (RP->Ysize);
57 freeindex = find_first_free_spot (this_monster, map, x, y);
58 if (freeindex != -1)
59 {
60 object *new_monster = this_monster->deep_clone ();
61 x += freearr_x[freeindex];
62 y += freearr_y[freeindex];
63 map->insert (new_monster, x, y, 0, INS_NO_MERGE | INS_NO_WALK_ON);
64
65 if (new_monster->is_alive ())
66 {
67 total_experience += this_monster->stats.exp;
68
69 for (at = new_monster->arch; at; at = (archetype *)at->more)
70 number_monsters++;
71
72 assert (new_monster->stats.hp >= 0);
73 RP->total_map_hp += new_monster->stats.hp; /* a global count */
74 }
75 else
76 failed_placements++;
77 }
78 else
79 failed_placements++;
80
81 exp_per_sq = (sint64) (((double) 1000 * total_experience) / (map->width * map->height + 1));
82 }
83 }