示例#1
0
    def get_script(self, key):
        if key.startswith("@"):
            key = key[1:]
        else:
            key = f"Scripts/{key}"
        row = self.asset_db.execute(
            """SELECT pack_name, head, size, key1, key2 
            FROM adv_script WHERE asset_path = ?""",
            (key, ),
        )
        info = row.fetchone()
        if not info:
            raise ExtractFailure(1)

        pack_name, head, size, key1, key2 = info
        pack = os.path.join(self.cache, f"pkg{pack_name[0]}", pack_name)
        k1 = to_unsigned(key1)
        k2 = to_unsigned(key2)

        keyset = hwdecrypt.Keyset(k1, k2)
        with open(pack, "rb") as f:
            f.seek(head)
            buf = bytearray(size)
            f.readinto(buf)

        hwdecrypt.decrypt(keyset, buf)
        return buf
示例#2
0
    def get_script_texture(self, scpt_name, idx, intobuf):
        row = self.asset_db.execute(
            """SELECT pack_name, head, size, key1, key2 
            FROM adv_graphic LEFT JOIN texture ON (resource = asset_path) 
            WHERE script_name = ? AND idx = ?""",
            (scpt_name, idx),
        )
        info = row.fetchone()
        if not info:
            raise ExtractFailure(1)

        pack_name, head, size, key1, key2 = info
        pack = os.path.join(self.cache, f"pkg{pack_name[0]}", pack_name)
        k1 = to_unsigned(key1)
        k2 = to_unsigned(key2)

        try:
            file_id = f"{pack_name}${os.path.getmtime(pack)}"
        except FileNotFoundError:
            raise ExtractFailure(1)

        yield {"file_id": file_id}

        keyset = hwdecrypt.Keyset(k1, k2)
        with open(pack, "rb") as f:
            f.seek(head)

            while size > 0:
                nread = f.readinto(intobuf)
                hwdecrypt.decrypt(keyset, intobuf)
                if nread > size:
                    yield (intobuf, size)
                else:
                    yield (intobuf, nread)
                size -= nread
示例#3
0
def load_image(packid, head, size, k1, k2, k3):
    idata = io.BytesIO()
    idata.seek(size - 1)
    idata.write(b".")
    idata.seek(0)

    with open(packid, "rb") as f:
        f.seek(head)
        if f.readinto(idata.getbuffer()) != size:
            raise IOError("Not enough data")

    keyset = hwdecrypt.Keyset(k1, k2, k3)
    hwdecrypt.decrypt(keyset, idata.getbuffer())
    idata.seek(0)
    return Image.open(idata)
示例#4
0
    def get_texture(self, key, intobuf):
        pack_name, head, size, key1, key2, _ = self.get_texture_info(key)
        pack = os.path.join(self.cache, f"pkg{pack_name[0]}", pack_name)
        k1 = to_unsigned(key1)
        k2 = to_unsigned(key2)

        keyset = hwdecrypt.Keyset(k1, k2)
        with open(pack, "rb") as f:
            f.seek(head)

            while size > 0:
                nread = f.readinto(intobuf)
                hwdecrypt.decrypt(keyset, intobuf)
                if nread > size:
                    yield (intobuf, size)
                else:
                    yield (intobuf, nread)
                size -= nread
示例#5
0
    def get_texture(self, key, intobuf):
        pack_name, head, size, key1, key2, _ = self.get_texture_info(key)
        pack = os.path.join(self.cache, f"pkg{pack_name[0]}", pack_name)
        k1 = to_unsigned(key1)
        k2 = to_unsigned(key2)

        try:
            file_id = f"{pack_name}${os.path.getmtime(pack)}"
        except FileNotFoundError:
            raise ExtractFailure(1)
        yield {"file_id": file_id}

        keyset = hwdecrypt.Keyset(k1, k2)
        with open(pack, "rb") as f:
            f.seek(head)

            while size > 0:
                nread = f.readinto(intobuf)
                hwdecrypt.decrypt(keyset, intobuf)
                if nread > size:
                    yield (intobuf, size)
                else:
                    yield (intobuf, nread)
                size -= nread