/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension::Extension() { SetExtensionInformation("ParticleSystem", _("Particle system"), _("Extension allowing to display a large number of small particles."), "Florian Rival", "Open source (MIT License)"); //Declaration of all objects available { gd::ObjectMetadata & obj = AddObject("ParticleEmitter", _("Particles emitter"), _("Displays a large number of small particles to create visual effects"), "CppPlatform/Extensions/particleSystemicon.png", &CreateParticleEmitterObject); AddRuntimeObject(obj, "RuntimeParticleEmitterObject", CreateRuntimeParticleEmitterObject); #if defined(GD_IDE_ONLY) obj.SetIncludeFile("ParticleSystem/ParticleEmitterObject.h"); //Declaration is too big to be compiled by GCC in one file, unless you have 4GB+ ram. :/ ExtensionSubDeclaration1(obj); ExtensionSubDeclaration2(obj); ExtensionSubDeclaration3(obj); #endif } GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { DeclareTextObjectExtension(*this); AddRuntimeObject(GetObjectMetadata("TextObject::Text"), "RuntimeTextObject", CreateRuntimeTextObject); GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { DeclarePanelSpriteObjectExtension(*this); AddRuntimeObject(GetObjectMetadata("PanelSpriteObject::PanelSprite"), "RuntimePanelSpriteObject", CreateRuntimePanelSpriteObject); GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
BaseObjectExtension::BaseObjectExtension() { gd::BuiltinExtensionsImplementer::ImplementsBaseObjectExtension(*this); gd::ObjectMetadata & obj = GetObjectMetadata(""); AddRuntimeObject(obj, "", &CreateBaseRuntimeObject); #if defined(GD_IDE_ONLY) std::map<gd::String, gd::InstructionMetadata > & objectActions = GetAllActionsForObject(""); std::map<gd::String, gd::InstructionMetadata > & objectConditions = GetAllConditionsForObject(""); std::map<gd::String, gd::ExpressionMetadata > & objectExpressions = GetAllExpressionsForObject(""); std::map<gd::String, gd::ExpressionMetadata > & objectStrExpressions = GetAllStrExpressionsForObject(""); objectConditions["PosX"].SetFunctionName("GetX").SetManipulatedType("number"); objectActions["MettreX"].SetFunctionName("SetX").SetManipulatedType("number").SetGetter("GetX"); objectConditions["PosY"].SetFunctionName("GetY").SetManipulatedType("number"); objectActions["MettreY"].SetFunctionName("SetY").SetManipulatedType("number").SetGetter("GetY"); objectActions["MettreXY"].SetFunctionName("SetXY"); objectConditions["Angle"].SetFunctionName("GetAngle"); objectActions["SetAngle"].SetFunctionName("SetAngle").SetManipulatedType("number").SetGetter("GetAngle"); objectActions["Rotate"].SetFunctionName("Rotate"); objectActions["RotateTowardAngle"].SetFunctionName("RotateTowardAngle"); objectActions["RotateTowardPosition"].SetFunctionName("RotateTowardPosition"); objectActions["MettreAutourPos"].SetFunctionName("PutAroundAPosition"); objectActions["AddForceXY"].SetFunctionName("AddForce"); objectActions["AddForceAL"].SetFunctionName("AddForceUsingPolarCoordinates"); objectActions["AddForceVersPos"].SetFunctionName("AddForceTowardPosition"); objectActions["AddForceTournePos"].SetFunctionName("AddForceToMoveAround"); objectActions["Arreter"].SetFunctionName("ClearForce"); objectActions["Delete"].SetFunctionName("DeleteFromScene"); objectActions["ChangePlan"].SetFunctionName("SetZOrder").SetGetter("GetZOrder").SetManipulatedType("number"); objectActions["ChangeLayer"].SetFunctionName("SetLayer"); objectActions["ModVarObjet"].SetFunctionName("ReturnVariable").SetManipulatedType("number"); objectActions["ModVarObjetTxt"].SetFunctionName("ReturnVariable").SetManipulatedType("string"); objectConditions["ObjectVariableChildExists"].SetFunctionName("VariableChildExists"); objectActions["ObjectVariableRemoveChild"].SetFunctionName("VariableRemoveChild"); objectActions["Cache"].SetFunctionName("SetHidden"); objectActions["Montre"].SetFunctionName("SetHidden"); objectConditions["Plan"].SetFunctionName("GetZOrder").SetManipulatedType("number"); objectConditions["Layer"].SetFunctionName("IsOnLayer"); objectConditions["Visible"].SetFunctionName("IsVisible"); objectConditions["Invisible"].SetFunctionName("IsHidden"); objectConditions["Arret"].SetFunctionName("IsStopped"); objectConditions["Vitesse"].SetFunctionName("TotalForceLength").SetManipulatedType("number"); objectConditions["AngleOfDisplacement"].SetFunctionName("TestAngleOfDisplacement"); objectConditions["VarObjet"].SetFunctionName("ReturnVariable").SetManipulatedType("number"); objectConditions["VarObjetTxt"].SetFunctionName("ReturnVariable").SetManipulatedType("string"); objectConditions["VarObjetDef"].SetFunctionName("VariableExists"); objectConditions["BehaviorActivated"].SetFunctionName("BehaviorActivated"); objectActions["ActivateBehavior"].SetFunctionName("ActivateBehavior"); objectActions["AddForceVers"].SetFunctionName("AddForceTowardObject").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectActions["AddForceTourne"].SetFunctionName("AddForceToMoveAroundObject").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectActions["MettreAutour"].SetFunctionName("PutAroundObject").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectActions["Rebondir"].SetFunctionName("SeparateObjectsWithForces").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectActions["Ecarter"].SetFunctionName("SeparateObjectsWithoutForces").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectActions["SeparateFromObjects"].SetFunctionName("SeparateFromObjects").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); objectExpressions["X"].SetFunctionName("GetX"); objectExpressions["Y"].SetFunctionName("GetY"); objectExpressions["ForceX"].SetFunctionName("TotalForceX"); objectExpressions["ForceY"].SetFunctionName("TotalForceY"); objectExpressions["ForceAngle"].SetFunctionName("TotalForceAngle"); objectExpressions["Angle"].SetFunctionName("GetAngle"); objectExpressions["ForceLength"].SetFunctionName("TotalForceLength"); objectExpressions["Longueur"].SetFunctionName("TotalForceLength"); objectExpressions["Width"].SetFunctionName("GetWidth"); objectExpressions["Largeur"].SetFunctionName("GetWidth"); objectExpressions["Height"].SetFunctionName("GetHeight"); objectExpressions["Hauteur"].SetFunctionName("GetHeight"); objectExpressions["ZOrder"].SetFunctionName("GetZOrder"); objectExpressions["Plan"].SetFunctionName("GetZOrder"); objectExpressions["Distance"].SetFunctionName("GetDistanceWithObject"); objectExpressions["SqDistance"].SetFunctionName("GetSqDistanceWithObject"); objectExpressions["Variable"].SetFunctionName("GetVariableValue").SetStatic(); objectStrExpressions["VariableString"].SetFunctionName("GetVariableString").SetStatic(); GetAllActions()["Create"].SetFunctionName("CreateObjectOnScene").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllActions()["CreateByName"].SetFunctionName("CreateObjectFromGroupOnScene").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllActions()["AjoutObjConcern"].SetFunctionName("PickAllObjects").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllActions()["AjoutHasard"].SetFunctionName("PickRandomObject").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllActions()["MoveObjects"].SetFunctionName("MoveObjects").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllConditions()["SeDirige"].SetFunctionName("MovesToward").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); GetAllConditions()["Distance"].SetFunctionName("DistanceBetweenObjects").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); GetAllConditions()["AjoutObjConcern"].SetFunctionName("PickAllObjects").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllConditions()["AjoutHasard"].SetFunctionName("PickRandomObject").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllConditions()["PickNearest"].SetFunctionName("PickNearestObject").SetIncludeFile("GDCpp/BuiltinExtensions/RuntimeSceneTools.h"); GetAllConditions()["NbObjet"].SetFunctionName("PickedObjectsCount").SetManipulatedType("number").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); GetAllConditions()["CollisionNP"].SetFunctionName("HitBoxesCollision").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); GetAllConditions()["EstTourne"].SetFunctionName("ObjectsTurnedToward").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); GetAllExpressions()["Count"].SetFunctionName("PickedObjectsCount").SetIncludeFile("GDCpp/BuiltinExtensions/ObjectTools.h"); #endif }
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { SetExtensionInformation("Box3DObject", _("3D Box Object"), _("Extension allowing to use 3D Box objects."), "Florian Rival", "Open source (MIT License)"); { gd::ObjectMetadata & obj = AddObject("Box3D", _("3D Box"), _("Displays a 3D Box"), "CppPlatform/Extensions/Box3Dicon.png", &CreateBox3DObject); AddRuntimeObject(obj, "RuntimeBox3DObject", &CreateRuntimeBox3DObject); #if defined(GD_IDE_ONLY) obj.SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Width", _("Width"), _("Modify the width of a 3D Box."), _("Do _PARAM1__PARAM2_ to the width of _PARAM0_"), _("Size"), "res/actions/scaleWidth24.png", "res/actions/scaleWidth.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetWidth").SetManipulatedType("number").SetGetter("GetWidth").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Width", _("Width"), _("Compare the width of a 3D Box."), _("width of _PARAM0_ is _PARAM1__PARAM2_"), _("Size"), "res/conditions/scaleWidth24.png", "res/conditions/scaleWidth.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetWidth").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Height", _("Height"), _("Modify the height of a 3D Box."), _("Do _PARAM1__PARAM2_ to the height of _PARAM0_"), _("Size"), "res/actions/scaleHeight24.png", "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetHeight").SetManipulatedType("number").SetGetter("GetHeight").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Height", _("Height"), _("Compare the height of a 3D Box."), _("height of _PARAM0_ is _PARAM1__PARAM2_"), _("Size"), "res/conditions/scaleHeight24.png", "res/conditions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("SetHeight").SetManipulatedType("number").SetGetter("GetHeight").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Depth", _("Depth"), _("Modify the depth of a 3D Box."), _("Do _PARAM1__PARAM2_ to the depth of _PARAM0_"), _("Size"), "res/actions/depth24.png", "res/actions/depth.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetDepth").SetManipulatedType("number").SetGetter("GetDepth").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Depth", _("Depth"), _("Compare the depth of a 3D Box."), _("depth of _PARAM0_ is _PARAM1__PARAM2_"), _("Size"), "res/conditions/depth24.png", "res/conditions/depth.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetDepth").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("ZPosition", _("Z Position"), _("Modify the Z Position of a 3D Box."), _("Do _PARAM1__PARAM2_ to the Z position of _PARAM0_"), _(""), "res/actions/position24.png", "res/actions/position.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetZPosition").SetManipulatedType("number").SetGetter("GetZPosition").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("ZPosition", _("Z Position"), _("Compare Z position of a 3D Box."), _("Z position of _PARAM0_ is _PARAM1__PARAM2_"), _(""), "res/conditions/position24.png", "res/conditions/position.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetZPosition").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Yaw", _("Yaw"), _("Modify Yaw of a 3D Box object."), _("Do _PARAM1__PARAM2_ to yaw of _PARAM0_"), _("Angle"), "res/actions/rotate24.png", "res/actions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetAngle").SetManipulatedType("number").SetGetter("GetAngle").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Yaw", _("Yaw"), _("Compare Yaw of a 3D Box object."), _("Yaw of _PARAM0_ is _PARAM1__PARAM2_"), _("Angle"), "res/conditions/rotate24.png", "res/conditions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetAngle").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Pitch", _("Pitch"), _("Modify Pitch of a 3D Box object."), _("Do _PARAM1__PARAM2_ to pitch of _PARAM0_"), _("Angle"), "res/actions/rotate24.png", "res/actions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetPitch").SetManipulatedType("number").SetGetter("GetPitch").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Pitch", _("Pitch"), _("Compare Pitch of a 3D Box object."), _("Pitch of _PARAM0_ is _PARAM1__PARAM2_"), _("Angle"), "res/conditions/rotate24.png", "res/conditions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetPitch").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddAction("Roll", _("Roll"), _("Modify Roll of a 3D Box object."), _("Do _PARAM1__PARAM2_ to roll of _PARAM0_"), _("Angle"), "res/actions/rotate24.png", "res/actions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetRoll").SetManipulatedType("number").SetGetter("GetRoll").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddCondition("Roll", _("Roll"), _("Compare Roll of a 3D Box object."), _("Roll of _PARAM0_ is _PARAM1__PARAM2_"), _("Angle"), "res/conditions/rotate24.png", "res/conditions/rotate.png") .AddParameter("object", _("Object"), "Box3D") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetRoll").SetManipulatedType("number").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddExpression("Depth", _("Depth of the 3D Box"), _("Depth of the 3D Box"), _("Size"), "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .codeExtraInformation.SetFunctionName("GetDepth").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddExpression("Z", _("Z Position"), _("Z Position"), _("Position"), "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .SetFunctionName("GetZPosition").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddExpression("Yaw", _("Yaw"), _("Yaw"), _("Angle"), "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .SetFunctionName("GetAngle").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddExpression("Pitch", _("Pitch"), _("Pitch"), _("Angle"), "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .SetFunctionName("GetPitch").SetIncludeFile("Box3DObject/Box3DObject.h"); obj.AddExpression("Roll", _("Roll"), _("Roll"), _("Angle"), "res/actions/scaleHeight.png") .AddParameter("object", _("Object"), "Box3D") .SetFunctionName("GetRoll").SetIncludeFile("Box3DObject/Box3DObject.h"); #endif } GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains : Objects, actions, conditions and expressions. */ Extension() { SetExtensionInformation("Light", _("Light"), _("Allow to display lights and use light obstacles."), "Florian Rival", "zlib/libpng License (Open Source)"); { gd::ObjectMetadata & obj = AddObject("Light", _("Light"), _("Emits light that can be stopped by objects"), "CppPlatform/Extensions/lightIcon32.png", &CreateLightObject, &DestroyLightObject); AddRuntimeObject(obj, "RuntimeLightObject", CreateRuntimeLightObject,DestroyRuntimeLightObject); #if defined(GD_IDE_ONLY) LightObject::LoadEdittimeIcon(); obj.SetIncludeFile("Light/LightObject.h"); obj.AddAction("ChangeColor", _("Color"), _("Change light color."), _("Change color of _PARAM0_ to _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("color", _("Color")) .codeExtraInformation.SetFunctionName("SetColor").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Intensity", _("Intensity"), _("Modify the intensity of a light"), _("Do _PARAM1__PARAM2_ to the intensity of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetIntensity").SetManipulatedType("number").SetAssociatedGetter("GetIntensity").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Intensity", _("Intensity"), _("Test the intensity of a light."), _("Intensity of _PARAM0_ is _PARAM1__PARAM2_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetIntensity").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Radius", _("Radius"), _("Modify the radius of a liht"), _("Do _PARAM1__PARAM2_ to radius of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetRadius").SetManipulatedType("number").SetAssociatedGetter("GetRadius").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Radius", _("Radius"), _("Test the radius of a light."), _("The radius of _PARAM0_ is _PARAM2_ _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetRadius").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Quality", _("Quality"), _("Modify the quality of a light"), _("Do _PARAM1__PARAM2_ to the quality of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetQuality").SetManipulatedType("number").SetAssociatedGetter("GetQuality").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Quality", _("Quality"), _("Test the quality of a light"), _("The quality of _PARAM0_ is _PARAM1__PARAM2_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetQuality").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("ChangeGlobalColor", _("Global color"), _("Change scene color for a global light."), _("Change scene global color of _PARAM0_ to _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("color", _("Color")) .codeExtraInformation.SetFunctionName("SetGlobalColor").SetIncludeFile("Light/LightObject.h"); obj.AddAction("SetGlobalLight", _("Make a light global"), _("Make a light global or simple."), _("Make _PARAM0_ global : _PARAM1_"), _("Light type"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .AddParameter("yesorno", _("Make light global")) .codeExtraInformation.SetFunctionName("SetGlobalLight").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("GlobalLight", _("A light is global"), _("Return true if light is global"), _("_PARAM0_ is a global light"), _("Light type"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .codeExtraInformation.SetFunctionName("IsGlobalLight").SetIncludeFile("Light/LightObject.h"); /* obj.AddAction("Angle", _("Change the angle"), _("Modify the angle of a Text object."), _("Do _PARAM1__PARAM2_ to the angle of _PARAM0_"), _("Rotation"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png", &LightObject::ActAngle) .AddParameter("object", _("Object"), "Light", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) obj.AddCondition("Angle", _("Angle d'un objet texte"), _("Test the value of the angle of a text object."), _("The angle of _PARAM0_ is _PARAM1__PARAM2_"), _("Rotation"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png", &LightObject::CondAngle) .AddParameter("object", _("Object"), "Light", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) */ obj.AddExpression("Intensity", _("Intensity"), _("Intensity"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .codeExtraInformation.SetFunctionName("GetIntensity").SetIncludeFile("Light/LightObject.h"); obj.AddExpression("Radius", _("Radius"), _("Radius"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .codeExtraInformation.SetFunctionName("GetRadius").SetIncludeFile("Light/LightObject.h"); obj.AddExpression("Quality", _("Quality"), _("Quality"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light", false) .codeExtraInformation.SetFunctionName("GetQuality").SetIncludeFile("Light/LightObject.h"); /* obj.AddExpression("Angle", _("Angle"), _("Angle"), _("Light"), "CppPlatform/Extensions/lightIcon16.png", &LightObject::ExpAngle) .AddParameter("object", _("Object"), "Light", false) */ #endif } { AddAutomatism("LightObstacleAutomatism", _("Light obstacle"), _("LightObstacle"), _("Mark the objects as obstacles for Light objects."), "", "CppPlatform/Extensions/lightObstacleicon32.png", "LightObstacleAutomatism", boost::shared_ptr<gd::Automatism>(new LightObstacleAutomatism), boost::shared_ptr<gd::AutomatismsSharedData>(new SceneLightObstacleDatas)); }; GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { SetExtensionInformation("SoundObject", _("Sound object"), _("Extension allowing to use spatialized sounds."), "Thomas Flecy, Victor Levasseur et al.", "Open source (MIT License)"); //Declaration of all objects available { gd::ObjectMetadata & obj = AddObject("Sound", _("Sound"), _("Invisible object emitting a sound which can be moved in the space."), "CppPlatform/Extensions/soundicon32.png", &CreateSoundObject); AddRuntimeObject(obj, "RuntimeSoundObject", CreateRuntimeSoundObject); #if defined(GD_IDE_ONLY) SoundObject::LoadEdittimeIcon(); obj.SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Volume", _("Sound level"), _("Modify the sound level of a Sound object."), _("Do _PARAM1__PARAM2_ to the sound level of _PARAM0_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetVolume").SetManipulatedType("number").SetAssociatedGetter("GetVolume").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Pitch", _("Pitch"), _("Change the pitch of a sound object."), _("Do _PARAM1__PARAM2_ to Pitch of _PARAM0_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetPitch").SetManipulatedType("number").SetAssociatedGetter("GetPitch").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Attenuation", _("Attenuation"), _("Change the attenuation of a sound object."), _("Do _PARAM1__PARAM2_ to the attenuation of _PARAM0_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetAttenuation").SetManipulatedType("number").SetAssociatedGetter("GetAttenuation").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("ZPos", _("Z Position"), _("Modify the sound level of a Sound object."), _("Do _PARAM1__PARAM2_ to the sound level of _PARAM0_"), _("Position"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetZPos").SetManipulatedType("number").SetAssociatedGetter("GetZPos").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Loop", _("Automatic restart"), _("Activate or desactivate the looping of a sound."), _("Activate looping for _PARAM0_: _PARAM1_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("yesorno", _("Loop")) .codeExtraInformation.SetFunctionName("SetLoop").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("RelativeToListener", _("Listener relation"), _("Activate or desactivate the sound spatialisation relative to the listener."), _("Set _PARAM0_ as relative to the listener position: _PARAM1_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("yesorno", _("Relative to the listener")) .codeExtraInformation.SetFunctionName("SetRelativeToListener").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Play", _("Play"), _("Play a sound."), _("Play sound _PARAM0_"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("Play").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Stop", _("Stop"), _("Stop a sound."), _("Stop _PARAM0_"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("Stop").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddAction("Pause", _("Pause"), _("Pause a sound."), _("Pause _PARAM0_"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("Pause").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Volume", _("Sound level"), _("Test the sound level of a Sound object."), _("Th sound level of _PARAM0_ is _PARAM2_ _PARAM1_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetVolume").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Pitch", _("Pitch"), _("Test the pitch value of a sound."), _("Pitch of _PARAM0_ is _PARAM1__PARAM2_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetPitch").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Attenuation", _("Attenuation"), _("Test the attenuation of a sound."), _("The attenuation of _PARAM0_ is _PARAM1__PARAM2_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetAttenuation").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("MinDistance", _("Minimal distance"), _("Test the minimal distance of a sound"), _("The minimal distance of _PARAM0_ is _PARAM1__PARAM2_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetMinDistance").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("ZPos", _("Z Position"), _("Test Z position of a sound."), _("The Z position of _PARAM0_ is _PARAM1__PARAM2_"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetZPos").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Loop", _("Automatic restart"), _("Test if an sound is looping."), _("_PARAM0_ is looping"), _("Parameters"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetLoop").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Playing", _("Being played"), _("Test if a sound is being played."), _("_PARAM0_ is being played"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("IsPlaying").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Paused", _("Paused"), _("A sound is paused"), _("_PARAM0_ is paused"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("IsPaused").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("Stopped", _("Stopped"), _("Test if a sound is stopped."), _("_PARAM0_ is stopped"), "", "res/actions/son24.png", "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("IsStopped").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddCondition("RelativeToListener", _("Listener relation"), _("Test if a sound is relative to the listener."), _("_PARAM0_ is relative to the listener"), _("Parameters"), "res/conditions/son24.png", "res/conditions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("IsRelativeToListener").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddExpression("Volume", _("Sound level"), _("Sound level"), _("Parameters"), "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetVolume").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddExpression("Pitch", _("Pitch"), _("Pitch"), _("Parameters"), "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetPitch").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddExpression("Attenuation", _("Attenuation"), _("Attenuation"), _("Parameters"), "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetAttenuation").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddExpression("MinDistance", _("Minimal distance"), _("Minimal distance"), _("Parameters"), "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetMinDistance").SetIncludeFile("SoundObject/SoundObject.h"); obj.AddExpression("ZPos", _("Z Position"), _("Z Position"), _("Position"), "res/actions/son.png") .AddParameter("object", _("Object"), "Sound", false) .codeExtraInformation.SetFunctionName("GetZPos").SetIncludeFile("SoundObject/SoundObject.h"); #endif } // Actions liées à l'écouteur #if defined(GD_IDE_ONLY) AddAction("ListenerX", _("X position"), _("Modify the X position of the listener."), _("Do _PARAM0__PARAM1_ to the X position of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerX").SetManipulatedType("number").SetAssociatedGetter("GetListenerX").SetIncludeFile("SoundObject/SoundListener.h"); AddAction("ListenerY", _("Y position"), _("Modify the Y position of the listener."), _("Do _PARAM0__PARAM1_ to the Y position of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerY").SetManipulatedType("number").SetAssociatedGetter("GetListenerY").SetIncludeFile("SoundObject/SoundListener.h"); AddAction("ListenerZ", _("Z position"), _("Modify the Z position of the listener."), _("Do _PARAM0__PARAM1_ to the Z position of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerZ").SetManipulatedType("number").SetAssociatedGetter("GetListenerZ").SetIncludeFile("SoundObject/SoundListener.h"); AddAction("ListenerDirectionX", _("Direction on X axis"), _("Change the direction of the listener on X axis."), _("Do _PARAM1__PARAM2_ to the direction on X axis of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerDirectionX").SetManipulatedType("number").SetAssociatedGetter("GetListenerDirectionX").SetIncludeFile("SoundObject/SoundListener.h"); AddAction("ListenerDirectionY", _("Direction on Y axis"), _("Change the direction of the listener on Y axis."), _("Do _PARAM1__PARAM2_ to the direction on Y axis of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerDirectionY").SetManipulatedType("number").SetAssociatedGetter("GetListenerDirectionY").SetIncludeFile("SoundObject/SoundListener.h"); AddAction("ListenerDirectionZ", _("Direction on Z axis"), _("Change the direction of the listener on Z axis."), _("Do _PARAM1__PARAM2_ to the direction on Z axis of the listener"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .codeExtraInformation.SetFunctionName("SetListenerDirectionZ").SetManipulatedType("number").SetAssociatedGetter("GetListenerDirectionZ").SetIncludeFile("SoundObject/SoundListener.h"); // Conditions liées à l'écouteur AddCondition("ListenerX", _("X position"), _("Test the position of the listener on X axis."), _("The listener X position is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerX").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddCondition("ListenerY", _("Y position"), _("Test the position of the listener on Y axis."), _("The listener Y position is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerY").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddCondition("ListenerZ", _("Z position"), _("Test the position of the listener on Z axis."), _("The listener Z position is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerZ").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddCondition("ListenerDirectionX", _("X direction"), _("Test the direction of the listener on X axis."), _("The listener X direction is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerDirectionX").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddCondition("ListenerDirectionY", _("Y direction"), _("Test the direction of the listener on Y axis."), _("The listener Y direction is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerDirectionY").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddCondition("ListenerDirectionZ", _("Z direction"), _("Test the direction of the listener on Z axis."), _("The listener Z direction is _PARAM1__PARAM0_"), _("Listener"), "res/actions/son24.png", "res/actions/son.png") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .codeExtraInformation.SetFunctionName("GetListenerDirectionZ").SetManipulatedType("number").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerX", _("X position"), _("Listener X position"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerX").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerY", _("Y position"), _("Listener Y position"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerY").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerZ", _("Z position"), _("Listener Z position"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerZ").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerDirectionX", _("Direction on X axis"), _("Listener x direction"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerDirectionX").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerDirectionY", _("Direction on Y axis"), _("Listener y direction"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerDirectionY").SetIncludeFile("SoundObject/SoundListener.h"); AddExpression("ListenerDirectionZ", _("Direction on Z axis"), _("Listener z direction"), _("Listener"), "res/actions/son.png") .codeExtraInformation.SetFunctionName("GetListenerDirectionZ").SetIncludeFile("SoundObject/SoundListener.h"); #endif GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { DeclarePrimitiveDrawingExtension(*this); AddRuntimeObject(GetObjectMetadata("PrimitiveDrawing::Drawer"), "RuntimeShapePainterObject", CreateRuntimeShapePainterObject); #if defined(GD_IDE_ONLY) AddAction("CopyImageOnAnother", _("Copy an image on another"), _("Copy an image on another.\nNote that the source image must be preferably kept loaded in memory."), _("Copy the image _PARAM1_ on _PARAM0_ at _PARAM2_;_PARAM3_"), _("Images"), "res/copy24.png", "res/copyicon.png") .AddParameter("string", _("Name of the image to modify")) .AddParameter("string", _("Name of the source image")) .AddParameter("expression", _("X position")) .AddParameter("expression", _("Y position")) .AddParameter("yesorno", _("Should the copy take in account the source transparency\?")) .AddCodeOnlyParameter("currentScene", "") .SetFunctionName("GDpriv::PrimitiveDrawingTools::CopyImageOnAnother").SetIncludeFile("PrimitiveDrawing/PrimitiveDrawingTools.h"); AddAction("CaptureScreen", _("Capture the screen"), _("Capture the screen and save it into the specified folder and/or\nin the specified image."), _("Capture the screen ( Save it in file _PARAM1_ and/or in image _PARAM2_ )"), _("Images"), "res/imageicon24.png", "res/imageicon.png") .AddCodeOnlyParameter("currentScene", "") .AddParameter("string", _("File where save capture"), "", true).SetDefaultValue("") .AddParameter("string", _("Name of the image where capture must be saved"), "", true).SetDefaultValue("") .SetFunctionName("GDpriv::PrimitiveDrawingTools::CaptureScreen").SetIncludeFile("PrimitiveDrawing/PrimitiveDrawingTools.h"); AddAction("CreateSFMLTexture", _("Create an image in memory"), _("Create an image in memory."), _("Create image _PARAM1_ in memory ( Width: _PARAM2_, Height: _PARAM3_, Color: _PARAM4_ )"), _("Images"), "res/imageicon24.png", "res/imageicon.png") .AddCodeOnlyParameter("currentScene", "") .AddParameter("string", _("Name of the image")) .AddParameter("expression", _("Width"), "", true) .AddParameter("expression", _("Height"), "", true) .AddParameter("color", _("Initial color"), "", true).SetDefaultValue("0;0;0") .SetFunctionName("GDpriv::PrimitiveDrawingTools::CreateSFMLTexture").SetIncludeFile("PrimitiveDrawing/PrimitiveDrawingTools.h"); AddAction("OpenSFMLTextureFromFile", _("Open an image from a file"), _("Load in memory an image from a file."), _("Load in memory file _PARAM1_ inside image _PARAM2_"), _("Images"), "res/imageicon24.png", "res/imageicon.png") .AddCodeOnlyParameter("currentScene", "") .AddParameter("file", _("File")) .AddParameter("string", _("Name of the image")) .SetFunctionName("GDpriv::PrimitiveDrawingTools::OpenSFMLTextureFromFile").SetIncludeFile("PrimitiveDrawing/PrimitiveDrawingTools.h"); AddAction("SaveSFMLTextureToFile", _("Save an image to a file"), _("Save an image to a file"), _("Save image _PARAM2_ to file _PARAM1_"), _("Images"), "res/imageicon24.png", "res/imageicon.png") .AddCodeOnlyParameter("currentScene", "") .AddParameter("file", _("File")) .AddParameter("string", _("Name of the image")) .SetFunctionName("GDpriv::PrimitiveDrawingTools::SaveSFMLTextureToFile").SetIncludeFile("PrimitiveDrawing/PrimitiveDrawingTools.h"); #endif GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };
/** * Constructor of an extension declares everything the extension contains: objects, actions, conditions and expressions. */ Extension() { SetExtensionInformation("Light", _("Light"), _("Allow to display lights and use light obstacles."), "Florian Rival", "Open source (MIT License)"); gd::ObjectMetadata & obj = AddObject("Light", _("Light"), _("Emits light that can be stopped by objects"), "CppPlatform/Extensions/lightIcon32.png", &CreateLightObject); AddRuntimeObject(obj, "RuntimeLightObject", CreateRuntimeLightObject); #if defined(GD_IDE_ONLY) LightObject::LoadEdittimeIcon(); obj.SetIncludeFile("Light/LightObject.h"); obj.AddAction("ChangeColor", _("Color"), _("Change light color."), _("Change color of _PARAM0_ to _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("color", _("Color")) .SetFunctionName("SetColor").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Intensity", _("Intensity"), _("Modify the intensity of a light"), _("Do _PARAM1__PARAM2_ to the intensity of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetIntensity").SetManipulatedType("number").SetGetter("GetIntensity").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Intensity", _("Intensity"), _("Test the intensity of a light."), _("Intensity of _PARAM0_ is _PARAM1__PARAM2_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetIntensity").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Radius", _("Radius"), _("Modify the radius of a light"), _("Do _PARAM1__PARAM2_ to radius of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetRadius").SetManipulatedType("number").SetGetter("GetRadius").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Radius", _("Radius"), _("Test the radius of a light."), _("The radius of _PARAM0_ is _PARAM2_ _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetRadius").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("Quality", _("Quality"), _("Modify the quality of a light"), _("Do _PARAM1__PARAM2_ to the quality of _PARAM0_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("operator", _("Modification's sign")) .AddParameter("expression", _("Value")) .SetFunctionName("SetQuality").SetManipulatedType("number").SetGetter("GetQuality").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("Quality", _("Quality"), _("Test the quality of a light"), _("The quality of _PARAM0_ is _PARAM1__PARAM2_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("relationalOperator", _("Sign of the test")) .AddParameter("expression", _("Value to test")) .SetFunctionName("GetQuality").SetManipulatedType("number").SetIncludeFile("Light/LightObject.h"); obj.AddAction("ChangeGlobalColor", _("Global color"), _("Change scene color for a global light."), _("Change scene global color of _PARAM0_ to _PARAM1_"), _("Setup"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("color", _("Color")) .SetFunctionName("SetGlobalColor").SetIncludeFile("Light/LightObject.h"); obj.AddAction("SetGlobalLight", _("Make a light global"), _("Make a light global or simple."), _("Make _PARAM0_ global : _PARAM1_"), _("Light type"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .AddParameter("yesorno", _("Make light global")) .SetFunctionName("SetGlobalLight").SetIncludeFile("Light/LightObject.h"); obj.AddCondition("GlobalLight", _("A light is global"), _("Return true if light is global"), _("_PARAM0_ is a global light"), _("Light type"), "CppPlatform/Extensions/lightIcon24.png", "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .SetFunctionName("IsGlobalLight").SetIncludeFile("Light/LightObject.h"); obj.AddExpression("Intensity", _("Intensity"), _("Intensity"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .SetFunctionName("GetIntensity").SetIncludeFile("Light/LightObject.h"); obj.AddExpression("Radius", _("Radius"), _("Radius"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .SetFunctionName("GetRadius").SetIncludeFile("Light/LightObject.h"); obj.AddExpression("Quality", _("Quality"), _("Quality"), _("Setup"), "CppPlatform/Extensions/lightIcon16.png") .AddParameter("object", _("Object"), "Light") .SetFunctionName("GetQuality").SetIncludeFile("Light/LightObject.h"); #endif AddBehavior("LightObstacleBehavior", _("Light obstacle"), _("LightObstacle"), _("Mark the objects as obstacles for Light objects."), "", "CppPlatform/Extensions/lightObstacleIcon32.png", "LightObstacleBehavior", std::shared_ptr<gd::Behavior>(new LightObstacleBehavior), std::shared_ptr<gd::BehaviorsSharedData>(new SceneLightObstacleDatas)); GD_COMPLETE_EXTENSION_COMPILATION_INFORMATION(); };