summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/camera/factory.cpp
blob: 4b4da50dda579b2238344e09f4d0ca000f31119a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2016 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include <unordered_map>
#include "common/logging/log.h"
#include "core/frontend/camera/blank_camera.h"
#include "core/frontend/camera/factory.h"

namespace Camera {

static std::unordered_map<std::string, std::unique_ptr<CameraFactory>> factories;

CameraFactory::~CameraFactory() = default;

void RegisterFactory(const std::string& name, std::unique_ptr<CameraFactory> factory) {
    factories[name] = std::move(factory);
}

std::unique_ptr<CameraInterface> CreateCamera(const std::string& name, const std::string& config) {
    auto pair = factories.find(name);
    if (pair != factories.end()) {
        return pair->second->Create(config);
    }

    if (name != "blank") {
        LOG_ERROR(Service_CAM, "Unknown camera \"%s\"", name.c_str());
    }
    return std::make_unique<BlankCamera>();
}

} // namespace Camera