「吾輩は猫である」をAA化するプログラム
Révision | 95bbc795e192f6c97a6b35595b47c564c2cc948c |
---|---|
Taille | 759 octets |
l'heure | 2011-06-25 03:57:13 |
Auteur | berupon |
Message de Log | Glyph Bitmap Distribution Format (BDF) ファイルを読み込んでビットマップを取得するプログラムの作成。
|
#pragma once
inline
uint8_t hexCharToInt(char c)
{
if (c >= '0' && c <= '9') {
return c - '0';
}else if (c >= 'A' && c <= 'F') {
return c - 'A' + 10;
}else if (c >= 'a' && c <= 'f') {
return c - 'a' + 10;
}else {
assert(false);
}
return 0;
}
inline
bool isHex(char c)
{
return (0
|| (c >= '0' && c <= '9')
|| (c >= 'A' && c <= 'F')
|| (c >= 'a' && c <= 'f')
);
}
inline
uint8_t readHexByte(char c0, char c1)
{
if (isHex(c0) && isHex(c1)) {
return hexCharToInt(c0) * 16 + hexCharToInt(c1);
}else {
return 0;
}
}
inline
void readHexBytes(const char* str, uint8_t* data, size_t nBytes)
{
for (size_t i=0; i<nBytes; ++i) {
data[i] = readHexByte(str[0], str[1]);
str += 2;
}
}