2011-09-29 22:08:22 +10:00
|
|
|
#ifndef NALL_ATOI_HPP
|
|
|
|
#define NALL_ATOI_HPP
|
|
|
|
|
Update to v089r17 release.
byuu says:
This implements the spec from the XML part 3 thread:
http://board.byuu.org/viewtopic.php?f=16&t=2998
It's also propagated the changes to nall and purify, so you can test
this one.
This is basically it, after years of effort I feel I finally have
a fully consistent and logical XML board format.
The only things left to change will be: modifications if emulation turns
out to be incorrect (eg we missed some MMIO mirrors, or mirrored too
much), and new additions.
And of course, I'm giving it a bit of time for good arguments against
the format.
Other than that, this release removes linear_vector and pointer_vector,
as vector is better than linear_vector and I've never used
pointer_vector.
vector also gets move(), which is a way to use move-semantics across
types. It lets you steal the underlying memory pool, effectively
destroying the vector without a copy.
This works really nicely with the move for read() functions to return
vector<uint8> instead of taking (uint8_t*&, unsigned&) parameters.
2012-07-15 23:02:27 +10:00
|
|
|
#include <nall/stdint.hpp>
|
|
|
|
|
2011-09-29 22:08:22 +10:00
|
|
|
namespace nall {
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t binary_(const char* s, uintmax_t sum = 0) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s == '0' || *s == '1' ? binary_(s + 1, (sum << 1) | *s - '0') :
|
|
|
|
sum
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t octal_(const char* s, uintmax_t sum = 0) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s >= '0' && *s <= '7' ? octal_(s + 1, (sum << 3) | *s - '0') :
|
|
|
|
sum
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t decimal_(const char* s, uintmax_t sum = 0) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s >= '0' && *s <= '9' ? decimal_(s + 1, (sum * 10) + *s - '0') :
|
|
|
|
sum
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t hex_(const char* s, uintmax_t sum = 0) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s >= 'A' && *s <= 'F' ? hex_(s + 1, (sum << 4) | *s - 'A' + 10) :
|
|
|
|
*s >= 'a' && *s <= 'f' ? hex_(s + 1, (sum << 4) | *s - 'a' + 10) :
|
|
|
|
*s >= '0' && *s <= '9' ? hex_(s + 1, (sum << 4) | *s - '0') :
|
|
|
|
sum
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t binary(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s == '0' && *(s + 1) == 'B' ? binary_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'b' ? binary_(s + 2) :
|
|
|
|
*s == '%' ? binary_(s + 1) :
|
|
|
|
binary_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t octal(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
2013-07-29 19:42:45 +10:00
|
|
|
*s == '0' && *(s + 1) == 'O' ? octal_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'o' ? octal_(s + 2) :
|
2011-09-29 22:08:22 +10:00
|
|
|
octal_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline intmax_t integer(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s == '+' ? +decimal_(s + 1) :
|
|
|
|
*s == '-' ? -decimal_(s + 1) :
|
|
|
|
decimal_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t decimal(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
decimal_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline uintmax_t hex(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return (
|
|
|
|
*s == '0' && *(s + 1) == 'X' ? hex_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'x' ? hex_(s + 2) :
|
|
|
|
*s == '$' ? hex_(s + 1) :
|
|
|
|
hex_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-05-02 21:25:45 +10:00
|
|
|
constexpr inline intmax_t numeral(const char* s) {
|
2012-01-26 17:50:09 +11:00
|
|
|
return (
|
|
|
|
*s == '0' && *(s + 1) == 'X' ? hex_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'x' ? hex_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'B' ? binary_(s + 2) :
|
|
|
|
*s == '0' && *(s + 1) == 'b' ? binary_(s + 2) :
|
|
|
|
*s == '0' ? octal_(s + 1) :
|
|
|
|
*s == '+' ? +decimal_(s + 1) :
|
|
|
|
*s == '-' ? -decimal_(s + 1) :
|
|
|
|
decimal_(s)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:45 +10:00
|
|
|
inline double real(const char* s) {
|
2011-09-29 22:08:22 +10:00
|
|
|
return atof(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|