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
|
/* Copyright (c) 2021, Dyssol Development Team. All rights reserved. This file is part of Dyssol. See LICENSE file for license information. */
#include "ScriptJob.h"
using namespace ScriptInterface;
SScriptEntry* CScriptJob::AddEntry(const std::string& _key)
{
const auto descriptor = Key2Descriptor(_key);
if (descriptor.keyStr.empty()) return {};
return m_entries.emplace_back(std::make_unique<SScriptEntry>(descriptor)).get();
}
bool CScriptJob::HasKey(EScriptKeys _key) const
{
return std::any_of(m_entries.begin(), m_entries.end(), [&](const std::unique_ptr<SScriptEntry>& _e) { return _e->key == _key; });
}
std::vector<SScriptEntry*> CScriptJob::GetAllEntries() const
{
std::vector<SScriptEntry*> res;
for (const auto& e : m_entries)
res.push_back(e.get());
return res;
}
|