0.1.3 • Published 3 years ago

sandstone-scoreboard v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

sandstone-scoreboard

Create complex custom scoreboards with ease!

Installing

Create a new Sandstone project:

npx sandstone-cli create <my-project>

Install sandstone-scoreboard using NPM:

npm install sandstone-scoreboard

Usage

This documentation assumes you're familiar with the sandstone documentation. If you find an issue with this documentation, please file an issue on Github!

Create a new Scoreboard by specifying the initial display name:

import { Scoreboard } from 'sandstone-scoreboard';

// Display names support Minecraft's JSON text formatting
const myScoreboard = new Scoreboard({
    text: 'My Custom Scoreboard!',
    color: 'gold',
    bold: true
});

Scoreboards aren't tied to any specific MCFunction, so you can export it and use it across multiple files.

import { Scoreboard } from 'sandstone-scoreboard';

export const myScoreboard = new Scoreboard({
    text: 'My Custom Scoreboard!',
    color: 'gold',
    bold: true
});

To add a line to your scoreboard, first instantiate the line class:

import { Scoreboard, Line } from 'sandstone-scoreboard';

const myScoreboard = new Scoreboard({
    text: 'My Custom Scoreboard!',
    color: 'gold',
    bold: true
});

// Lines only support the text and color properties (for now)
const myLine = new Line({
    text: 'Hello world!',
    color: 'white'
});

// Adding the line to the scoreboard
myScoreboard.addLine(myLine);

Example 1

Lines must contain at least one non-whitespace character, because of how this library was created. This library works by adding this non-whitespace character to the scoreboard as a player, with all other text being used as prefixes/suffixes on a team to which the scoreboard player is assigned.

// Adds a player called "Hello", assigned to a team with the suffix " world!"
myScoreboard.addLine(new Line({
    text: 'a',
    color: 'white'
}));

// Throws error
myScoreboard.addLine(new Line({
    text: ' ',
    color: 'white'
}));

Additionally, if you have too many similar lines of text added to the same scoreboard from which different player names can't be generated, the code won't compile because the same player can't be added to a scoreboard twice.

// Adds a player called "test"
myScoreboard.addLine(new Line({
    text: 'test',
    color: 'white'
}));

// Adds a player called "tes"
myScoreboard.addLine(new Line({
    text: 'test',
    color: 'white'
}));

// Adds a player called "a"
myScoreboard.addLine(new Line({
    text: 'a',
    color: 'white'
}));

// Throws error
myScoreboard.addLine(new Line({
    text: 'a',
    color: 'white'
}));

Scoreboards and lines both support arrays as of text, meaning you can combine multiple different formatting options:

import { Scoreboard, Line } from 'sandstone-scoreboard';

const myScoreboard = new Scoreboard([{
    text: 'My ',
    color: 'white',
    bold: false
}, {
    text: 'Custom ',
    color: 'gold',
    bold: true
}, {
    text: 'Scoreboard!',
    color: 'white',
    bold: false
}]);

const myLine = new Line([{
    text: 'Colors ',
    color: 'red'
}, {
    text: 'are ',
    color: 'gold'
}, {
    text: 'really ',
    color: 'yellow'
}, {
    text: 'fun ',
    color: 'green'
}, {
    text: 'to ',
    color: 'blue'
}, {
    text: 'use!',
    color: 'dark_purple'
}]);

myScoreboard.addLine(myLine);

Example 2

Like scoreboards, lines aren't tied to any specific MCFunction, meaning you can export them and use them across multiple files. Additionally, lines can be used in different scoreboard and can be added to the same scoreboard multiple times!

// Adding a line to a scoreboard
myScoreboard.addLine(myLine);

// Adding a line multiple times to the same scoreboard
myOtherScoreboard.addLine(myLine);
myOtherScoreboard.addLine(myLine);

When adding a line, you can also specify a priority. The higher the priority, the higher the line will appear on the scoreboard. The default priority on all lines when they're added is 0.

const line1 = new Line({
    text: 'Added first'
});

const line2 = new Line({
    text: 'Added second'
});

const line3 = new Line({
    text: 'Added third, but with priority'
});

myScoreboard.addLine(line1);
myScoreboard.addLine(line2);
myScoreboard.addLine(line3, 2);

Example 3

To remove a line from your scoreboard, use the same line instance you passed when you added it. This will remove all instances of that line from the scoreboard.

// Add the same line twice
myScoreboard.addLine(myLine);
myScoreboard.addLine(myLine);

// Remove both lines at once using the same line instance
myScoreboard.removeLine(myLine);

To update a line on a scoreboard, just update the original line instance. This change will be automatically be reflected across all the scoreboards it's been added to.

myLine.update({
    text: 'Wooo!',
    color: 'green'
});

To show or hide your scoreboard, it's as simple as using:

// Show the scoreboard
myScoreboard.show();

// Hide the scoreboard
myScoreboard.hide();

You can also show/hide your scoreboard to a specific team color:

// Show your scoreboard to teams with a color of red:
myScoreboard.show('red');

One of the features which I'm most proud of is the ability to animate scoreboard objectives, which can be done using the .animate() method. The sole argument is an array of objects with the display property containing a JSON Text Component, as well as an optional duration property. The duration of each frame is specified in ticks, with the default being 20.

myScoreboard.animate([{
    display: {
        text: 'Hello world!',
        color: 'gold',
        bold: true
    },
    duration: 5
}, {
    display: {
        text: 'Hello world!',
        color: 'white',
        bold: false
    },
    duration: 5
}]);

Example 4

Planned Features

  • Allow for lines to have all of the same formatting options that displays have.
  • Make scoreboard displays/animations transferrable between scoreboards in the same way that lines currently are.
  • General performance improvements/optimizations

License

Copyright © 2021 Nickelwise.

Licensed MIT