Metadata-Version: 2.1
Name: rpgmaker_mv_decoder
Version: 1.0.1
Summary: Quickly decode or encode assets for RPG Maker MV, even if you don't have the key
Home-page: https://github.com/kins-dev/rpgmaker_mv_decoder
Author: Scott Atkins
Author-email: scott@kins.dev
License: MIT license
Keywords: rpgmaker_mv_decoder
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.6
License-File: LICENSE
License-File: AUTHORS.rst


RPGMaker MV Decoder v1.0.1
==========================


.. image:: https://img.shields.io/github/workflow/status/kins-dev/rpgmaker_mv_decoder/CodeQL/v1.0.1?label=v1.0.1%20CodeQL&logo=GitHub
   :target: https://github.com/kins-dev/rpgmaker_mv_decoder/actions/workflows/codeql-analysis.yml
   :alt: v1.0.1 CodeQL Status
 
.. image:: https://img.shields.io/github/workflow/status/kins-dev/rpgmaker_mv_decoder/Python%20application/v1.0.1?label=v1.0.1%20Python%20application&logo=GitHub
   :target: https://github.com/kins-dev/rpgmaker_mv_decoder/actions/workflows/python-app.yml
   :alt: v1.0.1 Python Application Status
 
.. image:: https://img.shields.io/github/workflow/status/kins-dev/rpgmaker_mv_decoder/Upload%20Python%20Package/v1.0.1?label=v1.0.1%20Upload%20Python%20Package&logo=GitHub
   :target: https://github.com/kins-dev/rpgmaker_mv_decoder/actions/workflows/python-publish.yml
   :alt: v1.0.1 Pylint Status
 
.. image:: https://img.shields.io/readthedocs/rpgmaker_mv_decoder/v1.0.1?label=v1.0.1%20Documentation&logo=readthedocs
   :target: https://rpgmaker-mv-decoder.readthedocs.io/en/v1.0.1/
   :alt: Documentation status


.. image:: https://img.shields.io/pypi/v/rpgmaker_mv_decoder?label=Latest%20pypi%20release&logo=pypi&color=blue
   :target: https://pypi.python.org/pypi/rpgmaker_mv_decoder
   :alt: Latest pypi release


This is a set of python scripts for decoding and encoding RPGMaker MV/MZ game assets.

Decoding has a handy feature, it will figure out (if possible) the key automatically.
It will also can use the file data for creating the extension.
If you know the key, you can pass it in.

If you want you can use the `API <https://rpgmaker-mv-decoder.readthedocs.io>`_ instead

Features
--------


* GUI for those who need that
* Fast
* No key needed if there's any encoded png images
* Can put proper file extensions on the decoded files

Example usage
-------------

.. code-block:: bash

   ./decoder.py "<source path>" "<destination path>" ["<optional key>"]

.. code-block:: bash

   ./encoder.py "<source path>" "<destination path>" "<key>"

.. code-block:: bash

   ./gui.py

Help
----

You can use the standard ``--help`` option for full documentation:

Decoding
^^^^^^^^

.. code-block:: plain

   Usage: decode.py [OPTIONS] <Source> <Destination> [<Key>]

     Decodes RPGMaker files under <Source> directory to <Destination> directory.

   Arguments:
     <Source>       The source directory. For best results this should be the
                    parent of the 'www' or 'img' directory.
     <Destination>  The parent destination directory. This script will create a
                    project directory under this path if it doesn't already
                    exist.
     <Key>          The decoding key to use. This argument is optional. If the
                    key is omitted it will be inferred (if possible) based on the
                    file contents.

   Options:
     --detect_type  Detect the file type and use the associated file extension.
                    By default .rpgmvp becomes .png and .rpgmvo becomes .ogg
                    regardless of the file contents.
     --help         Show this message and exit.

Encoding
^^^^^^^^

.. code-block:: plain

   Usage: encode.py [OPTIONS] <Source> <Destination> <Key>

     Encodes image and audio files under <Source> directory.

   Arguments:
     <Source>       The source directory. For best results this should be the
                    parent of the 'www' or 'img' directory.
     <Destination>  The parent destination directory. This script will create a
                    project directory under this path if it doesn't already
                    exist.
     <Key>          The encoding key to use.

   Options:
     --help  Show this message and exit.


=======
History
=======

1.0.2 (2022-04-15)
------------------

* Fixed history file
* Fixed documentation link

1.0.0 (2022-04-15)
------------------

* Added about dialog
* Production ready

0.3.4 (2022-04-14)
------------------

* Updating actions to publish properly
* Documentation updates

0.3.3 (2022-04-14)
------------------

* Fix to GitHub actions

0.3.2 (2022-04-14)
------------------

* Automate the release process

0.3.1 (2022-04-13)
------------------

* Fixes to documentation

0.3.0 (2022-04-13)
------------------

* Added icons
* Added encoding
* Changed exe name
* UPX packing on Windows
* Documentation updates

0.2.4 (2022-04-06)
------------------

* More testing
* Bump2Version configuration fixes
* Fixing up tox.ini

0.2.3 (2022-04-01)
------------------

* Added tests

0.2.2 (2022-04-01)
------------------

* Fixed documentation
* Fixed exceptions

0.2.1 (2022-03-31)
------------------

* Bug fixes

0.2.0 (2022-03-30)
------------------

* Added GUI

0.1.1 (2022-03-23)
------------------

* Faster key detection
* Python typing
* Added documentation
* Keeping files compatible with RPGMaker MV/MZ
  * Using .png or .ogg instead of real extension

0.1.0 (2021-04-18)
------------------

* First release on PyPI.


