Welcome! The DrillDown game has been successfully downloaded, compiled, and is ready to run.
Double-click: RUN_GAME.bat
The game window should open automatically.
Double-click: BUILD_GAME.bat
This recompiles the project and creates a new JAR file.
Open any of these in your text editor:
BUILD_SUMMARY.md- Overview of the build (START HERE)SETUP_NOTES.md- Detailed setup instructionsDEVELOPMENT_GUIDE.md- How to add features
D:\Projects\DrillDown\
├── RUN_GAME.bat ← Click to play
├── BUILD_GAME.bat ← Click to rebuild
├── README_SETUP.md ← This file
├── BUILD_SUMMARY.md ← Build overview
├── SETUP_NOTES.md ← Setup details
├── DEVELOPMENT_GUIDE.md ← Dev reference
│
├── core/ ← Game logic
├── desktop/ ← Desktop launcher
├── android/assets/ ← Game resources
├── commons/ ← Utility library
└── gdx-sfx/ ← Audio library
- ✅ Source code downloaded from GitHub
- ✅ Git submodules initialized (commons, gdx-sfx)
- ✅ Gradle updated for Java 21 compatibility
- ✅ Desktop build compiled (19.3 MB JAR file)
- ✅ All source files preserved in workspace
- ✅ Ready to modify and extend
Double-click RUN_GAME.bat
cd D:\Projects\DrillDown\android\assets
java -jar ..\desktop\build\libs\desktop-1.0.jarDouble-click BUILD_GAME.bat
Or manually:
cd D:\Projects\DrillDown
gradlew.bat clean desktop:dist- Game: DrillDown (Factory Building)
- Language: Java
- Framework: LibGDX
- License: Apache 2.0
- Original: https://github.com/Dakror/DrillDown
| File | Purpose |
|---|---|
| BUILD_SUMMARY.md | Quick overview (READ FIRST) |
| SETUP_NOTES.md | Setup details & modifications |
| DEVELOPMENT_GUIDE.md | Developer reference for adding features |
| README_SETUP.md | This file (quick start) |
→ Double-click RUN_GAME.bat
- Edit code in
core/src/ordesktop/src/ - Add assets to
android/assets/ - Double-click
BUILD_GAME.bat - Double-click
RUN_GAME.batto test
(Requires Android SDK/NDK - see SETUP_NOTES.md)
✅ Installed:
- Java 21.0.7 LTS
- Gradle 8.3 (via wrapper)
- Git (for submodules)
To run: Java only
To build: Java + Gradle (included)
- Ensure you run
RUN_GAME.bat(not just the JAR) - Or run from
android/assetsdirectory - Check Java is installed:
java -version
- Run
BUILD_GAME.batagain - Delete
.gradlefolder and retry - See SETUP_NOTES.md for details
- All files should be in
D:\Projects\DrillDown\ - Don't move the project folder
- Keep all subdirectories intact
- Play:
RUN_GAME.bat - Learn: Read
BUILD_SUMMARY.md - Develop: See
DEVELOPMENT_GUIDE.md - Modify: Edit source code and rebuild
Status: ✅ Ready to use and develop!
Questions? See the documentation files listed above.