summaryrefslogtreecommitdiffstats
path: root/DTFormatN.c
blob: 15562658fb079b8cc3c2485644c1c2c1989c5944 (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
#strict 2

global func FormatN(string format, array placeholders, array items)
{
	if(!items && GetType(placeholders[0]) == C4V_Array)
	{
		items = CreateArray(GetLength(placeholders));
		for(var i = 0; i < GetLength(placeholders); ++i)
		{
			items[i] = placeholders[i][1];
			placeholders[i] = placeholders[i][0];
		}
	}

	var ret = "";

	var inPlaceholder = 0;
	var placeholderType = "";
	var placeholderPart = "";

	for(var i = 0; i < GetLength(format); ++i)
	{
		var c = format[i];
		if(c == "%")
		{
			if(inPlaceholder == 0)
			{
				inPlaceholder = 1;
			}
			else if(inPlaceholder == 1)
			{
				if(GetLength(placeholderType) == 0)
				{
					ret ..= "%";
					inPlaceholder = 0;
				}
				else
				{
					inPlaceholder = 2;
				}
			}
			else if(inPlaceholder == 2)
			{
				var index = GetIndexOf2(placeholderPart, placeholders);
				if(index == -1)
				{
					FatalError(Format("FormatN: Unkown placeholder \"%s\"", placeholderPart));
					return 0;
				}

				ret = Format(Format("%%s%%%s", placeholderType), ret, items[index]);

				inPlaceholder = 0;
				placeholderType = "";
				placeholderPart = "";
			}
		}
		else
		{
			if(inPlaceholder == 0)
			{
				ret ..= c;
			}
			else if(inPlaceholder == 1)
			{
				placeholderType ..= c;
			}
			else if(inPlaceholder == 2)
			{
				placeholderPart ..= c;
			}
		}
	}

	if(inPlaceholder == 1)
	{
		FatalError(Format("FormatN: Placeholder not finished at end of format-string: \"%%%s\"", placeholderType));
		return 0;
	}
	else if(inPlaceholder == 2)
	{
		FatalError(Format("FormatN: Placeholder not finished at end of format-string: \"%%%s%%%s\"", placeholderType, placeholderPart));
		return 0;
	}

	return ret;
}