mrmBot-Matrix/natives/reverse.cc

57 lines
1.6 KiB
C++
Raw Normal View History

2020-07-22 18:12:38 +00:00
#include <napi.h>
#include <list>
#include <Magick++.h>
using namespace std;
using namespace Magick;
class ReverseWorker : public Napi::AsyncWorker {
public:
2020-07-23 00:54:58 +00:00
ReverseWorker(Napi::Function& callback, string in_path, bool soos, int delay)
: Napi::AsyncWorker(callback), in_path(in_path), soos(soos), delay(delay) {}
2020-07-22 18:12:38 +00:00
~ReverseWorker() {}
void Execute() {
list<Image> frames;
list<Image> coalesced;
list<Image> result;
readImages(&frames, in_path);
coalesceImages(&coalesced, frames.begin(), frames.end());
2020-07-23 00:54:58 +00:00
if (soos) {
list<Image> copy = coalesced;
copy.reverse();
coalesced.insert(coalesced.end(), copy.begin(), copy.end());
} else {
coalesced.reverse();
}
2020-07-22 18:12:38 +00:00
optimizeImageLayers(&result, coalesced.begin(), coalesced.end());
if (delay != 0) for_each(result.begin(), result.end(), animationDelayImage(delay));
writeImages(result.begin(), result.end(), &blob);
}
void OnOK() {
Callback().Call({Env().Undefined(), Napi::Buffer<char>::Copy(Env(), (char *)blob.data(), blob.length())});
}
private:
string in_path, type;
2020-07-28 14:38:55 +00:00
int delay, amount;
2020-07-22 18:12:38 +00:00
Blob blob;
2020-07-23 00:54:58 +00:00
bool soos;
2020-07-22 18:12:38 +00:00
};
Napi::Value Reverse(const Napi::CallbackInfo &info)
{
Napi::Env env = info.Env();
string in_path = info[0].As<Napi::String>().Utf8Value();
2020-07-23 00:54:58 +00:00
bool soos = info[1].As<Napi::Boolean>().Value();
int delay = info[2].As<Napi::Number>().Int32Value();
Napi::Function cb = info[3].As<Napi::Function>();
2020-07-22 18:12:38 +00:00
2020-07-23 00:54:58 +00:00
ReverseWorker* explodeWorker = new ReverseWorker(cb, in_path, soos, delay);
2020-07-22 18:12:38 +00:00
explodeWorker->Queue();
return env.Undefined();
}