Skip to main content

Decoding of Heroes Might of Magic III files

Project description

homm3data

Decoding of Heroes Might of Magic III files

Installation

Library can be installed with PIP: pip install homm3data

Examples

Saving all frames from def file as png files:

from homm3data import deffile

with deffile.open('path/to/deffile.def') as d:
    for group in d.get_groups():
        for frame in range(d.get_frame_count(group)):
            img = d.read_image('combined', group, frame)
            img.save('path/to/image_group%d_frame%d.png' % (group, frame))

Extracting image from pcx inside lod file:

from homm3data import pcxfile, lodfile

with lodfile.open('path/to/h3bitmap.lod') as lod:
    data = lod.get_file("aishield.pcx")
    if pcxfile.is_pcx(data):
        pcxfile.read_pcx(data).save('path/to/image.png')

Extracting image from pak file (Heroes III HD):

from homm3data import pakfile

with pakfile.open("path/to/sprite_DXT_com_x3.pak") as pak:
    img = pak.get_image("AVWIMPX0", "AVWIMPX1")
    img.save('path/to/image.png')

Extracting text from H3 demo:

import urllib.request
import tarfile
from io import BytesIO
from homm3data import lodfile

url = "http://updates.lokigames.com/loki_demos/heroes3-demo.run"
contents = urllib.request.urlopen(url).read()
data = contents.split(b"END_OF_STUB\n", 1)[1]
with tarfile.open(fileobj=BytesIO(data), mode="r:gz") as tar:
    with lodfile.open(tar.extractfile("data/demos/heroes3_demo/data/h3bitmap.lod")) as lod:
        data = lod.get_file("GENRLTXT.TXT")
        print(data.decode())

Tests

The tests needs innoextract installed on system (may needs to be inside PATH variable).

API

The API for the library is described here.

License

Library is released under MIT license.

Some parts of code are based on lodextract from josch. Originally published under GPL. Josch kindly gave me permission (via e-mail) to use the code under MIT as well. Thanks a lot!

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

homm3data-0.1.10.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

homm3data-0.1.10-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file homm3data-0.1.10.tar.gz.

File metadata

  • Download URL: homm3data-0.1.10.tar.gz
  • Upload date:
  • Size: 12.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for homm3data-0.1.10.tar.gz
Algorithm Hash digest
SHA256 9131331817e7c17589ad0fc0f0127cca6a954828c11680d558cb0fb8f1c02b35
MD5 89a6c82a49f1da0393d4758ed7bbe3b1
BLAKE2b-256 23b8886f4c1ec3e6074b615da8adf984584c53edf365d1281d8d4f0a06ec9fb3

See more details on using hashes here.

File details

Details for the file homm3data-0.1.10-py3-none-any.whl.

File metadata

  • Download URL: homm3data-0.1.10-py3-none-any.whl
  • Upload date:
  • Size: 12.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.3

File hashes

Hashes for homm3data-0.1.10-py3-none-any.whl
Algorithm Hash digest
SHA256 669f7253d953f2fcbf59540ab6944259d1c8d7abc564e14a134dadd39f178382
MD5 e337688ba2e5c1a9fea7011739c49180
BLAKE2b-256 1bd91b91eb135234c9da24d1edce12344d21719dceac18aec9c02afbfd6fb8ce

See more details on using hashes here.

Supported by

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