Files
GDevelop/Extensions/Function/FunctionEvent.h
T
Florian 9f2ddc45e5 Exchanged all french messages with their English counterparts.
git-svn-id: svn://localhost@843 8062f311-0dae-4547-b526-b8ab9ac864a5
2012-09-20 19:55:21 +00:00

133 lines
5.4 KiB
C++

/**
Game Develop - Function Extension
Copyright (c) 2008-2012 Florian Rival (Florian.Rival@gmail.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#if defined(GD_IDE_ONLY)
#ifndef FUNCTIONEVENT_H
#define FUNCTIONEVENT_H
#include "GDCore/Events/Event.h"
#include "GDL/CommonTools.h"
class RuntimeScene;
namespace gd { class Instruction; }
class TiXmlElement;
class EventsEditorItemsAreas;
class EventsEditorSelection;
class Scene;
namespace gd { class MainFrameWrapper; }
class wxWindow;
/**
* Function event is an event which is executed by an action ( This action can pass to the function parameters and objects concerned )
* Functions are referenced in a (static) std::map so as to let action call them.
*/
class GD_EXTENSION_API FunctionEvent : public gd::BaseEvent
{
public:
FunctionEvent();
FunctionEvent(const FunctionEvent & event);
virtual ~FunctionEvent() {};
FunctionEvent& operator=(const FunctionEvent & event);
virtual gd::BaseEventSPtr Clone() const { return boost::shared_ptr<gd::BaseEvent>(new FunctionEvent(*this));}
virtual bool IsExecutable() const {return true;}
virtual std::string GenerateEventCode(Game & game, Scene & scene, EventsCodeGenerator & codeGenerator, EventsCodeGenerationContext & callerContext);
virtual bool CanHaveSubEvents() const {return true;}
virtual const std::vector < gd::BaseEventSPtr > & GetSubEvents() const {return events;};
virtual std::vector < gd::BaseEventSPtr > & GetSubEvents() {return events;};
void SetSubEvents(std::vector < gd::BaseEventSPtr > & subEvents_) {events = subEvents_;};
const std::vector < gd::Instruction > & GetConditions() const { return conditions; };
std::vector < gd::Instruction > & GetConditions() { return conditions; };
void SetConditions(std::vector < gd::Instruction > & conditions_) { conditions = conditions_; };
const std::vector < gd::Instruction > & GetActions() const { return actions; };
std::vector < gd::Instruction > & GetActions() { return actions; };
void SetActions(std::vector < gd::Instruction > & actions_) { actions = actions_; };
std::string GetName() const { return name; };
void SetName(std::string name_) { name = name_; };
const std::string & GetObjectsPassedAsArgument() const { return objectsPassedAsArgument; };
void SetObjectsPassedAsArgument(const std::string & objects) { objectsPassedAsArgument = objects; };
virtual std::vector < std::vector<gd::Instruction>* > GetAllConditionsVectors();
virtual std::vector < std::vector<gd::Instruction>* > GetAllActionsVectors();
virtual void SaveToXml(TiXmlElement * eventElem) const;
virtual void LoadFromXml(const TiXmlElement * eventElem);
/**
* Called by event editor to draw the event.
*/
virtual void Render(wxDC & dc, int x, int y, unsigned int width, EventsEditorItemsAreas & areas, EventsEditorSelection & selection);
/**
* Must return the height of the event when rendered
*/
virtual unsigned int GetRenderedHeight(unsigned int width) const;
/**
* Called when the user want to edit the event
*/
virtual EditEventReturnType EditEvent(wxWindow* parent_, Game & game_, Scene & scene_, gd::MainFrameWrapper & mainFrameWrapper_);
/**
* Tool function to generate an unique C++ name for a function.
*/
static std::string MangleFunctionName(FunctionEvent & functionEvent) { return "GDFunction"+functionEvent.GetName()+ToString(&functionEvent); };
/**
* Tool function to search for a function event in an event list.
*/
static boost::shared_ptr<FunctionEvent> SearchForFunctionInEvents(const std::vector < boost::shared_ptr<gd::BaseEvent> > & events, const std::string & functionName);
/**
* Tool function to list function events in an event list.
*/
static std::vector< boost::shared_ptr<FunctionEvent> > GetAllFunctionsInEvents(const std::vector < boost::shared_ptr<gd::BaseEvent> > & events);
static const std::string globalDeclaration;
private:
void Init(const FunctionEvent & event);
std::string name;
std::string objectsPassedAsArgument;
std::vector < gd::Instruction > conditions;
std::vector < gd::Instruction > actions;
std::vector < gd::BaseEventSPtr > events;
bool nameSelected;
};
#endif // FUNCTIONEVENT_H
#endif