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

Comparing deliantra/server/common/exp.C (file contents):
Revision 1.11 by pippijn, Mon Jan 15 21:06:18 2007 UTC vs.
Revision 1.30 by root, Thu Apr 15 04:56:46 2010 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,2009,2010 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 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 it under
9 * it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation; either version 2 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your option) any later version. 11 * 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 Affero GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * and the GNU General Public License along with this program. If not, see
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25#include <stdio.h> 25#include <stdio.h>
26#include <global.h> 26#include <global.h>
27 27
28sint64 *levels; 28sint64 levels[MAXNUMLEVELS];
29 29
30float exp_att_mult[NROFATTACKS + 2] = { 30static float exp_att_mult[NROFATTACKS + 2] = {
31 0.0, /* AT_PHYSICAL */ 31 0.0, /* AT_PHYSICAL */
32 0.0, /* AT_MAGIC */ 32 0.0, /* AT_MAGIC */
33 0.0, /* AT_FIRE */ 33 0.0, /* AT_FIRE */
34 0.0, /* AT_ELECTRICITY */ 34 0.0, /* AT_ELECTRICITY */
35 0.0, /* AT_COLD */ 35 0.0, /* AT_COLD */
48 0.0, /* AT_DEATH */ 48 0.0, /* AT_DEATH */
49 0.0, /* AT_CHAOS */ 49 0.0, /* AT_CHAOS */
50 0.0 /* AT_COUNTERSPELL */ 50 0.0 /* AT_COUNTERSPELL */
51}; 51};
52 52
53float exp_prot_mult[NROFATTACKS + 2] = { 53static float exp_prot_mult[NROFATTACKS + 2] = {
54 0.4, /* AT_PHYSICAL */ 54 0.4, /* AT_PHYSICAL */
55 0.5, /* AT_MAGIC */ 55 0.5, /* AT_MAGIC */
56 0.1, /* AT_FIRE */ 56 0.1, /* AT_FIRE */
57 0.1, /* AT_ELECTRICITY */ 57 0.1, /* AT_ELECTRICITY */
58 0.1, /* AT_COLD */ 58 0.1, /* AT_COLD */
72 0.0, /* AT_CHAOS */ 72 0.0, /* AT_CHAOS */
73 0.0 /* AT_COUNTERSPELL */ 73 0.0 /* AT_COUNTERSPELL */
74}; 74};
75 75
76/* 76/*
77 * Returns true if the monster specified has any innate abilities.
78 */
79static int
80has_ability (const object *ob)
81{
82 for (object *tmp = ob->inv; tmp; tmp = tmp->below)
83 if (tmp->type == SPELL || tmp->type == SPELLBOOK)
84 return true;
85
86 return false;
87}
88
89/*
77 * new_exp() is an alternative way to calculate experience based 90 * new_exp() is an alternative way to calculate experience based
78 * on the ability of a monster. 91 * on the ability of a monster.
79 * It's far from perfect, and doesn't consider everything which 92 * It's far from perfect, and doesn't consider everything which
80 * can be considered, thus it's only used in debugging. 93 * can be considered, thus it's only used in debugging.
81 * this is only used with one of the dumpflags, 94 * this is only used with one of the dumpflags,
82 * and not anyplace in the code. 95 * and not anyplace in the code.
83 */ 96 */
84
85int 97int
86new_exp (const object *ob) 98new_exp (const object *ob)
87{ 99{
88 double att_mult, prot_mult, spec_mult; 100 double att_mult, prot_mult, spec_mult;
89 double exp; 101 double exp;
99 * the doubling is to take into account the table and resistances 111 * the doubling is to take into account the table and resistances
100 * are lower than they once were. 112 * are lower than they once were.
101 */ 113 */
102 prot_mult += (exp_prot_mult[i] * 200 * ob->resist[i]) / 100.0; 114 prot_mult += (exp_prot_mult[i] * 200 * ob->resist[i]) / 100.0;
103 } 115 }
116
104 spec_mult += (0.3 * (QUERY_FLAG (ob, FLAG_SEE_INVISIBLE) != 0)) + 117 spec_mult += (0.3 * (ob->flag [FLAG_SEE_INVISIBLE] != 0)) +
105 (0.5 * (QUERY_FLAG (ob, FLAG_SPLITTING) != 0)) + 118 (0.5 * (ob->flag [FLAG_SPLITTING] != 0)) +
106 (0.3 * (QUERY_FLAG (ob, FLAG_HITBACK) != 0)) + 119 (0.3 * (ob->flag [FLAG_HITBACK] != 0)) +
107 (0.1 * (QUERY_FLAG (ob, FLAG_REFL_MISSILE) != 0)) + 120 (0.1 * (ob->flag [FLAG_REFL_MISSILE] != 0)) +
108 (0.3 * (QUERY_FLAG (ob, FLAG_REFL_SPELL) != 0)) + 121 (0.3 * (ob->flag [FLAG_REFL_SPELL] != 0)) +
109 (1.0 * (QUERY_FLAG (ob, FLAG_NO_MAGIC) != 0)) + 122 (1.0 * (ob->flag [FLAG_NO_MAGIC] != 0)) +
110 (0.1 * (QUERY_FLAG (ob, FLAG_PICK_UP) != 0)) + 123 (0.1 * (ob->flag [FLAG_PICK_UP] != 0)) +
111 (0.1 * (QUERY_FLAG (ob, FLAG_USE_SCROLL) != 0)) + 124 (0.1 * (ob->flag [FLAG_USE_SCROLL] != 0)) +
112 (0.2 * (QUERY_FLAG (ob, FLAG_USE_RANGE) != 0)) + (0.1 * (QUERY_FLAG (ob, FLAG_USE_BOW) != 0)); 125 (0.2 * (ob->flag [FLAG_USE_RANGE] != 0)) + (0.1 * (ob->flag [FLAG_USE_BOW] != 0));
113 126
114 exp = (ob->stats.maxhp < 5) ? 5 : ob->stats.maxhp; 127 exp = (ob->stats.maxhp < 5) ? 5 : ob->stats.maxhp;
115 exp *= (QUERY_FLAG (ob, FLAG_CAST_SPELL) && has_ability (ob)) ? (40 + (ob->stats.maxsp > 80 ? 80 : ob->stats.maxsp)) / 40 : 1; 128 exp *= (ob->flag [FLAG_CAST_SPELL] && has_ability (ob)) ? (40 + (ob->stats.maxsp > 80 ? 80 : ob->stats.maxsp)) / 40 : 1;
116 exp *= (80.0 / (70.0 + ob->stats.wc)) * (80.0 / (70.0 + ob->stats.ac)) * (50.0 + ob->stats.dam) / 50.0; 129 exp *= (80.0 / (70.0 + ob->stats.wc)) * (80.0 / (70.0 + ob->stats.ac)) * (50.0 + ob->stats.dam) / 50.0;
117 exp *= att_mult * prot_mult * spec_mult; 130 exp *= att_mult * prot_mult * spec_mult;
118 exp *= 2.0 / (2.0 - ((FABS (ob->speed) < 0.95) ? FABS (ob->speed) : 0.95)); 131 exp *= 2.0 / (2.0 - min (ob->speed, 0.95));
119 exp *= (20.0 + ob->stats.Con) / 20.0; 132 exp *= (20.0 + ob->stats.Con) / 20.0;
120 if (QUERY_FLAG (ob, FLAG_STAND_STILL)) 133 if (ob->flag [FLAG_STAND_STILL])
121 exp /= 2; 134 exp /= 2;
122 135
123 return (int) exp; 136 return exp;
124} 137}
125 138
126/* 139//TODO: binary search...
127 * Returns true if the monster specified has any innate abilities.
128 */
129
130int 140int
131has_ability (const object *ob) 141exp_to_level (sint64 exp)
132{ 142{
133 object *tmp; 143 for (int i = 1; i <= settings.max_level; i++)
144 if (levels [i] > exp)
145 return i - 1;
134 146
135 for (tmp = ob->inv; tmp != NULL; tmp = tmp->below) 147 return settings.max_level;
136 if (tmp->type == SPELL || tmp->type == SPELLBOOK) 148}
149
150sint64
151level_to_min_exp (int level)
152{
153 if (level <= 0)
137 return true; 154 return 0;
138 return false; 155 else
156 return levels [min (level, settings.max_level)];
139} 157}
140 158
141/* This loads the experience table from the exp_table 159/* This loads the experience table from the exp_table
142 * file. This tends to exit on any errors, since it 160 * file. This tends to exit on any errors, since it
143 * populates the table as it goes along, so if there 161 * populates the table as it goes along, so if there
144 * are errors, the table is likely in an inconsistent 162 * are errors, the table is likely in an inconsistent
145 * state. 163 * state.
146 */ 164 */
147void 165void
148init_experience (void) 166init_experience ()
149{ 167{
150 char buf[MAX_BUF], *cp; 168 char buf[MAX_BUF], *cp;
151 int lastlevel = 0, comp; 169 int lastlevel = 0, comp;
152 sint64 lastexp = -1, tmpexp; 170 sint64 lastexp = -1, tmpexp;
153 FILE *fp;
154
155 171
156 sprintf (buf, "%s/exp_table", settings.confdir); 172 sprintf (buf, "%s/exp_table", settings.confdir);
157 173
158 if ((fp = open_and_uncompress (buf, 0, &comp)) == NULL) 174 object_thawer thawer (buf);
175
176 if (!thawer)
159 { 177 {
178 LOG (llevError, "unable to parse experience table file");
160 return; 179 return;
161 } 180 }
162 while (fgets (buf, MAX_BUF - 1, fp) != NULL) 181
182 if (thawer.kw != KW_max_level)
183 {
184 thawer.parse_error ("experience table file", "max_level");
185 return;
163 { 186 }
164 if (buf[0] == '#')
165 continue;
166 187
167 /* eliminate newline */ 188 thawer.get (settings.max_level);
168 if ((cp = strrchr (buf, '\n')) != NULL)
169 *cp = '\0';
170 189
171 /* Skip over empty lines */ 190 sint64 newlevels [MAXNUMLEVELS];
172 if (buf[0] == 0) 191
173 continue; 192 while (thawer.next_line ())
174 cp = buf; 193 {
175 while (isspace (*cp) && *cp != 0) 194 thawer.get (tmpexp);
176 cp++; 195
177 if (!strncasecmp (cp, "max_level", 9)) 196 /* Do some sanity checking - if value is bogus, just exit because
197 * the table otherwise is probably in an inconsistent state
198 */
199 if (tmpexp <= lastexp)
178 { 200 {
179 if (settings.max_level) 201 LOG (llevError, "Experience for level %d is lower than previous level (%" PRId64 " <= %" PRId64 ")\n", lastlevel + 1, tmpexp, lastexp);
180 { 202 return;
181 LOG (llevDebug, "Got more than one max_level value from exp_table file?\n");
182 free (levels);
183 }
184 settings.max_level = atoi (cp + 9);
185 if (!settings.max_level)
186 {
187 LOG (llevDebug, "Got invalid max_level from exp_table file? %s\n", buf);
188 }
189 else
190 {
191 levels = (sint64 *) calloc (settings.max_level + 1, sizeof (sint64));
192 }
193 } 203 }
194 while (isdigit (*cp) && *cp != 0) 204
205 lastlevel++;
206
207 if (lastlevel > settings.max_level)
195 { 208 {
196 if (!settings.max_level)
197 {
198 LOG (llevError, "max_level is not set in exp_table file. Did you remember to update it?\n");
199 exit (1);
200 }
201
202 tmpexp = atoll (cp);
203 /* Do some sanity checking - if value is bogus, just exit because
204 * the table otherwise is probably in an inconsistent state
205 */
206 if (tmpexp <= lastexp)
207 {
208 LOG (llevError, "Experience for level %d is lower than previous level (%" PRId64 " <= %" PRId64 ")\n", lastlevel + 1, tmpexp, lastexp);
209 exit (1);
210 }
211 lastlevel++;
212 if (lastlevel > settings.max_level)
213 {
214 LOG (llevError, "Too many levels specified in table (%d > %d)\n", lastlevel, settings.max_level); 209 LOG (llevError, "Too many levels specified in table (%d > %d)\n", lastlevel, settings.max_level);
215 exit (1); 210 exit (1);
216 }
217 levels[lastlevel] = tmpexp;
218 lastexp = tmpexp;
219 /* First, skip over the number we just processed. Then skip over
220 * any spaces, commas, etc.
221 */
222 while (isdigit (*cp) && *cp != 0)
223 cp++;
224 while (!isdigit (*cp) && *cp != 0)
225 cp++;
226 } 211 }
212
213 newlevels [lastlevel] = tmpexp;
214 lastexp = tmpexp;
227 } 215 }
228 close_and_delete (fp, comp); 216
229 if (lastlevel != settings.max_level && lastlevel != 0) 217 if (lastlevel != settings.max_level && lastlevel != 0)
230 { 218 {
231 LOG (llevError, "Warning: exp_table does not have %d entries (%d)\n", settings.max_level, lastlevel); 219 LOG (llevError, "Warning: exp_table does not have %d entries (%d)\n", settings.max_level, lastlevel);
232 exit (1); 220 return;
233 }
234}
235
236/* Dump the table - useful in terms of debugging to make sure the
237 * format of the exp_table is correct.
238 */
239
240void
241dump_experience ()
242{
243 int i;
244
245 for (i = 1; i <= settings.max_level; i++)
246 { 221 }
247 fprintf (logfile, "%4d %20lld\n", i, (long long) levels[i]); 222
248 } 223 memcpy (levels, newlevels, sizeof (levels));
249 exit (0);
250} 224}
225

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines