Skip to content

philipluk/cmdc

 
 

Repository files navigation

a.k.a. "Maya Python API 3.0"


An alternative set of bindings for the C++ API of Maya 2018-2022.

Why?

  • What if Maya's Python bindings were open source?
  • What if whenever Maya crashed, you'd get more than an opaque stack trace?
  • What if you were able to see why a crash occurred, and what line it occurred on?
  • What if you could address bugs in the bindings yourself?
  • What if you could add missing members yourself?
  • What if there were bindings for Maya that made it impossible to crash Maya from Python?
  • What if setting up code completion and type checking was easy?

That's what this repository is for.


Example

The bindings should aim to match Maya Python API 2.0 as closely as possible, with the exception of being open source and to never allow Maya to crash as a result of calling any function or method.

import cmdc

typ = cmdc.TypeId(16)

mat4 = cmdc.Matrix()
mat4 *= cmdc.Matrix().inverse()

vec3 = cmdc.Vector()
vec3.x = 6

quat = cmdc.Quaternion(angle=0.5, axis=cmdc.Vector(1, 0, 0))
mat4 *= quat

# No need for MString
string = str()

# Modify the Maya scene graph
from maya import standalone
standalone.initialize()
fn = cmdc.FnDependencyNode()
r = fn.create("reverse", name="myReverse")
print(fn.name())

# This next line really shouldn't work, should require MFnDagNode
t = fn.create("transform", name="myTransform")
print(fn.name())

print("Success")

Code completion working in Visual Studio Code with Pylance

Type Checking working in Visual Studio Code with Pylance


Goal

cmdc should have the same advantages over 1.0 as 2.0, and more.

  • Array types are full Python sequences, including slice support.
  • Methods which take Maya array parameters will always also take native Python sequences, such as arrays and tuples.
  • The outputs of methods are always returned in their return values, not through their parameter lists.
  • Methods which return multiple values (e.g. MFnFluid.getResolution) return them as a tuple or list, eliminating the need for MScriptUtil.
  • Object attributes are preferred over rather than set/get methods. For example you can now write array.sizeIncrement=64.
  • There are more types of exceptions used when methods fail. Not everything is a RuntimeError, as was the case in the old API.
  • cmdc should be faster or as fast as API 2.0

    Reference

  • cmdc comes with fully type annotated stubs, making it easy to set up code completion as well as type checking.

Status

It'll work, but won't have half the things you'll need to do anything of use in Maya. The current source is enough to illustrate (1) how to expose types, (2) how to expose function sets and (3) how to deal with passing MObject references around.


Repository

File Description
src/ C++ source for the pybind11 bindings
include/ The pybind11 source
lib/ The missing Python libraries
tests/ Tests for bound methods and types
scripts/ Code-generation
build_win32.ps1 Build script for any Maya on Windows
build_linux.ps1 Build script for any Maya on Linux
docker_build_linux.ps1 Build script for any Maya on Windows for Linux
Dockerfile Linux build environment, same one used by CI
docker_entrypoint.ps1 Docker helper file

Build

This should build on any platform, for any Maya with Python available. Including 2022. Included is an example build script for Maya 2020 on Windows.

  • A Maya devkit
  • C++11 compatible compiler, e.g. Visual Studio 2019

Windows

$env:DEVKIT_LOCATION="C:\github\maya-devkit\2020.2\windows"
pwsh .\build_win32.ps1 2020

NOTE: Keep pwsh to avoid existing your terminal on failure

Linux

export DEVKIT_LOCATION=/github/maya-devkit/2020.2/linux
cd cmdc
docker build -t cmdc .
./build_linux.ps1 2020

Linux on Windows

$env:DEVKIT_LOCATION="C:\github\maya-devkit\2020.2\linux"
cd cmdc
docker build -t cmdc .
.\docker_build_linux.ps1 2020

Contributing

Interested in helping out? Here's how to do it.

  1. Get a free compiler, like Visual Studio 2019 for Windows
  2. Download and unzip a Maya devkit (scroll down)
  3. Clone this repository
  4. Write your header file
  5. Submit a pull-request
  6. Profit

FAQ

Do I need to know C++?

Not really! What we're doing here is mostly busy-work, filling in the many functions exposed by the Maya API. Most if not all trickery has already been done in other functions, so copy/paste is a valid option.

I don't have any other questions?

Great, then here's what's next.

# Tell cmdc about where your devkit is
$env:DEVKIT_LOCATION="C:\maya-devkit"

# Clone the big jeeves out of this repository
git clone https://github.com/mottosso/cmdc.git

cd cmdc

# Either write your own header from scratch..
# ..or generate some boiler plate of your favourite header!
mayapy ./scripts/parse_header.py MFnDagNode.h

From here, you'll have a freshly generated header file, ready to fill in. As you fill things in, you build it like this.

Packages

No packages published

Languages

  • C++ 89.9%
  • Python 9.4%
  • PowerShell 0.4%
  • Shell 0.2%
  • AMPL 0.1%
  • Dockerfile 0.0%