This Cinema 4D Python script enables users to perform a find/replace operation on the names of selected objects using regular expressions. It provides an intuitive dialog interface to input the regex pattern (“Find”) and replacement text (“Replace with”), along with an option to toggle case sensitivity. The script processes all selected objects (including children), updating their names according to the specified regex rules while supporting undo functionality.
Usage Guide:
- Open your Cinema 4D scene and select the objects (including children) whose names you want to update.
- Run the script. A dialog box titled “Find and Replace Object Names” will appear with:
- A brief usage guide.
- Fields to enter the “Find” regular expression (default value: “Cap1”) and “Replace with” text (default value: “Floor”).
- A checkbox to toggle case sensitivity.
- OK and Cancel buttons.
- Configure the desired options:
- Modify the regex pattern in the “Find” field as needed.
- Enter the replacement text in the “Replace with” field.
- Check or uncheck the “match case” option based on your requirement.
- Click “OK” to apply the changes. The script will perform a find/replace operation on all selected object names, update them accordingly (while adding undo information), and then display a message summarizing how many objects were renamed.
Python
# Does a Find/Replace on object names over all selected object
# using Regular Expressions.
import c4d
from c4d import gui
import re # Regular expression
# Unique id numbers for each of the GUI elements
LBL_USAGE = 1000
LBL_INFO1 = 1001
LBL_INFO2 = 1002
GROUP_TEXT = 10000
TXT_FIND = 10001
TXT_REPLACE = 10002
CHK_MATCH_CASE = 10003
GROUP_OPTIONS = 20000
BTN_OK = 20001
BTN_CANCEL = 20002
class OptionsDialog(gui.GeDialog):
""" Dialog for doing a find replace on object names.
"""
def CreateLayout(self):
self.SetTitle('Find and Replace Object Names')
self.AddMultiLineEditText(LBL_USAGE, c4d.BFH_SCALEFIT, inith=40, initw=500,
style=c4d.DR_MULTILINE_READONLY)
self.SetString(LBL_USAGE,
"USAGE: Does find/replace on selected object names\n"
" using regular expression")
# Find replace strings:
self.GroupBegin(GROUP_TEXT, c4d.BFH_SCALEFIT, 2, 2)
self.AddStaticText(LBL_INFO1, c4d.BFH_LEFT, name='Find:')
self.AddEditText(TXT_FIND, c4d.BFH_SCALEFIT)
self.SetString(TXT_FIND, 'Cap1')
self.AddStaticText(LBL_INFO2, c4d.BFH_LEFT, name='Replace with:')
self.AddEditText(TXT_REPLACE, c4d.BFH_SCALEFIT)
self.SetString(TXT_REPLACE, 'Floor')
self.GroupEnd()
self.AddSeparatorH(c4d.BFH_SCALE);
# Checkbox Option - append to existing string:
self.AddCheckbox(CHK_MATCH_CASE, c4d.BFH_SCALEFIT,
initw=1, inith=1, name="match case")
self.SetBool(CHK_MATCH_CASE, True)
self.AddSeparatorH(c4d.BFH_SCALE);
# Buttons - an Ok and Cancel button:
self.GroupBegin(GROUP_OPTIONS, c4d.BFH_CENTER, 2, 1)
self.AddButton(BTN_OK, c4d.BFH_SCALE, name='OK')
self.AddButton(BTN_CANCEL, c4d.BFH_SCALE, name='Cancel')
self.GroupEnd()
self.ok = False
return True
# React to user's input:
def Command(self, id, msg):
if id==BTN_CANCEL:
self.Close()
elif id==BTN_OK:
self.ok = True
self.option_find = self.GetString(TXT_FIND)
self.option_replace = self.GetString(TXT_REPLACE)
self.option_match_case = self.GetBool(CHK_MATCH_CASE)
self.Close()
return True
def main():
# Get the selected objects, including children.
selection = doc.GetActiveObjects(c4d.GETACTIVEOBJECTFLAGS_CHILDREN)
if len(selection) <= 0:
gui.MessageDialog('Must select objects!')
return
# Open the options dialogue to let users choose their options.
dlg = OptionsDialog()
dlg.Open(c4d.DLG_TYPE_MODAL, defaultw=300, defaulth=50)
if not dlg.ok:
return
# Setup regex find pattern:
pattern = re.compile(dlg.option_find, flags=re.IGNORECASE)
if (dlg.option_match_case):
pattern = re.compile(dlg.option_find)
doc.StartUndo()
num_renamed = 0
for i in range(0,len(selection)):
sel = selection[i]
new_name = pattern.sub(dlg.option_replace, sel.GetName())
if (sel.GetName() != new_name):
print (' - ' + sel.GetName() + ' > ' + new_name)
doc.AddUndo(c4d.UNDOTYPE_CHANGE_SMALL, sel)
sel.SetName(new_name)
num_renamed += 1
doc.EndUndo()
c4d.EventAdd() # Update C4D to see changes.
gui.MessageDialog(str(num_renamed) + ' of ' + str(len(selection)) +
' objects renamed')
if __name__=='__main__':
main()