1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-29 01:35:06 +01:00
Files
OpenRCT2/src/openrct2/TrackImporter.cpp
73 b9e677945d Replace 20XX with 2022 (#18158)
* Replace 2020 with 2022

Replace all 2020 headers with 2022

* replace other years with 2022

add missing years
2022-10-01 08:42:14 +01:00

39 lines
1.1 KiB
C++

/*****************************************************************************
* Copyright (c) 2014-2022 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#include "TrackImporter.h"
#include "core/Path.hpp"
#include "core/String.hpp"
#include <memory>
namespace TrackImporter
{
std::unique_ptr<ITrackImporter> Create(const std::string& hintPath)
{
std::unique_ptr<ITrackImporter> trackImporter;
std::string extension = Path::GetExtension(hintPath);
if (ExtensionIsRCT1(extension))
{
trackImporter = CreateTD4();
}
else
{
trackImporter = CreateTD6();
}
return trackImporter;
}
bool ExtensionIsRCT1(const std::string& extension)
{
return String::Equals(extension, ".td4", true);
}
} // namespace TrackImporter