aboutsummaryrefslogtreecommitdiffstats
path: root/variable.h
blob: e40d1025435f9a6843d0eabbe67a4010795757e9 (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
/**
 * @file variable.h
 * Defines variable data structure, and provides functions for variable
 * creation.
 *
 * Copyright (C) 2018 Clyne Sullivan
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */

#ifndef VARIABLE_H_
#define VARIABLE_H_

#include <stdint.h>

/**
 * Data for a script variable.
 */
typedef struct {
	uint8_t tmp    :1; /**< If zero, variable cannot be free'd */
	uint8_t type   :3; /**< The variable's type */
	uint8_t unused :4; /**< Unused... */
	uint8_t array;     /**< ">0?" -> array w/ this size */
	union {
		float f;
		uint32_t p;
	} value; /**< The variable's value, either float or a pointer */
} variable;

/**
 * Defines possible variable types.
 */
enum VARTYPE {
	NUMBER = 0, /**< Number/float */
	STRING,     /**< String of text */
	OPERATOR,   /**< Arithmetical operation */
	FUNC,       /**< In-script function */
	CFUNC,      /**< C function */
};

/**
 * Makes a number out of the given variable.
 * @param v the variable to use, if zero one is malloc'd
 * @param f the number to assign the variable
 * @return the new float variable
 */
variable *make_varf(variable *v, float f);

/**
 * Makes a string out of the given variable.
 * @param v the variable to use, if zero one is malloc'd
 * @param f the string to assign the variable
 * @return the new string variable
 */
variable *make_vars(variable *v, const char *s);

/**
 * Creates a temporary number variable out of the given text.
 * @param text the string to convert to a number
 * @return a number variable with the converted value
 */
variable *make_num(const char *text);

/**
 * Clones a variable into a new, malloc'd variable.
 * @param n the variable to clone
 * @return the cloned, malloc'd variable
 */
variable *varclone(variable *n);

#endif // VARIABLE_H_