mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 10:05:37 -04:00
35 lines
1.3 KiB
C++
35 lines
1.3 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-present Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#include "EventsFunctionTools.h"
|
|
#include "GDCore/Events/Expression.h"
|
|
#include "GDCore/Extensions/Metadata/ParameterMetadataTools.h"
|
|
#include "GDCore/Project/EventsFunction.h"
|
|
#include "GDCore/Project/Object.h"
|
|
#include "GDCore/Project/ObjectsContainer.h"
|
|
#include "GDCore/Project/Project.h"
|
|
#include "GDCore/String.h"
|
|
|
|
namespace gd {
|
|
void EventsFunctionTools::EventsFunctionToObjectsContainer(
|
|
gd::Project& project,
|
|
const gd::EventsFunction& eventsFunction,
|
|
gd::ObjectsContainer& outputGlobalObjectsContainer,
|
|
gd::ObjectsContainer& outputObjectsContainer) {
|
|
// Functions don't have access to objects from the "outer" scope.
|
|
outputGlobalObjectsContainer.GetObjects().clear();
|
|
outputGlobalObjectsContainer.GetObjectGroups().Clear();
|
|
|
|
// Functions scope for objects is defined according
|
|
// to parameters
|
|
outputObjectsContainer.GetObjects().clear();
|
|
outputObjectsContainer.GetObjectGroups().Clear();
|
|
gd::ParameterMetadataTools::ParametersToObjectsContainer(
|
|
project, eventsFunction.GetParameters(), outputObjectsContainer);
|
|
outputObjectsContainer.GetObjectGroups() = eventsFunction.GetObjectGroups();
|
|
}
|
|
|
|
} // namespace gd
|