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

Comparing deliantra/server/random_maps/decor.C (file contents):
Revision 1.12 by root, Sat Jan 27 00:56:48 2007 UTC vs.
Revision 1.21 by root, Sun May 4 14:12:37 2008 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * 20 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de> 21 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 22 */
24
25 23
26#include <global.h> 24#include <global.h>
27#include <random_map.h> 25#include <random_map.h>
28#include <rproto.h> 26#include <rproto.h>
29 27
30#define NR_DECOR_OPTIONS 1 28#define NR_DECOR_OPTIONS 1
31 29
32/* return a simple count of objects in the map at x,y. */ 30/* return a simple count of objects in the map at x,y. */
33 31
34int 32static int
35obj_count_in_map (maptile *map, int x, int y) 33obj_count_in_map (maptile *map, int x, int y)
36{ 34{
37 int count = 0; 35 int count = 0;
38 object *tmp; 36 object *tmp;
39 37
40 for (tmp = GET_MAP_OB (map, x, y); tmp != NULL; tmp = tmp->above) 38 for (tmp = map->at (x, y).bot; tmp; tmp = tmp->above)
41 count++; 39 ++count;
40
42 return count; 41 return count;
43} 42}
44 43
45/* put the decor into the map. Right now, it's very primitive. */ 44/* put the decor into the map. Right now, it's very primitive. */
46 45
56 if (!decor_map) 55 if (!decor_map)
57 return; 56 return;
58 57
59 /* pick a random option, only 1 option right now. */ 58 /* pick a random option, only 1 option right now. */
60 if (decor_option == 0) 59 if (decor_option == 0)
61 decor_option = RANDOM () % NR_DECOR_OPTIONS + 1; 60 decor_option = rmg_rndm (NR_DECOR_OPTIONS) + 1;
62 61
63 switch (decor_option) 62 switch (decor_option)
64 { 63 {
65 case 0: 64 case 0:
66 break; 65 break;
66
67 case 1: 67 case 1:
68 { /* random placement of decor objects. */ 68 { /* random placement of decor objects. */
69 int number_to_place = RANDOM () % ((RP->Xsize * RP->Ysize) / 5); 69 int number_to_place = rmg_rndm (RP->Xsize * RP->Ysize / 5);
70 int failures = 0; 70 int failures = 0;
71 object *new_decor_object;
72 71
73 while (failures < 100 && number_to_place > 0) 72 while (failures < 100 && number_to_place > 0)
74 { 73 {
75 int x, y; 74 coroapi::cede_to_tick ();
76 75
77 x = RANDOM () % (RP->Xsize - 2) + 1; 76 int x = rmg_rndm (RP->Xsize - 2) + 1;
78 y = RANDOM () % (RP->Ysize - 2) + 1; 77 int y = rmg_rndm (RP->Ysize - 2) + 1;
78
79 if (maze[x][y] == 0 && obj_count_in_map (map, x, y) < 2) 79 if (maze[x][y] == 0 && obj_count_in_map (map, x, y) < 2)
80 { /* empty */ 80 {
81 object *this_object; 81 object *this_object = decor_map->pick_random_object (rmg_rndm)->clone ();
82 /* it screws things up if decor can stop people */
83 this_object->move_block = 0;
84 map->insert (this_object, x, y, 0, 0);
82 85
83 new_decor_object = pick_random_object (decor_map);
84 this_object = arch_to_object (new_decor_object->arch);
85 new_decor_object->copy_to (this_object);
86 this_object->x = x;
87 this_object->y = y;
88 /* it screws things up if decor can stop people */
89 this_object->move_block = MOVE_BLOCK_DEFAULT;
90 insert_ob_in_map (this_object, map, NULL, 0);
91 number_to_place--; 86 number_to_place--;
92 } 87 }
93 else 88 else
94 failures++; 89 failures++;
95 } 90 }
96 break; 91 break;
97 } 92 }
93
98 default: 94 default:
99 { /* place decor objects everywhere: tile the map. */ 95 { /* place decor objects everywhere: tile the map. */
100 int i, j; 96 int i, j;
101 97
102 for (i = 1; i < RP->Xsize - 1; i++) 98 for (i = 1; i < RP->Xsize - 1; i++)
103 for (j = 1; j < RP->Ysize - 1; j++) 99 for (j = 1; j < RP->Ysize - 1; j++)
104 { 100 {
105 if (maze[i][j] == 0) 101 if (maze[i][j] == 0)
106 { 102 {
107 object *new_decor_object, *this_object; 103 object *this_object = decor_map->pick_random_object (rmg_rndm)->clone ();
108 104
109 new_decor_object = pick_random_object (decor_map);
110 this_object = arch_to_object (new_decor_object->arch);
111 new_decor_object->copy_to (this_object);
112 this_object->x = i; 105 this_object->x = i;
113 this_object->y = j; 106 this_object->y = j;
114 /* it screws things up if decor can stop people */ 107 /* it screws things up if decor can stop people */
115 this_object->move_block = MOVE_BLOCK_DEFAULT; 108 this_object->move_block = 0;
109
116 insert_ob_in_map (this_object, map, NULL, 0); 110 insert_ob_in_map (this_object, map, NULL, 0);
117 } 111 }
118 } 112 }
119 break; 113 break;
120 } 114 }
121 } 115 }
122} 116}
117

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines