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
|
/* ---------------------------------------
* Author: Started by David Mkrtchyan, modified by Martin Pane (martintayx@gmail.com) (@tayx94)
* Collaborators: Lars Aalbertsen (@Rockylars)
* Project: Graphy - Ultimate Stats Monitor
* Date: 18-May-18
* Studio: Tayx
*
* This project is released under the MIT license.
* Attribution is not required, but it is always welcomed!
* -------------------------------------*/
using UnityEngine;
namespace Tayx.Graphy.Utils.NumString
{
public static class G_FloatString
{
/* ----- TODO: ----------------------------
* Try and move the Init to a core method.
* Try and replace the Pow function with a better algorithm.
* --------------------------------------*/
#region Variables -> Private
/// <summary>
/// Float represented as a string, formatted.
/// </summary>
private const string floatFormat = "0.0";
/// <summary>
/// The currently defined, globally used decimal multiplier.
/// </summary>
private static float decimalMultiplier = 1f;
/// <summary>
/// List of negative floats casted to strings.
/// </summary>
private static string[] negativeBuffer = new string[0];
/// <summary>
/// List of positive floats casted to strings.
/// </summary>
private static string[] positiveBuffer = new string[0];
#endregion
#region Properties -> Public
/// <summary>
/// Have the int buffers been initialized?
/// </summary>
public static bool Inited
{
get
{
return negativeBuffer.Length > 0 || positiveBuffer.Length > 0;
}
}
/// <summary>
/// The lowest float value of the existing number buffer.
/// </summary>
public static float MinValue
{
get
{
return -(negativeBuffer.Length - 1).FromIndex();
}
}
/// <summary>
/// The highest float value of the existing number buffer.
/// </summary>
public static float MaxValue
{
get
{
return (positiveBuffer.Length - 1).FromIndex();
}
}
#endregion
#region Methods -> Public
//TODO: Figure out what the negative buffer doe, why we dont have default values and why the range is so high.
/// <summary>
/// Initialize the buffers.
/// </summary>
/// <param name="minNegativeValue">
/// Lowest negative value allowed.
/// </param>
/// <param name="maxPositiveValue">
/// Highest positive value allowed.
/// </param>
/// <param name="decimals">
/// How many decimals will the values use?
/// </param>
public static void Init(float minNegativeValue, float maxPositiveValue, int decimals = 1)
{
decimalMultiplier = Pow(10, Mathf.Clamp(decimals, 1, 5));
int negativeLength = minNegativeValue.ToIndex();
int positiveLength = maxPositiveValue.ToIndex();
if (negativeLength >= 0)
{
negativeBuffer = new string[negativeLength];
for (int i = 0; i < negativeLength; i++)
{
negativeBuffer[i] = (-i).FromIndex().ToString(floatFormat);
}
}
if (positiveLength >= 0)
{
positiveBuffer = new string[positiveLength];
for (int i = 0; i < positiveLength; i++)
{
positiveBuffer[i] = i.FromIndex().ToString(floatFormat);
}
}
}
/// <summary>
/// Returns this float as a cached string.
/// </summary>
/// <param name="value">
/// The required float.
/// </param>
/// <returns>
/// A cached number string.
/// </returns>
public static string ToStringNonAlloc(this float value)
{
int valIndex = value.ToIndex();
if (value < 0 && valIndex < negativeBuffer.Length)
{
return negativeBuffer[valIndex];
}
if (value >= 0 && valIndex < positiveBuffer.Length)
{
return positiveBuffer[valIndex];
}
return value.ToString();
}
//TODO: Convert this to use floatFormat instead, but investigate which functions require and dont require one first.
/// <summary>
/// Returns this float as a cached string.
/// </summary>
/// <param name="value">
/// The required float.
/// </param>
/// <returns>
/// A cached number string.
/// </returns>
public static string ToStringNonAlloc(this float value, string format)
{
int valIndex = value.ToIndex();
if (value < 0 && valIndex < negativeBuffer.Length)
{
return negativeBuffer[valIndex];
}
if (value >= 0 && valIndex < positiveBuffer.Length)
{
return positiveBuffer[valIndex];
}
return value.ToString(format);
}
/// <summary>
/// Returns a float as a casted int.
/// </summary>
/// <param name="f">
/// The given float.
/// </param>
/// <returns>
/// The given float as an int.
/// </returns>
public static int ToInt(this float f)
{
return (int)f;
}
/// <summary>
/// Returns an int as a casted float.
/// </summary>
/// <param name="f">
/// The given int.
/// </param>
/// <returns>
/// The given int as a float.
/// </returns>
public static float ToFloat(this int i)
{
return (float)i;
}
#endregion
#region Methods -> Private
//TODO: Replace this with a better algorithm.
private static int Pow(int f, int p)
{
for (int i = 1; i < p; i++)
{
f *= f;
}
return f;
}
private static int ToIndex(this float f)
{
return Mathf.Abs((f * decimalMultiplier).ToInt());
}
private static float FromIndex(this int i)
{
return (i.ToFloat() / decimalMultiplier);
}
#endregion
}
}
|