Difference between revisions of "IC Python API:File Path"

From Reallusion Wiki!
Jump to: navigation, search
m (File Dialog Request)
m (File Dialog Request)
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
{{Parent|IC_Python_API:RL_Python_Samples|RL Python Samples}}
 
{{Parent|IC_Python_API:RL_Python_Samples|RL Python Samples}}
  
=== Required Modules ===
+
Oftentimes, you'll need to handle external files in the form of loading, writing and reading.  This article will go over doing just that with Python scripting.
 +
 
 +
== Required Modules ==
  
 
Besides the rudimentary Reallusion Python API, we'll need to use Qtwidgets to build our user interface and shiboken2 to convert the dialog window to something Python can understand.
 
Besides the rudimentary Reallusion Python API, we'll need to use Qtwidgets to build our user interface and shiboken2 to convert the dialog window to something Python can understand.
Line 12: Line 14:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=== User Interface ===
+
== User Interface ==
  
 
[[File:Ic_python_api_file_path_01.png|frame]]
 
[[File:Ic_python_api_file_path_01.png|frame]]
Line 36: Line 38:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
=== File Dialog Request ===
+
== File Dialog Request ==
 
+
[[File:Ic_python_api_file_path_02.png|frame]]
+
  
 
Next we'll need a definition for the file dialog procedure to populate the directory field and the contents text field.
 
Next we'll need a definition for the file dialog procedure to populate the directory field and the contents text field.
Line 59: Line 59:
 
window.Show()
 
window.Show()
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
{{Images2
 +
|image1=Ic_python_api_file_path_03.png
 +
|image2=Ic_python_api_file_path_02.png
 +
|caption1= File request dialog is a standard Window's file browser.  Notice that we are restricting the search to '''.py''' files with the filter attribute.
 +
|caption2= The top field is populated with the file location and the bottom field for the contents of the file.
 +
}}
  
=== Everything Put Together ===
+
== Everything Put Together ==
  
 
You can copy and paste the following code into a PY file and load it into iClone via '''Script > Load Python'''.
 
You can copy and paste the following code into a PY file and load it into iClone via '''Script > Load Python'''.
Line 103: Line 109:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==== APIs Used ====
+
=== APIs Used ===
  
 
You can research the following references for the APIs deployed in this code.
 
You can research the following references for the APIs deployed in this code.

Revision as of 03:20, 1 July 2019

Main article: RL Python Samples.

Oftentimes, you'll need to handle external files in the form of loading, writing and reading. This article will go over doing just that with Python scripting.

Required Modules

Besides the rudimentary Reallusion Python API, we'll need to use Qtwidgets to build our user interface and shiboken2 to convert the dialog window to something Python can understand.

import RLPy
from PySide2 import QtWidgets
from PySide2.shiboken2 import wrapInstance

User Interface

Ic python api file path 01.png

We'll need to create a user interface with a line at the top that shows the directory location, a button for opening the file browse dialog, and a text input to display the contents of the file.

window = RLPy.RUi.CreateRDialog()
window.SetWindowTitle("Python Path & File")
dialog = wrapInstance(int(window.GetWindow()), QtWidgets.QDialog)
dialog.setFixedWidth(500)

layout = QtWidgets.QHBoxLayout()
dialog.layout().addLayout(layout)

pathText = QtWidgets.QPlainTextEdit(readOnly=True, maximumHeight=25)
contentText = QtWidgets.QPlainTextEdit(minimumHeight=250)
button = QtWidgets.QPushButton("....", minimumHeight=25, minimumWidth=25)

layout.addWidget(pathText)
layout.addWidget(button)
dialog.layout().addWidget(contentText)

File Dialog Request

Next we'll need a definition for the file dialog procedure to populate the directory field and the contents text field.

def open_file():
    file_dialog = QtWidgets.QFileDialog()
    file_dialog.setNameFilter("*.py")
    file_dialog.exec()

    if(len(file_dialog.selectedFiles()) > 0):
        pathText.setPlainText(file_dialog.selectedFiles()[0])
        f = open(file_dialog.selectedFiles()[0], "r")
        contentText.setPlainText(f.read())
        f.close()


button.clicked.connect(open_file)

window.Show()
  • File request dialog is a standard Window's file browser. Notice that we are restricting the search to .py files with the filter attribute.
  • The top field is populated with the file location and the bottom field for the contents of the file.

Everything Put Together

You can copy and paste the following code into a PY file and load it into iClone via Script > Load Python.

import RLPy
from PySide2 import QtWidgets
from PySide2.shiboken2 import wrapInstance

window = RLPy.RUi.CreateRDialog()
window.SetWindowTitle("Python Path & File")
dialog = wrapInstance(int(window.GetWindow()), QtWidgets.QDialog)
dialog.setFixedWidth(500)

layout = QtWidgets.QHBoxLayout()
dialog.layout().addLayout(layout)

pathText = QtWidgets.QPlainTextEdit(readOnly=True, maximumHeight=25)
contentText = QtWidgets.QPlainTextEdit(minimumHeight=250)
button = QtWidgets.QPushButton("....", minimumHeight=25, minimumWidth=25)

layout.addWidget(pathText)
layout.addWidget(button)
dialog.layout().addWidget(contentText)


def open_file():
    file_dialog = QtWidgets.QFileDialog()
    file_dialog.setNameFilter("*.py")
    file_dialog.exec()

    if(len(file_dialog.selectedFiles()) > 0):
        pathText.setPlainText(file_dialog.selectedFiles()[0])
        f = open(file_dialog.selectedFiles()[0], "r")
        contentText.setPlainText(f.read())
        f.close()


button.clicked.connect(open_file)

window.Show()

APIs Used

You can research the following references for the APIs deployed in this code.