PrismarineJS / prismarine-schematic

Read and write schematic of any minecraft version, provide them in a convenient and stable API
https://prismarine.js.org/prismarine-schematic/
MIT License
21 stars 8 forks source link
3d minecraft schematics

prismarine-schematic

NPM version Build Status Discord Gitter Irc Try it on gitpod

Read, write and manipulate minecraft schematics.

Supported formats:

Usage

const fs = require('fs').promises
const { Schematic } = require('prismarine-schematic')

async function main () {
  // Read a schematic (sponge or mcedit format)
  const schematic = await Schematic.read(await fs.readFile('test/schematics/smallhouse1.schem'))

  // Write a schematic (sponge format)
  await fs.writeFile('test.schem', await schematic.write())
}

main()

API

Schematic

A schematic instance.

Schematic.start()

Return the start coordinate of this schematic.

Schematic.end()

Return the end coordinate of this schematic.

Schematic.forEach(cb)

calls the callback on every block in the schematic. the callback is called with args (block, pos).

Schematic.map(cb)

returns an array of the results from calling the callback on every block in the schematic. the callback is called with args (block, pos).

Schematic.makeWithCommands(offset, platform = 'pc')

returns an array of commands to run to make the schematic in a vanilla server. the offset is a vec3 instance that is applied by .offset on each block in the schematic.

Schematic.getBlockStateId(pos)

Get the stateId of the block at pos. pos must be between start() and end().

Schematic.getBlock(pos)

Get the block at pos. pos must be between start() and end().

Schematic.setBlock(pos, block)

Set a block at pos to a block of Block instance (see prismarine-block). If block is not given or nullish setBlock removes the block at pos.

Schematic.copy(world, start, end, offset, version)

Static, async. Make a schematic instance from world (prismarine-world) between start and end (vec3), offset will be the offset of the schematic, version must match world's version.

Schematic.paste(world, at)

Async. Paste the schematic in world (prismarine-world) at the at (vec3) location.

Schematic.read(buffer, version=null)

Static, async. Return a Schematic instance, read from the buffer. If version is not set, the loader try to autodetect the version from the file.

Schematic.write()

Async. Return a buffer encoding this schematic

Schematic.toJSON(space?)

Returns string representation off the schematic. space represents the space option for JSON.stringify().

Schematic.fromJSON()

Returns a new Schematic instance by parsing a stringified schematic. Returns null on error.