TDME2 1.9.121
Float.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <cctype>
5#include <cstring>
6#include <string>
7#include <string_view>
8
9#include <tdme/tdme.h>
12
13using std::find_if;
14using std::isnan;
15using std::stof;
16using std::string;
17using std::string_view;
18using std::to_string;
19
21
24
25bool Float::is(const string& str) {
26 auto trimmedStr = StringTools::trim(str);
27 int dotCount = 0;
28 return
29 str.empty() == false &&
30 find_if(trimmedStr.begin() + (trimmedStr[0] == '-'?1:0), trimmedStr.end(), [&dotCount](char c) { return isdigit(c) == false && (c != '.' || ++dotCount > 1); }) == trimmedStr.end();
31}
32
33bool Float::viewIs(const string_view& str) {
34 auto trimmedStr = StringTools::viewTrim(str);
35 int dotCount = 0;
36 return
37 str.empty() == false &&
38 find_if(trimmedStr.begin() + (trimmedStr[0] == '-'?1:0), trimmedStr.end(), [&dotCount](char c) { return isdigit(c) == false && (c != '.' || ++dotCount > 1); }) == trimmedStr.end();
39}
40
41float Float::parse(const string& str) {
42 auto trimmedStr = StringTools::trim(str);
43 if (trimmedStr.empty() == true) return 0.0f;
44 if (trimmedStr == "-") return -0.0f;
45 int dotCount = 0;
46 int digitSum = 0;
47 return
48 (str.empty() == false &&
49 find_if(trimmedStr.begin() + (trimmedStr[0] == '-'?1:0), trimmedStr.end(), [&dotCount, &digitSum](char c) { if (isdigit(c) == true) digitSum+= c - '0'; return isdigit(c) == false && (c != '.' || ++dotCount > 1); }) == trimmedStr.end()) == true && digitSum > 0?stof(trimmedStr):0.0f;
50}
51
52float Float::viewParse(const string_view& str) {
53 auto trimmedStr = StringTools::viewTrim(str);
54 if (trimmedStr.empty() == true) return 0.0f;
55 if (trimmedStr == "-") return -0.0f;
56 // TODO: we need to do this this way as long there is no from_chars with float
57 if (str.size() > 32) {
58 Console::println("Float::viewParse(): str.size() > 32, returning 0.0f");
59 return 0.0f;
60 }
61 char buf[33];
62 memcpy(buf, &trimmedStr[0], trimmedStr.size());
63 buf[str.size()] = 0;
64 return atof(buf);
65}
Console class.
Definition: Console.h:26
static void println()
Print new line to console.
Definition: Console.cpp:78
Float class.
Definition: Float.h:23
static bool viewIs(const string_view &str)
Check if given string is a float string.
Definition: Float.cpp:33
static float viewParse(const string_view &str)
Parse float.
Definition: Float.cpp:52
static float parse(const string &str)
Parse float.
Definition: Float.cpp:41
String tools class.
Definition: StringTools.h:20
static const string trim(const string &src)
Trim string.
Definition: StringTools.cpp:51
static const string_view viewTrim(const string_view &src)
Trim string.
Definition: StringTools.cpp:76