Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/tryashtar/nbt-studio

An up-to-date NBT viewer and editor with lots of new features
https://github.com/tryashtar/nbt-studio

minecraft nbt

Last synced: about 2 months ago
JSON representation

An up-to-date NBT viewer and editor with lots of new features

Lists

README

        

# NBT Studio

### [Download link](https://github.com/tryashtar/nbt-studio/releases)

NBT Studio is an [NBT](https://wiki.vg/NBT) editing application, the spiritual successor to [NBTExplorer](https://github.com/jaquadro/NBTExplorer). It has been rewritten completely from scratch to support a vast array of new features, while keeping the familiar layout of controls. New features include Bedrock support, SNBT support, undo/redo functionality, drag and drop, multiselect, and more! It's called Studio to make it sound more important than it really is.

## Files
NBT Studio supports reading and writing the following NBT formats. Features marked with a star are new NBT Studio features not present in NBTExplorer.

* Java NBT files, such as `level.dat`
* Java region files (`.mca` and `.mcr`)
* ☆ Bedrock NBT files, such as `.mcstructure` files (little-endian NBT)
* ☆ SNBT files (stringified NBT, like in commands: `{Enchantments:[{id:sharpness,lvl:10s}]}`)

☆ NBT files can be exported to any of these formats using Save as. You can load an SNBT file, then export it as a little-endian g-zipped binary file if you wish.

☆ NBT Studio also allows the creation of blank NBT files. You can start from scratch and export to any format. Additionally, you can use Ctrl Alt V to create a file from SNBT data on your clipboard.

## SNBT Support
NBT Studio is designed around the easy transfer and conversion between textual SNBT data and structured NBT data. As mentioned, SNBT can be opened as a file or pasted as a new document.

* You can add a tag as SNBT anywhere in the document. Whatever type is parsed will be the resulting type of the tag. Compounds and lists will be fully parsed with all of their children.
* Existing tags can also be inspected and edited as SNBT. You can modify entire compounds in-place, or simpler tags.
* The cut, copy, and paste actions add the tag to your clipboard as SNBT. You can copy multiple tags as text, or import SNBT data obtained elsewhere.

## Tag Editing
NBT Studio adds an assortment of convenience features to make navigating and editing NBT data easier.

* The tag creation and edit menus have fields for both tag name and value, so you don't have to do it in two steps
* Hold Shift while adding a tag to skip the menu and select its name automatically
* NBT lists of type `byte`, `short`, `int`, or `long` can be edited as hex just like arrays
* Tags can be selected, dragged, and dropped to move them to a different parent
* Undo and redo functionality with Ctrl Z and Ctrl Shift Z
* Deleting tags automatically selects the next tag for easy obliteration
* New and improved search window allows searching by [regular expression](https://en.wikipedia.org/wiki/Regular_expression), as well as an option to select all matching tags
* Press Enter to edit the selected tag
* Press Space to expand/contract the selected tag, or Ctrl Space to expand all
* Right-click on a file to see options to save it, or open it in File Explorer
* Right-click on a container tag to see options to add a child tag
* Files display an asterisk (`*`) to indicate there are unsaved changes

# Credits
This application was written from scratch by myself, tryashtar. However, it would never have existed without these amazing projects that came before me:

### Design
* [NBTExplorer by jaquadro](https://github.com/jaquadro/NBTExplorer)

### Technologies
* [fNbt by mstefarov](https://github.com/mstefarov/fNbt)
* [TreeViewAdv by agaman](https://sourceforge.net/projects/treeviewadv)
* [Be.HexEditor by bernhardelbl](https://sourceforge.net/projects/hexbox)

### Icons
* [Yusuke Kamiyamane](https://p.yusukekamiyamane.com)
* [AmberW](https://github.com/AmberWat)