Note that this library was inspired by Lanterna. Check it out if you are looking for a terminal emulator instead.
Need info? Check the Wiki | or Create an issue | Check our project Board | Ask us on Discord | Support us on Patreon
If you want to work with Zircon you can add it to your project as a dependency.
from Maven:
<dependency>
<groupId>org.hexworks.zircon</groupId>
<artifactId>zircon.jvm.swing</artifactId>
<version>2018.5.0-RELEASE</version>
</dependency>
or you can also use Gradle:
compile 'org.hexworks.zircon:zircon.jvm.swing:2018.5.0-RELEASE'
Want to use a PREVIEW
version instead?
Check this Wiki page
Before we start there are some guidelines which can help you if you are stuck:
- If you want to build something (a
TileGraphics
, aComponent
or anything which is part of the public API) it is almost sure that there is aBuilder
or aFactory
for it. The convention is that if you want to create aTile
for example, then you can use theTiles
class to do so. (so it is the plural form of the thing which you want to build). Your IDE will help you with this. These classes reside in theorg.hexworks.zircon.api
package. There are some classes which are grouped together into a single utility class however. WithComponents
you can obtainBuilder
s for allComponent
s likeComponents.panel()
orComponents.checkBox()
. Likewise you can useDrawSurfaces
to obtain builders forTileGraphcs
andTileImage
. - If you want to work with external files like tilesets or REXPaint files check the same package
(
org.hexworks.zircon.api
), and look for classes which end with*Resources
. There are a bunch of built-in tilesets for example which you can choose from but you can also load your own. The rule of thumb is that if you need something external there is probably a*Resources
class for it (like the [CP437TilesetResources]). - You can use anything you can find in the API package, they are part of the public API, and safe to use. The internal package however is considered private to Zircon so don't depend on anything in it because it can change any time.
- Some topics are explained in depth on the Wiki
- If you want to see some example code look here.
- If all else fails read the javadoc. API classes are well documented.
- If you have any problems which are not answered here feel free to ask us at the Hexworks Discord server.
In Zircon almost every object you might want to use has a helper class for building it. This is the same for Applications as well so let's create one using the SwingApplications class:
Note that these examples reside in the
org.hexworks.zircon.examples.docs
package in thezircon.examples
project, you can try them all out.
import org.hexworks.zircon.api.SwingApplications;
import org.hexworks.zircon.api.application.Application;
public class CreatingAnApplication {
public static void main(String[] args) {
Application application = SwingApplications.startApplication();
}
}
Running this snippet will result in this screen:
Not very useful, is it? So what happens here? An Application is just an object which has a Renderer for rendering Tiles on your screen), and a TileGrid, which is the main interface which you will use to interact with Zircon. An Application is responsible for continuously rendering the contents of the grid on the screen. Here we use the Swing variant, but there are other types in the making (one for LibGDX, and one which works in the browser).
Since most of the time you don't care about the Application itself, there is a function for creating a TileGrid directly:
import org.hexworks.zircon.api.SwingApplications;
import org.hexworks.zircon.api.grid.TileGrid;
public class CreatingATileGrid {
public static void main(String[] args) {
TileGrid tileGrid = SwingApplications.startTileGrid();
}
}
Now let's see how we can specify how a TileGrid is created. We'll use the AppConfigs helper for this:
import org.hexworks.zircon.api.AppConfigs;
import org.hexworks.zircon.api.CP437TilesetResources;
import org.hexworks.zircon.api.Sizes;
import org.hexworks.zircon.api.SwingApplications;
import org.hexworks.zircon.api.application.Application;
public class CreatingAnApplication {
public static void main(String[] args) {
Application application = SwingApplications.startApplication(
AppConfigs.newConfig()
.withSize(Sizes.create(30, 20))
.withDefaultTileset(CP437TilesetResources.rexPaint16x16())
.withClipboardAvailable(true)
.build());
}
}
Adding and formatting Tiles is very simple:
import org.hexworks.zircon.api.AppConfigs;
import org.hexworks.zircon.api.CP437TilesetResources;
import org.hexworks.zircon.api.Positions;
import org.hexworks.zircon.api.Sizes;
import org.hexworks.zircon.api.SwingApplications;
import org.hexworks.zircon.api.Tiles;
import org.hexworks.zircon.api.color.ANSITileColor;
import org.hexworks.zircon.api.grid.TileGrid;
public class CreatingAnApplication {
public static void main(String[] args) {
TileGrid tileGrid = SwingApplications.startTileGrid(
AppConfigs.newConfig()
.withSize(Sizes.create(10, 10))
.withDefaultTileset(CP437TilesetResources.rexPaint16x16())
.build());
tileGrid.setTileAt(
Positions.create(2, 3),
Tiles.newBuilder()
.withBackgroundColor(ANSITileColor.CYAN)
.withForegroundColor(ANSITileColor.WHITE)
.withCharacter('x')
.build());
tileGrid.setTileAt(
Positions.create(3, 4),
Tiles.newBuilder()
.withBackgroundColor(ANSITileColor.RED)
.withForegroundColor(ANSITileColor.GREEN)
.withCharacter('y')
.build());
tileGrid.setTileAt(
Positions.create(4, 5),
Tiles.newBuilder()
.withBackgroundColor(ANSITileColor.BLUE)
.withForegroundColor(ANSITileColor.MAGENTA)
.withCharacter('z')
.build());
}
}
Running the above code will result in something like this:
As you can see there is a helper for every class which you might want to use. Here we used Positions.create
to create a Position, Sizes.create
for creating Sizes and the TileBuilder to create tiles.
A Position
denotes a coordinate on a TileGrid
, so for example a Position
of (2
, 3
) points to the 3rd
column and the 4th row (x, y) on the grid.
Note that
Position
indexing starts from zero.
Conversely a Size
denotes an area with a width and a height. These two classes are used throughout Zircon.
A Tile is the most basic graphical unit Zircon supports. In most cases it is a simple character with a foreground and a background color (like in the example above).
In addition to colors and characters you can also use Modifiers in your Tiles.
A lot of fancy stuff can be done with Modifiers, like this:
If interested check out the code examples here.
Tileset (and by extension resource) handling in Zircon is very simple and if you are interested in how to load your custom fonts and other resources take a look at the Resource handling wiki page.
TileGrids alone won't suffice if you want to get any serious work done since they are rather rudimentary.
A Screen has its own buffer and it can be display
ed on
a TileGrid any time. This means that you can have multiple Screens at the same time representing your actual
game screens. Note that only one Screen can be displayed at a given moment. display
ing one deactivates
the previous Screen.
Let's create a Screen and fill it up with some stuff:
import org.hexworks.zircon.api.*;
import org.hexworks.zircon.api.component.ColorTheme;
import org.hexworks.zircon.api.graphics.TileGraphics;
import org.hexworks.zircon.api.grid.TileGrid;
import org.hexworks.zircon.api.screen.Screen;
public class CreatingAScreen {
public static void main(String[] args) {
TileGrid tileGrid = SwingApplications.startTileGrid(
AppConfigs.newConfig()
.withSize(Sizes.create(20, 8))
.withDefaultTileset(CP437TilesetResources.wanderlust16x16())
.build());
final Screen screen = Screens.createScreenFor(tileGrid);
final ColorTheme theme = ColorThemes.adriftInDreams();
final TileGraphics image = DrawSurfaces.tileGraphicsBuilder()
.withSize(tileGrid.getSize())
.build()
.fill(Tiles.newBuilder()
.withForegroundColor(theme.getPrimaryForegroundColor())
.withBackgroundColor(theme.getPrimaryBackgroundColor())
.withCharacter('~')
.build());
screen.draw(image, Positions.zero());
screen.display();
}
}
and we've got a nice ocean:
What happens here is that we:
- Create a Screen
- Fetch a nice ColorTheme which has colors we need
- Create a TileGraphics with the colors added and fill it with
~
s - Draw the graphic onto the Screen
For more explanation about these jump to the Zircon Crash Course.
You can do so much more with Screens. If interested then check out A primer on Screens on the Wiki!
Zircon supports a bunch of Components out of the box:
Button
: A simple clickable component with corresponding event listenersCheckBox
: Like aButton
but with checked / unchecked stateHeader
: Like a label but this one has emphasis (useful when using ColorThemes)Label
: Simple component with textLogArea
: Component with a list of items. New items can be added, and they will be srolled.Panel
: A Container which can hold multiple ComponentsRadioButtonGroup
andRadioButton
: Like aCheckBox
but only one can be selected at a timeTextArea
: Similar to a text area in HTML this Component can be written intoTextBox
: ATextBox
is more like a hypertext document where you can add elements with semantic meaning. It supports addingHeader
s,Paragraph
s,ListItem
s and evenButton
s
These components are rather simple and you can expect them to work in a way you might be familiar with:
- You can click on them (press and release are different events)
- You can attach event listeners on them
- Zircon implements focus handling so you can navigate between the components using the
[Tab]
key (forwards) or the[Shift]+[Tab]
key stroke (backwards). - Components can be hovered and they can change their styling when you do so
Let's look at an example (notes about how it works are in the comments):
import org.hexworks.zircon.api.*;
import org.hexworks.zircon.api.component.Button;
import org.hexworks.zircon.api.component.CheckBox;
import org.hexworks.zircon.api.component.Header;
import org.hexworks.zircon.api.component.Panel;
import org.hexworks.zircon.api.grid.TileGrid;
import org.hexworks.zircon.api.screen.Screen;
public class UsingComponents {
public static void main(String[] args) {
final TileGrid tileGrid = SwingApplications.startTileGrid(
AppConfigs.newConfig()
.withSize(Sizes.create(34, 18))
.withDefaultTileset(CP437TilesetResources.aduDhabi16x16())
.build());
final Screen screen = Screens.createScreenFor(tileGrid);
Panel panel = Components.panel()
.wrapWithBox(true) // panels can be wrapped in a box
.withTitle("Panel") // if a panel is wrapped in a box a title can be displayed
.wrapWithShadow(true) // shadow can be added
.withSize(Sizes.create(32, 16)) // the size must be smaller than the parent's size
.withPosition(Positions.offset1x1())
.build(); // position is always relative to the parent
final Header header = Components.header()
// this will be 1x1 left and down from the top left
// corner of the panel
.withPosition(Positions.offset1x1())
.withText("Header")
.build();
final CheckBox checkBox = Components.checkBox()
.withText("Check me!")
.withPosition(Positions.create(0, 1)
// the position class has some convenience methods
// for you to specify your component's position as
// relative to another one
.relativeToBottomOf(header))
.build();
final Button left = Components.button()
.withPosition(Positions.create(0, 1) // this means 1 row below the check box
.relativeToBottomOf(checkBox))
.withText("Left")
.build();
final Button right = Components.button()
.withPosition(Positions.create(1, 0) // 1 column right relative to the left BUTTON
.relativeToRightOf(left))
.withText("Right")
.build();
panel.addComponent(header);
panel.addComponent(checkBox);
panel.addComponent(left);
panel.addComponent(right);
screen.addComponent(panel);
// we can apply color themes to a screen
screen.applyColorTheme(ColorThemes.monokaiBlue());
// this is how you can define interactions with a component
left.onMouseReleased((mouseAction -> screen.applyColorTheme(ColorThemes.monokaiGreen())));
right.onMouseReleased((mouseAction -> screen.applyColorTheme(ColorThemes.monokaiViolet())));
// in order to see the changes you need to display your screen.
screen.display();
}
}
And the result will look like this:
You can check out more examples here. Here are some screenshots of them:
There are a bunch of other things Zircon can do which are not detailed in this README but you can read about them in either the source code or the Wiki:
Both the TileGrid and the Screen interfaces implement Layerable which means that you can add Layers on top of them. Every Layerable can have an arbitrary amount of Layers. Layers are like TileGraphics and you can also have transparency in them which can be used to create fancy effects. Components are also Layers themselves. For more details check the layers Wiki page.
Note that when creating
Layer
s you can set theiroffset
from the builder but after attaching it to aTileGrid
orScreen
you can change its position by callingmoveTo
with a newPosition
.
Both the TileGrid and the Screen interfaces implement InputEmitter which means that they re-emit all inputs from your users (key strokes and mouse actions) and you can listen on them. There is a Wiki page with more info.
You can draw Shapes like rectangles and triangles by using one of the ShapeFactory implementations. Check the corresponding Wiki page for more info.
Zircon comes with a bunch of built-in fonts tilesets. These come in 2 flavors:
Read more about them in the resource handling Wiki page if you want to know more or if you want to use your own tilesets and fonts.
Zircon also comes with its own tileset format (ztf
: Zircon Tileset Format) which is very easy to use.
It is detailed here.
REXPaint files (.xp
) can be loaded into Zircon Layer
s. Read about this feature
here.
Zircon comes with a bunch of built-in color themes which you can apply to your components. If interested you can read more about how this works here.
Animations are a beta feature. More info here.
If you just want to peruse the Zircon API just navigate here. Everything which is intended to be the public API is there.
If you want to see a new feature feel free to create a new Issue or discuss it with us on discord. Here are some features which are either under way or planned:
- libGDX support
- Layouts for
Component
s with resizing support - Next to
ColorTheme
s we'll introduceComponentTheme
s as well (custom look and feel for your components) - Floating and modal
Component
s
Zircon is made available under the MIT License.
Zircon is created and maintained by Adam Arold, Milan Boleradszki and Gergely Lukacsy
We're open to suggestions, feel free to message us on Discord or open an issue. Pull requests are also welcome!
Zircon is powered by: