Added 1.8 crafing recipes (see #314).

4x red sand -> 1x red sandstone
4x red sandstone -> 4x smooth red sandstone
2x red sandstone slab -> 1x chiseled red sandstone
2x stone bricks slab -> 1x chiseled stone bricks
2x cobblestone, 2x quartz -> 2x diorite
4x diorite -> 4x polished diorite
4x granite -> 4x polished granite
4x andesite -> 4x polished andesite
2x dirt, 2x gravel -> 4x coarse dirt
3x red sandstone -> 6x red sandstone slab
bunch of things -> rabbit stew
4x rabbit hide -> 1x leather
4x oak plank, 2x stick -> 3x oak fence
fences: spruce, birch, jungle, acacia, dark oak
2x oak plank, 4x stick -> 1x oak fence gate
fence gates: spruce, birch, jungle, acacia, dark oak
doors: oak, spruce, birch, jungle, acacia, dark oak
6x iron ingot -> 3x iron door
4x iron ingot -> 1x iron trap door
7x stick, 1x stone slab -> 1x armor stand
6x red sandstone -> 4x red sandstone stairs
1x stone brick, 1x vine -> 1x mossy stone brick
1x cobblestone, 1x vine -> 1x mossy cobblestone
1x diorite, 1x quartz -> 1x granite
1x diorite, 1x cobblestone -> 1x andesite
9x slime ball -> 1x slime block
1x slime block -> 9x slime ball
furnace: stone brick -> cracked stone brick
4x prismarine shard -> prismarine
9x prismarine shard -> prismarine brick
8x prismarine shard, 1x ink sac -> dark prismarine
5x prismarine crystals, 4x prismarine shard -> 1x sea lantern
furnace: rabbit -> cooked rabbit
1 file changed
tree: da712d67888ad2f8e8e08ce03c9a52194785e754
  1. .gitattributes
  2. .gitignore
  3. .travis.yml
  4. CONTRIBUTING.md
  5. LICENSE
  6. README.md
  7. build.gradle
  8. etc/
  9. gradle/wrapper/
  10. gradlew
  11. gradlew.bat
  12. settings.gradle
  13. src/
README.md

Glowstone

Introduction

Glowstone is a lightweight, from scratch, open source Minecraft server written in Java that supports plugins written for the Bukkit API.

The main goals of the project are to provide a lightweight implementation of the Bukkit API and Minecraft server where exact vanilla functionality is not needed or higher performance is desired than the official software can deliver. Glowstone makes use of a thread-per-world model and performs synchronization only when necessitated by the Bukkit API.

Features

Glowstone has a few key advantages over CraftBukkit:

  • It is 100% open source. While CraftBukkit and most other mods are open source, they rely on decompiled Minecraft source code. Glowstone's code is completely original.
  • Because of this, it is easy to contribute to Glowstone's development. The barrier of entry to contributions is lower because there is no need to work around decompiled source or maintain a minimal diff.
  • Glowstone supports all plugins written for the Bukkit API natively. In practice, some plugins may try to make use of parts of the API which are not yet implemented, but in a completed state Glowstone would support all plugins.
  • Glowstone's simplicity affords it a performance improvement over CraftBukkit and other servers, making it especially suited for situations where a large amount of players must be supported but Vanilla game features are not needed.

However, there are several drawbacks:

  • Glowstone is not finished. Nothing is guaranteed to work, though many things are likely to. If in doubt, ask in #glowstone.
  • Vanilla survival features are entirely absent (mobs, hunger, health, so on). Glowstone cannot yet replicate a vanilla survival environment. These will be added over time.
  • Bukkit plugins which expect the presence of CraftBukkit-specific code (that in the org.bukkit.craftbukkit or net.minecraft.server packages) will not work on Glowstone unless they are designed to fail gracefully.
  • Glowstone is not produced by the Bukkit team, and while we do make an effort to produce quality work, Glowstone does not undergo the same rigorious testing as the Bukkit project.

Some of the key features that have been implemented are:

  • World loading, saving, and streaming to players.
  • Player interaction with the world (building, digging).
  • Somewhat-complete inventory support.
  • A simple world generator (support for others through Bukkit).
  • World weather (rain, thunder/lightning).
  • Op, ban, IP ban, and whitelist support.
  • Many of the advanced API features of Bukkit.

Building and Running

Glowstone can be built with the Java Development Kit and Gradle. The command gradlew will build Glowstone and put the final jar in build/distributions/. Other tasks are listed under gradlew tasks. A local installation of Gradle can be used instead if desired.

Running Glowstone is simple because its dependencies are shaded into the output jar at compile time. Simply execute java -jar glowstone.jar along with any extra JVM options desired.

By default, configuration is stored in the config/ subdirectory and logs are stored in the logs/ subdirectory. The main configuration file is config/glowstone.yml, which replaces CraftBukkit‘s server.properties and bukkit.yml. Settings from these two files will be copied over to Glowstone’s configuration during the default configuration generation process.

Glowstone uses JLine for console input and colored console output. The JLine console can be disabled in the configuration if a flat console is desired.

Docs and Support

All support inquiries should be directed to the IRC channel #glowstone on EsperNet (irc.esper.net). You can access that using the button below.

Visit our IRC channel

User and contributor documentation and other articles can be found on the GitHub wiki. Javadocs can be generated by using the gradle javadoc command and are placed in the build/docs/javadoc/ directory, but these are incomplete in some places and in general the code is the best reference.

For documentation on the Bukkit API (which is used to write plugins), see the Bukkit Javadocs.

Credits

Copyright

Glowstone is open-source software released under the MIT license. Please see the LICENSE file for details.