Check out our latest project ✨ OpenChapter.io: free ebooks the way its meant to be 📖

Base32768 encoder/decoder

An asset by Venorrak
The page banner background of a mountain and forest
Base32768 encoder/decoder hero image

Quick Information

0 ratings
Base32768 encoder/decoder icon image
Venorrak
Base32768 encoder/decoder

Helper class for encoding and decoding base32768 data.

Supported Engine Version
4.4
Version String
1.1
License Version
MIT
Support Level
community
Modified Date
17 days ago
Git URL
Issue URL

Base32768

Base32768 is a binary encoding optimised for UTF-16-encoded text.

This Godot plugin is an implementation of an already existing javascript plugin in gdscript. Link to the original repository : https://github.com/qntm/base32768

Usage

var toTranslate = "testma"
var base = Base32768.new()

toTranslate.to_utf8_buffer()
# [116, 101, 115, 116, 109, 97]

var encoded = base.encode(toTranslate.to_utf8_buffer())
# "悒茽㇌Ɵ"

var decoded = base.decode(encoded)
# [116, 101, 115, 116, 109, 97, 0, 0]

decoded.get_string_from_utf8()
# "tesma"

Helper class for encoding and decoding base32768 data.

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
Base32768 encoder/decoder icon image
Venorrak
Base32768 encoder/decoder

Helper class for encoding and decoding base32768 data.

Supported Engine Version
4.4
Version String
1.1
License Version
MIT
Support Level
community
Modified Date
17 days ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers