mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
byuu says: Changelog: - synchronizes lots of nall changes - changes displayed program title from tomoko to higan(*) - browser dialog sort is case-insensitive - .sys folders look at user-selected library path; no longer hard-coded Tried to get rid of the file modes from the Windows browser dialog, but it was being a bitch so I left it on for now. - The storage locations and binary still use tomoko. I'm not really sure what to do here. The idea is there may be more than one "higan" UI in the future, but I don't want people to go around calling the entire program by the UI name. For official Windows releases, I can rename the binaries to "higan-{profile}.exe", and by putting the config files with the binary, they won't ever see the tomoko folder. Linux is of course trickier. Note: Windows users will need to edit hiro/components.hpp and comment out these lines: #define Hiro_Console #define Hiro_IconView #define Hiro_SourceView #define Hiro_TreeView I forgot to do that, and too lazy to upload another WIP.
91 lines
2.0 KiB
C++
91 lines
2.0 KiB
C++
#ifndef NALL_ATOI_HPP
|
|
#define NALL_ATOI_HPP
|
|
|
|
#include <nall/stdint.hpp>
|
|
|
|
namespace nall {
|
|
|
|
constexpr inline auto binary_(const char* s, uintmax_t sum = 0) -> uintmax_t {
|
|
return (
|
|
*s == '0' || *s == '1' ? binary_(s + 1, (sum << 1) | *s - '0') :
|
|
*s == '\'' ? binary_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline auto octal_(const char* s, uintmax_t sum = 0) -> uintmax_t {
|
|
return (
|
|
*s >= '0' && *s <= '7' ? octal_(s + 1, (sum << 3) | *s - '0') :
|
|
*s == '\'' ? octal_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline auto decimal_(const char* s, uintmax_t sum = 0) -> uintmax_t {
|
|
return (
|
|
*s >= '0' && *s <= '9' ? decimal_(s + 1, (sum * 10) + *s - '0') :
|
|
*s == '\'' ? decimal_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline auto hex_(const char* s, uintmax_t sum = 0) -> uintmax_t {
|
|
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') :
|
|
*s == '\'' ? hex_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
//
|
|
|
|
constexpr inline auto binary(const char* s) -> uintmax_t {
|
|
return (
|
|
*s == '0' && *(s + 1) == 'B' ? binary_(s + 2) :
|
|
*s == '0' && *(s + 1) == 'b' ? binary_(s + 2) :
|
|
*s == '%' ? binary_(s + 1) :
|
|
binary_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline auto octal(const char* s) -> uintmax_t {
|
|
return (
|
|
*s == '0' && *(s + 1) == 'O' ? octal_(s + 2) :
|
|
*s == '0' && *(s + 1) == 'o' ? octal_(s + 2) :
|
|
octal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline auto integer(const char* s) -> intmax_t {
|
|
return (
|
|
*s == '+' ? +decimal_(s + 1) :
|
|
*s == '-' ? -decimal_(s + 1) :
|
|
decimal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline auto decimal(const char* s) -> uintmax_t {
|
|
return (
|
|
decimal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline auto hex(const char* s) -> uintmax_t {
|
|
return (
|
|
*s == '0' && *(s + 1) == 'X' ? hex_(s + 2) :
|
|
*s == '0' && *(s + 1) == 'x' ? hex_(s + 2) :
|
|
*s == '$' ? hex_(s + 1) :
|
|
hex_(s)
|
|
);
|
|
}
|
|
|
|
inline auto real(const char* s) -> double {
|
|
return atof(s);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|