Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Latest commit

 

History

History
197 lines (180 loc) · 12.2 KB

nifty_gui.md

File metadata and controls

197 lines (180 loc) · 12.2 KB
title
Creating JME3 User Interfaces with Nifty GUI

Creating JME3 User Interfaces with Nifty GUI

You may want your players to press a button to save a game, you want a scrolling text field for highscores, a text label to display the score, drop-downs to select keymap preferences, or checkboxes to specify multi-media options. Usually you solve these tasks by using Swing controls. Although it is possible to embed a jME3 canvas in a Swing GUI, a 3D game typically runs full-screen, or in a window of its own.

This document introduces you to Nifty GUI, a Java library for building interactive graphical user interfaces (GUIs) for games or similar applications. Nifty GUI (the de.lessvoid.nifty package) is well integrated with jME3 through the com.jme3.niftygui package. You define the base GUI layout in XML, and control it dynamically from your Java code. The necessary JAR libraries are included in your jME3 download, you do not need to install anything extra. (Just make sure they are on the classpath.)

Tutorial Overview

Learn to add a Nifty GUI to your jME3 game by going through this multi-part tutorial:

  1. Understand the Nifty GUI Concepts described on this page.
  2. Lay out your graphical user interface:
  3. Integrate the GUI into the game:

Must Know: Nifty GUI Concepts

Nifty GUIs are made up of the following elements:

  • A Nifty GUI contains one or more screens.
  • A screen contains one or more layers.
    • Layers are containers that impose alignment on their contents (vertical, horizontal, or centered)
    • Layers can overlap (z-order), and cannot be nested.
  • A layer contains panels.
    • Panels are containers that impose alignment on their contents (vertical, horizontal, or centered)
    • Panels can be nested, and cannot overlap.
  • A panel contains images, text, or controls (buttons, etc).

Resources

JME-Nifty Sample Code

External Documentation

Next Steps

Now that you understand the concepts and know where to find more information, learn how to lay out a simple graphical user interface. Typically, you start doing this in XML.

Nifty Logging (Nifty 1.3.1)

If you want to disable the nifty log lines, add this code after you created nifty:

Logger.getLogger("de.lessvoid.nifty").setLevel(Level.SEVERE); 
Logger.getLogger("NiftyInputEventHandlingLog").setLevel(Level.SEVERE);