Skip to main content

Circuit Maker 2 save generation and manipulation package

Project description

cm2py

cm2py is a Python package for generating and manipulating save strings for the roblox game Circuit Maker 2.

Installation

Use the package manager pip to install cm2py.

pip install cm2py

Usage

Basic program to generate a line of 8 looping OR gates:

import cm2py as cm2

length = 8

save = cm2.Save()

blocks = []

for i in range(length):
    blocks.append(save.addBlock(cm2.OR, (i, 0, 0)))

### Commented out for clarity. 
### You should store connections in a list if you want to modify them later.
# connections = []  

for i in range(length):
    # connections.append(save.addConnection(blocks[i-1], blocks[i]))
    save.addConnection(blocks[i-1], blocks[i])  # Directly add the connections to the save object

saveString = save.exportSave()
print(saveString)

(from the loop.py example)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cm2py-0.3.3.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

cm2py-0.3.3-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file cm2py-0.3.3.tar.gz.

File metadata

  • Download URL: cm2py-0.3.3.tar.gz
  • Upload date:
  • Size: 5.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.2

File hashes

Hashes for cm2py-0.3.3.tar.gz
Algorithm Hash digest
SHA256 5690225c06755e5659a222311dd81dbca191329d84db24ecc05ef3d05717316c
MD5 12baf583d3a8c90e1722c19a9b99a745
BLAKE2b-256 c85b74bd5249a37fb006fb257bdca8fbd70129720b5d08ddabbcf588aa7d497f

See more details on using hashes here.

File details

Details for the file cm2py-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: cm2py-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.2

File hashes

Hashes for cm2py-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d5bf56a0de9d7879ef5e926c88480278ec3729ef06076cb6d21f64a560d9db0a
MD5 dcbd0e80b7ae1744529f271f4c8ac263
BLAKE2b-256 e57845d60a203f610e846d07b94190a37687984faada7d601dce27536bb1a364

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page