Files
GDevelop/Extensions/PlatformBehavior/JsExtension.cpp
T
Victor Levasseur 72df404d7f Automatic versioning (#311)
* Use the port number in SendHttpRequest and DownloadFile

* Fix "Custom size" and "Custom viewports" not displayed in layer propgrid

* Fix Fedora spec file

* Use automatic versioning from git

* A "correct" version number is now generated even if git is unable to find a tag
2016-11-11 11:32:56 +01:00

111 lines
5.9 KiB
C++

/**
GDevelop - Platform Behavior Extension
Copyright (c) 2014-2016 Florian Rival (Florian.Rival@gmail.com)
This project is released under the MIT License.
*/
#if defined(GD_IDE_ONLY)
#include "GDCore/Extensions/PlatformExtension.h"
#include "GDCore/Tools/Localization.h"
#include <iostream>
void DeclarePlatformBehaviorExtension(gd::PlatformExtension & extension);
/**
* \brief This class declares information about the JS extension.
*/
class PlatformBehaviorJsExtension : public gd::PlatformExtension
{
public:
/**
* \brief Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions.
*/
PlatformBehaviorJsExtension()
{
SetExtensionInformation("PlatformBehavior",
_("Platform Behavior"),
_("Allows to use controllable objects which can run and jump on platforms."),
"Florian Rival",
"Open source (MIT License)");
DeclarePlatformBehaviorExtension(*this);
GetBehaviorMetadata("PlatformBehavior::PlatformBehavior")
.SetIncludeFile("PlatformBehavior/platformruntimebehavior.js")
.AddIncludeFile("PlatformBehavior/platformerobjectruntimebehavior.js");
GetBehaviorMetadata("PlatformBehavior::PlatformerObjectBehavior")
.SetIncludeFile("PlatformBehavior/platformruntimebehavior.js")
.AddIncludeFile("PlatformBehavior/platformerobjectruntimebehavior.js");
{
std::map<gd::String, gd::InstructionMetadata > & autActions = GetAllActionsForBehavior("PlatformBehavior::PlatformerObjectBehavior");
std::map<gd::String, gd::InstructionMetadata > & autConditions = GetAllConditionsForBehavior("PlatformBehavior::PlatformerObjectBehavior");
std::map<gd::String, gd::ExpressionMetadata > & autExpressions = GetAllExpressionsForBehavior("PlatformBehavior::PlatformerObjectBehavior");
autConditions["PlatformBehavior::IsMoving"].SetFunctionName("isMoving");
autConditions["PlatformBehavior::IsOnFloor"].SetFunctionName("isOnFloor");
autConditions["PlatformBehavior::IsOnLadder"].SetFunctionName("isOnLadder");
autConditions["PlatformBehavior::IsJumping"].SetFunctionName("isJumping");
autConditions["PlatformBehavior::IsFalling"].SetFunctionName("isFalling");
autConditions["PlatformBehavior::IsGrabbingPlatform"].SetFunctionName("isGrabbingPlatform");
autConditions["PlatformBehavior::Gravity"].SetFunctionName("getGravity");
autActions["PlatformBehavior::Gravity"].SetFunctionName("setGravity").SetGetter("getGravity");
autExpressions["Gravity"].SetFunctionName("getGravity");
autConditions["PlatformBehavior::MaxFallingSpeed"].SetFunctionName("getMaxFallingSpeed");
autActions["PlatformBehavior::MaxFallingSpeed"].SetFunctionName("setMaxFallingSpeed").SetGetter("getMaxFallingSpeed");
autExpressions["MaxFallingSpeed"].SetFunctionName("getMaxFallingSpeed");
autConditions["PlatformBehavior::Acceleration"].SetFunctionName("getAcceleration");
autActions["PlatformBehavior::Acceleration"].SetFunctionName("setAcceleration").SetGetter("getAcceleration");
autExpressions["Acceleration"].SetFunctionName("getAcceleration");
autConditions["PlatformBehavior::Deceleration"].SetFunctionName("getDeceleration");
autActions["PlatformBehavior::Deceleration"].SetFunctionName("setDeceleration").SetGetter("getDeceleration");
autExpressions["Deceleration"].SetFunctionName("getDeceleration");
autConditions["PlatformBehavior::MaxSpeed"].SetFunctionName("getMaxSpeed");
autActions["PlatformBehavior::MaxSpeed"].SetFunctionName("setMaxSpeed").SetGetter("getMaxSpeed");
autExpressions["MaxSpeed"].SetFunctionName("getMaxSpeed");
autConditions["PlatformBehavior::JumpSpeed"].SetFunctionName("getJumpSpeed");
autActions["PlatformBehavior::JumpSpeed"].SetFunctionName("setJumpSpeed").SetGetter("getJumpSpeed");
autExpressions["JumpSpeed"].SetFunctionName("getJumpSpeed");
autActions["PlatformBehavior::SetCanJump"].SetFunctionName("setCanJump");
autActions["PlatformBehavior::SimulateLeftKey"].SetFunctionName("simulateLeftKey");
autActions["PlatformBehavior::SimulateRightKey"].SetFunctionName("simulateRightKey");
autActions["PlatformBehavior::SimulateUpKey"].SetFunctionName("simulateUpKey");
autActions["PlatformBehavior::SimulateDownKey"].SetFunctionName("simulateDownKey");
autActions["PlatformBehavior::SimulateLadderKey"].SetFunctionName("simulateLadderKey");
autActions["PlatformBehavior::SimulateJumpKey"].SetFunctionName("simulateJumpKey");
autActions["PlatformBehavior::SimulateReleaseKey"].SetFunctionName("simulateReleaseKey");
autActions["PlatformBehavior::SimulateControl"].SetFunctionName("simulateControl");
autActions["PlatformBehavior::IgnoreDefaultControls"].SetFunctionName("ignoreDefaultControls");
}
{
std::map<gd::String, gd::InstructionMetadata > & autActions = GetAllActionsForBehavior("PlatformBehavior::PlatformBehavior");
autActions["PlatformBehavior::ChangePlatformType"].SetFunctionName("changePlatformType");
}
GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION();
};
};
//We need a specific function to create the extension with emscripten.
#if defined(EMSCRIPTEN)
extern "C" gd::PlatformExtension * CreateGDJSPlatformBehaviorExtension() {
return new PlatformBehaviorJsExtension;
}
#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 PlatformBehaviorJsExtension;
}
#endif
#endif