use strings to connect nodes

This makes the node system somewhat more high-level with the intent of making
working with them far more flexible and stable. By making the architecture more
abstracted, it becomes far less rigid which should allow us to do even more
with it and make it much less crash prone.
This commit is contained in:
itsmattkc
2021-02-09 15:48:37 +11:00
parent d1a3e22eaa
commit 81c1922911
138 changed files with 4487 additions and 3913 deletions
+5 -51
View File
@@ -18,16 +18,16 @@
***/
#ifndef VALUE_H
#define VALUE_H
#ifndef NODEVALUE_H
#define NODEVALUE_H
#include <QString>
#include <QVariant>
#include <QVector>
namespace olive {
class Node;
class NodeInput;
class NodeValue
{
@@ -374,59 +374,13 @@ public:
private:
int GetInternal(const QVector<NodeValue::Type> &type, const QString& tag) const;
QList<NodeValue> values_;
QVector<NodeValue> values_;
};
class NodeValueDatabase
{
public:
NodeValueDatabase() = default;
NodeValueTable& operator[](const QString& input_id)
{
return tables_[input_id];
}
NodeValueTable& operator[](const NodeInput* input);
void Insert(const QString& key, const NodeValueTable &value)
{
tables_.insert(key, value);
}
void Insert(const NodeInput* key, const NodeValueTable& value);
NodeValueTable Merge() const;
using const_iterator = QHash<QString, NodeValueTable>::const_iterator;
inline QHash<QString, NodeValueTable>::const_iterator begin() const
{
return tables_.cbegin();
}
inline QHash<QString, NodeValueTable>::const_iterator end() const
{
return tables_.cend();
}
inline bool contains(const QString& s) const
{
return tables_.contains(s);
}
private:
QHash<QString, NodeValueTable> tables_;
};
using NodeValueMap = QHash<QString, NodeValue>;
}
Q_DECLARE_METATYPE(olive::NodeValue)
Q_DECLARE_METATYPE(olive::NodeValueTable)
Q_DECLARE_METATYPE(olive::NodeValueDatabase)
#endif // VALUE_H
#endif // NODEVALUE_H