Files

86 lines
2.9 KiB
C++

/**
GDevelop - Panel Sprite Extension
Copyright (c) 2012-2016 Victor Levasseur (victorlevasseur01@orange.fr)
This project is released under the MIT License.
*/
#if defined(GD_IDE_ONLY)
#include <iostream>
#include "GDCore/Extensions/PlatformExtension.h"
#include "GDCore/Tools/Localization.h"
void DeclarePanelSpriteObjectExtension(gd::PlatformExtension& extension);
/**
* \brief This class declares information about the JS extension.
*/
class PanelSpriteObjectJsExtension : public gd::PlatformExtension {
public:
/**
* Constructor of an extension declares everything the extension contains:
* objects, actions, conditions and expressions.
*/
PanelSpriteObjectJsExtension() {
DeclarePanelSpriteObjectExtension(*this);
GetObjectMetadata("PanelSpriteObject::PanelSprite")
.SetIncludeFile(
"Extensions/PanelSpriteObject/panelspriteruntimeobject.js")
.AddIncludeFile(
"Extensions/PanelSpriteObject/"
"panelspriteruntimeobject-pixi-renderer.js");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::SetOpacity"]
.SetFunctionName("setOpacity")
.SetGetter("getOpacity");
GetAllConditionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Opacity"]
.SetFunctionName("getOpacity");
GetAllExpressionsForObject(
"PanelSpriteObject::PanelSprite")["Opacity"]
.SetFunctionName("getOpacity");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::SetColor"]
.SetFunctionName("setColor");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Width"]
.SetFunctionName("setWidth")
.SetGetter("getWidth");
GetAllConditionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Width"]
.SetFunctionName("getWidth");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Height"]
.SetFunctionName("setHeight")
.SetGetter("getHeight");
GetAllConditionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Height"]
.SetFunctionName("getHeight");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::Image"]
.SetFunctionName("setTexture");
GetAllActionsForObject(
"PanelSpriteObject::PanelSprite")["PanelSpriteObject::SetImageFromResource"]
.SetFunctionName("setTexture");
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
};
};
#if defined(EMSCRIPTEN)
extern "C" gd::PlatformExtension* CreateGDJSPanelSpriteObjectExtension() {
return new PanelSpriteObjectJsExtension;
}
#else
/**
* Used by GDevelop to create the extension class
* -- Do not need to be modified. --
*/
extern "C" gd::PlatformExtension* GD_EXTENSION_API CreateGDJSExtension() {
return new PanelSpriteObjectJsExtension;
}
#endif
#endif