void DeclareDestroyOutsideBehaviorExtension(gd::PlatformExtension & extension) { extension.SetExtensionInformation("DestroyOutsideBehavior", _("Destroy Outside Screen Behavior"), _("Behavior destroying object when they go outside the screen"), "Florian Rival", "Open source (MIT License)"); gd::BehaviorMetadata & aut = extension.AddBehavior("DestroyOutside", _("Destroy when outside the screen"), _("DestroyOutside"), _("Automatically destroy the object when it goes outside the screen"), "", "CppPlatform/Extensions/destroyoutsideicon.png", "DestroyOutsideBehavior", std::shared_ptr<gd::Behavior>(new DestroyOutsideBehavior), std::shared_ptr<gd::BehaviorsSharedData>()); #if defined(GD_IDE_ONLY) aut.SetIncludeFile("DestroyOutsideBehavior/DestroyOutsideBehavior.h"); aut.AddCondition("ExtraBorder", _("Additional border"), _("Compare the additional border that the object must cross before being deleted."), _("The additional border of _PARAM0_ is _PARAM2__PARAM3_"), _(""), "CppPlatform/Extensions/destroyoutsideicon24.png", "CppPlatform/Extensions/destroyoutsideicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "DestroyOutside") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetExtraBorder").SetManipulatedType("number") .SetIncludeFile("DestroyOutsideBehavior/DestroyOutsideBehavior.h"); aut.AddAction("ExtraBorder", _("Additional border"), _("Change the additional border that the object must cross before being deleted."), _("Do _PARAM2__PARAM3_ to the additional border of _PARAM0_"), _(""), "CppPlatform/Extensions/destroyoutsideicon24.png", "CppPlatform/Extensions/destroyoutsideicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "DestroyOutside") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetExtraBorder").SetManipulatedType("number") .SetGetter("GetExtraBorder").SetIncludeFile("DestroyOutsideBehavior/DestroyOutsideBehavior.h"); #endif }
void DeclarePlatformBehaviorExtension(gd::PlatformExtension & extension) { extension.SetExtensionInformation("PlatformBehavior", _("Platform Behavior"), _("Allows to use controllable objects which can run and jump on platforms."), "Florian Rival", "Open source (MIT License)"); { gd::BehaviorMetadata & aut = extension.AddBehavior("PlatformerObjectBehavior", _("Platformer character"), "PlatformerObject", _("Controllable character which can jump and run on platforms."), "", "CppPlatform/Extensions/platformerobjecticon.png", "PlatformerObjectBehavior", std::shared_ptr<gd::Behavior>(new PlatformerObjectBehavior), std::shared_ptr<gd::BehaviorsSharedData>(new gd::BehaviorsSharedData)); #if defined(GD_IDE_ONLY) aut.SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("IsMoving", _("Is moving"), _("Check if the object is moving (whether it is on the floor or in the air)."), _("_PARAM0_ is moving"), _(""), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsSimple() .SetFunctionName("IsMoving").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("IsOnFloor", _("Is on floor"), _("Check if the object is on a platform."), _("_PARAM0_ is on floor"), _(""), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsSimple() .SetFunctionName("IsOnFloor").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("IsOnLadder", _("Is on ladder"), _("Check if the object is on a ladder."), _("_PARAM0_ is on ladder"), _(""), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("IsOnLadder").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("IsJumping", _("Is jumping"), _("Check if the object is jumping."), _("_PARAM0_ is jumping"), _(""), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsSimple() .SetFunctionName("IsJumping").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("IsFalling", _("Is falling"), _("Check if the object is falling.\nNote that the object can be flagged as jumping and falling at the same time: at the end of a jump, the fall speed becomes higher that the jump speed."), _("_PARAM0_ is falling"), _(""), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("IsFalling").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("Gravity", _("Gravity"), _("Compare the gravity applied on the object (in pixels per second per second)."), _("Gravity of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetGravity").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("Gravity", _("Gravity"), _("Change the gravity applied on an object (in pixels per second per second)."), _("Do _PARAM2__PARAM3_ to the gravity applied on _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetGravity").SetManipulatedType("number").SetGetter("GetGravity").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("MaxFallingSpeed", _("Maximum falling speed"), _("Compare the maximum falling speed of the object (in pixels per second)."), _("The maximum falling speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetMaxFallingSpeed").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("MaxFallingSpeed", _("Maximum falling speed"), _("Change the maximum falling speed of an object (in pixels per second)."), _("Do _PARAM2__PARAM3_ to the maximum falling speed of _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetMaxFallingSpeed").SetManipulatedType("number").SetGetter("GetMaxFallingSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("Acceleration", _("Acceleration"), _("Compare the acceleration of the object (in pixels per second per second)."), _("The acceleration of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetAcceleration").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("Acceleration", _("Acceleration"), _("Change the acceleration of an object (in pixels per second per second)."), _("Do _PARAM2__PARAM3_ to the acceleration of _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetAcceleration").SetManipulatedType("number").SetGetter("GetAcceleration").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("Deceleration", _("Deceleration"), _("Compare the deceleration of the object (in pixels per second per second)."), _("The deceleration of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetDeceleration").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("Deceleration", _("Deceleration"), _("Change the deceleration of an object (in pixels per second per second)."), _("Do _PARAM2__PARAM3_ to the deceleration of _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetDeceleration").SetManipulatedType("number").SetGetter("GetDeceleration").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("MaxSpeed", _("Maximum speed"), _("Compare the maximum speed of the object (in pixels per second)."), _("The maximum speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetMaxSpeed").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("MaxSpeed", _("Maximum speed"), _("Change the maximum speed of an object (in pixels per second)."), _("Do _PARAM2__PARAM3_ to the maximum speed of _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetMaxSpeed").SetManipulatedType("number").SetGetter("GetMaxSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddCondition("JumpSpeed", _("Jump speed"), _("Compare the jump speed of the object (in pixels per second)."), _("The jump speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("relationalOperator", _("Comparison sign")) .AddParameter("expression", _("Value to test")) .MarkAsAdvanced() .SetFunctionName("GetJumpSpeed").SetManipulatedType("number").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("JumpSpeed", _("Jump speed"), _("Change the jump speed of an object (in pixels per second)."), _("Do _PARAM2__PARAM3_ to the jump speed of _PARAM0_"), _("Options"), "CppPlatform/Extensions/platformerobjecticon24.png", "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetJumpSpeed").SetManipulatedType("number").SetGetter("GetJumpSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SetCanJump", _("Allow again jumping"), _("Allow the object to jump again, even if it is in the air: this can be useful to allow double jump for example."), _("Allow _PARAM0_ to jump again"), _("Options"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsSimple() .SetFunctionName("SetCanJump").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateLeftKey", _("Simulate left key press"), _("Simulate a pressing on left key."), _("Simulate pressing Left for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateLeftKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateRightKey", _("Simulate right key press"), _("Simulate a pressing on right key."), _("Simulate pressing Right for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateRightKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateUpKey", _("Simulate up key press"), _("Simulate a pressing on up key ( Used when on a ladder )."), _("Simulate pressing Up for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateUpKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateDownKey", _("Simulate down key press"), _("Simulate a pressing on down key ( Used when on a ladder )."), _("Simulate pressing Down for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateDownKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateLadderKey", _("Simulate ladder key press"), _("Simulate a pressing on ladder key ( Used to grab a ladder )."), _("Simulate pressing Ladder key for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateLadderKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateJumpKey", _("Simulate jump key press"), _("Simulate a pressing on jump key."), _("Simulate pressing Jump key for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("SimulateJumpKey").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("SimulateControl", _("Simulate control"), _("Simulate a pressing on a key.\nValid keys are Left, Right, Jump, Ladder, Up, Down."), _("Simulate pressing _PARAM2_ key for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("string", _("Key")) .MarkAsAdvanced() .SetFunctionName("SimulateControl").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddAction("IgnoreDefaultControls", _("Ignore default controls"), _("De/activate the use of default controls.\nIf deactivated, use the simulate actions to move the object."), _("Ignore default controls for _PARAM0_: _PARAM2_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .AddParameter("yesorno", _("Ignore controls")) .MarkAsAdvanced() .SetFunctionName("IgnoreDefaultControls").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("Gravity", _("Gravity"), _("Get the gravity applied on the object"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetGravity").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("MaxFallingSpeed", _("Maximum falling speed"), _("Get the maximum falling speed"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetMaxFallingSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("Acceleration", _("Acceleration"), _("Acceleration"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetAcceleration").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("Deceleration", _("Deceleration"), _("Deceleration"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetDeceleration").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("MaxSpeed", _("Maximum speed"), _("Maximum speed"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetMaxSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); aut.AddExpression("JumpSpeed", _("Jump speed"), _("Jump speed"), _("Options"), "CppPlatform/Extensions/platformerobjecticon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformerObjectBehavior") .SetFunctionName("GetJumpSpeed").SetIncludeFile("PlatformBehavior/PlatformerObjectBehavior.h"); #endif } { gd::BehaviorMetadata & aut = extension.AddBehavior("PlatformBehavior", _("Platform"), "Platform", _("Platform on which Platformer characters can run."), "", "CppPlatform/Extensions/platformicon.png", "PlatformBehavior", std::shared_ptr<gd::Behavior>(new PlatformBehavior), std::shared_ptr<gd::BehaviorsSharedData>(new gd::BehaviorsSharedData)); #if defined(GD_IDE_ONLY) aut.SetIncludeFile("PlatformBehavior/PlatformBehavior.h"); aut.AddAction("ChangePlatformType", _("Change platform type"), _("Change the platform type of the object: Platform, Jumpthru or Ladder."), _("Set platform type of _PARAM0_ to _PARAM2_"), _("Platforms"), "CppPlatform/Extensions/platformicon24.png", "CppPlatform/Extensions/platformicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "PlatformBehavior") .AddParameter("string", _("Platform type (\"Platform\", \"Jumpthru\" or \"Ladder\")")) .MarkAsAdvanced() .SetFunctionName("ChangePlatformType").SetIncludeFile("PlatformBehavior/PlatformBehavior.h"); #endif } }
void DeclareTopDownMovementBehaviorExtension(gd::PlatformExtension & extension) { extension.SetExtensionInformation("TopDownMovementBehavior", _("Top-down movement"), _("Move objects in 4 or 8 directions"), "Florian Rival", "Open source (MIT License)"); gd::BehaviorMetadata & aut = extension.AddBehavior("TopDownMovementBehavior", _("Top-down movement (4 or 8 directions)"), "TopDownMovement", _("The object can be moved left, up, right, down and optionally diagonals."), "", "CppPlatform/Extensions/topdownmovementicon.png", "TopDownMovementBehavior", std::shared_ptr<gd::Behavior>(new TopDownMovementBehavior), std::shared_ptr<gd::BehaviorsSharedData>(new gd::BehaviorsSharedData)); #if defined(GD_IDE_ONLY) aut.SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("SimulateLeftKey", _("Simulate left key press"), _("Simulate a pressing on left key."), _("Simulate pressing Left for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateLeftKey").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("SimulateRightKey", _("Simulate right key press"), _("Simulate a pressing on right key."), _("Simulate pressing Right for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateRightKey").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("SimulateUpKey", _("Simulate up key press"), _("Simulate a pressing on up key ( Used when on a ladder )."), _("Simulate pressing Up for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateUpKey").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("SimulateDownKey", _("Simulate down key press"), _("Simulate a pressing on down key ( Used when on a ladder )."), _("Simulate pressing Down for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("SimulateDownKey").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("SimulateControl", _("Simulate control"), _("Simulate a pressing on a key.\nValid keys are Left, Right, Up, Down."), _("Simulate pressing _PARAM2_ key for _PARAM0_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("string", _("Key")) .MarkAsAdvanced() .SetFunctionName("SimulateControl").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("IgnoreDefaultControls", _("Ignore default controls"), _("De/activate the use of default controls.\nIf deactivated, use the simulate actions to move the object."), _("Ignore default controls for _PARAM0_: _PARAM2_"), _("Controls"), "res/conditions/keyboard24.png", "res/conditions/keyboard.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("yesorno", _("Ignore controls")) .MarkAsAdvanced() .SetFunctionName("IgnoreDefaultControls").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("IsMoving", _("Is moving"), _("Check if the object is moving."), _("_PARAM0_ is moving"), _(""), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("IsMoving").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("Acceleration", _("Acceleration"), _("Change the acceleration of the object"), _("Do _PARAM2__PARAM3_ to the acceleration of _PARAM0_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetAcceleration").SetGetter("GetAcceleration").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("Acceleration", _("Acceleration"), _("Compare the acceleration of the object"), _("Acceleration of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("GetAcceleration").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("Deceleration", _("Deceleration"), _("Change the deceleration of the object"), _("Do _PARAM2__PARAM3_ to the deceleration of _PARAM0_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetDeceleration").SetGetter("GetDeceleration").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("Deceleration", _("Deceleration"), _("Compare the deceleration of the object"), _("Deceleration of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("GetDeceleration").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("MaxSpeed", _("Maximum speed"), _("Change the maximum speed of the object"), _("Do _PARAM2__PARAM3_ to the max. speed of _PARAM0_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetMaxSpeed").SetGetter("GetMaxSpeed").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("MaxSpeed", _("Maximum speed"), _("Compare the maximum speed of the object"), _("Max. speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("GetMaxSpeed").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("Speed", _("Speed"), _("Compare the speed of the object"), _("Speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .SetFunctionName("GetSpeed").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("AngularMaxSpeed", _("Angular maximum speed"), _("Change the maximum angular speed of the object"), _("Do _PARAM2__PARAM3_ to the max. angular speed of _PARAM0_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetAngularMaxSpeed").SetGetter("GetAngularMaxSpeed").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("AngularMaxSpeed", _("Angular maximum speed"), _("Compare the maximum angular speed of the object"), _("Max. angular speed of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("GetAngularMaxSpeed").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("AngleOffset", _("Rotation offset"), _("Change the rotation offset applied when moving the object"), _("Do _PARAM2__PARAM3_ to the rotation offset of _PARAM0_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("SetAngleOffset").SetGetter("GetAngleOffset").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("AngleOffset", _("Rotation offset"), _("Compare the rotation offset applied when moving the object"), _("Rotation offset of _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value")) .MarkAsAdvanced() .SetFunctionName("GetAngleOffset").SetManipulatedType("number").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("AllowDiagonals", _("Diagonals moves"), _("Allow or restrict diagonal moves"), _("Allow diagonal moves for _PARAM0_: _PARAM2_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("yesorno", _("Allow?")) .SetFunctionName("SetAllowDiagonals").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("DiagonalsAllowed", _("Diagonals moves"), _("Return true if the object is allowed to do diagonal moves"), _("Size of the extra border applied to _PARAM0_ is _PARAM2__PARAM3_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("DiagonalsAllowed").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddAction("RotateObject", _("Rotate the object"), _("Enable or disable rotation of the object"), _("Enable rotation of _PARAM0_: _PARAM2_"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .AddParameter("yesorno", _("Rotate object?")) .MarkAsAdvanced() .SetFunctionName("SetRotateObject").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddCondition("ObjectRotated", _("Object rotated"), _("Return true if the object is rotated when traveling on its path."), _("_PARAM0_ is rotated when moving"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon24.png", "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .MarkAsAdvanced() .SetFunctionName("IsObjectRotated").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("Acceleration", _("Acceleration"), _("Acceleration of the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetAcceleration").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("Deceleration", _("Deceleration"), _("Deceleration of the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetDeceleration").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("MaxSpeed", _("Maximum speed"), _("Maximum speed of the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetMaxSpeed").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("Speed", _("Speed"), _("Speed of the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetSpeed").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("AngularMaxSpeed", _("Angular maximum speed"), _("Angular maximum speed of the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetAngularMaxSpeed").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); aut.AddExpression("AngleOffset", _("Rotation offset"), _("Rotation offset applied to the object"), _("Movement"), "CppPlatform/Extensions/topdownmovementicon16.png") .AddParameter("object", _("Object")) .AddParameter("behavior", _("Behavior"), "TopDownMovementBehavior") .SetFunctionName("GetAngleOffset").SetIncludeFile("TopDownMovementBehavior/TopDownMovementBehavior.h"); #endif }