summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-02-04 22:52:30 +0000
committerDarkvater <Darkvater@openttd.org>2006-02-04 22:52:30 +0000
commit949340ed6b9e15dfd1040c3d2889a4ba8ec6c0c3 (patch)
treecb239711eff176b7b7b76d5560baf1079993beec /settings.c
parent3156a052d5c87cdcb8318d85ee7c5855b6ef5a90 (diff)
downloadopenttd-949340ed6b9e15dfd1040c3d2889a4ba8ec6c0c3.tar.xz
(svn r3548) - [Patches]: rework two loops in make_oneofmany() and make_manyofmany()
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c46
1 files changed, 24 insertions, 22 deletions
diff --git a/settings.c b/settings.c
index 148fe3e6f..b27b0218c 100644
--- a/settings.c
+++ b/settings.c
@@ -473,25 +473,24 @@ static void make_intlist(char *buf, const void *array, int nelems, int type)
* @param buf output buffer where the string-representation will be stored
* @param many the full-domain string of possible values
* @param id the value of the variable and whose string-representation must be found */
-static void make_oneofmany(char *buf, const char *many, int i)
+static void make_oneofmany(char *buf, const char *many, int id)
{
- int orig_i = i;
- char c;
-
- while (--i >= 0) {
- do {
- many++;
- if (many[-1] == 0) {
- sprintf(buf, "%d", orig_i);
+ int orig_id = id;
+
+ // Look for the id'th element
+ while (--id >= 0) {
+ for (; *many != '|'; many++) {
+ if (*many == '\0') { // not found
+ sprintf(buf, "%d", orig_id);
return;
}
- } while (many[-1] != '|');
+ }
+ many++; // pass the |-character
}
- // copy until | or 0
- while ((c=*many++) != 0 && c != '|')
- *buf++ = c;
- *buf = 0;
+ // copy string until next item (|) or the end of the list if this is the last one
+ while (*many != '\0' && *many != '|') *buf++ = *many++;
+ *buf = '\0';
}
/* Convert a MANYofMANY structure to a string representation.
@@ -505,10 +504,11 @@ static void make_manyofmany(char *buf, const char *many, uint32 x)
int i = 0;
bool init = true;
- do {
+ for (; x != 0; x >>= 1, i++) {
start = many;
- while (*many != 0 && *many != '|') many++;
- if (x & 1) {
+ while (*many != 0 && *many != '|') many++; // advance to the next element
+
+ if (HASBIT(x, 0)) { // item found, copy it
if (!init) *buf++ = '|';
init = false;
if (start == many) {
@@ -518,9 +518,11 @@ static void make_manyofmany(char *buf, const char *many, uint32 x)
buf += many - start;
}
}
+
if (*many == '|') many++;
- } while (++i, x>>=1);
- *buf = 0;
+ }
+
+ *buf = '\0';
}
/* Get the GenericType of a setting. This describes the main type
@@ -572,9 +574,9 @@ static const void *string_to_val(const SettingDesc *desc, const char *str)
ShowInfoF("ini: invalid setting value '%s' for '%s'", str, desc->name);
break;
- case SDT_STRING:
- case SDT_STRINGBUF:
- case SDT_STRINGQUOT:
+ case SDT_STR:
+ case SDT_STRB:
+ case SDT_STRQ:
case SDT_INTLIST:
case SDT_CHAR:
return str;