amuse/Editor/ProjectModel.cpp

472 lines
14 KiB
C++
Raw Normal View History

#include <athena/FileWriter.hpp>
#include <athena/FileReader.hpp>
#include "ProjectModel.hpp"
#include "Common.hpp"
#include "athena/YAMLDocWriter.hpp"
2018-07-28 04:34:29 +00:00
#include "MainWindow.hpp"
#include <QUndoCommand>
2018-07-17 04:48:38 +00:00
QIcon ProjectModel::GroupNode::Icon;
QIcon ProjectModel::SongGroupNode::Icon;
QIcon ProjectModel::SoundGroupNode::Icon;
2018-07-28 04:34:29 +00:00
NullItemProxyModel::NullItemProxyModel(ProjectModel* source)
: QIdentityProxyModel(source)
{
setSourceModel(source);
}
QModelIndex NullItemProxyModel::mapFromSource(const QModelIndex& sourceIndex) const
{
if (!sourceIndex.isValid())
return QModelIndex();
if (sourceIndex.row() == sourceModel()->rowCount(sourceIndex.parent()))
return createIndex(0, sourceIndex.column(), sourceIndex.internalPointer());
return createIndex(sourceIndex.row() + 1, sourceIndex.column(), sourceIndex.internalPointer());
}
QModelIndex NullItemProxyModel::mapToSource(const QModelIndex& proxyIndex) const
{
if (!proxyIndex.isValid())
return QModelIndex();
return static_cast<ProjectModel*>(sourceModel())->
proxyCreateIndex(proxyIndex.row() - 1, proxyIndex.column(), proxyIndex.internalPointer());
}
int NullItemProxyModel::rowCount(const QModelIndex& parent) const
{
return QIdentityProxyModel::rowCount(parent) + 1;
}
QModelIndex NullItemProxyModel::index(int row, int column, const QModelIndex& parent) const
{
const QModelIndex sourceParent = mapToSource(parent);
const QModelIndex sourceIndex = sourceModel()->index(row - 1, column, sourceParent);
return mapFromSource(sourceIndex);
}
QVariant NullItemProxyModel::data(const QModelIndex& proxyIndex, int role) const
{
if (!proxyIndex.isValid() || proxyIndex.row() == 0)
return QVariant();
return QIdentityProxyModel::data(proxyIndex, role);
}
ProjectModel::INode::INode(INode* parent, int row) : m_parent(parent), m_row(row)
{
2018-07-30 06:20:03 +00:00
auto nullNode = amuse::MakeObj<NullNode>(this);
m_nullChild = nullNode.get();
2018-07-28 04:34:29 +00:00
}
ProjectModel::CollectionNode* ProjectModel::GroupNode::getCollectionOfType(Type tp) const
{
for (auto it = m_children.rbegin(); it != m_children.rend(); ++it)
{
if ((*it)->type() == Type::Collection)
{
CollectionNode* col = static_cast<CollectionNode*>(it->get());
if (col->collectionType() == tp)
return col;
}
}
return nullptr;
}
int ProjectModel::CollectionNode::indexOfId(amuse::ObjectId id) const
{
int ret = 0;
for (auto& n : m_children)
{
if (static_cast<BasePoolObjectNode*>(n.get())->id() == id)
return ret;
++ret;
}
return -1;
}
amuse::ObjectId ProjectModel::CollectionNode::idOfIndex(int idx) const
{
return static_cast<BasePoolObjectNode*>(m_children[idx].get())->id();
}
ProjectModel::BasePoolObjectNode* ProjectModel::CollectionNode::nodeOfIndex(int idx) const
{
return static_cast<BasePoolObjectNode*>(m_children[idx].get());
}
ProjectModel::ProjectModel(const QString& path, QObject* parent)
2018-07-28 04:34:29 +00:00
: QAbstractItemModel(parent), m_dir(path), m_nullProxy(this)
{
2018-07-30 06:20:03 +00:00
m_root = amuse::MakeObj<RootNode>();
2018-07-17 04:48:38 +00:00
GroupNode::Icon = QIcon(":/icons/IconGroup.svg");
SongGroupNode::Icon = QIcon(":/icons/IconSongGroup.svg");
SoundGroupNode::Icon = QIcon(":/icons/IconSoundGroup.svg");
}
2018-07-18 07:39:26 +00:00
bool ProjectModel::clearProjectData()
{
m_projectDatabase = amuse::ProjectDatabase();
m_groups.clear();
m_needsReset = true;
return true;
}
bool ProjectModel::openGroupData(const QString& groupName, UIMessenger& messenger)
{
m_projectDatabase.setIdDatabases();
QString path = QFileInfo(m_dir, groupName).filePath();
m_groups.insert(std::make_pair(groupName, QStringToSysString(path)));
m_needsReset = true;
return true;
}
2018-07-29 03:37:06 +00:00
bool ProjectModel::reloadSampleData(const QString& groupName, UIMessenger& messenger)
{
m_projectDatabase.setIdDatabases();
QString path = QFileInfo(m_dir, groupName).filePath();
auto search = m_groups.find(groupName);
if (search != m_groups.end())
{
search->second.setIdDatabases();
search->second.getSdir().reloadSampleData(QStringToSysString(path));
}
m_needsReset = true;
return true;
}
2018-07-17 04:48:38 +00:00
bool ProjectModel::importGroupData(const QString& groupName, const amuse::AudioGroupData& data,
ImportMode mode, UIMessenger& messenger)
{
2018-07-17 04:48:38 +00:00
m_projectDatabase.setIdDatabases();
2018-07-17 04:48:38 +00:00
amuse::AudioGroupDatabase& grp = m_groups.insert(std::make_pair(groupName, data)).first->second;
2018-07-17 04:48:38 +00:00
if (!MkPath(m_dir.path(), messenger))
return false;
QDir dir(QFileInfo(m_dir, groupName).filePath());
if (!MkPath(dir.path(), messenger))
return false;
2018-07-17 04:48:38 +00:00
amuse::SystemString sysDir = QStringToSysString(dir.path());
2018-08-03 03:45:48 +00:00
grp.setGroupPath(sysDir);
2018-07-17 04:48:38 +00:00
switch (mode)
{
2018-07-17 04:48:38 +00:00
case ImportMode::Original:
grp.getSdir().extractAllCompressed(sysDir, data.getSamp());
break;
case ImportMode::WAVs:
grp.getSdir().extractAllWAV(sysDir, data.getSamp());
break;
case ImportMode::Both:
grp.getSdir().extractAllWAV(sysDir, data.getSamp());
grp.getSdir().extractAllCompressed(sysDir, data.getSamp());
break;
default:
break;
2018-07-16 07:41:15 +00:00
}
2018-07-17 04:48:38 +00:00
grp.getProj().toYAML(sysDir);
grp.getPool().toYAML(sysDir);
m_needsReset = true;
2018-07-16 07:41:15 +00:00
return true;
}
2018-07-17 04:48:38 +00:00
bool ProjectModel::saveToFile(UIMessenger& messenger)
2018-07-16 07:41:15 +00:00
{
2018-07-17 04:48:38 +00:00
m_projectDatabase.setIdDatabases();
2018-07-16 07:41:15 +00:00
2018-07-17 04:48:38 +00:00
if (!MkPath(m_dir.path(), messenger))
2018-07-16 07:41:15 +00:00
return false;
for (auto& g : m_groups)
{
QDir dir(QFileInfo(m_dir, g.first).filePath());
2018-07-17 04:48:38 +00:00
if (!MkPath(dir.path(), messenger))
2018-07-16 07:41:15 +00:00
return false;
g.second.setIdDatabases();
amuse::SystemString groupPath = QStringToSysString(dir.path());
2018-07-17 04:48:38 +00:00
g.second.getProj().toYAML(groupPath);
g.second.getPool().toYAML(groupPath);
}
return true;
}
2018-07-17 04:48:38 +00:00
void ProjectModel::_resetModelData()
{
beginResetModel();
m_projectDatabase.setIdDatabases();
2018-07-30 06:20:03 +00:00
m_root = amuse::MakeObj<RootNode>();
2018-07-17 04:48:38 +00:00
m_root->reserve(m_groups.size());
for (auto it = m_groups.begin() ; it != m_groups.end() ; ++it)
{
it->second.setIdDatabases();
GroupNode& gn = m_root->makeChild<GroupNode>(it);
2018-07-18 07:39:26 +00:00
amuse::AudioGroup& group = it->second;
auto& songGroups = group.getProj().songGroups();
auto& sfxGroups = group.getProj().sfxGroups();
auto& soundMacros = group.getPool().soundMacros();
auto& tables = group.getPool().tables();
auto& keymaps = group.getPool().keymaps();
auto& layers = group.getPool().layers();
2018-07-29 03:37:06 +00:00
auto& samples = group.getSdir().sampleEntries();
2018-07-17 04:48:38 +00:00
gn.reserve(songGroups.size() + sfxGroups.size() + 4);
for (const auto& grp : SortUnorderedMap(songGroups))
gn.makeChild<SongGroupNode>(grp.first, grp.second.get());
for (const auto& grp : SortUnorderedMap(sfxGroups))
gn.makeChild<SoundGroupNode>(grp.first, grp.second.get());
{
CollectionNode& col =
2018-07-28 04:34:29 +00:00
gn.makeChild<CollectionNode>(tr("Sound Macros"), QIcon(":/icons/IconSoundMacro.svg"), INode::Type::SoundMacro);
2018-07-17 04:48:38 +00:00
col.reserve(soundMacros.size());
for (const auto& macro : SortUnorderedMap(soundMacros))
2018-07-18 07:39:26 +00:00
col.makeChild<SoundMacroNode>(macro.first, macro.second.get());
2018-07-17 04:48:38 +00:00
}
{
auto tablesSort = SortUnorderedMap(tables);
size_t ADSRCount = 0;
size_t curveCount = 0;
for (auto& t : tablesSort)
{
2018-07-29 03:37:06 +00:00
amuse::ITable::Type tp = (*t.second.get())->Isa();
2018-07-17 04:48:38 +00:00
if (tp == amuse::ITable::Type::ADSR || tp == amuse::ITable::Type::ADSRDLS)
ADSRCount += 1;
else if (tp == amuse::ITable::Type::Curve)
curveCount += 1;
}
{
CollectionNode& col =
2018-07-28 04:34:29 +00:00
gn.makeChild<CollectionNode>(tr("ADSRs"), QIcon(":/icons/IconADSR.svg"), INode::Type::ADSR);
2018-07-17 04:48:38 +00:00
col.reserve(ADSRCount);
for (auto& t : tablesSort)
{
2018-07-29 03:37:06 +00:00
amuse::ITable::Type tp = (*t.second.get())->Isa();
2018-07-17 04:48:38 +00:00
if (tp == amuse::ITable::Type::ADSR || tp == amuse::ITable::Type::ADSRDLS)
col.makeChild<ADSRNode>(t.first, t.second.get());
2018-07-17 04:48:38 +00:00
}
}
{
CollectionNode& col =
2018-07-28 04:34:29 +00:00
gn.makeChild<CollectionNode>(tr("Curves"), QIcon(":/icons/IconCurve.svg"), INode::Type::Curve);
2018-07-17 04:48:38 +00:00
col.reserve(curveCount);
for (auto& t : tablesSort)
{
2018-07-29 03:37:06 +00:00
amuse::ITable::Type tp = (*t.second.get())->Isa();
2018-07-17 04:48:38 +00:00
if (tp == amuse::ITable::Type::Curve)
2018-07-29 03:37:06 +00:00
col.makeChild<CurveNode>(t.first, t.second.get());
2018-07-17 04:48:38 +00:00
}
}
}
{
CollectionNode& col =
2018-07-28 04:34:29 +00:00
gn.makeChild<CollectionNode>(tr("Keymaps"), QIcon(":/icons/IconKeymap.svg"), INode::Type::Keymap);
2018-07-17 04:48:38 +00:00
col.reserve(keymaps.size());
for (auto& keymap : SortUnorderedMap(keymaps))
2018-07-18 07:39:26 +00:00
col.makeChild<KeymapNode>(keymap.first, keymap.second.get());
2018-07-17 04:48:38 +00:00
}
{
CollectionNode& col =
2018-07-28 04:34:29 +00:00
gn.makeChild<CollectionNode>(tr("Layers"), QIcon(":/icons/IconLayers.svg"), INode::Type::Layer);
2018-07-17 04:48:38 +00:00
col.reserve(layers.size());
for (auto& keymap : SortUnorderedMap(layers))
2018-07-18 07:39:26 +00:00
col.makeChild<LayersNode>(keymap.first, keymap.second.get());
2018-07-17 04:48:38 +00:00
}
2018-07-29 03:37:06 +00:00
{
CollectionNode& col =
gn.makeChild<CollectionNode>(tr("Samples"), QIcon(":/icons/IconSample.svg"), INode::Type::Sample);
col.reserve(samples.size());
for (auto& sample : SortUnorderedMap(samples))
col.makeChild<SampleNode>(sample.first, sample.second.get());
}
2018-07-17 04:48:38 +00:00
}
endResetModel();
}
2018-08-03 03:45:48 +00:00
bool ProjectModel::ensureModelData()
2018-07-17 04:48:38 +00:00
{
if (m_needsReset)
{
_resetModelData();
m_needsReset = false;
}
2018-08-03 03:45:48 +00:00
return !m_groups.empty();
2018-07-17 04:48:38 +00:00
}
2018-07-28 04:34:29 +00:00
QModelIndex ProjectModel::proxyCreateIndex(int arow, int acolumn, void *adata) const
{
if (arow < 0)
{
INode* childItem = static_cast<INode*>(adata);
return createIndex(childItem->parent()->childCount(), acolumn, adata);
}
return createIndex(arow, acolumn, adata);
}
QModelIndex ProjectModel::index(int row, int column, const QModelIndex& parent) const
{
2018-07-28 04:34:29 +00:00
if (row < 0)
{
INode* parentItem;
if (!parent.isValid())
parentItem = m_root.get();
else
parentItem = static_cast<INode*>(parent.internalPointer());
INode* childItem = parentItem->nullChild();
return createIndex(childItem->row(), column, childItem);
}
2018-07-17 04:48:38 +00:00
if (!hasIndex(row, column, parent))
return QModelIndex();
INode* parentItem;
if (!parent.isValid())
parentItem = m_root.get();
else
parentItem = static_cast<INode*>(parent.internalPointer());
INode* childItem = parentItem->child(row);
if (childItem)
return createIndex(row, column, childItem);
else
return QModelIndex();
}
2018-07-28 04:34:29 +00:00
QModelIndex ProjectModel::index(INode* node) const
{
if (node == m_root.get())
return QModelIndex();
return createIndex(node->row(), 0, node);
}
2018-07-17 04:48:38 +00:00
QModelIndex ProjectModel::parent(const QModelIndex& index) const
{
2018-07-17 04:48:38 +00:00
if (!index.isValid())
return QModelIndex();
INode* childItem = static_cast<INode*>(index.internalPointer());
INode* parentItem = childItem->parent();
if (parentItem == m_root.get())
return QModelIndex();
return createIndex(parentItem->row(), 0, parentItem);
}
int ProjectModel::rowCount(const QModelIndex& parent) const
{
2018-07-17 04:48:38 +00:00
INode* parentItem;
if (!parent.isValid())
parentItem = m_root.get();
else
parentItem = static_cast<INode*>(parent.internalPointer());
return parentItem->childCount();
}
int ProjectModel::columnCount(const QModelIndex& parent) const
{
2018-07-17 04:48:38 +00:00
return 1;
}
QVariant ProjectModel::data(const QModelIndex& index, int role) const
{
2018-07-17 04:48:38 +00:00
if (!index.isValid())
return QVariant();
INode* item = static_cast<INode*>(index.internalPointer());
switch (role)
{
case Qt::DisplayRole:
return item->text();
case Qt::DecorationRole:
return item->icon();
default:
return {};
}
}
Qt::ItemFlags ProjectModel::flags(const QModelIndex& index) const
{
if (!index.isValid())
return 0;
2018-07-28 04:34:29 +00:00
return static_cast<INode*>(index.internalPointer())->flags();
}
2018-07-18 07:39:26 +00:00
ProjectModel::INode* ProjectModel::node(const QModelIndex& index) const
{
if (!index.isValid())
2018-07-28 04:34:29 +00:00
return m_root.get();
2018-07-18 07:39:26 +00:00
return static_cast<INode*>(index.internalPointer());
}
2018-07-28 04:34:29 +00:00
ProjectModel::GroupNode* ProjectModel::getGroupNode(INode* node) const
{
2018-07-28 04:34:29 +00:00
if (!node)
return nullptr;
if (node->type() == INode::Type::Group)
return static_cast<GroupNode*>(node);
return getGroupNode(node->parent());
}
2018-07-28 04:34:29 +00:00
bool ProjectModel::canEdit(const QModelIndex& index) const
{
2018-07-28 04:34:29 +00:00
if (!index.isValid())
return false;
return (static_cast<INode*>(index.internalPointer())->flags() & Qt::ItemIsSelectable) != Qt::NoItemFlags;
}
class DeleteNodeUndoCommand : public QUndoCommand
{
QModelIndex m_deleteIdx;
2018-07-30 06:20:03 +00:00
amuse::ObjToken<ProjectModel::INode> m_node;
2018-07-28 04:34:29 +00:00
public:
DeleteNodeUndoCommand(const QModelIndex& index)
: QUndoCommand(QUndoStack::tr("Delete %1").arg(index.data().toString())), m_deleteIdx(index) {}
void undo()
{
g_MainWindow->projectModel()->_undoDel(m_deleteIdx, std::move(m_node));
m_node.reset();
}
void redo()
{
m_node = g_MainWindow->projectModel()->_redoDel(m_deleteIdx);
}
};
2018-07-30 06:20:03 +00:00
void ProjectModel::_undoDel(const QModelIndex& index, amuse::ObjToken<ProjectModel::INode> n)
2018-07-28 04:34:29 +00:00
{
beginInsertRows(index.parent(), index.row(), index.row());
node(index.parent())->insertChild(index.row(), std::move(n));
endInsertRows();
}
2018-07-30 06:20:03 +00:00
amuse::ObjToken<ProjectModel::INode> ProjectModel::_redoDel(const QModelIndex& index)
2018-07-28 04:34:29 +00:00
{
node(index)->depthTraverse([](INode* node)
{
g_MainWindow->aboutToDeleteNode(node);
return true;
});
beginRemoveRows(index.parent(), index.row(), index.row());
2018-07-30 06:20:03 +00:00
amuse::ObjToken<ProjectModel::INode> ret = node(index.parent())->removeChild(index.row());
2018-07-28 04:34:29 +00:00
endRemoveRows();
return ret;
}
void ProjectModel::del(const QModelIndex& index)
{
if (!index.isValid())
return;
g_MainWindow->pushUndoCommand(new DeleteNodeUndoCommand(index));
}