本文整理汇总了C++中gd::EventsCodeGenerator::GenerateObjectsDeclarationCode方法的典型用法代码示例。如果您正苦于以下问题:C++ EventsCodeGenerator::GenerateObjectsDeclarationCode方法的具体用法?C++ EventsCodeGenerator::GenerateObjectsDeclarationCode怎么用?C++ EventsCodeGenerator::GenerateObjectsDeclarationCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gd::EventsCodeGenerator
的用法示例。
在下文中一共展示了EventsCodeGenerator::GenerateObjectsDeclarationCode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Generate
virtual std::string Generate(gd::BaseEvent & event_, gd::EventsCodeGenerator & codeGenerator,
gd::EventsCodeGenerationContext & /* The function has nothing to do with the current context */)
{
FunctionEvent & event = dynamic_cast<FunctionEvent&>(event_);
//Declaring the pointer to the function parameters
codeGenerator.AddGlobalDeclaration(event.globalDeclaration);
//Declaring function prototype.
codeGenerator.AddGlobalDeclaration("void "+FunctionEvent::MangleFunctionName(event)+"(RuntimeContext *, std::map <std::string, std::vector<RuntimeObject*> *>);\n");
//Generating function code:
std::string functionCode;
functionCode += "\nvoid "+FunctionEvent::MangleFunctionName(event)+"(RuntimeContext * runtimeContext, std::map <std::string, std::vector<RuntimeObject*> *> objectsListsMap)\n{\n";
gd::EventsCodeGenerationContext callerContext;
{
std::vector<std::string> realObjects = codeGenerator.ExpandObjectsName(event.GetObjectsPassedAsArgument(), callerContext);
for (unsigned int i = 0;i<realObjects.size();++i)
{
callerContext.EmptyObjectsListNeeded(realObjects[i]);
functionCode += "std::vector<RuntimeObject*> "+ManObjListName(realObjects[i]) + ";\n";
functionCode += "if ( objectsListsMap[\""+realObjects[i]+"\"] != NULL ) "+ManObjListName(realObjects[i])+" = *objectsListsMap[\""+realObjects[i]+"\"];\n";
}
}
functionCode += "{";
gd::EventsCodeGenerationContext context;
context.InheritsFrom(callerContext);
//Generating function body code
std::string conditionsCode = codeGenerator.GenerateConditionsListCode(event.GetConditions(), context);
std::string actionsCode = codeGenerator.GenerateActionsListCode(event.GetActions(), context);
std::string subeventsCode = codeGenerator.GenerateEventsListCode(event.GetSubEvents(), context);
functionCode += codeGenerator.GenerateObjectsDeclarationCode(context);
std::string ifPredicat = "true";
for (unsigned int i = 0;i<event.GetConditions().size();++i)
ifPredicat += " && condition"+ToString(i)+"IsTrue";
functionCode += conditionsCode;
functionCode += "if (" +ifPredicat+ ")\n";
functionCode += "{\n";
functionCode += actionsCode;
if ( event.HasSubEvents() ) //Sub events
{
functionCode += "\n{\n";
functionCode += subeventsCode;
functionCode += "}\n";
}
functionCode += "}\n";
functionCode += "}\n"; //Context end
functionCode += "}\n"; //Function end
codeGenerator.AddCustomCodeOutsideMain(functionCode);
return "";
}