mirror of
https://github.com/jakcron/nstool
synced 2024-11-14 17:56:39 +00:00
117 lines
No EOL
2.7 KiB
C++
117 lines
No EOL
2.7 KiB
C++
#include <iostream>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
#include <cstdio>
|
|
#include <fnd/SimpleTextOutput.h>
|
|
|
|
void fnd::SimpleTextOutput::hxdStyleDump(const byte_t* data, size_t len, size_t row_len, size_t byte_grouping_size)
|
|
{
|
|
// iterate over blocks
|
|
for (size_t i = 0; i < (len / row_len); i++)
|
|
{
|
|
printf("%08" PRIx64 " | ", (uint64_t)(i * row_len));
|
|
// for block i print each byte
|
|
for (size_t j = 0; j < row_len; j++)
|
|
{
|
|
printf("%02X", data[(i * row_len) + j]);
|
|
if (((j+1) % byte_grouping_size) == 0)
|
|
{
|
|
putchar(' ');
|
|
}
|
|
}
|
|
printf(" ");
|
|
for (size_t j = 0; j < row_len; j++)
|
|
{
|
|
printf("%c", iscntrl(data[(i * row_len) + j]) ? '.' : data[(i * row_len) + j]);
|
|
}
|
|
printf("\n");
|
|
}
|
|
if ((len % row_len) > 0)
|
|
{
|
|
size_t i = (len / row_len);
|
|
printf("%08" PRIx64 " | ", (uint64_t)(i * row_len));
|
|
// for block i print each byte
|
|
for (size_t j = 0; j < row_len; j++)
|
|
{
|
|
if (j < (len % row_len))
|
|
printf("%02X", data[(i * row_len) + j]);
|
|
else
|
|
printf(" ");
|
|
if (((j+1) % byte_grouping_size) == 0)
|
|
{
|
|
putchar(' ');
|
|
}
|
|
}
|
|
printf(" ");
|
|
for (size_t j = 0; j < row_len; j++)
|
|
{
|
|
if (j < (len % row_len))
|
|
printf("%c", iscntrl(data[(i * row_len) + j]) ? '.' : data[(i * row_len) + j]);
|
|
else
|
|
printf(" ");
|
|
}
|
|
printf("\n");
|
|
}
|
|
}
|
|
|
|
void fnd::SimpleTextOutput::hxdStyleDump(const byte_t* data, size_t len)
|
|
{
|
|
hxdStyleDump(data, len, kDefaultRowLen, kDefaultByteGroupingSize);
|
|
}
|
|
|
|
void fnd::SimpleTextOutput::hexDump(const byte_t* data, size_t len, size_t row_len, size_t indent_len)
|
|
{
|
|
for (size_t i = 0; i < len; i += row_len)
|
|
{
|
|
for (size_t j = 0; j < indent_len; j++)
|
|
std::cout << " ";
|
|
std::cout << arrayToString(data+i, _MIN(len-i, row_len), true, "") << std::endl;
|
|
}
|
|
}
|
|
|
|
void fnd::SimpleTextOutput::hexDump(const byte_t* data, size_t len)
|
|
{
|
|
std::cout << arrayToString(data, len, true, "") << std::endl;
|
|
}
|
|
|
|
std::string fnd::SimpleTextOutput::arrayToString(const byte_t* data, size_t len, bool upper_case, const std::string& separator)
|
|
{
|
|
std::stringstream ss;
|
|
|
|
if (upper_case)
|
|
ss << std::uppercase;
|
|
for (size_t i = 0; i < len; i++)
|
|
{
|
|
ss << std::hex << std::setw(2) << std::setfill('0') << (uint32_t)data[i];
|
|
if (i+1 < len)
|
|
ss << separator;
|
|
}
|
|
return ss.str();
|
|
}
|
|
|
|
inline byte_t charToByte(char chr)
|
|
{
|
|
if (chr >= 'a' && chr <= 'f')
|
|
return (chr - 'a') + 0xa;
|
|
else if (chr >= 'A' && chr <= 'F')
|
|
return (chr - 'A') + 0xa;
|
|
else if (chr >= '0' && chr <= '9')
|
|
return chr - '0';
|
|
return 0;
|
|
}
|
|
|
|
void fnd::SimpleTextOutput::stringToArray(const std::string& str, fnd::Vec<byte_t>& array)
|
|
{
|
|
size_t size = str.size();
|
|
if ((size % 2))
|
|
{
|
|
return;
|
|
}
|
|
|
|
array.alloc(size/2);
|
|
|
|
for (size_t i = 0; i < array.size(); i++)
|
|
{
|
|
array[i] = (charToByte(str[i * 2]) << 4) | charToByte(str[(i * 2) + 1]);
|
|
}
|
|
} |