mrmBot-Matrix/natives/globe.cc

70 lines
2.0 KiB
C++
Raw Normal View History

#include <Magick++.h>
2020-07-16 14:31:48 +00:00
#include <napi.h>
2020-07-16 14:31:48 +00:00
#include <list>
using namespace std;
using namespace Magick;
Napi::Value Globe(const Napi::CallbackInfo &info) {
Napi::Env env = info.Env();
2020-07-16 14:31:48 +00:00
Napi::Object obj = info[0].As<Napi::Object>();
string path = obj.Get("path").As<Napi::String>().Utf8Value();
string type = obj.Get("type").As<Napi::String>().Utf8Value();
int delay =
obj.Has("delay") ? obj.Get("delay").As<Napi::Number>().Int32Value() : 0;
2020-07-16 14:31:48 +00:00
Blob blob;
2020-07-16 14:31:48 +00:00
list<Image> frames;
list<Image> coalesced;
list<Image> mid;
Image distort;
Image overlay;
readImages(&frames, path);
distort.read("./assets/images/spheremap.png");
overlay.read("./assets/images/sphere_overlay.png");
coalesceImages(&coalesced, frames.begin(), frames.end());
2021-02-25 21:09:53 +00:00
if (type != "gif") {
list<Image>::iterator it = coalesced.begin();
for (int i = 0; i < 29; ++i) {
coalesced.push_back(*it);
2021-02-25 21:09:53 +00:00
}
2020-07-16 14:31:48 +00:00
}
int i = 0;
for (Image &image : coalesced) {
image.scale(Geometry("500x500!"));
image.alphaChannel(Magick::SetAlphaChannel);
size_t width = image.columns();
image.roll(Geometry("+" + to_string(width * i / coalesced.size())));
image.composite(overlay, Magick::CenterGravity,
Magick::HardLightCompositeOp);
image.composite(distort, Magick::CenterGravity, Magick::DistortCompositeOp);
image.magick("GIF");
mid.push_back(image);
i++;
2020-07-16 14:31:48 +00:00
}
optimizeTransparency(mid.begin(), mid.end());
if (delay != 0) {
for_each(mid.begin(), mid.end(), animationDelayImage(delay));
} else if (type != "gif") {
for_each(mid.begin(), mid.end(), animationDelayImage(5));
}
2020-07-16 14:31:48 +00:00
for (Image &image : mid) {
image.quantizeDitherMethod(FloydSteinbergDitherMethod);
image.quantize();
}
2020-07-16 14:31:48 +00:00
writeImages(mid.begin(), mid.end(), &blob);
2020-07-16 14:31:48 +00:00
Napi::Object result = Napi::Object::New(env);
result.Set("data",
Napi::Buffer<char>::Copy(env, (char *)blob.data(), blob.length()));
result.Set("type", type);
return result;
2020-07-16 14:31:48 +00:00
}