https://github.com/themarlboroman/java-maze
Quick port of the js-maze to Java
https://github.com/themarlboroman/java-maze
generator java maze port
Last synced: about 2 months ago
JSON representation
Quick port of the js-maze to Java
- Host: GitHub
- URL: https://github.com/themarlboroman/java-maze
- Owner: TheMarlboroMan
- License: unlicense
- Created: 2018-02-28T16:20:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-09-13T07:26:04.000Z (over 2 years ago)
- Last Synced: 2025-01-11T11:26:45.108Z (3 months ago)
- Topics: generator, java, maze, port
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
java-maze
=========# About
Couldn't help to do a quick port of js-maze to Java.
# Build
javac -cp src/ -d lib/ src/net/caballorenoir/maze/main.java
# Run
java -cp lib/ net.caballorenoir.maze.main
# Create JAR file.
After building:
jar cfv maze.jar lib
jar cfm maze.jar manifest.txt# Run JAR file.
java -jar maze.jar
# TODO:
- Do the graphic part right, using multithreading.
- Plug other generators.