Metadata-Version: 2.1
Name: vmu-tools
Version: 0.1.3
Summary: A set of tools for Dreamcast VMU icon
Home-page: https://github.com/slurmking/vmu-tools
Author: slurmking
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
License-File: LICENSE


# VMU Tools

This python project is designed to be a fully loaded suite of VMU tools for the dreamcast.

### Features
* Read and extract data from .VMS and  .VMI files
* Generate icons from ICONDATA and VMS files
* Generate VMI files from VMS 
* Read and manipulate VMU dumps files
* Extract and upload savegames from VMU dump files

### Example
```python
import vmut

#Load .VMS file
VMS = vmut.vms.load_vms("example_files/SCALIBUR.VMS")  

#Print info
print(animated_vms.info)  

#Save icon
animated_vms.image_save("animaed.gif")  

#Generate Checksum
print(animated_vms.generated_checksum())
```




### Roadmap
* Create ICONDATA and VMS icons from PNG and JPEG
* Change VMU color
* Convert VMU dumps to and from .DCI files
* Modify VMU ICONDATA from VMU dumps
* Possibly implament a built in webserver for file transfers from Dreamcast




----
##### Special Thanks  to:
* Marcus Comstedt https://mc.pp.se/dc/
	* For providing the best documentation on the Dreamcast 
* [mrneo240](https://github.com/mrneo240)
	* for assistance on creating ICONDATA tools
*  [bucanero](https://github.com/bucanero)
	* For providing a dump of usefull test files


