gdunzip 1.0.0

Add to wishlistAdded to wishlistRemoved from wishlist 1
Add to compare
@ Godot Asset Library

Gdunzip is a zip file browser/decompressor written entirely in a single
GDScript file.

Submitted by user jelle;
MIT;
2019-01-10

FREE

Report Abuse
SKU: GDAL298 Gotot version: 3.0.4 Categories: , , ,

Gdunzip is a zip file browser/decompressor written entirely in a single
GDScript file. You can use this in games you’re building with the Godot game
engine. This script is meant for modest zip decompressing purposes, since the
inflate algorithm it contains isn’t super fast and gdunzip doesn’t do CRC
checks of the uncompressed files. However, gdunzip works fine if you only need
to decompress small files, or when your zip files contain precompressed files
like png’s.

In order to create gdunzip, I have made a GDScript port of Jørgen Ibsen’s
excellent tiny inflate library: tinf (https://bitbucket.org/jibsen/tinf) for
decompressing the deflate streams. Since the original was written in C and used
some nifty pointer arithmetic, I had to make some minor changes
here and there to be able to translate it. However, I tried to stay as close to
the original code as possible.

The zip file format parsing is all written from scratch and performs pretty
well.

Using gdunzip
———————-

# Instance the gdunzip script
var gdunzip = load(‘res://addons/gdunzip/gdunzip.gd’).new()

# Load a zip file
var loaded = gdunzip.load(‘res://test.zip’)

# Uncompress a file, getting a PoolByteArray in return
# (or false if it failed uncompressing)
if loaded:
var uncompressed = gdunzip.uncompress(‘lorem.txt’)
if !uncompressed:
print(‘Failed uncompressing lorem.txt’)
else:
print(uncompressed.get_string_from_utf8())
else:
print(‘Failed loading zip file’)

– When gdunzip has loaded a zip file, you can iterate over all the files inside, by
looping through the “files” attribute:

for f in gdunzip.files:
print(‘File name: ‘ + f[‘file_name’])

# “compression_method” will be either -1 for uncompressed data, or
# File.COMPRESSION_DEFLATE for deflate streams
print(‘Compression method: ‘ + str(f[‘compression_method’]))

print(‘Compressed size: ‘ + str(f[‘compressed_size’]))

print(‘Uncompressed size: ‘ + str(f[‘uncompressed_size’]))

Class documentation
———————————

MEMBER FUNCTIONS:

– bool load(String path)

Tries to load a zip file with a given path. Returns false if it failed
loading the zip, or true if it was successfull.

– PoolByteArray uncompress(String file_name)

Try to uncompress the given file in the loaded zip. The file_name can include
directories. This function returns *false* if the file can’t be found, or if
there’s an error during uncompression.

– PoolByteArray get_compressed(String file_name)

Returns the compressed data for a given file name (or false if the file can’t
be found). Depending on the file compression it can be either uncompressed or a
raw deflate stream. This function returns *false* if the file can’t be found.

FILES ATTRIBUTE:

After you have loaded a file, the gdunzip instance will have a pre-filled
“files” attribute. This is simply an dictionary containing the meta data for
the files that reside in the zip. The dictionary is a mapping from file name
(including directory) to another dictionary with the following keys:

– file_name: the file name
– compression_method: -1 if uncompressed or File.COMPRESSION_DEFLATE
– file_header_offset: the exact byte location of this file’s compressed data
inside the zip file
– compressed_size: the compressed file size in bytes
– uncompressed_size: the uncompressed file size in bytes

Specification: gdunzip

Version

User Reviews

0.0 out of 5
0
0
0
0
0
Write a review

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Vendor Information

  • Store Name: Official Godot Asset Library
  • Vendor: Godot Asset Library
  • Address:
  • No ratings found yet!
Added to wishlistRemoved from wishlist 0
Add to compare
Multitouch Cubes Demo

Multitouch Cubes Demo

Sold by Official Godot Asset Library
Added to wishlistRemoved from wishlist 4
Add to compare
MessDeform

MessDeform

Sold by Official Godot Asset Library
Added to wishlistRemoved from wishlist 1
Add to compare
Sprite Baker

Sprite Baker

Sold by Official Godot Asset Library
Added to wishlistRemoved from wishlist 0
Add to compare
ADB Helper

ADB Helper

Sold by Official Godot Asset Library

Product Enquiry

Please Login to make enquiry about this product

10% OF REVENUE IS DONATED TO GODOT

Reset Password
Compare items
  • Total (0)
Compare