mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-04 01:21:10 +00:00
79 lines
2.0 KiB
C++
79 lines
2.0 KiB
C++
// Aseprite
|
|
// Copyright (C) 2001-2018 David Capello
|
|
//
|
|
// This program is distributed under the terms of
|
|
// the End-User License Agreement for Aseprite.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "app/script/app_scripting.h"
|
|
|
|
#include "app/doc.h"
|
|
|
|
namespace app {
|
|
|
|
namespace {
|
|
|
|
const script::ConstantEntry ColorMode_constants[] = {
|
|
{ "RGB", double(IMAGE_RGB) },
|
|
{ "GRAYSCALE", double(IMAGE_GRAYSCALE) },
|
|
{ "INDEXED", double(IMAGE_INDEXED) },
|
|
{ nullptr, 0.0 }
|
|
};
|
|
|
|
}
|
|
|
|
void register_app_object(script::Context& ctx);
|
|
void register_console_object(script::Context& ctx);
|
|
|
|
void register_image_class(script::index_t idx, script::Context& ctx);
|
|
void register_pixel_color_class(script::index_t idx, script::Context& ctx);
|
|
void register_point_class(script::index_t idx, script::Context& ctx);
|
|
void register_rectangle_class(script::index_t idx, script::Context& ctx);
|
|
void register_selection_class(script::index_t idx, script::Context& ctx);
|
|
void register_site_class(script::index_t idx, script::Context& ctx);
|
|
void register_size_class(script::index_t idx, script::Context& ctx);
|
|
void register_sprite_class(script::index_t idx, script::Context& ctx);
|
|
|
|
AppScripting::AppScripting(script::EngineDelegate* delegate)
|
|
: script::Engine(delegate)
|
|
{
|
|
auto& ctx = context();
|
|
ctx.setContextUserData(this);
|
|
|
|
// Register global objects (app and console)
|
|
register_app_object(ctx);
|
|
register_console_object(ctx);
|
|
|
|
ctx.pushGlobalObject();
|
|
|
|
// Register constants
|
|
{
|
|
ctx.newObject();
|
|
ctx.registerConstants(-1, ColorMode_constants);
|
|
ctx.setProp(-2, "ColorMode");
|
|
}
|
|
|
|
// Register classes/prototypes
|
|
|
|
register_image_class(-1, ctx);
|
|
register_pixel_color_class(-1, ctx);
|
|
register_point_class(-1, ctx);
|
|
register_rectangle_class(-1, ctx);
|
|
register_selection_class(-1, ctx);
|
|
register_site_class(-1, ctx);
|
|
register_size_class(-1, ctx);
|
|
register_sprite_class(-1, ctx);
|
|
|
|
ctx.pop(1);
|
|
}
|
|
|
|
AppScripting* get_engine(script::Context& ctx)
|
|
{
|
|
return (AppScripting*)ctx.getContextUserData();
|
|
}
|
|
|
|
}
|