summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/rcvars.c
blob: e37657dbad7d828c73377dc64c8b3adeb9d87509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233




#include <string.h>
#include "rockmacros.h"

#include "defs.h"
#include "rc.h"






static rcvar_t rcvars[150];

static int nvars;





void rc_export(rcvar_t *v)
{
	const rcvar_t end = RCV_END;
	
	if (!v) return;
	nvars++;
//	rcvars = realloc(rcvars, sizeof (rcvar_t) * (nvars+1));
//	if (!rcvars)
//		die("out of memory adding rcvar %s\n", v->name);
	rcvars[nvars-1] = *v;
	rcvars[nvars] = end;
}

void rc_exportvars(rcvar_t *vars)
{
	while(vars->type)
		rc_export(vars++);
}



int rc_findvar(char *name)
{
	int i;
	if (!rcvars) return -1;
	for (i = 0; rcvars[i].name; i++)
		if (!strcmp(rcvars[i].name, name))
			break;
	if (!rcvars[i].name)
		return -1;
	return i;
}


int my_atoi(const char *s)
{
	int a = 0;
	if (*s == '0')
	{
		s++;
		if (*s == 'x' || *s == 'X')
		{
			s++;
			while (*s)
			{
				if (isdigit(*s))
					a = (a<<4) + *s - '0';
				else if (strchr("ABCDEF", *s))
					a = (a<<4) + *s - 'A' + 10;
				else if (strchr("abcdef", *s))
					a = (a<<4) + *s - 'a' + 10;
				else return a;
				s++;
			}
			return a;
		}
		while (*s)
		{
			if (strchr("01234567", *s))
				a = (a<<3) + *s - '0';
			else return a;
			s++;
		}
		return a;
	}
	if (*s == '-')
	{
		s++;
		for (;;)
		{
			if (isdigit(*s))
				a = (a*10) + *s - '0';
			else return -a;
			s++;
		}
	}
	while (*s)
	{
		if (isdigit(*s))
			a = (a*10) + *s - '0';
		else return a;
		s++;
	}
	return a;
}


int rc_setvar_n(int i, int c, char **v)
{
	int j;
	int *n;
	char **s;

	switch (rcvars[i].type)
	{
	case rcv_int:
		if (c < 1) return -1;
		n = (int *)rcvars[i].mem;
		*n = my_atoi(v[0]);
		return 0;
	case rcv_string:
		if (c < 1) return -1;
		s = (char **)rcvars[i].mem;
//		if (*s) free(*s);
		strcpy(*s,v[0]);
		if (!*s)
			die("out of memory setting rcvar %s\n", rcvars[i].name);
		return 0;
	case rcv_vector:
		if (c > rcvars[i].len)
			c = rcvars[i].len;
		for (j = 0; j < c ; j++)
			((int *)rcvars[i].mem)[j] = my_atoi(v[j]);
		return 0;
	case rcv_bool:
		if (c < 1 || atoi(v[0]) || strchr("yYtT", v[0][0]))
			*(int *)rcvars[i].mem = 1;
		else if (strchr("0nNfF", v[0][0]))
			*(int *)rcvars[i].mem = 0;
		else
			return -1;
		return 0;
	}
	return -1;
}


int rc_setvar(char *name, int c, char **v)
{
	int i;
	
	i = rc_findvar(name);
	if (i < 0) return i;

	return rc_setvar_n(i, c, v);
}


void *rc_getmem_n(int i)
{
	return rcvars[i].mem;
}


void *rc_getmem(char *name)
{
	int i;
	i = rc_findvar(name);
	if (i < 0) return NULL;
	return rcvars[i].mem;
}

int rc_getint_n(int i)
{
	if (i < 0) return 0;
	switch (rcvars[i].type)
	{
	case rcv_int:
	case rcv_bool:
		return *(int *)rcvars[i].mem;
	}
	return 0;
}

int *rc_getvec_n(int i)
{
	if (i < 0) return NULL;
	switch (rcvars[i].type)
	{
	case rcv_int:
	case rcv_bool:
	case rcv_vector:
		return (int *)rcvars[i].mem;
	}
	return NULL;
}

char *rc_getstr_n(int i)
{
	if (i < 0) return 0;
	switch (rcvars[i].type)
	{
	case rcv_string:
		return *(char **)rcvars[i].mem;
	}
	return 0;
}

int rc_getint(char *name)
{
	return rc_getint_n(rc_findvar(name));
}

int *rc_getvec(char *name)
{
	return rc_getvec_n(rc_findvar(name));
}

char *rc_getstr(char *name)
{
	return rc_getstr_n(rc_findvar(name));
}