mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 09:35:27 -04:00
02c65bcf66
* Upgrade to Flow 0.92 and make fixes for it
* Convert all extensions to use _("...") instead of t("...") for translations,
to be able to be parsed by gettext
* Handle translation in JS extensions
* Move Providers out of MainFrame
* Remove i18next
* Adapt ExtractTranslations script to handle js files (for extensions)
131 lines
4.5 KiB
C++
131 lines
4.5 KiB
C++
/**
|
|
|
|
GDevelop - TextEntry Object Extension
|
|
Copyright (c) 2011-2016 Florian Rival (Florian.Rival@gmail.com)
|
|
This project is released under the MIT License.
|
|
*/
|
|
|
|
#include "GDCpp/Extensions/ExtensionBase.h"
|
|
|
|
#include "TextEntryObject.h"
|
|
|
|
void DeclareTextEntryObjectExtension(gd::PlatformExtension& extension) {
|
|
extension.SetExtensionInformation(
|
|
"TextEntryObject",
|
|
_("Text entry object"),
|
|
_("This Extension enables the use of an object that captures text "
|
|
"entered with a keyboard by a player."),
|
|
"Florian Rival",
|
|
"Open source (MIT License)")
|
|
.SetExtensionHelpPath("/objects/text_entry");
|
|
|
|
gd::ObjectMetadata& obj = extension.AddObject<TextEntryObject>(
|
|
"TextEntry",
|
|
_("Text entry"),
|
|
_("Invisible object used to get the text entered with the keyboard"),
|
|
"CppPlatform/Extensions/textentry.png");
|
|
|
|
#if defined(GD_IDE_ONLY)
|
|
#if !defined(GD_NO_WX_GUI)
|
|
TextEntryObject::LoadEdittimeIcon();
|
|
#endif
|
|
obj.SetIncludeFile("TextEntryObject/TextEntryObject.h");
|
|
|
|
obj.AddAction("String",
|
|
_("Text in memory"),
|
|
_("Modify text in memory of the object"),
|
|
_("Do _PARAM1__PARAM2_ to the text in memory of _PARAM0_"),
|
|
"",
|
|
"CppPlatform/Extensions/textentry24.png",
|
|
"CppPlatform/Extensions/textentryicon.png")
|
|
|
|
.AddParameter("object", _("Object"), "TextEntry")
|
|
.AddParameter("operator", _("Modification's sign"))
|
|
.AddParameter("string", _("Text"))
|
|
.SetFunctionName("SetString")
|
|
.SetManipulatedType("string")
|
|
.SetGetter("GetString")
|
|
.SetIncludeFile("TextEntryObject/TextEntryObject.h");
|
|
|
|
obj.AddCondition("String",
|
|
_("Text in memory"),
|
|
_("Test the text of a Text Entry object."),
|
|
_("The text of _PARAM0_ is _PARAM1__PARAM2_"),
|
|
"",
|
|
"CppPlatform/Extensions/textentry24.png",
|
|
"CppPlatform/Extensions/textentryicon.png")
|
|
|
|
.AddParameter("object", _("Object"), "TextEntry")
|
|
.AddParameter("relationalOperator", _("Sign of the test"))
|
|
.AddParameter("string", _("Text to test"))
|
|
.SetFunctionName("GetString")
|
|
.SetManipulatedType("string")
|
|
.SetIncludeFile("TextEntryObject/TextEntryObject.h");
|
|
|
|
obj.AddAction(
|
|
"Activate",
|
|
_("De/activate capturing text input"),
|
|
_("Activate or deactivate the capture of text entered with keyboard."),
|
|
_("Activate capture by _PARAM0_ of the text entered with keyboard: "
|
|
"_PARAM1_"),
|
|
_("Setup"),
|
|
"CppPlatform/Extensions/textentry24.png",
|
|
"CppPlatform/Extensions/textentryicon.png")
|
|
|
|
.AddParameter("object", _("Object"), "TextEntry")
|
|
.AddParameter("yesorno", _("Activate"))
|
|
.SetFunctionName("Activate")
|
|
.SetIncludeFile("TextObject/TextObject.h");
|
|
|
|
obj.AddCondition("Activated",
|
|
_("Text input"),
|
|
_("Test if the object captured text entered with keyboard."),
|
|
_("_PARAM0_ capture the text entered with keyboard"),
|
|
_("Setup"),
|
|
"CppPlatform/Extensions/textentry24.png",
|
|
"CppPlatform/Extensions/textentryicon.png")
|
|
|
|
.AddParameter("object", _("Object"), "TextEntry")
|
|
.SetFunctionName("IsActivated")
|
|
.SetIncludeFile("TextObject/TextObject.h");
|
|
|
|
obj.AddStrExpression("String",
|
|
_("Text entered with keyboard"),
|
|
_("Text entered with keyboard"),
|
|
_("Text entered with keyboard"),
|
|
"res/texteicon.png")
|
|
.AddParameter("object", _("Object"), "TextEntry")
|
|
.SetFunctionName("GetString")
|
|
.SetIncludeFile("TextObject/TextObject.h");
|
|
#endif
|
|
}
|
|
|
|
/**
|
|
* \brief This class declares information about the extension.
|
|
*/
|
|
class Extension : public ExtensionBase {
|
|
public:
|
|
/**
|
|
* Constructor of an extension declares everything the extension contains:
|
|
* objects, actions, conditions and expressions.
|
|
*/
|
|
Extension() {
|
|
DeclareTextEntryObjectExtension(*this);
|
|
AddRuntimeObject<TextEntryObject, RuntimeTextEntryObject>(
|
|
GetObjectMetadata("TextEntryObject::TextEntry"),
|
|
"RuntimeTextEntryObject");
|
|
|
|
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
|
|
};
|
|
};
|
|
|
|
#if !defined(EMSCRIPTEN)
|
|
/**
|
|
* Used by GDevelop to create the extension class
|
|
* -- Do not need to be modified. --
|
|
*/
|
|
extern "C" ExtensionBase* GD_EXTENSION_API CreateGDExtension() {
|
|
return new Extension;
|
|
}
|
|
#endif
|