mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
Download manager from sharepoint
This commit is contained in:
parent
79f946a4a5
commit
09ad937f1e
8 changed files with 988 additions and 131 deletions
|
|
@ -3,6 +3,7 @@
|
|||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <filesystem>
|
||||
#include <regex>
|
||||
|
||||
#include "json.hpp"
|
||||
|
||||
|
|
@ -293,6 +294,22 @@ std::string StoryProject::FileToConstant(const std::string &FileName, const std:
|
|||
return "$" + f + " DC8 \"" + f + extension + "\", 8\r\n";
|
||||
}
|
||||
|
||||
std::string StoryProject::Normalize(const std::string &input)
|
||||
{
|
||||
std::string valid_file = input;
|
||||
|
||||
std::replace(valid_file.begin(), valid_file.end(), '\\', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '/', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), ':', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '?', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '\"', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '<', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '>', '_');
|
||||
std::replace(valid_file.begin(), valid_file.end(), '|', '_');
|
||||
|
||||
return valid_file;
|
||||
}
|
||||
|
||||
void StoryProject::SetTitleImage(const std::string &titleImage)
|
||||
{
|
||||
m_titleImage = titleImage;
|
||||
|
|
|
|||
|
|
@ -90,6 +90,7 @@ public:
|
|||
static std::string RemoveFileExtension(const std::string &FileName);
|
||||
static void ReplaceCharacter(std::string &theString, const std::string &toFind, const std::string &toReplace);
|
||||
static std::string FileToConstant(const std::string &FileName, const std::string &extension);
|
||||
static std::string Normalize(const std::string &input);
|
||||
|
||||
void SetTitleImage(const std::string &titleImage);
|
||||
void SetTitleSound(const std::string &titleSound);
|
||||
|
|
|
|||
696
story-editor/src/base64.hpp
Normal file
696
story-editor/src/base64.hpp
Normal file
|
|
@ -0,0 +1,696 @@
|
|||
#ifndef BASE64_HPP_
|
||||
#define BASE64_HPP_
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cassert>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <stdexcept>
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
|
||||
#if defined(__cpp_lib_bit_cast)
|
||||
#include <bit> // For std::bit_cast.
|
||||
#endif
|
||||
|
||||
namespace base64 {
|
||||
|
||||
namespace detail {
|
||||
|
||||
#if defined(__cpp_lib_bit_cast)
|
||||
using std::bit_cast;
|
||||
#else
|
||||
template <class To, class From>
|
||||
std::enable_if_t<sizeof(To) == sizeof(From) &&
|
||||
std::is_trivially_copyable_v<From> &&
|
||||
std::is_trivially_copyable_v<To>,
|
||||
To>
|
||||
bit_cast(const From& src) noexcept {
|
||||
static_assert(std::is_trivially_constructible_v<To>,
|
||||
"This implementation additionally requires "
|
||||
"destination type to be trivially constructible");
|
||||
|
||||
To dst;
|
||||
std::memcpy(&dst, &src, sizeof(To));
|
||||
return dst;
|
||||
}
|
||||
#endif
|
||||
|
||||
inline constexpr char padding_char{'='};
|
||||
inline constexpr uint32_t bad_char{0x01FFFFFF};
|
||||
|
||||
#if !defined(__LITTLE_ENDIAN__) && !defined(__BIG_ENDIAN__)
|
||||
#if (defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__) || \
|
||||
(defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN) || \
|
||||
(defined(_BYTE_ORDER) && _BYTE_ORDER == _BIG_ENDIAN) || \
|
||||
(defined(BYTE_ORDER) && BYTE_ORDER == BIG_ENDIAN) || \
|
||||
(defined(__sun) && defined(__SVR4) && defined(_BIG_ENDIAN)) || \
|
||||
defined(__ARMEB__) || defined(__THUMBEB__) || defined(__AARCH64EB__) || \
|
||||
defined(_MIBSEB) || defined(__MIBSEB) || defined(__MIBSEB__) || \
|
||||
defined(_M_PPC)
|
||||
#define __BIG_ENDIAN__
|
||||
#elif (defined(__BYTE_ORDER__) && \
|
||||
__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__) || /* gcc */ \
|
||||
(defined(__BYTE_ORDER) && \
|
||||
__BYTE_ORDER == __LITTLE_ENDIAN) /* linux header */ \
|
||||
|| (defined(_BYTE_ORDER) && _BYTE_ORDER == _LITTLE_ENDIAN) || \
|
||||
(defined(BYTE_ORDER) && BYTE_ORDER == LITTLE_ENDIAN) /* mingw header */ || \
|
||||
(defined(__sun) && defined(__SVR4) && \
|
||||
defined(_LITTLE_ENDIAN)) || /* solaris */ \
|
||||
defined(__ARMEL__) || \
|
||||
defined(__THUMBEL__) || defined(__AARCH64EL__) || defined(_MIPSEL) || \
|
||||
defined(__MIPSEL) || defined(__MIPSEL__) || defined(_M_IX86) || \
|
||||
defined(_M_X64) || defined(_M_IA64) || /* msvc for intel processors */ \
|
||||
defined(_M_ARM) /* msvc code on arm executes in little endian mode */
|
||||
#define __LITTLE_ENDIAN__
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !defined(__LITTLE_ENDIAN__) & !defined(__BIG_ENDIAN__)
|
||||
#error "UNKNOWN Platform / endianness. Configure endianness explicitly."
|
||||
#endif
|
||||
|
||||
#if defined(__LITTLE_ENDIAN__)
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_0 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x000000f8, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x000000fc,
|
||||
0x000000d0, 0x000000d4, 0x000000d8, 0x000000dc, 0x000000e0, 0x000000e4,
|
||||
0x000000e8, 0x000000ec, 0x000000f0, 0x000000f4, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00000004, 0x00000008, 0x0000000c, 0x00000010, 0x00000014, 0x00000018,
|
||||
0x0000001c, 0x00000020, 0x00000024, 0x00000028, 0x0000002c, 0x00000030,
|
||||
0x00000034, 0x00000038, 0x0000003c, 0x00000040, 0x00000044, 0x00000048,
|
||||
0x0000004c, 0x00000050, 0x00000054, 0x00000058, 0x0000005c, 0x00000060,
|
||||
0x00000064, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00000068, 0x0000006c, 0x00000070, 0x00000074, 0x00000078,
|
||||
0x0000007c, 0x00000080, 0x00000084, 0x00000088, 0x0000008c, 0x00000090,
|
||||
0x00000094, 0x00000098, 0x0000009c, 0x000000a0, 0x000000a4, 0x000000a8,
|
||||
0x000000ac, 0x000000b0, 0x000000b4, 0x000000b8, 0x000000bc, 0x000000c0,
|
||||
0x000000c4, 0x000000c8, 0x000000cc, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_1 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0000e003, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000f003,
|
||||
0x00004003, 0x00005003, 0x00006003, 0x00007003, 0x00008003, 0x00009003,
|
||||
0x0000a003, 0x0000b003, 0x0000c003, 0x0000d003, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00001000, 0x00002000, 0x00003000, 0x00004000, 0x00005000, 0x00006000,
|
||||
0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, 0x0000c000,
|
||||
0x0000d000, 0x0000e000, 0x0000f000, 0x00000001, 0x00001001, 0x00002001,
|
||||
0x00003001, 0x00004001, 0x00005001, 0x00006001, 0x00007001, 0x00008001,
|
||||
0x00009001, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0000a001, 0x0000b001, 0x0000c001, 0x0000d001, 0x0000e001,
|
||||
0x0000f001, 0x00000002, 0x00001002, 0x00002002, 0x00003002, 0x00004002,
|
||||
0x00005002, 0x00006002, 0x00007002, 0x00008002, 0x00009002, 0x0000a002,
|
||||
0x0000b002, 0x0000c002, 0x0000d002, 0x0000e002, 0x0000f002, 0x00000003,
|
||||
0x00001003, 0x00002003, 0x00003003, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_2 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00800f00, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00c00f00,
|
||||
0x00000d00, 0x00400d00, 0x00800d00, 0x00c00d00, 0x00000e00, 0x00400e00,
|
||||
0x00800e00, 0x00c00e00, 0x00000f00, 0x00400f00, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00400000, 0x00800000, 0x00c00000, 0x00000100, 0x00400100, 0x00800100,
|
||||
0x00c00100, 0x00000200, 0x00400200, 0x00800200, 0x00c00200, 0x00000300,
|
||||
0x00400300, 0x00800300, 0x00c00300, 0x00000400, 0x00400400, 0x00800400,
|
||||
0x00c00400, 0x00000500, 0x00400500, 0x00800500, 0x00c00500, 0x00000600,
|
||||
0x00400600, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00800600, 0x00c00600, 0x00000700, 0x00400700, 0x00800700,
|
||||
0x00c00700, 0x00000800, 0x00400800, 0x00800800, 0x00c00800, 0x00000900,
|
||||
0x00400900, 0x00800900, 0x00c00900, 0x00000a00, 0x00400a00, 0x00800a00,
|
||||
0x00c00a00, 0x00000b00, 0x00400b00, 0x00800b00, 0x00c00b00, 0x00000c00,
|
||||
0x00400c00, 0x00800c00, 0x00c00c00, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_3 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x003e0000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x003f0000,
|
||||
0x00340000, 0x00350000, 0x00360000, 0x00370000, 0x00380000, 0x00390000,
|
||||
0x003a0000, 0x003b0000, 0x003c0000, 0x003d0000, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00010000, 0x00020000, 0x00030000, 0x00040000, 0x00050000, 0x00060000,
|
||||
0x00070000, 0x00080000, 0x00090000, 0x000a0000, 0x000b0000, 0x000c0000,
|
||||
0x000d0000, 0x000e0000, 0x000f0000, 0x00100000, 0x00110000, 0x00120000,
|
||||
0x00130000, 0x00140000, 0x00150000, 0x00160000, 0x00170000, 0x00180000,
|
||||
0x00190000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x001a0000, 0x001b0000, 0x001c0000, 0x001d0000, 0x001e0000,
|
||||
0x001f0000, 0x00200000, 0x00210000, 0x00220000, 0x00230000, 0x00240000,
|
||||
0x00250000, 0x00260000, 0x00270000, 0x00280000, 0x00290000, 0x002a0000,
|
||||
0x002b0000, 0x002c0000, 0x002d0000, 0x002e0000, 0x002f0000, 0x00300000,
|
||||
0x00310000, 0x00320000, 0x00330000, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
// TODO fix decoding tables to avoid the need for different indices in big
|
||||
// endian?
|
||||
inline constexpr size_t decidx0{0};
|
||||
inline constexpr size_t decidx1{1};
|
||||
inline constexpr size_t decidx2{2};
|
||||
|
||||
#elif defined(__BIG_ENDIAN__)
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_0 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00f80000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00fc0000,
|
||||
0x00d00000, 0x00d40000, 0x00d80000, 0x00dc0000, 0x00e00000, 0x00e40000,
|
||||
0x00e80000, 0x00ec0000, 0x00f00000, 0x00f40000, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00040000, 0x00080000, 0x000c0000, 0x00100000, 0x00140000, 0x00180000,
|
||||
0x001c0000, 0x00200000, 0x00240000, 0x00280000, 0x002c0000, 0x00300000,
|
||||
0x00340000, 0x00380000, 0x003c0000, 0x00400000, 0x00440000, 0x00480000,
|
||||
0x004c0000, 0x00500000, 0x00540000, 0x00580000, 0x005c0000, 0x00600000,
|
||||
0x00640000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00680000, 0x006c0000, 0x00700000, 0x00740000, 0x00780000,
|
||||
0x007c0000, 0x00800000, 0x00840000, 0x00880000, 0x008c0000, 0x00900000,
|
||||
0x00940000, 0x00980000, 0x009c0000, 0x00a00000, 0x00a40000, 0x00a80000,
|
||||
0x00ac0000, 0x00b00000, 0x00b40000, 0x00b80000, 0x00bc0000, 0x00c00000,
|
||||
0x00c40000, 0x00c80000, 0x00cc0000, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_1 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0003e000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0003f000,
|
||||
0x00034000, 0x00035000, 0x00036000, 0x00037000, 0x00038000, 0x00039000,
|
||||
0x0003a000, 0x0003b000, 0x0003c000, 0x0003d000, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00001000, 0x00002000, 0x00003000, 0x00004000, 0x00005000, 0x00006000,
|
||||
0x00007000, 0x00008000, 0x00009000, 0x0000a000, 0x0000b000, 0x0000c000,
|
||||
0x0000d000, 0x0000e000, 0x0000f000, 0x00010000, 0x00011000, 0x00012000,
|
||||
0x00013000, 0x00014000, 0x00015000, 0x00016000, 0x00017000, 0x00018000,
|
||||
0x00019000, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0001a000, 0x0001b000, 0x0001c000, 0x0001d000, 0x0001e000,
|
||||
0x0001f000, 0x00020000, 0x00021000, 0x00022000, 0x00023000, 0x00024000,
|
||||
0x00025000, 0x00026000, 0x00027000, 0x00028000, 0x00029000, 0x0002a000,
|
||||
0x0002b000, 0x0002c000, 0x0002d000, 0x0002e000, 0x0002f000, 0x00030000,
|
||||
0x00031000, 0x00032000, 0x00033000, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_2 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00000f80, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000fc0,
|
||||
0x00000d00, 0x00000d40, 0x00000d80, 0x00000dc0, 0x00000e00, 0x00000e40,
|
||||
0x00000e80, 0x00000ec0, 0x00000f00, 0x00000f40, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00000040, 0x00000080, 0x000000c0, 0x00000100, 0x00000140, 0x00000180,
|
||||
0x000001c0, 0x00000200, 0x00000240, 0x00000280, 0x000002c0, 0x00000300,
|
||||
0x00000340, 0x00000380, 0x000003c0, 0x00000400, 0x00000440, 0x00000480,
|
||||
0x000004c0, 0x00000500, 0x00000540, 0x00000580, 0x000005c0, 0x00000600,
|
||||
0x00000640, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x00000680, 0x000006c0, 0x00000700, 0x00000740, 0x00000780,
|
||||
0x000007c0, 0x00000800, 0x00000840, 0x00000880, 0x000008c0, 0x00000900,
|
||||
0x00000940, 0x00000980, 0x000009c0, 0x00000a00, 0x00000a40, 0x00000a80,
|
||||
0x00000ac0, 0x00000b00, 0x00000b40, 0x00000b80, 0x00000bc0, 0x00000c00,
|
||||
0x00000c40, 0x00000c80, 0x00000cc0, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
std::array<std::uint32_t, 256> constexpr decode_table_3 = {
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0000003e, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x0000003f,
|
||||
0x00000034, 0x00000035, 0x00000036, 0x00000037, 0x00000038, 0x00000039,
|
||||
0x0000003a, 0x0000003b, 0x0000003c, 0x0000003d, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x00000000,
|
||||
0x00000001, 0x00000002, 0x00000003, 0x00000004, 0x00000005, 0x00000006,
|
||||
0x00000007, 0x00000008, 0x00000009, 0x0000000a, 0x0000000b, 0x0000000c,
|
||||
0x0000000d, 0x0000000e, 0x0000000f, 0x00000010, 0x00000011, 0x00000012,
|
||||
0x00000013, 0x00000014, 0x00000015, 0x00000016, 0x00000017, 0x00000018,
|
||||
0x00000019, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x0000001a, 0x0000001b, 0x0000001c, 0x0000001d, 0x0000001e,
|
||||
0x0000001f, 0x00000020, 0x00000021, 0x00000022, 0x00000023, 0x00000024,
|
||||
0x00000025, 0x00000026, 0x00000027, 0x00000028, 0x00000029, 0x0000002a,
|
||||
0x0000002b, 0x0000002c, 0x0000002d, 0x0000002e, 0x0000002f, 0x00000030,
|
||||
0x00000031, 0x00000032, 0x00000033, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff,
|
||||
0x01ffffff, 0x01ffffff, 0x01ffffff, 0x01ffffff};
|
||||
|
||||
// TODO fix decoding tables to avoid the need for different indices in big
|
||||
// endian?
|
||||
inline constexpr size_t decidx0{1};
|
||||
inline constexpr size_t decidx1{2};
|
||||
inline constexpr size_t decidx2{3};
|
||||
|
||||
#endif
|
||||
|
||||
std::array<char, 256> constexpr encode_table_0 = {
|
||||
'A', 'A', 'A', 'A', 'B', 'B', 'B', 'B', 'C', 'C', 'C', 'C', 'D', 'D', 'D',
|
||||
'D', 'E', 'E', 'E', 'E', 'F', 'F', 'F', 'F', 'G', 'G', 'G', 'G', 'H', 'H',
|
||||
'H', 'H', 'I', 'I', 'I', 'I', 'J', 'J', 'J', 'J', 'K', 'K', 'K', 'K', 'L',
|
||||
'L', 'L', 'L', 'M', 'M', 'M', 'M', 'N', 'N', 'N', 'N', 'O', 'O', 'O', 'O',
|
||||
'P', 'P', 'P', 'P', 'Q', 'Q', 'Q', 'Q', 'R', 'R', 'R', 'R', 'S', 'S', 'S',
|
||||
'S', 'T', 'T', 'T', 'T', 'U', 'U', 'U', 'U', 'V', 'V', 'V', 'V', 'W', 'W',
|
||||
'W', 'W', 'X', 'X', 'X', 'X', 'Y', 'Y', 'Y', 'Y', 'Z', 'Z', 'Z', 'Z', 'a',
|
||||
'a', 'a', 'a', 'b', 'b', 'b', 'b', 'c', 'c', 'c', 'c', 'd', 'd', 'd', 'd',
|
||||
'e', 'e', 'e', 'e', 'f', 'f', 'f', 'f', 'g', 'g', 'g', 'g', 'h', 'h', 'h',
|
||||
'h', 'i', 'i', 'i', 'i', 'j', 'j', 'j', 'j', 'k', 'k', 'k', 'k', 'l', 'l',
|
||||
'l', 'l', 'm', 'm', 'm', 'm', 'n', 'n', 'n', 'n', 'o', 'o', 'o', 'o', 'p',
|
||||
'p', 'p', 'p', 'q', 'q', 'q', 'q', 'r', 'r', 'r', 'r', 's', 's', 's', 's',
|
||||
't', 't', 't', 't', 'u', 'u', 'u', 'u', 'v', 'v', 'v', 'v', 'w', 'w', 'w',
|
||||
'w', 'x', 'x', 'x', 'x', 'y', 'y', 'y', 'y', 'z', 'z', 'z', 'z', '0', '0',
|
||||
'0', '0', '1', '1', '1', '1', '2', '2', '2', '2', '3', '3', '3', '3', '4',
|
||||
'4', '4', '4', '5', '5', '5', '5', '6', '6', '6', '6', '7', '7', '7', '7',
|
||||
'8', '8', '8', '8', '9', '9', '9', '9', '+', '+', '+', '+', '/', '/', '/',
|
||||
'/'};
|
||||
|
||||
std::array<char, 256> constexpr encode_table_1 = {
|
||||
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
|
||||
'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd',
|
||||
'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's',
|
||||
't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7',
|
||||
'8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K',
|
||||
'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',
|
||||
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
|
||||
'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3',
|
||||
'4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
|
||||
'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V',
|
||||
'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k',
|
||||
'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',
|
||||
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/', 'A', 'B', 'C',
|
||||
'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
|
||||
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
|
||||
'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
|
||||
'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+',
|
||||
'/'};
|
||||
|
||||
} // namespace detail
|
||||
|
||||
template <class OutputBuffer, class InputIterator>
|
||||
inline OutputBuffer encode_into(InputIterator begin, InputIterator end) {
|
||||
typedef std::decay_t<decltype(*begin)> input_value_type;
|
||||
static_assert(std::is_same_v<input_value_type, char> ||
|
||||
std::is_same_v<input_value_type, signed char> ||
|
||||
std::is_same_v<input_value_type, unsigned char> ||
|
||||
std::is_same_v<input_value_type, std::byte>);
|
||||
typedef typename OutputBuffer::value_type output_value_type;
|
||||
static_assert(std::is_same_v<output_value_type, char> ||
|
||||
std::is_same_v<output_value_type, signed char> ||
|
||||
std::is_same_v<output_value_type, unsigned char> ||
|
||||
std::is_same_v<output_value_type, std::byte>);
|
||||
const size_t binarytextsize = end - begin;
|
||||
const size_t encodedsize = (binarytextsize / 3 + (binarytextsize % 3 > 0))
|
||||
<< 2;
|
||||
OutputBuffer encoded(encodedsize, detail::padding_char);
|
||||
|
||||
const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&*begin);
|
||||
char* currEncoding = reinterpret_cast<char*>(&encoded[0]);
|
||||
|
||||
for (size_t i = binarytextsize / 3; i; --i) {
|
||||
const uint8_t t1 = *bytes++;
|
||||
const uint8_t t2 = *bytes++;
|
||||
const uint8_t t3 = *bytes++;
|
||||
*currEncoding++ = detail::encode_table_0[t1];
|
||||
*currEncoding++ =
|
||||
detail::encode_table_1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)];
|
||||
*currEncoding++ =
|
||||
detail::encode_table_1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)];
|
||||
*currEncoding++ = detail::encode_table_1[t3];
|
||||
}
|
||||
|
||||
switch (binarytextsize % 3) {
|
||||
case 0: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
const uint8_t t1 = bytes[0];
|
||||
*currEncoding++ = detail::encode_table_0[t1];
|
||||
*currEncoding++ = detail::encode_table_1[(t1 & 0x03) << 4];
|
||||
// *currEncoding++ = detail::padding_char;
|
||||
// *currEncoding++ = detail::padding_char;
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
const uint8_t t1 = bytes[0];
|
||||
const uint8_t t2 = bytes[1];
|
||||
*currEncoding++ = detail::encode_table_0[t1];
|
||||
*currEncoding++ =
|
||||
detail::encode_table_1[((t1 & 0x03) << 4) | ((t2 >> 4) & 0x0F)];
|
||||
*currEncoding++ = detail::encode_table_1[(t2 & 0x0F) << 2];
|
||||
// *currEncoding++ = detail::padding_char;
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw std::runtime_error{"Invalid base64 encoded data"};
|
||||
}
|
||||
}
|
||||
|
||||
return encoded;
|
||||
}
|
||||
|
||||
template <class OutputBuffer>
|
||||
inline OutputBuffer encode_into(std::string_view data) {
|
||||
return encode_into<OutputBuffer>(std::begin(data), std::end(data));
|
||||
}
|
||||
|
||||
inline std::string to_base64(std::string_view data) {
|
||||
return encode_into<std::string>(std::begin(data), std::end(data));
|
||||
}
|
||||
|
||||
template <class OutputBuffer>
|
||||
inline OutputBuffer decode_into(std::string_view base64Text) {
|
||||
typedef typename OutputBuffer::value_type output_value_type;
|
||||
static_assert(std::is_same_v<output_value_type, char> ||
|
||||
std::is_same_v<output_value_type, signed char> ||
|
||||
std::is_same_v<output_value_type, unsigned char> ||
|
||||
std::is_same_v<output_value_type, std::byte>);
|
||||
if (base64Text.empty()) {
|
||||
return OutputBuffer();
|
||||
}
|
||||
|
||||
if ((base64Text.size() & 3) != 0) {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Size not divisible by 4"};
|
||||
}
|
||||
|
||||
const size_t numPadding =
|
||||
std::count(base64Text.rbegin(), base64Text.rbegin() + 4, '=');
|
||||
if (numPadding > 2) {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Found more than 2 padding signs"};
|
||||
}
|
||||
|
||||
const size_t decodedsize = (base64Text.size() * 3 >> 2) - numPadding;
|
||||
OutputBuffer decoded(decodedsize, '.');
|
||||
|
||||
const uint8_t* bytes = reinterpret_cast<const uint8_t*>(&base64Text[0]);
|
||||
char* currDecoding = reinterpret_cast<char*>(&decoded[0]);
|
||||
|
||||
for (size_t i = (base64Text.size() >> 2) - (numPadding != 0); i; --i) {
|
||||
const uint8_t t1 = *bytes++;
|
||||
const uint8_t t2 = *bytes++;
|
||||
const uint8_t t3 = *bytes++;
|
||||
const uint8_t t4 = *bytes++;
|
||||
|
||||
const uint32_t d1 = detail::decode_table_0[t1];
|
||||
const uint32_t d2 = detail::decode_table_1[t2];
|
||||
const uint32_t d3 = detail::decode_table_2[t3];
|
||||
const uint32_t d4 = detail::decode_table_3[t4];
|
||||
|
||||
const uint32_t temp = d1 | d2 | d3 | d4;
|
||||
|
||||
if (temp >= detail::bad_char) {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Invalid character"};
|
||||
}
|
||||
|
||||
// Use bit_cast instead of union and type punning to avoid
|
||||
// undefined behaviour risk:
|
||||
// https://en.wikipedia.org/wiki/Type_punning#Use_of_union
|
||||
const std::array<char, 4> tempBytes =
|
||||
detail::bit_cast<std::array<char, 4>, uint32_t>(temp);
|
||||
|
||||
*currDecoding++ = tempBytes[detail::decidx0];
|
||||
*currDecoding++ = tempBytes[detail::decidx1];
|
||||
*currDecoding++ = tempBytes[detail::decidx2];
|
||||
}
|
||||
|
||||
switch (numPadding) {
|
||||
case 0: {
|
||||
break;
|
||||
}
|
||||
case 1: {
|
||||
const uint8_t t1 = *bytes++;
|
||||
const uint8_t t2 = *bytes++;
|
||||
const uint8_t t3 = *bytes++;
|
||||
|
||||
const uint32_t d1 = detail::decode_table_0[t1];
|
||||
const uint32_t d2 = detail::decode_table_1[t2];
|
||||
const uint32_t d3 = detail::decode_table_2[t3];
|
||||
|
||||
const uint32_t temp = d1 | d2 | d3;
|
||||
|
||||
if (temp >= detail::bad_char) {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Invalid character"};
|
||||
}
|
||||
|
||||
// Use bit_cast instead of union and type punning to avoid
|
||||
// undefined behaviour risk:
|
||||
// https://en.wikipedia.org/wiki/Type_punning#Use_of_union
|
||||
const std::array<char, 4> tempBytes =
|
||||
detail::bit_cast<std::array<char, 4>, uint32_t>(temp);
|
||||
*currDecoding++ = tempBytes[detail::decidx0];
|
||||
*currDecoding++ = tempBytes[detail::decidx1];
|
||||
break;
|
||||
}
|
||||
case 2: {
|
||||
const uint8_t t1 = *bytes++;
|
||||
const uint8_t t2 = *bytes++;
|
||||
|
||||
const uint32_t d1 = detail::decode_table_0[t1];
|
||||
const uint32_t d2 = detail::decode_table_1[t2];
|
||||
|
||||
const uint32_t temp = d1 | d2;
|
||||
|
||||
if (temp >= detail::bad_char) {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Invalid character"};
|
||||
}
|
||||
|
||||
const std::array<char, 4> tempBytes =
|
||||
detail::bit_cast<std::array<char, 4>, uint32_t>(temp);
|
||||
*currDecoding++ = tempBytes[detail::decidx0];
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
throw std::runtime_error{
|
||||
"Invalid base64 encoded data - Invalid padding number"};
|
||||
}
|
||||
}
|
||||
|
||||
return decoded;
|
||||
}
|
||||
|
||||
template <class OutputBuffer, class InputIterator>
|
||||
inline OutputBuffer decode_into(InputIterator begin, InputIterator end) {
|
||||
typedef std::decay_t<decltype(*begin)> input_value_type;
|
||||
static_assert(std::is_same_v<input_value_type, char> ||
|
||||
std::is_same_v<input_value_type, signed char> ||
|
||||
std::is_same_v<input_value_type, unsigned char> ||
|
||||
std::is_same_v<input_value_type, std::byte>);
|
||||
std::string_view data(reinterpret_cast<const char*>(&*begin), end - begin);
|
||||
return decode_into<OutputBuffer>(data);
|
||||
}
|
||||
|
||||
inline std::string from_base64(std::string_view data) {
|
||||
return decode_into<std::string>(data);
|
||||
}
|
||||
|
||||
} // namespace base64
|
||||
|
||||
#endif // BASE64_HPP_
|
||||
|
|
@ -88,70 +88,7 @@ bool LoadTextureFromFile(const char* filename, Gui::Image &img)
|
|||
}
|
||||
|
||||
SDL_QueryTexture(static_cast<SDL_Texture*>(img.texture), NULL, NULL, &img.w, &img.h);
|
||||
|
||||
/*
|
||||
|
||||
std::string ext = GetFileExtension(filename);
|
||||
|
||||
SDL_Surface* surface = nullptr;
|
||||
|
||||
if (ext == "qoi")
|
||||
{
|
||||
qoi_desc desc;
|
||||
void *pixels = qoi_read(filename, &desc, 0);
|
||||
unsigned int channels = desc.channels;
|
||||
img.w = desc.width;
|
||||
img.h = desc.height;
|
||||
|
||||
// SDL3
|
||||
surface = SDL_CreateSurfaceFrom((void*)pixels, img.w, img.h, 4 * img.w, SDL_PIXELFORMAT_RGBA8888);
|
||||
|
||||
// SDL2
|
||||
// surface = SDL_CreateRGBSurfaceFrom((void*)pixels, img.w, img.h, channels * 8, channels * img.w,
|
||||
// 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000);
|
||||
|
||||
if (pixels != NULL)
|
||||
{
|
||||
free(pixels);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
unsigned char* data = nullptr;
|
||||
int channels;
|
||||
data = stbi_load(filename, &img.w, &img.h, &channels, 0);
|
||||
|
||||
if (data == nullptr) {
|
||||
fprintf(stderr, "Failed to load image: %s\n", stbi_failure_reason());
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
//SDL3
|
||||
surface = SDL_CreateSurfaceFrom((void*)data, img.w, img.h, 4 * img.w, SDL_PIXELFORMAT_RGBA32);
|
||||
|
||||
// SDL2
|
||||
// surface = SDL_CreateRGBSurfaceFrom((void*)data, img.w, img.h, channels * 8, channels * img.w,
|
||||
// 0x000000ff, 0x0000ff00, 0x00ff0000, 0xff000000);
|
||||
stbi_image_free(data);
|
||||
}
|
||||
|
||||
|
||||
if (surface == nullptr) {
|
||||
fprintf(stderr, "Failed to create SDL surface: %s\n", SDL_GetError());
|
||||
return false;
|
||||
}
|
||||
|
||||
img.texture = SDL_CreateTextureFromSurface(renderer, surface);
|
||||
|
||||
if (img.texture == nullptr) {
|
||||
fprintf(stderr, "Failed to create SDL texture: %s\n", SDL_GetError());
|
||||
}
|
||||
|
||||
SDL_DestroySurface(surface); // SDL3
|
||||
// SDL_FreeSurface(surface); // SDL2
|
||||
*/
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
#include "IconsMaterialDesignIcons.h"
|
||||
#include "i_story_manager.h"
|
||||
#include <functional>
|
||||
#include "base64.hpp"
|
||||
|
||||
typedef int (*xfer_callback_t)(void *clientp, curl_off_t dltotal, curl_off_t dlnow,
|
||||
curl_off_t ultotal, curl_off_t ulnow);
|
||||
|
|
@ -13,7 +14,7 @@ typedef int (*xfer_callback_t)(void *clientp, curl_off_t dltotal, curl_off_t dln
|
|||
void download_file(CURL *curl,
|
||||
const std::string &url,
|
||||
const std::string &output_file,
|
||||
std::function<void(bool)> finished_callback)
|
||||
std::function<void(bool, const std::string &filename)> finished_callback)
|
||||
{
|
||||
FILE *fp;
|
||||
CURLcode res;
|
||||
|
|
@ -32,14 +33,14 @@ void download_file(CURL *curl,
|
|||
fclose(fp);
|
||||
if(res == CURLE_OK)
|
||||
{
|
||||
std::cout<< std::endl<< std::endl<<" The file was download with succes"<< std::endl;
|
||||
std::cout<< "\r\n The file was download with success\r\n"<< std::endl;
|
||||
}
|
||||
else
|
||||
{
|
||||
std::cout<< std::endl << std::endl<<" Error"<< std::endl;
|
||||
std::cout<< "\r\n Error \r\n"<< std::endl;
|
||||
}
|
||||
|
||||
finished_callback(res == CURLE_OK);
|
||||
finished_callback(res == CURLE_OK, output_file);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -51,7 +52,9 @@ LibraryWindow::LibraryWindow(IStoryManager &project, LibraryManager &library)
|
|||
{
|
||||
m_downloadThread = std::thread( std::bind(&LibraryWindow::DownloadThread, this) );
|
||||
|
||||
m_store_url[0] = 0;
|
||||
m_storeUrl[0] = 0;
|
||||
|
||||
// std::strcpy(m_storeUrl, "https://gist.githubusercontent.com/DantSu/8920929530b58f2acbfcf1ed0e7746f9/raw/stories-contrib.json");
|
||||
}
|
||||
|
||||
LibraryWindow::~LibraryWindow()
|
||||
|
|
@ -63,7 +66,6 @@ LibraryWindow::~LibraryWindow()
|
|||
m_downloadMutex.lock();
|
||||
m_cancel = true;
|
||||
m_downloadMutex.unlock();
|
||||
|
||||
}
|
||||
|
||||
// Quit download thread
|
||||
|
|
@ -76,6 +78,50 @@ LibraryWindow::~LibraryWindow()
|
|||
curl_global_cleanup();
|
||||
}
|
||||
|
||||
void LibraryWindow::Initialize()
|
||||
{
|
||||
// Try to download the store index file
|
||||
m_curl = curl_easy_init();
|
||||
|
||||
if (m_curl)
|
||||
{
|
||||
curl_easy_setopt(m_curl, CURLOPT_WRITEFUNCTION, NULL);
|
||||
curl_easy_setopt(m_curl, CURLOPT_NOPROGRESS, 0);
|
||||
|
||||
//progress_bar : the fonction for the progress bar
|
||||
Callback<int(void *, curl_off_t, curl_off_t, curl_off_t, curl_off_t)>::func = std::bind(
|
||||
&LibraryWindow::TransferCallback,
|
||||
this,
|
||||
std::placeholders::_1,
|
||||
std::placeholders::_2,
|
||||
std::placeholders::_3,
|
||||
std::placeholders::_4,
|
||||
std::placeholders::_5);
|
||||
curl_easy_setopt(m_curl, CURLOPT_XFERINFOFUNCTION, static_cast<xfer_callback_t>(Callback<int(void *, curl_off_t, curl_off_t, curl_off_t, curl_off_t)>::callback));
|
||||
}
|
||||
|
||||
|
||||
std::strcpy(&m_storeUrl[0], m_libraryManager.GetStoreUrl().c_str());
|
||||
m_storeIndexFilename = ToLocalStoreFile(m_storeUrl);
|
||||
|
||||
if (std::filesystem::is_regular_file(m_storeIndexFilename))
|
||||
{
|
||||
// seems legit
|
||||
ParseStoreDataCallback(true, m_storeIndexFilename);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Not exists, download it
|
||||
m_downloadQueue.push({
|
||||
"dl",
|
||||
m_storeUrl,
|
||||
m_storeIndexFilename,
|
||||
std::bind(&LibraryWindow::ParseStoreDataCallback, this, std::placeholders::_1, std::placeholders::_2)
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void LibraryWindow::DownloadThread()
|
||||
{
|
||||
|
|
@ -100,23 +146,167 @@ void LibraryWindow::DownloadThread()
|
|||
int LibraryWindow::TransferCallback(void *clientp, curl_off_t dltotal, curl_off_t dlnow,
|
||||
curl_off_t ultotal, curl_off_t ulnow)
|
||||
{
|
||||
std::cout << "DL total: " << dltotal << ", now: " << dlnow << std::endl;
|
||||
// std::cout << "DL total: " << dltotal << ", now: " << dlnow << std::endl;
|
||||
m_downloadMutex.lock();
|
||||
bool cancel = m_cancel;
|
||||
m_downloadMutex.unlock();
|
||||
|
||||
static TransferProgress progressItem;
|
||||
static TransferProgress progressItemPrev;
|
||||
|
||||
if (cancel)
|
||||
{
|
||||
return 1; // Annuler la requête curl
|
||||
}
|
||||
|
||||
m_transferProgress.push(TransferProgress(dltotal, dlnow));
|
||||
if ((dlnow > 0) && (dltotal > 0))
|
||||
{
|
||||
progressItem.Set(dltotal, dlnow);
|
||||
if ((progressItem.Precent() - progressItemPrev.Precent()) > 0.01)
|
||||
{
|
||||
progressItemPrev = progressItem;
|
||||
m_transferProgress.push(TransferProgress(progressItem));
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
progressItem.Reset();
|
||||
progressItemPrev.Reset();
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
void LibraryWindow::ParseStoreData(bool success)
|
||||
bool LibraryWindow::CheckIfSharepoint(const std::string &url, std::string &decoded_url)
|
||||
{
|
||||
bool success = false;
|
||||
std::size_t pos = url.find("/shares/u!");
|
||||
|
||||
if (pos != std::string::npos)
|
||||
{
|
||||
std::size_t start = pos + 10; // Début de l'URL
|
||||
std::size_t end = url.find("/", start); // Fin de l'URL
|
||||
|
||||
if (end != std::string::npos)
|
||||
{
|
||||
std::string base64 = url.substr(start, end - start);
|
||||
|
||||
// Calculer le reste de la division par
|
||||
int remainder = url.length() % 4;
|
||||
int signsToAdd = 0;
|
||||
// Déterminer le nombre de signes '=' à ajouter en fonction du reste
|
||||
if (remainder == 1) {
|
||||
signsToAdd = 2; // Ajouter 2 signes '=' pour obtenir un multiple de 4
|
||||
base64 += "==";
|
||||
} else if (remainder == 2) {
|
||||
signsToAdd = 1; // Ajouter 1 signe '=' pour compléter la séquence
|
||||
base64 += "=";
|
||||
} else {
|
||||
signsToAdd = 0; // Aucun signe '=' à ajouter
|
||||
}
|
||||
|
||||
std::replace( base64.begin(), base64.end(), '_', '/');
|
||||
std::replace( base64.begin(), base64.end(), '-', '+');
|
||||
|
||||
try
|
||||
{
|
||||
decoded_url = base64::from_base64(base64);
|
||||
std::cout << "Base64: " << decoded_url << std::endl;
|
||||
success = true;
|
||||
}
|
||||
catch(std::exception &e)
|
||||
{
|
||||
std::cout << e.what() << std::endl;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
|
||||
void LibraryWindow::SharePointJsonDownloadedCallback(bool success, const std::string &filename)
|
||||
{
|
||||
try {
|
||||
std::ifstream f(filename);
|
||||
nlohmann::json j = nlohmann::json::parse(f);
|
||||
|
||||
|
||||
std::string archive = j["@content.downloadUrl"].get<std::string>();
|
||||
std::string name = j["name"].get<std::string>();
|
||||
|
||||
|
||||
m_downloadQueue.push({
|
||||
"dl",
|
||||
archive,
|
||||
ToLocalStoreFile(StoryProject::Normalize(name)),
|
||||
std::bind(&LibraryWindow::StoryFileDownloadedCallback, this, std::placeholders::_1, std::placeholders::_2)
|
||||
});
|
||||
|
||||
}
|
||||
catch(std::exception &e)
|
||||
{
|
||||
std::cout << e.what() << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
void LibraryWindow::StoryFileDownloadedCallback(bool success, const std::string &filename)
|
||||
{
|
||||
std::cout << "Finished to download: " << filename << std::endl;
|
||||
|
||||
|
||||
std::string ext = StoryProject::GetFileExtension(filename);
|
||||
|
||||
if (ext == "zip")
|
||||
{
|
||||
std::cout << "Extracting zip..." << std::endl;
|
||||
}
|
||||
else if (ext == "")
|
||||
{
|
||||
std::ifstream t(filename);
|
||||
std::string htmlCode((std::istreambuf_iterator<char>(t)),
|
||||
std::istreambuf_iterator<char>());
|
||||
|
||||
t.close();
|
||||
|
||||
// Trouver la position de "url="
|
||||
std::size_t pos = htmlCode.find("url=");
|
||||
|
||||
if (pos != std::string::npos) {
|
||||
// Trouver la position du premier guillemet après "url="
|
||||
std::size_t start = pos + 4; // Début de l'URL
|
||||
std::size_t end = htmlCode.find("/root/", start); // Fin de l'URL
|
||||
|
||||
if (end != std::string::npos)
|
||||
{
|
||||
// Extraire l'URL
|
||||
std::string url = htmlCode.substr(start, end - start);
|
||||
std::cout << "URL extraite : " << url << std::endl;
|
||||
|
||||
m_downloadQueue.push({
|
||||
"dl",
|
||||
url + "/driveItem",
|
||||
ToLocalStoreFile(filename + ".json"),
|
||||
std::bind(&LibraryWindow::SharePointJsonDownloadedCallback, this, std::placeholders::_1, std::placeholders::_2)
|
||||
});
|
||||
|
||||
} else {
|
||||
std::cout << "Le guillemet de fin n'a pas été trouvé." << std::endl;
|
||||
}
|
||||
} else {
|
||||
std::cout << "La chaîne 'url=' n'a pas été trouvée." << std::endl;
|
||||
}
|
||||
}
|
||||
else {
|
||||
std::cout << "Unsupported extension: " << ext << std::endl;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void LibraryWindow::ParseStoreDataCallback(bool success, const std::string &filename)
|
||||
{
|
||||
try {
|
||||
std::ifstream f(m_storeIndexFilename);
|
||||
|
|
@ -128,6 +318,8 @@ void LibraryWindow::ParseStoreData(bool success)
|
|||
StoryInf s;
|
||||
|
||||
s.title = obj["title"].get<std::string>();
|
||||
s.description = obj["description"].get<std::string>();
|
||||
s.download = obj["download"].get<std::string>();
|
||||
s.age = obj["age"].get<int>();
|
||||
|
||||
m_store.push_back(s);
|
||||
|
|
@ -139,30 +331,6 @@ void LibraryWindow::ParseStoreData(bool success)
|
|||
}
|
||||
}
|
||||
|
||||
void LibraryWindow::Initialize()
|
||||
{
|
||||
// Try to download the store index file
|
||||
m_curl = curl_easy_init();
|
||||
|
||||
if (m_curl)
|
||||
{
|
||||
curl_easy_setopt(m_curl, CURLOPT_WRITEFUNCTION, NULL);
|
||||
curl_easy_setopt(m_curl, CURLOPT_NOPROGRESS, 0);
|
||||
|
||||
//progress_bar : the fonction for the progress bar
|
||||
Callback<int(void *, curl_off_t, curl_off_t, curl_off_t, curl_off_t)>::func = std::bind(
|
||||
&LibraryWindow::TransferCallback,
|
||||
this,
|
||||
std::placeholders::_1,
|
||||
std::placeholders::_2,
|
||||
std::placeholders::_3,
|
||||
std::placeholders::_4,
|
||||
std::placeholders::_5);
|
||||
curl_easy_setopt(m_curl, CURLOPT_XFERINFOFUNCTION, static_cast<xfer_callback_t>(Callback<int(void *, curl_off_t, curl_off_t, curl_off_t, curl_off_t)>::callback));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static bool canValidateDialog = false;
|
||||
inline void InfosPane(const char *vFilter, IGFDUserDatas vUserDatas, bool *vCantContinue) // if vCantContinue is false, the user cant validate the dialog
|
||||
{
|
||||
|
|
@ -175,7 +343,7 @@ inline void InfosPane(const char *vFilter, IGFDUserDatas vUserDatas, bool *vCant
|
|||
|
||||
std::string LibraryWindow::ToLocalStoreFile(const std::string &url)
|
||||
{
|
||||
auto filename = StoryProject::GetFileName(m_store_url);
|
||||
auto filename = StoryProject::GetFileName(url);
|
||||
|
||||
filename = m_libraryManager.LibraryPath() + "/store/" + filename;
|
||||
std::cout << "Store file: " << filename << std::endl;
|
||||
|
|
@ -184,17 +352,9 @@ std::string LibraryWindow::ToLocalStoreFile(const std::string &url)
|
|||
|
||||
void LibraryWindow::Draw()
|
||||
{
|
||||
// if (!IsVisible())
|
||||
// {
|
||||
// return;
|
||||
// }
|
||||
|
||||
|
||||
WindowBase::BeginDraw();
|
||||
ImGui::SetWindowSize(ImVec2(626, 744), ImGuiCond_FirstUseEver);
|
||||
|
||||
|
||||
|
||||
if (ImGui::Button( ICON_MDI_FOLDER " Select directory"))
|
||||
{
|
||||
ImGuiFileDialog::Instance()->OpenDialog("ChooseLibraryDirDialog", "Choose a library directory", nullptr, ".", 1, nullptr, ImGuiFileDialogFlags_Modal);
|
||||
|
|
@ -244,9 +404,7 @@ void LibraryWindow::Draw()
|
|||
if (ImGui::BeginTable("library_table", 2, tableFlags))
|
||||
{
|
||||
ImGui::TableSetupColumn("Name", ImGuiTableColumnFlags_WidthFixed);
|
||||
|
||||
ImGui::TableSetupColumn("Actions", ImGuiTableColumnFlags_WidthFixed);
|
||||
|
||||
ImGui::TableHeadersRow();
|
||||
|
||||
for (auto &p : m_libraryManager)
|
||||
|
|
@ -255,23 +413,19 @@ void LibraryWindow::Draw()
|
|||
ImGui::Text("%s", p->GetName().c_str());
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
|
||||
if (ImGui::SmallButton("Load"))
|
||||
{
|
||||
m_storyManager.OpenProject(p->GetUuid());
|
||||
}
|
||||
|
||||
ImGui::SameLine();
|
||||
|
||||
if (ImGui::SmallButton("Remove"))
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
|
|
@ -280,32 +434,31 @@ void LibraryWindow::Draw()
|
|||
// ============================================================================
|
||||
if (ImGui::BeginTabItem("Remote Store##StoreTabBar", nullptr, ImGuiTabItemFlags_None))
|
||||
{
|
||||
ImGui::InputTextWithHint("##store_url", "Store URL", m_store_url, IM_ARRAYSIZE(m_store_url));
|
||||
ImGui::InputTextWithHint("##store_url", "Store URL", m_storeUrl, IM_ARRAYSIZE(m_storeUrl));
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button("Load"))
|
||||
{
|
||||
m_storeIndexFilename = ToLocalStoreFile(m_store_url);
|
||||
m_storeIndexFilename = ToLocalStoreFile(m_storeUrl);
|
||||
m_downloadQueue.push({
|
||||
"dl",
|
||||
m_store_url,
|
||||
m_storeUrl,
|
||||
m_storeIndexFilename,
|
||||
std::bind(&LibraryWindow::ParseStoreData, this, std::placeholders::_1)
|
||||
std::bind(&LibraryWindow::ParseStoreDataCallback, this, std::placeholders::_1, std::placeholders::_2)
|
||||
});
|
||||
}
|
||||
|
||||
static TransferProgress progressItem;
|
||||
static std::string currentDownload;
|
||||
static float progress = 0.0f;
|
||||
|
||||
if (m_transferProgress.try_pop(progressItem))
|
||||
{
|
||||
if (progressItem.total > 0)
|
||||
progress = progressItem.Precent();
|
||||
|
||||
if (progress >= .98)
|
||||
{
|
||||
// currentDownload = ""
|
||||
progress += (progressItem.current / progressItem.total);
|
||||
}
|
||||
else
|
||||
{
|
||||
progress = 0.0;
|
||||
m_downloadBusy = false;
|
||||
progress = 1.0;
|
||||
}
|
||||
}
|
||||
// Typically we would use ImVec2(-1.0f,0.0f) or ImVec2(-FLT_MIN,0.0f) to use all available width,
|
||||
|
|
@ -315,27 +468,44 @@ void LibraryWindow::Draw()
|
|||
|
||||
// ImGui::Text("Current download: ");
|
||||
|
||||
if (ImGui::BeginTable("store_table", 3, tableFlags))
|
||||
if (ImGui::BeginTable("store_table", 4, tableFlags))
|
||||
{
|
||||
ImGui::TableSetupColumn("Title", ImGuiTableColumnFlags_WidthFixed);
|
||||
ImGui::TableSetupColumn("Description", ImGuiTableColumnFlags_WidthFixed);
|
||||
ImGui::TableSetupColumn("Age", ImGuiTableColumnFlags_WidthFixed);
|
||||
ImGui::TableSetupColumn("Download", ImGuiTableColumnFlags_WidthFixed);
|
||||
|
||||
ImGui::TableHeadersRow();
|
||||
|
||||
int id = 1;
|
||||
for (const auto &obj : m_store)
|
||||
{
|
||||
ImGui::TableNextColumn();
|
||||
ImGui::Text("%s", obj.title.c_str());
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
ImGui::Text("%s", obj.description.c_str());
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
ImGui::Text("%d", obj.age);
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
ImGui::PushID(id++);
|
||||
if (ImGui::SmallButton("Download"))
|
||||
{
|
||||
if (!m_downloadBusy)
|
||||
{
|
||||
m_downloadBusy = true;
|
||||
|
||||
m_downloadQueue.push({
|
||||
"dl",
|
||||
obj.download,
|
||||
ToLocalStoreFile(StoryProject::Normalize(obj.title)),
|
||||
std::bind(&LibraryWindow::StoryFileDownloadedCallback, this, std::placeholders::_1, std::placeholders::_2)
|
||||
});
|
||||
}
|
||||
}
|
||||
ImGui::PopID();
|
||||
}
|
||||
|
||||
ImGui::EndTable();
|
||||
|
|
|
|||
|
|
@ -11,13 +11,15 @@
|
|||
struct StoryInf {
|
||||
int age;
|
||||
std::string title;
|
||||
std::string description;
|
||||
std::string download;
|
||||
};
|
||||
|
||||
struct DownloadCommand {
|
||||
std::string order;
|
||||
std::string url;
|
||||
std::string filename;
|
||||
std::function<void(bool)> finished_callback;
|
||||
std::function<void(bool, const std::string &filename)> finished_callback;
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -30,10 +32,39 @@ struct TransferProgress {
|
|||
current = 0;
|
||||
}
|
||||
|
||||
void Reset() {
|
||||
total = 0;
|
||||
current = 0;
|
||||
}
|
||||
|
||||
TransferProgress(const TransferProgress &other) {
|
||||
*this = other;
|
||||
}
|
||||
|
||||
~TransferProgress() {
|
||||
}
|
||||
|
||||
TransferProgress& operator=(const TransferProgress &other)
|
||||
{
|
||||
this->current = other.current;
|
||||
this->total = other.total;
|
||||
return *this;
|
||||
}
|
||||
|
||||
TransferProgress(int t, int c) {
|
||||
total = t;
|
||||
current = c;
|
||||
}
|
||||
|
||||
void Set(int t, int c)
|
||||
{
|
||||
total = t;
|
||||
current = c;
|
||||
}
|
||||
|
||||
float Precent() const {
|
||||
return total == 0 ? 0.0 : static_cast<float>(current) / static_cast<float>(total);
|
||||
}
|
||||
};
|
||||
|
||||
class LibraryWindow : public WindowBase
|
||||
|
|
@ -50,21 +81,28 @@ private:
|
|||
LibraryManager &m_libraryManager;
|
||||
|
||||
CURL *m_curl;
|
||||
char m_store_url[1024];
|
||||
char m_storeUrl[1024];
|
||||
std::thread m_downloadThread;
|
||||
ThreadSafeQueue<DownloadCommand> m_downloadQueue;
|
||||
ThreadSafeQueue<TransferProgress> m_transferProgress;
|
||||
std::mutex m_downloadMutex;
|
||||
bool m_cancel{false};
|
||||
|
||||
std::mutex m_downloadBusyMutex;
|
||||
bool m_downloadBusy{false};
|
||||
|
||||
std::vector<StoryInf> m_store;
|
||||
std::string m_storeIndexFilename;
|
||||
|
||||
std::string m_storeRawJson;
|
||||
void ParseStoreData(bool success);
|
||||
void ParseStoreDataCallback(bool success, const std::string &filename);
|
||||
void StoryFileDownloadedCallback(bool success, const std::string &filename);
|
||||
void DownloadThread();
|
||||
int TransferCallback(void *clientp, curl_off_t dltotal, curl_off_t dlnow, curl_off_t ultotal, curl_off_t ulnow);
|
||||
|
||||
std::string ToLocalStoreFile(const std::string &url);
|
||||
|
||||
bool CheckIfSharepoint(const std::string &url, std::string &decoded_url);
|
||||
void SharePointJsonDownloadedCallback(bool success, const std::string &filename);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -949,6 +949,7 @@ void MainWindow::SaveParams()
|
|||
|
||||
j["recents"] = recents;
|
||||
j["library_path"] = m_libraryManager.LibraryPath();
|
||||
j["store_url"] = m_libraryManager.GetStoreUrl();
|
||||
|
||||
std::string loc = pf::getConfigHome() + "/ost_settings.json";
|
||||
std::ofstream o(loc);
|
||||
|
|
@ -982,7 +983,7 @@ void MainWindow::LoadParams()
|
|||
m_libraryManager.Initialize(library_path);
|
||||
}
|
||||
|
||||
nlohmann::json store_url = j["store_url"];
|
||||
nlohmann::json store_url = j.value("store_url", "https://gist.githubusercontent.com/DantSu/8920929530b58f2acbfcf1ed0e7746f9/raw/stories-contrib.json");
|
||||
m_libraryManager.SetStoreUrl(store_url);
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,8 +10,6 @@ MediaNode::MediaNode(const std::string &title, IStoryManager &proj)
|
|||
: BaseNode(title, proj)
|
||||
, m_story(proj)
|
||||
{
|
||||
// Gui::LoadRawImage("fairy.png", m_image);
|
||||
|
||||
// Create defaut one input and one output
|
||||
AddInput();
|
||||
AddOutputs(1);
|
||||
|
|
@ -20,7 +18,6 @@ MediaNode::MediaNode(const std::string &title, IStoryManager &proj)
|
|||
std::string widgetId = std::to_string(GetInternalId()); // Make widget unique by using the node ID
|
||||
|
||||
m_buttonUniqueName = "Play " ICON_MDI_PLAY "##id" + widgetId;
|
||||
|
||||
}
|
||||
|
||||
void MediaNode::Draw()
|
||||
|
|
|
|||
Loading…
Reference in a new issue