blob: e41da5119a4f2f8407dfd7e6c874244f9a92c229 [file] [log] [blame]
/*
* Copyright 2022 Rive
*/
#include "viewer/viewer_content.hpp"
#include <vector>
ViewerContent::~ViewerContent() {}
const char* gCounterNames[] = {
"file",
"artboard",
"animation",
"machine",
"buffer",
"path",
"paint",
"shader",
"image",
};
std::vector<uint8_t> ViewerContent::LoadFile(const char filename[])
{
std::vector<uint8_t> bytes;
FILE* fp = fopen(filename, "rb");
if (!fp)
{
fprintf(stderr, "Can't find file: %s\n", filename);
return bytes;
}
fseek(fp, 0, SEEK_END);
size_t size = ftell(fp);
fseek(fp, 0, SEEK_SET);
bytes.resize(size);
size_t bytesRead = fread(bytes.data(), 1, size, fp);
fclose(fp);
if (bytesRead != size)
{
fprintf(stderr, "Failed to read all of %s\n", filename);
bytes.resize(0);
}
return bytes;
}
#ifndef RIVE_SKIP_IMGUI
#include "viewer/viewer_host.hpp"
rive::Factory* ViewerContent::RiveFactory() { return ViewerHost::Factory(); }
#endif
#include "rive/text/font_hb.hpp"
rive::rcp<rive::Font> ViewerContent::DecodeFont(rive::Span<const uint8_t> span)
{
return HBFont::Decode(span);
}