mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 14:42:33 +01:00
byuu says: Main reason for this WIP was because of all the added lines to hiro for selective component disabling. May as well get all the diff-noise apart from code changes. It also merges something I've been talking to Cydrak about ... making nall::string::(integer,decimal) do built-in binary,octal,hex decoding instead of just failing on those. This will have fun little side effects all over the place, like being able to view a topic on my forum via "forum.byuu.org/topic/0b10010110", heh. There are two small changes to higan itself, though. First up, I fixed the resampler ratio when loading non-SNES games. Tested and I can play Game Boy games fine now. Second, I hooked up menu option hiding for reset and controller selection. Right now, this works like higan v094, but I'm thinking I might want to show the "Device -> Controller" even if that's all that's there. It kind of jives nicer with the input settings window to see the labels there, I think. And if we ever do add more stuff, it'll be nice that people already always expect that menu there. Remaining issues: * add slotted cart loader (SGB, BSX, ST) * add DIP switch selection window (NSS) * add timing configuration (video/audio sync)
91 lines
1.9 KiB
C++
91 lines
1.9 KiB
C++
#ifndef NALL_ATOI_HPP
|
|
#define NALL_ATOI_HPP
|
|
|
|
#include <nall/stdint.hpp>
|
|
|
|
namespace nall {
|
|
|
|
constexpr inline uintmax_t binary_(const char* s, uintmax_t sum = 0) {
|
|
return (
|
|
*s == '0' || *s == '1' ? binary_(s + 1, (sum << 1) | *s - '0') :
|
|
*s == '\'' ? binary_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline uintmax_t octal_(const char* s, uintmax_t sum = 0) {
|
|
return (
|
|
*s >= '0' && *s <= '7' ? octal_(s + 1, (sum << 3) | *s - '0') :
|
|
*s == '\'' ? octal_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline uintmax_t decimal_(const char* s, uintmax_t sum = 0) {
|
|
return (
|
|
*s >= '0' && *s <= '9' ? decimal_(s + 1, (sum * 10) + *s - '0') :
|
|
*s == '\'' ? decimal_(s + 1, sum) :
|
|
sum
|
|
);
|
|
}
|
|
|
|
constexpr inline uintmax_t hex_(const char* s, uintmax_t sum = 0) {
|
|
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 uintmax_t binary(const char* s) {
|
|
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 uintmax_t octal(const char* s) {
|
|
return (
|
|
*s == '0' && *(s + 1) == 'O' ? octal_(s + 2) :
|
|
*s == '0' && *(s + 1) == 'o' ? octal_(s + 2) :
|
|
octal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline intmax_t integer(const char* s) {
|
|
return (
|
|
*s == '+' ? +decimal_(s + 1) :
|
|
*s == '-' ? -decimal_(s + 1) :
|
|
decimal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline uintmax_t decimal(const char* s) {
|
|
return (
|
|
decimal_(s)
|
|
);
|
|
}
|
|
|
|
constexpr inline uintmax_t hex(const char* s) {
|
|
return (
|
|
*s == '0' && *(s + 1) == 'X' ? hex_(s + 2) :
|
|
*s == '0' && *(s + 1) == 'x' ? hex_(s + 2) :
|
|
*s == '$' ? hex_(s + 1) :
|
|
hex_(s)
|
|
);
|
|
}
|
|
|
|
inline double real(const char* s) {
|
|
return atof(s);
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|