Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ultreon/ubo
NBT inspired data I/O. Made for games.
https://github.com/ultreon/ubo
api binary-data data data-storage file-type game-data io library ubo
Last synced: about 2 months ago
JSON representation
NBT inspired data I/O. Made for games.
- Host: GitHub
- URL: https://github.com/ultreon/ubo
- Owner: Ultreon
- License: apache-2.0
- Created: 2022-11-07T19:32:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-25T21:35:08.000Z (6 months ago)
- Last Synced: 2024-06-25T22:50:31.652Z (6 months ago)
- Topics: api, binary-data, data, data-storage, file-type, game-data, io, library, ubo
- Language: Java
- Homepage: https://ultreon.dev/ubo/docs/latest
- Size: 661 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ultreon Binary Object
**File Extension:** `.ubo`
**API Language:** `Java 8`## Usage
Assuming you use gradle.
1. Then, in `build.gradle`, define the dependency:
```gradle
dependencies {
implementation 'dev.ultreon:ubo:1.5.0'
}
```
2. We can now proceed to the using section. The `DataIo` class is capable of reading and writing UBO data.
Example:
```java
import dev.ultreon.ubo.DataIo;
import dev.ultreon.ubo.types.MapType;
import java.io.File;
public class DataTest {
public static void main(String[] args) {
MapType dataType = new MapType();
dataType.putString("greetings", "Hello World");
DataIo.write(dataType, new File("data.ubo"));
}
}
```
3. You can now build it. You can change the example in step 2 to suit your needs.Here's the [jitpack listing](https://jitpack.io/#dev.ultreon/ubo) for the current versions and builds you can use.
Check out the releases page for latest releases.## Naming conventions
The following conventions are for map keys:
* `MapType` and `ListType` are in `PascalCase`.
* Any other types are in `camelCase`.Do note that in some cases keys can have a different case.
For example if the key is used for identifiers. (Like those: `namespace:id`)
Tho it's generally not recommended to use map keys for objects like identifiers or numbers.