Mutant Standard for PursuedPyBear
Project description
ppb-mutant
This library provides convenient support for the Mutant Standard emoji for games using the PursuedPyBear engine.
This version is for PursuedPyBear v0.5 and Mutant Standard v0.3.1.
On Versions: This project is semi-semver: Whenever the matching PPB or Mutant dependencies are updated, the major version is changed (eg frome v0.4 to v0.5). Whenever the library itself is updated, the minor version is changed (eg from v0.4.0 to v0.4.1); this may introduce breaking changes.
Setup
- Install the
ppb-mutant
package through your preferred package management system. (pip,requirements.txt
, pipenv, poetry, etc)
Usage
Demo
A demo showing all emoji can be found by running python -m ppb_mutant.download
.
MutantSprite
You can replace the use of image
in your sprites with emoji
like so:
class SlimeSprite(ppb_mutant.MutantSprite):
emoji = 'people_animals/creatures/other/slime'
In addition, the formatting syntax with the variables morph
and skin
may be
used for Mutant's customization features:
class PunchRightSprite(ppb_mutant.MutantSprite):
emoji = 'fist_facing_right_{morph}_{skin}'
morph = 'clw'
tone = 'r2' # "colour"
See the modifier guide for details on these.
Alternatively, most customizable emoji also have aliases defined:
class PunchRightSprite(ppb_mutant.MutantSprite):
emoji = 'fist_facing_right'
morph = 'clw'
tone = 'r2' # "colour"
SelectScene
SelectScene
is a base for allowing you to handle mutant morph and tone
(color) customization. It can be used like:
class CustomizeScene(SelectScene):
class Sprite(SelectScene.Sprite): pass
class BackSprite(Region, Sprite):
emoji = 'tick'
def on_button_pressed(self, mouse, signal):
if self.contains(mouse.position) and mouse.button is ppb.buttons.Primary:
mouse.scene.running = False
def __init__(self, *p, **kw):
super().__init__(*p, **kw)
left = self.main_camera.frame_left
self.add(self.BackSprite(pos=(left + 2.5, -1.5)))
def do_update_morphtone(self):
print(self.morph, self.tone)
Copyright Notice
This library uses Mutant Standard emoji, which are licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
Development
The compiled assets are not part of git.
If you just want a copy, pull them out of one of the PyPI packages and copy into
ppb_mutant/_assets
To compile them fresh:
- Run
./download_mutant.py
- Run
./compile_mutant.py
(Takes a long time) - Run
./mutant_json.py
- Run
./download_zips.py
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ppb-mutant-0.6.0.tar.gz
.
File metadata
- Download URL: ppb-mutant-0.6.0.tar.gz
- Upload date:
- Size: 15.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cbe2d140ee3e5ef8b554b770e9952b24f8316e930a2e76ceee8f097aa944553 |
|
MD5 | beaa280f3087a5d0d3b260724b964f16 |
|
BLAKE2b-256 | 1dd438dafd3308d5b7834595f2a4e817171b47f03495bc41e0fed1fe05751c08 |
File details
Details for the file ppb_mutant-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: ppb_mutant-0.6.0-py3-none-any.whl
- Upload date:
- Size: 22.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1f76268e35adced3b60a048506110bade958f968d249349f9d131ae523514d1 |
|
MD5 | e9de6780f02435882840a7194ede29be |
|
BLAKE2b-256 | ba5ecb084fb31f55d322c041bc7b296df1045fef2b38c3baa1f5d262d2321094 |