/* * GDevelop Core * Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights * reserved. This project is released under the MIT License. */ #include "PlatformManager.h" #include "GDCore/Extensions/Platform.h" namespace gd { PlatformManager* PlatformManager::_singleton = NULL; PlatformManager::PlatformManager() {} PlatformManager::~PlatformManager() {} bool PlatformManager::AddPlatform(std::shared_ptr newPlatform) { for (std::size_t i = 0; i < platformsLoaded.size(); ++i) { if (platformsLoaded[i]->GetName() == newPlatform->GetName()) return false; } platformsLoaded.push_back(newPlatform); return true; } gd::Platform* PlatformManager::GetPlatform( const gd::String& platformName) const { for (std::size_t i = 0; i < platformsLoaded.size(); ++i) { if (platformsLoaded[i]->GetName() == platformName) return platformsLoaded[i].get(); } return NULL; } } // namespace gd