-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable mayaHydra isolate select when VP2 is the viewport renderer.
- Loading branch information
Showing
4 changed files
with
194 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
163 changes: 163 additions & 0 deletions
163
test/lib/mayaUsd/render/mayaToHydra/cpp/testIsolateSelectSwitchToVP2.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
# Copyright 2024 Autodesk | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
import fixturesUtils | ||
import mtohUtils | ||
import maya.cmds as cmds | ||
import maya.mel as mel | ||
|
||
def enableIsolateSelect(modelPanel): | ||
# Surprisingly | ||
# | ||
# cmds.isolateSelect('modelPanel1', state=1) | ||
# | ||
# is insufficient to turn on isolate selection in a viewport, and we must | ||
# use the MEL script used by the menu and Ctrl-1 hotkey. This is because | ||
# the viewport uses the selectionConnection command to filter the selection | ||
# it receives and create its isolate selection, and the the | ||
# mainListConnection, lockMainConnection and unlockMainConnection flags of | ||
# the editor command to suspend changes to its selection connection. See | ||
# the documentation for more details. | ||
cmds.setFocus(modelPanel) | ||
mel.eval("enableIsolateSelect %s 1" % modelPanel) | ||
|
||
def disableIsolateSelect(modelPanel): | ||
cmds.setFocus(modelPanel) | ||
mel.eval("enableIsolateSelect %s 0" % modelPanel) | ||
|
||
# This test is very similar to testIsolateSelect.py. See HYDRA-1245. | ||
|
||
class TestIsolateSelectSwitchToVP2(mtohUtils.MayaHydraBaseTestCase): | ||
# MayaHydraBaseTestCase.setUpClass requirement. | ||
_file = __file__ | ||
|
||
# Base class setUp() defines HdStorm as the renderer. | ||
|
||
_pluginsToLoad = ['mayaHydraCppTests'] | ||
_pluginsToUnload = [] | ||
|
||
@classmethod | ||
def setUpClass(cls): | ||
super(TestIsolateSelectSwitchToVP2, cls).setUpClass() | ||
for p in cls._pluginsToLoad: | ||
if not cmds.pluginInfo(p, q=True, loaded=True): | ||
cls._pluginsToUnload.append(p) | ||
cmds.loadPlugin(p, quiet=True) | ||
|
||
@classmethod | ||
def tearDownClass(cls): | ||
super(TestIsolateSelectSwitchToVP2, cls).tearDownClass() | ||
# Clean out the scene to allow all plugins to unload cleanly. | ||
cmds.file(new=True, force=True) | ||
for p in reversed(cls._pluginsToUnload): | ||
cmds.unloadPlugin(p) | ||
|
||
def setupScene(self): | ||
|
||
cmds.polyTorus() | ||
cmds.polySphere() | ||
cmds.polyCube() | ||
|
||
cmds.refresh() | ||
|
||
scene = [ | ||
# Maya objects | ||
'|pTorus1', | ||
'|pTorus1|pTorusShape1', | ||
'|pSphere1', | ||
'|pSphere1|pSphereShape1', | ||
'|pCube1', | ||
'|pCube1|pCubeShape1'] | ||
|
||
return scene | ||
|
||
def assertVisible(self, visible): | ||
for v in visible: | ||
self.trace("Testing %s for visibility\n" % v) | ||
cmds.mayaHydraCppTest(v, f="TestHydraPrim.isVisible") | ||
|
||
def assertNotVisible(self, notVisible): | ||
for nv in notVisible: | ||
self.trace("Testing %s for invisibility\n" % nv) | ||
cmds.mayaHydraCppTest(nv, f="TestHydraPrim.notVisible") | ||
|
||
def assertVisibility(self, visible, notVisible): | ||
self.assertVisible(visible) | ||
self.assertNotVisible(notVisible) | ||
|
||
def test_isolateSelectSwitchToVP2(self): | ||
|
||
scene = self.setupScene() | ||
modelPanel = 'modelPanel4' | ||
enableIsolateSelect(modelPanel) | ||
|
||
# Isolate select Maya object. | ||
cmds.select('|pTorus1') | ||
cmds.editor(modelPanel, edit=True, updateMainConnection=True) | ||
cmds.isolateSelect(modelPanel, loadSelected=True) | ||
|
||
visible = ['|pTorus1', '|pTorus1|pTorusShape1'] | ||
|
||
notVisible = scene.copy() | ||
for p in visible: | ||
notVisible.remove(p) | ||
|
||
cmds.refresh() | ||
|
||
self.assertVisibility(visible, notVisible) | ||
|
||
# Record the number of view selected changed calls so far. | ||
viewSelectedChangedCallsPre = cmds.mayaHydraInstruments("MtohRenderOverride:NbViewSelectedChangedCalls", q=True) | ||
|
||
self.assertGreater(viewSelectedChangedCallsPre, 0) | ||
|
||
# Switch to VP2, and make a different isolate selection. The number of | ||
# Hydra view selected changed calls should remain the same. | ||
self.setViewport2Renderer() | ||
|
||
cmds.select('|pSphere1') | ||
cmds.editor(modelPanel, edit=True, updateMainConnection=True) | ||
cmds.isolateSelect(modelPanel, loadSelected=True) | ||
|
||
cmds.refresh() | ||
|
||
viewSelectedChangedCallsVP2 = cmds.mayaHydraInstruments("MtohRenderOverride:NbViewSelectedChangedCalls", q=True) | ||
|
||
self.assertEqual(viewSelectedChangedCallsPre, viewSelectedChangedCallsVP2) | ||
|
||
# Switch back to Hydra Storm, and make a different isolate selection. | ||
# The number of Hydra view selected changed calls should increase. | ||
self.setHdStormRenderer() | ||
|
||
cmds.select('|pCube1') | ||
cmds.editor(modelPanel, edit=True, updateMainConnection=True) | ||
cmds.isolateSelect(modelPanel, loadSelected=True) | ||
|
||
visible = ['|pCube1', '|pCube1|pCubeShape1'] | ||
|
||
notVisible = scene.copy() | ||
for p in visible: | ||
notVisible.remove(p) | ||
|
||
cmds.refresh() | ||
|
||
self.assertVisibility(visible, notVisible) | ||
|
||
viewSelectedChangedCallsPost = cmds.mayaHydraInstruments("MtohRenderOverride:NbViewSelectedChangedCalls", q=True) | ||
|
||
self.assertGreater(viewSelectedChangedCallsPost, viewSelectedChangedCallsPre) | ||
|
||
if __name__ == '__main__': | ||
fixturesUtils.runTests(globals()) |