mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.2 KiB
C++
106 lines
3.2 KiB
C++
#include "startscriptcreator.hpp"
|
|
|
|
#include <QLabel>
|
|
|
|
#include <memory>
|
|
|
|
#include <apps/opencs/model/world/columnbase.hpp>
|
|
#include <apps/opencs/model/world/idcollection.hpp>
|
|
#include <apps/opencs/view/world/genericcreator.hpp>
|
|
|
|
#include "../../model/doc/document.hpp"
|
|
|
|
#include "../../model/world/columns.hpp"
|
|
#include "../../model/world/data.hpp"
|
|
#include "../../model/world/idcompletionmanager.hpp"
|
|
#include "../../model/world/idtable.hpp"
|
|
|
|
#include "../widget/droplineedit.hpp"
|
|
|
|
class QUndoStack;
|
|
|
|
std::string CSVWorld::StartScriptCreator::getId() const
|
|
{
|
|
return mScript->text().toUtf8().constData();
|
|
}
|
|
|
|
CSMWorld::IdTable& CSVWorld::StartScriptCreator::getStartScriptsTable() const
|
|
{
|
|
return dynamic_cast<CSMWorld::IdTable&>(*getData().getTableModel(getCollectionId()));
|
|
}
|
|
|
|
CSVWorld::StartScriptCreator::StartScriptCreator(CSMWorld::Data& data, QUndoStack& undoStack,
|
|
const CSMWorld::UniversalId& id, CSMWorld::IdCompletionManager& completionManager)
|
|
: GenericCreator(data, undoStack, id)
|
|
{
|
|
setManualEditing(false);
|
|
|
|
// Add script ID input label.
|
|
QLabel* label = new QLabel("Script", this);
|
|
insertBeforeButtons(label, false);
|
|
|
|
// Add script ID input with auto-completion.
|
|
// Only existing script IDs are accepted so no ID validation is performed.
|
|
CSMWorld::ColumnBase::Display displayType = CSMWorld::ColumnBase::Display_Script;
|
|
mScript = new CSVWidget::DropLineEdit(displayType, this);
|
|
mScript->setCompleter(completionManager.getCompleter(displayType).get());
|
|
insertBeforeButtons(mScript, true);
|
|
|
|
connect(mScript, &CSVWidget::DropLineEdit::textChanged, this, &StartScriptCreator::scriptChanged);
|
|
connect(mScript, &CSVWidget::DropLineEdit::returnPressed, this, &StartScriptCreator::inputReturnPressed);
|
|
}
|
|
|
|
void CSVWorld::StartScriptCreator::cloneMode(const std::string& originId, const CSMWorld::UniversalId::Type type)
|
|
{
|
|
CSVWorld::GenericCreator::cloneMode(originId, type);
|
|
|
|
// Look up cloned record in start scripts table and set script ID text.
|
|
CSMWorld::IdTable& table = getStartScriptsTable();
|
|
int column = table.findColumnIndex(CSMWorld::Columns::ColumnId_Id);
|
|
mScript->setText(table.data(table.getModelIndex(originId, column)).toString());
|
|
}
|
|
|
|
std::string CSVWorld::StartScriptCreator::getErrors() const
|
|
{
|
|
const ESM::RefId scriptId = ESM::RefId::stringRefId(getId());
|
|
|
|
// Check user input for any errors.
|
|
std::string errors;
|
|
if (scriptId.empty())
|
|
{
|
|
errors = "No Script ID entered";
|
|
}
|
|
else if (getData().getScripts().searchId(scriptId) == -1)
|
|
{
|
|
errors = "Script ID not found";
|
|
}
|
|
else if (getData().getStartScripts().searchId(scriptId) > -1)
|
|
{
|
|
errors = "Script with this ID already registered as Start Script";
|
|
}
|
|
|
|
return errors;
|
|
}
|
|
|
|
void CSVWorld::StartScriptCreator::focus()
|
|
{
|
|
mScript->setFocus();
|
|
}
|
|
|
|
void CSVWorld::StartScriptCreator::reset()
|
|
{
|
|
CSVWorld::GenericCreator::reset();
|
|
mScript->setText("");
|
|
}
|
|
|
|
void CSVWorld::StartScriptCreator::scriptChanged()
|
|
{
|
|
update();
|
|
}
|
|
|
|
CSVWorld::Creator* CSVWorld::StartScriptCreatorFactory::makeCreator(
|
|
CSMDoc::Document& document, const CSMWorld::UniversalId& id) const
|
|
{
|
|
return new StartScriptCreator(document.getData(), document.getUndoStack(), id, document.getIdCompletionManager());
|
|
}
|