Skip to main content

a simple deserializer / serializer for Koikatu / EmotionCreators / Honeycome / SummerVacationScramble data.

Project description

KoikatuCharaLoader

A simple deserializer and serializer for character data from Koikatu, EmotionCreators, Honeycome, and SummerVacationScramble.

Downloads

日本語マニュアルがここにあります

Installation

You can install the module from PyPI.

$ pip install kkloader

If this doesn't work, try the following command (this may be for Windows users).

$ python -m pip install kkloader

Basic Usage

$ python
>>> from kkloader import KoikatuCharaData # Load the module.
>>> kc = KoikatuCharaData.load("./data/kk_chara.png") # Load character data.
>>> kc["Parameter"]["nickname"] # Print the character's nickname.
'かずのん'
>>> kc["Parameter"]["nickname"] = "chikarin" # Rename the nickname.
>>> kc.save("./kk_chara_modified.png") # Save to `kk_chara_modified.png`.

That's it! :)

List of Classes

  • Supports saving and loading:
    • KoikatuCharaData
    • EmocreCharaData
    • HoneycomeCharaData
    • SummerVacationCharaData
    • SummerVacationSaveData
  • Supports loading only:
    • KoikatuSaveData
    • EmocreMapData
    • EmocreSceneData

Any class can be imported with from kkloader import KoikatuCharaData and data can be loaded using the .load(filename) method.

Mechanism of the Blockdata

Koikatu character data consists of several block data sections. Each block data contains various character parameters. A typical Koikatsu character data includes the following block data:

name of blockdata description
Custom Values for the character's face, body, and hairstyle.
Coordinate Values for clothes and accessories worn by characters.
Parameter Values for character's name, birthday, preferences, etc.
Status Values for clothed states, etc. (Usage in the game is unclear)
About userID & dataID (added from Koikatu Sunshine)
KKEx Values used in MOD

You can check which block data is present in blockdata from the KoikatuCharaData object:

>>> kc.blockdata
['Custom', 'Coordinate', 'Parameter', 'Status']

If there is block data in an unknown format, it can be found using unknown_blockdata.

Access to Blockdata

The block data can be accessed either as a member variable of the KoikatuCharaData class or as a dictionary.

>>> kc.Custom
<kkloader.KoikatuCharaData.Custom object at 0x7f406bf18460>
>>> kc["Custom"]
<kkloader.KoikatuCharaData.Custom object at 0x7f406bf18460>

As shown, both lines access the same kc.Custom.

Find Variables

You can try out the character information display from this program in your browser on this site. If you are looking to identify which variables to modify, this interface can serve as a useful starting point for narrowing down potential candidates.

By using the prettify method, the contents of the variables within the data block will be displayed in a more readable format. This is useful for identifying which variables exist.

>>> kc["Custom"].prettify()
{
  "face": {
    "version": "0.0.2",
    "shapeValueFace": [
      ...
    ],
    "headId": 0,
    "skinId": 0,
    "detailId": 0,
    "detailPower": 0.41674190759658813,
    ...

KKEx Nested MessagePack Handling

The KKEx in blockdata sometimes contains fields encoded as raw bytes that are themselves MessagePack payloads.
kkloader automatically deserializes and reserializes such fields for known plugins listed in KKEx.NESTED_KEYS.

Export to JSON file

from kkloader import KoikatuCharaData

k = KoikatuCharaData.load("./data/kk_chara.png")
k.save_json("data.json") 

data.json

{
  "product_no": 100,
  "header": "\u3010KoiKatuChara\u3011",
  "version": "0.0.0",
  "Custom": {
    "face": {
      "version": "0.0.2",
      "shapeValueFace": [
        0.5403226017951965,
        1.0,
        0.2016129046678543,
        0.0,
        0.22580644488334656,
        0.0,
        0.0,
        0.1794193685054779,
        0.0,
...

If you add include_image=True to the save_json function's arguments, base64-encoded images will be included in the JSON output.

Recipes

Rename Character's Name

from kkloader import KoikatuCharaData

k = KoikatuCharaData.load("./data/kk_chara.png")
k["Parameter"]["lastname"] = "春野"
k["Parameter"]["firstname"] = "千佳"
k["Parameter"]["nickname"] = "ちかりん"
k.save("./data/kk_chara_modified")

Set the Height of Character to 50

from kkloader import KoikatuCharaData

k = KoikatuCharaData.load("./data/kk_chara.png")
k["Custom"]["body"]["shapeValueBody"][0] = 0.5
k.save("./data/kk_chara_modified.png")  

Remove Swim Cap

from kkloader import KoikatuCharaData

k = KoikatuCharaData.load("./data/kk_chara.png")
for i,c in enumerate(k["Coordinate"]):
    for n,p in enumerate(c["accessory"]["parts"]):
        if p["id"] == 5:
            k["Coordinate"][i]["accessory"]["parts"][n]["type"] = 120
k.save("./data/kk_chara_modified.png")  

Remove Under Hair

from kkloader import KoikatuCharaData
kc = KoikatuCharaData.load("./data/kk_chara.png")
kc["Custom"]["body"]["underhairId"] = 0
kc.save("./data/kk_chara_modified.png")

Convert Character Cards from EmotionCreators to Koikatu

ec_to_kk.py in the sample directory might be helpful.

Using this web app, you can easily perform the conversion directly from your browser.

Others

Various examples using this module can be found in this repository, and you can also use it on this site.

Contributing

You'll need Python 3.11 and poetry command (you can install with pip install poetry).

  1. Fork the repository and pull the latest changes.
  2. Run make install to install the dependencies.
  3. Create a new branch and make changes the code.
  4. Run make format and make check
  5. Once make check passes, push the code and open a pull request on the repository.

Acknowledgements

Contact

@tropical_362827

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

kkloader-0.1.11.tar.gz (16.1 kB view details)

Uploaded Source

Built Distribution

kkloader-0.1.11-py3-none-any.whl (18.1 kB view details)

Uploaded Python 3

File details

Details for the file kkloader-0.1.11.tar.gz.

File metadata

  • Download URL: kkloader-0.1.11.tar.gz
  • Upload date:
  • Size: 16.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.11.12 Linux/6.11.0-1012-azure

File hashes

Hashes for kkloader-0.1.11.tar.gz
Algorithm Hash digest
SHA256 d74bd37ea554c7893fcb6f824b8180a5f2b090dd6769ad9adaceeb0b4a99f6fd
MD5 902b4b9f71b06b7be29bf195ab4b9026
BLAKE2b-256 09559df63646532ffee6c3461b3028b8c8d795f5277cb4143239c5502bcd728c

See more details on using hashes here.

File details

Details for the file kkloader-0.1.11-py3-none-any.whl.

File metadata

  • Download URL: kkloader-0.1.11-py3-none-any.whl
  • Upload date:
  • Size: 18.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.11.12 Linux/6.11.0-1012-azure

File hashes

Hashes for kkloader-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 071be51c444dc1f95d4b1fbbef59ada08d49a291996f31d524bba0253974e389
MD5 1cde89613f4f6dc2fd141c835b1a7840
BLAKE2b-256 16216b319510300e394a9528f169036af73b78354a9f37f02f291d5bc477a11d

See more details on using hashes here.

Supported by

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