mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Made sure that the order of the items in the context menu is the same as it used to be in the old project tree view. Removed separator.
829 lines
29 KiB
C++
829 lines
29 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011- Statoil ASA
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
|
//
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RimProject.h"
|
|
|
|
|
|
#include "RiaApplication.h"
|
|
#include "RiaVersionInfo.h"
|
|
|
|
#include "RigCaseData.h"
|
|
|
|
#include "RimCaseCollection.h"
|
|
#include "RimCommandObject.h"
|
|
#include "RimEclipseCase.h"
|
|
#include "RimEclipseCaseCollection.h"
|
|
#include "RimEclipseView.h"
|
|
#include "RimGeoMechCase.h"
|
|
#include "RimGeoMechModels.h"
|
|
#include "RimIdenticalGridCaseGroup.h"
|
|
#include "RimOilField.h"
|
|
#include "RimScriptCollection.h"
|
|
#include "RimWellPath.h"
|
|
#include "RimWellPathCollection.h"
|
|
#include "RimWellPathImport.h"
|
|
#include "RimCalcScript.h"
|
|
|
|
#include "RiuMainWindow.h"
|
|
#include "RiaApplication.h"
|
|
|
|
#include "cafPdmUiTreeOrdering.h"
|
|
|
|
#include <QDir>
|
|
#include "cafCmdFeature.h"
|
|
#include "ToggleCommands/RicToggleItemsFeatureImpl.h"
|
|
#include "OctaveScriptCommands/RicExecuteScriptForCasesFeature.h"
|
|
#include "RimEclipseStatisticsCaseCollection.h"
|
|
#include "RimEclipseStatisticsCase.h"
|
|
#include "RimEclipseInputProperty.h"
|
|
#include "RimEclipseInputPropertyCollection.h"
|
|
|
|
CAF_PDM_SOURCE_INIT(RimProject, "ResInsightProject");
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimProject::RimProject(void)
|
|
{
|
|
CAF_PDM_InitFieldNoDefault(&m_projectFileVersionString, "ProjectFileVersionString", "", "", "", "");
|
|
m_projectFileVersionString.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitField(&nextValidCaseId, "NextValidCaseId", 0, "Next Valid Case ID", "", "" ,"");
|
|
nextValidCaseId.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitField(&nextValidCaseGroupId, "NextValidCaseGroupId", 0, "Next Valid Case Group ID", "", "" ,"");
|
|
nextValidCaseGroupId.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&oilFields, "OilFields", "Oil Fields", "", "", "");
|
|
oilFields.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&scriptCollection, "ScriptCollection", "Scripts", ":/Default.png", "", "");
|
|
scriptCollection.uiCapability()->setUiHidden(true);
|
|
CAF_PDM_InitFieldNoDefault(&treeViewState, "TreeViewState", "", "", "", "");
|
|
treeViewState.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&wellPathImport, "WellPathImport", "WellPathImport", "", "", "");
|
|
wellPathImport = new RimWellPathImport();
|
|
wellPathImport.uiCapability()->setUiHidden(true);
|
|
wellPathImport.uiCapability()->setUiChildrenHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(&commandObjects, "CommandObjects", "CommandObjects", "", "", "");
|
|
//wellPathImport.uiCapability()->setUiHidden(true);
|
|
|
|
CAF_PDM_InitFieldNoDefault(¤tModelIndexPath, "TreeViewCurrentModelIndexPath", "", "", "", "");
|
|
currentModelIndexPath.uiCapability()->setUiHidden(true);
|
|
|
|
// Obsolete fields. The content is moved to OilFields and friends
|
|
CAF_PDM_InitFieldNoDefault(&casesObsolete, "Reservoirs", "", "", "", "");
|
|
casesObsolete.uiCapability()->setUiHidden(true);
|
|
casesObsolete.xmlCapability()->setIOWritable(false); // read but not write, they will be moved into RimAnalysisGroups
|
|
CAF_PDM_InitFieldNoDefault(&caseGroupsObsolete, "CaseGroups", "", "", "", "");
|
|
caseGroupsObsolete.uiCapability()->setUiHidden(true);
|
|
caseGroupsObsolete.xmlCapability()->setIOWritable(false); // read but not write, they will be moved into RimAnalysisGroups
|
|
|
|
// Initialization
|
|
|
|
scriptCollection = new RimScriptCollection();
|
|
scriptCollection->directory.uiCapability()->setUiHidden(true);
|
|
scriptCollection->uiCapability()->setUiName("Scripts");
|
|
scriptCollection->uiCapability()->setUiIcon(QIcon(":/Default.png"));
|
|
|
|
// For now, create a default first oilfield that contains the rest of the project
|
|
oilFields.push_back(new RimOilField);
|
|
|
|
initScriptDirectories();
|
|
|
|
this->setUiHidden(true);
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimProject::~RimProject(void)
|
|
{
|
|
close();
|
|
|
|
oilFields.deleteAllChildObjects();
|
|
if (scriptCollection()) delete scriptCollection();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::close()
|
|
{
|
|
oilFields.deleteAllChildObjects();
|
|
oilFields.push_back(new RimOilField);
|
|
|
|
casesObsolete.deleteAllChildObjects();
|
|
caseGroupsObsolete.deleteAllChildObjects();
|
|
|
|
wellPathImport->regions().deleteAllChildObjects();
|
|
|
|
commandObjects.deleteAllChildObjects();
|
|
|
|
fileName = "";
|
|
|
|
nextValidCaseId = 0;
|
|
nextValidCaseGroupId = 0;
|
|
currentModelIndexPath = "";
|
|
treeViewState = "";
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::initScriptDirectories()
|
|
{
|
|
//
|
|
// TODO : Must store content of scripts in project file and notify user if stored content is different from disk on execute and edit
|
|
//
|
|
RiaApplication* app = RiaApplication::instance();
|
|
QString scriptDirectories = app->scriptDirectories();
|
|
|
|
this->setScriptDirectories(scriptDirectories);
|
|
|
|
// Find largest used caseId read from file and make sure all cases have a valid caseId
|
|
{
|
|
int largestId = -1;
|
|
|
|
std::vector<RimCase*> cases;
|
|
allCases(cases);
|
|
|
|
for (size_t i = 0; i < cases.size(); i++)
|
|
{
|
|
if (cases[i]->caseId > largestId)
|
|
{
|
|
largestId = cases[i]->caseId;
|
|
}
|
|
}
|
|
|
|
if (largestId > this->nextValidCaseId)
|
|
{
|
|
this->nextValidCaseId = largestId + 1;
|
|
}
|
|
|
|
// Assign case Id to cases with an invalid case Id
|
|
for (size_t i = 0; i < cases.size(); i++)
|
|
{
|
|
if (cases[i]->caseId < 0)
|
|
{
|
|
assignCaseIdToCase(cases[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Find largest used groupId read from file and make sure all groups have a valid groupId
|
|
RimEclipseCaseCollection* analysisModels = activeOilField() ? activeOilField()->analysisModels() : NULL;
|
|
if (analysisModels)
|
|
{
|
|
int largestGroupId = -1;
|
|
|
|
for (size_t i = 0; i < analysisModels->caseGroups().size(); i++)
|
|
{
|
|
RimIdenticalGridCaseGroup* cg = analysisModels->caseGroups()[i];
|
|
|
|
if (cg->groupId > largestGroupId)
|
|
{
|
|
largestGroupId = cg->groupId;
|
|
}
|
|
}
|
|
|
|
if (largestGroupId > this->nextValidCaseGroupId)
|
|
{
|
|
this->nextValidCaseGroupId = largestGroupId + 1;
|
|
}
|
|
|
|
// Assign group Id to groups with an invalid Id
|
|
for (size_t i = 0; i < analysisModels->caseGroups().size(); i++)
|
|
{
|
|
RimIdenticalGridCaseGroup* cg = analysisModels->caseGroups()[i];
|
|
|
|
if (cg->groupId < 0)
|
|
{
|
|
assignIdToCaseGroup(cg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::initAfterRead()
|
|
{
|
|
initScriptDirectories();
|
|
|
|
// Create an empty oil field in case the project did not contain one
|
|
if (oilFields.size() < 1)
|
|
{
|
|
oilFields.push_back(new RimOilField);
|
|
}
|
|
|
|
// Handle old project files with obsolete structure.
|
|
// Move caseGroupsObsolete and casesObsolete to oilFields()[idx]->analysisModels()
|
|
RimEclipseCaseCollection* analysisModels = activeOilField() ? activeOilField()->analysisModels() : NULL;
|
|
bool movedOneRimIdenticalGridCaseGroup = false;
|
|
for (size_t cgIdx = 0; cgIdx < caseGroupsObsolete.size(); ++cgIdx)
|
|
{
|
|
RimIdenticalGridCaseGroup* sourceCaseGroup = caseGroupsObsolete[cgIdx];
|
|
if (analysisModels)
|
|
{
|
|
analysisModels->caseGroups.push_back(sourceCaseGroup);
|
|
//printf("Moved m_project->caseGroupsObsolete[%i] to first oil fields analysis models\n", cgIdx);
|
|
movedOneRimIdenticalGridCaseGroup = true; // moved at least one so assume the others will be moved too...
|
|
}
|
|
}
|
|
|
|
if (movedOneRimIdenticalGridCaseGroup)
|
|
{
|
|
caseGroupsObsolete.clear();
|
|
}
|
|
|
|
bool movedOneRimCase = false;
|
|
for (size_t cIdx = 0; cIdx < casesObsolete().size(); ++cIdx)
|
|
{
|
|
RimEclipseCase* sourceCase = casesObsolete[cIdx];
|
|
if (analysisModels)
|
|
{
|
|
analysisModels->cases.push_back(sourceCase);
|
|
//printf("Moved m_project->casesObsolete[%i] to first oil fields analysis models\n", cIdx);
|
|
movedOneRimCase = true; // moved at least one so assume the others will be moved too...
|
|
}
|
|
}
|
|
|
|
if (movedOneRimCase)
|
|
{
|
|
casesObsolete.clear();
|
|
}
|
|
|
|
if (casesObsolete().size() > 0 || caseGroupsObsolete.size() > 0)
|
|
{
|
|
//printf("RimProject::initAfterRead: Was not able to move all cases (%i left) or caseGroups (%i left) from Project to analysisModels",
|
|
// casesObsolete().size(), caseGroupsObsolete.size());
|
|
}
|
|
|
|
// Set project pointer to each well path
|
|
for (size_t oilFieldIdx = 0; oilFieldIdx < oilFields().size(); oilFieldIdx++)
|
|
{
|
|
RimOilField* oilField = oilFields[oilFieldIdx];
|
|
if (oilField == NULL || oilField->wellPathCollection == NULL) continue;
|
|
oilField->wellPathCollection->setProject(this);
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::setupBeforeSave()
|
|
{
|
|
m_projectFileVersionString = STRPRODUCTVER;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Support list of multiple script paths divided by ';'
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::setScriptDirectories(const QString& scriptDirectories)
|
|
{
|
|
scriptCollection->calcScripts().deleteAllChildObjects();
|
|
scriptCollection->subDirectories().deleteAllChildObjects();
|
|
|
|
QStringList pathList = scriptDirectories.split(';');
|
|
foreach(QString path, pathList)
|
|
{
|
|
QDir dir(path);
|
|
if (!path.isEmpty() && dir.exists() && dir.isReadable())
|
|
{
|
|
RimScriptCollection* sharedScriptLocation = new RimScriptCollection;
|
|
sharedScriptLocation->directory = path;
|
|
sharedScriptLocation->setUiName(dir.dirName());
|
|
|
|
sharedScriptLocation->readContentFromDisc();
|
|
|
|
scriptCollection->subDirectories.push_back(sharedScriptLocation);
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QString RimProject::projectFileVersionString() const
|
|
{
|
|
return m_projectFileVersionString;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::setProjectFileNameAndUpdateDependencies(const QString& fileName)
|
|
{
|
|
// Extract the filename of the project file when it was saved
|
|
QString oldProjectFileName = this->fileName;
|
|
// Replace with the new actual filename
|
|
this->fileName = fileName;
|
|
|
|
QFileInfo fileInfo(fileName);
|
|
QString newProjectPath = fileInfo.path();
|
|
|
|
QFileInfo fileInfoOld(oldProjectFileName);
|
|
QString oldProjectPath = fileInfoOld.path();
|
|
|
|
// Loop over all cases and update file path
|
|
|
|
std::vector<RimCase*> cases;
|
|
allCases(cases);
|
|
for (size_t i = 0; i < cases.size(); i++)
|
|
{
|
|
cases[i]->updateFilePathsFromProjectPath(newProjectPath, oldProjectPath);
|
|
}
|
|
|
|
// Update path to well path file cache
|
|
for (size_t oilFieldIdx = 0; oilFieldIdx < oilFields().size(); oilFieldIdx++)
|
|
{
|
|
RimOilField* oilField = oilFields[oilFieldIdx];
|
|
if (oilField == NULL || oilField->wellPathCollection == NULL) continue;
|
|
oilField->wellPathCollection->updateFilePathsFromProjectPath();
|
|
}
|
|
|
|
wellPathImport->updateFilePaths();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::assignCaseIdToCase(RimCase* reservoirCase)
|
|
{
|
|
if (reservoirCase)
|
|
{
|
|
reservoirCase->caseId = nextValidCaseId;
|
|
|
|
nextValidCaseId = nextValidCaseId + 1;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::assignIdToCaseGroup(RimIdenticalGridCaseGroup* caseGroup)
|
|
{
|
|
if (caseGroup)
|
|
{
|
|
caseGroup->groupId = nextValidCaseGroupId;
|
|
|
|
nextValidCaseGroupId = nextValidCaseGroupId + 1;
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::allCases(std::vector<RimCase*>& cases)
|
|
{
|
|
for (size_t oilFieldIdx = 0; oilFieldIdx < oilFields().size(); oilFieldIdx++)
|
|
{
|
|
RimOilField* oilField = oilFields[oilFieldIdx];
|
|
if (!oilField) continue;
|
|
|
|
RimEclipseCaseCollection* analysisModels = oilField->analysisModels();
|
|
if (analysisModels )
|
|
{
|
|
for (size_t caseIdx = 0; caseIdx < analysisModels->cases.size(); caseIdx++)
|
|
{
|
|
cases.push_back(analysisModels->cases[caseIdx]);
|
|
}
|
|
for (size_t cgIdx = 0; cgIdx < analysisModels->caseGroups.size(); cgIdx++)
|
|
{
|
|
// Load the Main case of each IdenticalGridCaseGroup
|
|
RimIdenticalGridCaseGroup* cg = analysisModels->caseGroups[cgIdx];
|
|
if (cg == NULL) continue;
|
|
|
|
if (cg->statisticsCaseCollection())
|
|
{
|
|
for (size_t caseIdx = 0; caseIdx < cg->statisticsCaseCollection()->reservoirs.size(); caseIdx++)
|
|
{
|
|
cases.push_back(cg->statisticsCaseCollection()->reservoirs[caseIdx]);
|
|
}
|
|
}
|
|
if (cg->caseCollection())
|
|
{
|
|
for (size_t caseIdx = 0; caseIdx < cg->caseCollection()->reservoirs.size(); caseIdx++)
|
|
{
|
|
cases.push_back(cg->caseCollection()->reservoirs[caseIdx]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
RimGeoMechModels* geomModels = oilField->geoMechModels();
|
|
if (geomModels)
|
|
{
|
|
for (size_t caseIdx = 0; caseIdx < geomModels->cases.size(); caseIdx++)
|
|
{
|
|
cases.push_back(geomModels->cases[caseIdx]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::createDisplayModelAndRedrawAllViews()
|
|
{
|
|
std::vector<RimCase*> cases;
|
|
allCases(cases);
|
|
for (size_t caseIdx = 0; caseIdx < cases.size(); caseIdx++)
|
|
{
|
|
RimCase* rimCase = cases[caseIdx];
|
|
if (rimCase == NULL) continue;
|
|
std::vector<RimView*> views = rimCase->views();
|
|
|
|
for (size_t viewIdx = 0; viewIdx < views.size(); viewIdx++)
|
|
{
|
|
views[viewIdx]->scheduleCreateDisplayModelAndRedraw();
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Currently there will be only one oil field in Resinsight, so return hardcoded first oil field
|
|
/// from the RimOilField collection.
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimOilField* RimProject::activeOilField()
|
|
{
|
|
CVF_ASSERT(oilFields.size() == 1);
|
|
|
|
return oilFields[0];
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::computeUtmAreaOfInterest()
|
|
{
|
|
std::vector<RimCase*> cases;
|
|
allCases(cases);
|
|
|
|
cvf::BoundingBox projectBB;
|
|
|
|
for (size_t i = 0; i < cases.size(); i++)
|
|
{
|
|
RimEclipseCase* rimCase = dynamic_cast<RimEclipseCase*>(cases[i]);
|
|
|
|
if (rimCase && rimCase->reservoirData())
|
|
{
|
|
for (size_t gridIdx = 0; gridIdx < rimCase->reservoirData()->gridCount(); gridIdx++ )
|
|
{
|
|
RigGridBase* rigGrid = rimCase->reservoirData()->grid(gridIdx);
|
|
|
|
projectBB.add(rigGrid->boundingBox());
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Todo : calculate BBox of GeoMechCase
|
|
}
|
|
}
|
|
|
|
if (projectBB.isValid())
|
|
{
|
|
double north, south, east, west;
|
|
|
|
north = projectBB.max().y();
|
|
south = projectBB.min().y();
|
|
|
|
west = projectBB.min().x();
|
|
east = projectBB.max().x();
|
|
|
|
wellPathImport->north = north;
|
|
wellPathImport->south = south;
|
|
wellPathImport->east = east;
|
|
wellPathImport->west = west;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "cafCmdFeatureManager.h"
|
|
#include "cafSelectionManager.h"
|
|
|
|
#include "RimCellRangeFilterCollection.h"
|
|
#include "RimCellRangeFilter.h"
|
|
#include "RimEclipsePropertyFilterCollection.h"
|
|
#include "RimEclipsePropertyFilter.h"
|
|
#include "RimGeoMechPropertyFilterCollection.h"
|
|
#include "RimGeoMechPropertyFilter.h"
|
|
#include "RimGeoMechView.h"
|
|
#include "RimEclipseCellColors.h"
|
|
#include "RimEclipseFaultColors.h"
|
|
#include <QMenu>
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::actionsBasedOnSelection(QMenu& contextMenu)
|
|
{
|
|
QStringList commandIds;
|
|
|
|
std::vector<caf::PdmUiItem*> uiItems;
|
|
caf::SelectionManager::instance()->selectedItems(uiItems);
|
|
|
|
if (uiItems.size() > 1)
|
|
{
|
|
commandIds << "RicCopyReferencesToClipboardFeature";
|
|
}
|
|
else if (uiItems.size() == 1)
|
|
{
|
|
caf::PdmUiItem* uiItem = uiItems[0];
|
|
CVF_ASSERT(uiItem);
|
|
|
|
if (dynamic_cast<RimEclipseCaseCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicImportEclipseCaseFeature";
|
|
commandIds << "RicImportInputEclipseCaseFeature";
|
|
commandIds << "RicCreateGridCaseGroupFeature";
|
|
commandIds << "RicEclipseCaseNewGroupFeature";
|
|
}
|
|
else if (dynamic_cast<RimGeoMechView*>(uiItem))
|
|
{
|
|
commandIds << "RicNewViewFeature";
|
|
commandIds << "RicCopyReferencesToClipboardFeature";
|
|
commandIds << "RicPasteGeoMechViewsFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseView*>(uiItem))
|
|
{
|
|
commandIds << "RicNewViewFeature";
|
|
|
|
commandIds << "RicCopyReferencesToClipboardFeature";
|
|
commandIds << "RicPasteEclipseViewsFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimCaseCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicPasteEclipseCasesFeature";
|
|
commandIds << "RicNewStatisticsCaseFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseStatisticsCase*>(uiItem))
|
|
{
|
|
//menu.addAction(QString("New View"), this, SLOT(slotAddView()));
|
|
//menu.addAction(QString("Compute"), this, SLOT(slotComputeStatistics()));
|
|
//menu.addAction(QString("Close"), this, SLOT(slotCloseCase()));
|
|
commandIds << "RicNewViewFeature";
|
|
commandIds << "RicComputeStatisticsFeature";
|
|
commandIds << "RicCloseCaseFeature";
|
|
commandIds << "RicExecuteScriptForCasesFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseCase*>(uiItem))
|
|
{
|
|
commandIds << "RicCopyReferencesToClipboardFeature";
|
|
|
|
commandIds << "RicPasteEclipseCasesFeature";
|
|
commandIds << "RicPasteEclipseViewsFeature";
|
|
|
|
commandIds << "RicCloseCaseFeature";
|
|
commandIds << "RicNewViewFeature";
|
|
commandIds << "RicEclipseCaseNewGroupFeature";
|
|
commandIds << "RicExecuteScriptForCasesFeature";
|
|
}
|
|
else if (dynamic_cast<RimGeoMechCase*>(uiItem))
|
|
{
|
|
commandIds << "RicPasteGeoMechViewsFeature";
|
|
commandIds << "RicNewViewFeature";
|
|
commandIds << "Separator";
|
|
|
|
commandIds << "RicCloseCaseFeature";
|
|
}
|
|
else if (dynamic_cast<RimIdenticalGridCaseGroup*>(uiItem))
|
|
{
|
|
commandIds << "RicEclipseCaseNewGroupFeature";
|
|
commandIds << "RicPasteEclipseCasesFeature";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimCaseCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicPasteEclipseCasesFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseCellColors*>(uiItem))
|
|
{
|
|
commandIds << "RicSaveEclipseResultAsInputPropertyFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseInputPropertyCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicAddEclipseInputPropertyFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipseInputProperty*>(uiItem))
|
|
{
|
|
commandIds << "RicDeleteItemFeature";
|
|
commandIds << "RicSaveEclipseInputPropertyFeature";
|
|
}
|
|
else if (dynamic_cast<RimCellRangeFilterCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicRangeFilterNewFeature";
|
|
commandIds << "RicRangeFilterNewSliceIFeature";
|
|
commandIds << "RicRangeFilterNewSliceJFeature";
|
|
commandIds << "RicRangeFilterNewSliceKFeature";
|
|
}
|
|
else if (dynamic_cast<RimCellRangeFilter*>(uiItem))
|
|
{
|
|
commandIds << "RicRangeFilterInsertFeature";
|
|
commandIds << "RicRangeFilterNewSliceIFeature";
|
|
commandIds << "RicRangeFilterNewSliceJFeature";
|
|
commandIds << "RicRangeFilterNewSliceKFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipsePropertyFilterCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicEclipsePropertyFilterNewFeature";
|
|
}
|
|
else if (dynamic_cast<RimEclipsePropertyFilter*>(uiItem))
|
|
{
|
|
commandIds << "RicEclipsePropertyFilterInsertFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimGeoMechPropertyFilterCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicGeoMechPropertyFilterNewFeature";
|
|
}
|
|
else if (dynamic_cast<RimGeoMechPropertyFilter*>(uiItem))
|
|
{
|
|
commandIds << "RicGeoMechPropertyFilterInsertFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimWellPathCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicWellPathsDeleteAllFeature";
|
|
commandIds << "RicWellPathsImportFileFeature";
|
|
commandIds << "RicWellPathsImportSsihubFeature";
|
|
}
|
|
else if (dynamic_cast<RimWellPath*>(uiItem))
|
|
{
|
|
commandIds << "RicDeleteItemFeature";
|
|
}
|
|
else if (dynamic_cast<RimCalcScript*>(uiItem))
|
|
{
|
|
commandIds << "RicEditScriptFeature";
|
|
commandIds << "RicNewScriptFeature";
|
|
commandIds << "Separator";
|
|
commandIds << "RicExecuteScriptFeature";
|
|
}
|
|
else if (dynamic_cast<RimScriptCollection*>(uiItem))
|
|
{
|
|
commandIds << "RicAddScriptPathFeature";
|
|
commandIds << "RicDeleteScriptPathFeature";
|
|
}
|
|
}
|
|
|
|
if (RicToggleItemsFeatureImpl::isToggleCommandsAvailable())
|
|
{
|
|
commandIds << "Separator";
|
|
commandIds << "RicToggleItemsOnFeature";
|
|
commandIds << "RicToggleItemsOffFeature";
|
|
commandIds << "RicToggleItemsFeature";
|
|
}
|
|
|
|
caf::CmdFeatureManager* commandManager = caf::CmdFeatureManager::instance();
|
|
for (int i = 0; i < commandIds.size(); i++)
|
|
{
|
|
if (commandIds[i] == "Separator")
|
|
{
|
|
contextMenu.addSeparator();
|
|
}
|
|
else if (commandIds[i] == "RicExecuteScriptForCasesFeature")
|
|
{
|
|
// Execute script on selection of cases
|
|
RiuMainWindow* ruiMainWindow = RiuMainWindow::instance();
|
|
if (ruiMainWindow)
|
|
{
|
|
std::vector<RimCase*> cases;
|
|
ruiMainWindow->selectedCases(cases);
|
|
|
|
if (cases.size() > 0)
|
|
{
|
|
QMenu* executeMenu = contextMenu.addMenu("Execute script");
|
|
|
|
RiaApplication* app = RiaApplication::instance();
|
|
RimProject* proj = app->project();
|
|
if (proj && proj->scriptCollection())
|
|
{
|
|
RimScriptCollection* rootScriptCollection = proj->scriptCollection();
|
|
|
|
// Root script collection holds a list of subdirectories of user defined script folders
|
|
for (size_t i = 0; i < rootScriptCollection->subDirectories.size(); i++)
|
|
{
|
|
RimScriptCollection* subDir = rootScriptCollection->subDirectories[i];
|
|
|
|
if (subDir)
|
|
{
|
|
appendScriptItems(executeMenu, subDir);
|
|
}
|
|
}
|
|
}
|
|
|
|
contextMenu.addSeparator();
|
|
contextMenu.addMenu(executeMenu);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
caf::CmdFeature* feature = commandManager->getCommandFeature(commandIds[i].toStdString());
|
|
if (feature->canFeatureBeExecuted())
|
|
{
|
|
QAction* act = commandManager->action(commandIds[i]);
|
|
CVF_ASSERT(act);
|
|
|
|
contextMenu.addAction(act);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::appendScriptItems(QMenu* menu, RimScriptCollection* scriptCollection)
|
|
{
|
|
CVF_ASSERT(menu);
|
|
|
|
QDir dir(scriptCollection->directory);
|
|
QMenu* subMenu = menu->addMenu(dir.dirName());
|
|
|
|
RiuMainWindow* mainWindow = RiuMainWindow::instance();
|
|
|
|
caf::CmdFeatureManager* commandManager = caf::CmdFeatureManager::instance();
|
|
CVF_ASSERT(commandManager);
|
|
|
|
RicExecuteScriptForCasesFeature* executeScriptFeature = dynamic_cast<RicExecuteScriptForCasesFeature*>(commandManager->getCommandFeature("RicExecuteScriptForCasesFeature"));
|
|
CVF_ASSERT(executeScriptFeature);
|
|
|
|
for (size_t i = 0; i < scriptCollection->calcScripts.size(); i++)
|
|
{
|
|
RimCalcScript* calcScript = scriptCollection->calcScripts[i];
|
|
QFileInfo fi(calcScript->absolutePath());
|
|
|
|
QString menuText = fi.baseName();
|
|
QAction* scriptAction = subMenu->addAction(menuText, executeScriptFeature, SLOT(slotExecuteScriptForSelectedCases()));
|
|
|
|
scriptAction->setData(QVariant(calcScript->absolutePath()));
|
|
}
|
|
|
|
for (size_t i = 0; i < scriptCollection->subDirectories.size(); i++)
|
|
{
|
|
RimScriptCollection* subDir = scriptCollection->subDirectories[i];
|
|
|
|
appendScriptItems(subMenu, subDir);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimProject::defineUiTreeOrdering(caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName /*= ""*/)
|
|
{
|
|
RimOilField* oilField = activeOilField();
|
|
if (oilField)
|
|
{
|
|
if (oilField->analysisModels()) uiTreeOrdering.add(oilField->analysisModels());
|
|
if (oilField->geoMechModels()) uiTreeOrdering.add(oilField->geoMechModels());
|
|
if (oilField->wellPathCollection()) uiTreeOrdering.add(oilField->wellPathCollection());
|
|
}
|
|
|
|
uiTreeOrdering.add(scriptCollection());
|
|
|
|
uiTreeOrdering.setForgetRemainingFields(true);
|
|
}
|
|
|