The standard publications for the SBHPF binary format
Find a file
zervo 36d6fa812e Update README.md
Fix broken link
2025-02-14 20:14:58 +01:00
.gitignore First revision 2025-02-14 20:12:29 +01:00
LICENSE Initial commit 2025-02-14 17:38:29 +01:00
README.md Update README.md 2025-02-14 20:14:58 +01:00
SBHPF-v1.md First revision 2025-02-14 20:12:29 +01:00

SBHPF-Standard

This repository holds the standard publications for the SBHPF binary format.

As of right now, the latest version of SBHPF is Version 1.

What is SBHPF?

SBHPF is an abbreviation of Simple Binary Hierarchical Property Format.

It is essentially just a standard definition of a binary format that stores nodes in a tree-like format.

A node can optionally contain properties or child nodes.

The specific implementation of this depends on the version of the format. Please read the document for more information.

Each standard definition outlines the format in detail, and also has some recommendations for implementing parsers.

Standards

SBHPF version 1: First version of the format. Quite simple but at the same time pretty solid. See the v1 standard.

Implementations

I will try to create quality implementations of SBHPF in various languages when I have time.

For now, there is only a basic Go implementation.

  • GoSBHPF: Simple go library implementing SBHPF. (source)