mrmBot-Matrix/natives/reverse.cc

65 lines
1.8 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;
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
for_each(coalesced.begin(), coalesced.end(), magickImage("GIF"));
optimizeTransparency(coalesced.begin(), coalesced.end());
2021-02-25 21:09:53 +00:00
for (Image &image : coalesced) {
image.quantizeDither(false);
image.quantize();
if (delay != 0) image.animationDelay(delay);
2021-02-25 21:09:53 +00:00
}
writeImages(coalesced.begin(), coalesced.end(), &blob);
2020-07-22 18:12:38 +00:00
}
void OnOK() {
Callback().Call({Env().Undefined(), Napi::Buffer<char>::Copy(Env(), (char *)blob.data(), blob.length()), Napi::String::From(Env(), "gif")});
2020-07-22 18:12:38 +00:00
}
private:
string in_path;
int delay;
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();
Napi::Object obj = info[0].As<Napi::Object>();
Napi::Function cb = info[1].As<Napi::Function>();
string path = obj.Get("path").As<Napi::String>().Utf8Value();
bool soos = obj.Has("soos") ? obj.Get("soos").As<Napi::Boolean>().Value() : false;
int delay = obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
2020-07-22 18:12:38 +00:00
ReverseWorker* explodeWorker = new ReverseWorker(cb, path, soos, delay);
2020-07-22 18:12:38 +00:00
explodeWorker->Queue();
return env.Undefined();
}