thorvg/src/wasm/thorvgwasm.cpp
Michal Maciola e62f8a0db4
wasm: improved bounds calculation (#795)
Improved bounds calculation in case a rotation is applied
2021-09-10 13:26:58 +02:00

324 lines
10 KiB
C++

/*
* Copyright (c) 2020-2021 Samsung Electronics Co., Ltd. All rights reserved.
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <thorvg.h>
#include "tvgIteratorModule.h"
#include <emscripten/bind.h>
using namespace emscripten;
using namespace std;
using namespace tvg;
class __attribute__((visibility("default"))) ThorvgWasm : public IteratorModule
{
public:
static unique_ptr<ThorvgWasm> create()
{
return unique_ptr<ThorvgWasm>(new ThorvgWasm());
}
string getError()
{
return mErrorMsg;
}
bool load(string data, string mimetype, int width, int height)
{
mErrorMsg = "None";
if (!mSwCanvas) {
mErrorMsg = "Canvas is NULL";
return false;
}
if (data.empty()) {
mErrorMsg = "Data is empty";
return false;
}
mPicture = Picture::gen().release();
if (!mPicture) {
mErrorMsg = "Picture get failed";
return false;
}
mSwCanvas->clear();
if (mPicture->load(data.c_str(), data.size(), mimetype, false) != Result::Success) {
/* mPicture is not handled as unique_ptr yet, so delete here */
delete(mPicture);
mPicture = nullptr;
mErrorMsg = "Load failed";
return false;
}
mPicture->size(&mOriginalSize[0], &mOriginalSize[1]);
/* need to reset size to calculate scale in Picture.size internally
before calling updateSize */
mWidth = 0;
mHeight = 0;
updateSize(width, height);
if (mSwCanvas->push(unique_ptr<Picture>(mPicture)) != Result::Success) {
mErrorMsg = "Push failed";
return false;
}
return true;
}
bool update(int width, int height, bool force)
{
mErrorMsg = "None";
if (!mSwCanvas || !mPicture) {
mErrorMsg = "Invalid Conditions";
return false;
}
if (!force && mWidth == width && mHeight == height) {
return true;
}
updateSize(width, height);
if (mSwCanvas->update(mPicture) != Result::Success) {
mErrorMsg = "Update failed";
return false;
}
return true;
}
val render()
{
mErrorMsg = "None";
if (!mSwCanvas) {
mErrorMsg = "Canvas is NULL";
return val(typed_memory_view<uint8_t>(0, nullptr));
}
if (mSwCanvas->draw() != Result::Success) {
mErrorMsg = "Draw failed";
return val(typed_memory_view<uint8_t>(0, nullptr));
}
mSwCanvas->sync();
return val(typed_memory_view(mWidth * mHeight * 4, mBuffer.get()));
}
val originalSize()
{
return val(typed_memory_view(2, mOriginalSize));
}
bool saveTvg()
{
mErrorMsg = "None";
auto saver = tvg::Saver::gen();
auto duplicate = unique_ptr<tvg::Picture>(static_cast<tvg::Picture*>(mPicture->duplicate()));
if (!saver || !duplicate) {
mErrorMsg = "Saving initialization failed";
return false;
}
if (saver->save(move(duplicate), "file.tvg") != tvg::Result::Success) {
mErrorMsg = "Tvg saving failed";
return false;
}
saver->sync();
return true;
}
val layers()
{
//returns an array of a structure Layer: [id] [depth] [type] [composite]
mLayers.reset();
sublayers(&mLayers, mPicture, 0);
return val(typed_memory_view(mLayers.count * sizeof(Layer) / sizeof(uint32_t), (uint32_t *)(mLayers.data)));
}
bool setOpacity(uint32_t paintId, uint8_t opacity)
{
const Paint* paint = findPaintById(mPicture, paintId, nullptr);
if (!paint) return false;
const_cast<Paint*>(paint)->opacity(opacity);
return true;
}
val bounds(uint32_t paintId)
{
Array<const Paint *> parents;
const Paint* paint = findPaintById(mPicture, paintId, &parents);
if (!paint) return val(typed_memory_view<float>(0, nullptr));
paint->bounds(&mBounds[0], &mBounds[1], &mBounds[2], &mBounds[3]);
float points[8] = { //clockwise points
mBounds[0], mBounds[1], //(x1, y1)
mBounds[0] + mBounds[2], mBounds[1], //(x2, y1)
mBounds[0] + mBounds[2], mBounds[1] + mBounds[3], //(x2, y2)
mBounds[0], mBounds[1] + mBounds[3], //(x1, y2)
};
for (auto paint = parents.data; paint < (parents.data + parents.count); ++paint) {
auto m = const_cast<Paint*>(*paint)->transform();
for (int i = 0; i<8; i += 2) {
float x = points[i] * m.e11 + points[i+1] * m.e12 + m.e13;
points[i+1] = points[i] * m.e21 + points[i+1] * m.e22 + m.e23;
points[i] = x;
}
}
mBounds[0] = points[0];//x(p1)
mBounds[1] = points[3];//y(p2)
mBounds[2] = points[4] - mBounds[0];//x(p3)
mBounds[3] = points[7] - mBounds[1];//y(p4)
return val(typed_memory_view(4, mBounds));
}
private:
explicit ThorvgWasm()
{
mErrorMsg = "None";
Initializer::init(CanvasEngine::Sw, 0);
mSwCanvas = SwCanvas::gen();
if (!mSwCanvas) {
mErrorMsg = "Canvas get failed";
return;
}
}
void updateSize(int width, int height)
{
if (!mSwCanvas) return;
if (mWidth == width && mHeight == height) return;
mWidth = width;
mHeight = height;
mBuffer = make_unique<uint8_t[]>(mWidth * mHeight * 4);
mSwCanvas->target((uint32_t *)mBuffer.get(), mWidth, mWidth, mHeight, SwCanvas::ABGR8888);
if (mPicture) mPicture->size(width, height);
}
struct Layer
{
uint32_t paint; //cast of a paint pointer
uint32_t depth;
uint32_t type;
uint32_t composite;
};
void sublayers(Array<Layer>* layers, const Paint* paint, uint32_t depth)
{
//paint
if (paint->id() != TVG_CLASS_ID_SHAPE) {
auto it = this->iterator(paint);
if (it->count() > 0) {
layers->reserve(layers->count + it->count());
it->begin();
while (auto child = it->next()) {
uint32_t type = child->id();
layers->push({.paint = reinterpret_cast<uint32_t>(child), .depth = depth + 1, .type = type, .composite = static_cast<uint32_t>(CompositeMethod::None)});
sublayers(layers, child, depth + 1);
}
}
}
//composite
const Paint* compositeTarget = nullptr;
CompositeMethod composite = paint->composite(&compositeTarget);
if (compositeTarget && composite != CompositeMethod::None) {
uint32_t type = compositeTarget->id();
layers->push({.paint = reinterpret_cast<uint32_t>(compositeTarget), .depth = depth, .type = type, .composite = static_cast<uint32_t>(composite)});
sublayers(layers, compositeTarget, depth);
}
}
const Paint* findPaintById(const Paint* parent, uint32_t paintId, Array<const Paint *>* parents) {
//validate paintId is correct and exists in the picture
if (reinterpret_cast<uint32_t>(parent) == paintId) {
if (parents) parents->push(parent);
return parent;
}
//paint
if (parent->id() != TVG_CLASS_ID_SHAPE) {
auto it = this->iterator(parent);
if (it->count() > 0) {
it->begin();
while (auto child = it->next()) {
if (auto paint = findPaintById(child, paintId, parents)) {
if (parents) parents->push(parent);
return paint;
}
}
}
}
//composite
const Paint* compositeTarget = nullptr;
CompositeMethod composite = parent->composite(&compositeTarget);
if (compositeTarget && composite != CompositeMethod::None) {
if (auto paint = findPaintById(compositeTarget, paintId, parents)) {
if (parents) parents->push(parent);
return paint;
}
}
return nullptr;
}
private:
string mErrorMsg;
unique_ptr< SwCanvas > mSwCanvas = nullptr;
Picture* mPicture = nullptr;
unique_ptr<uint8_t[]> mBuffer = nullptr;
uint32_t mWidth{0};
uint32_t mHeight{0};
Array<Layer> mLayers;
float mBounds[4];
float mOriginalSize[2];
};
//Binding code
EMSCRIPTEN_BINDINGS(thorvg_bindings) {
class_<ThorvgWasm>("ThorvgWasm")
.constructor(&ThorvgWasm::create)
.function("getError", &ThorvgWasm::getError, allow_raw_pointers())
.function("load", &ThorvgWasm::load)
.function("update", &ThorvgWasm::update)
.function("render", &ThorvgWasm::render)
.function("originalSize", &ThorvgWasm::originalSize)
.function("saveTvg", &ThorvgWasm::saveTvg)
.function("layers", &ThorvgWasm::layers)
.function("bounds", &ThorvgWasm::bounds)
.function("setOpacity", &ThorvgWasm::setOpacity);
}