Info
Welcome to the Text Adventure Toolkit Project Page! This page should give you an idea, an overview of what this toolkit is about, what is it currently capable, a roadmap and a loose future-plan.
The Toolkit itself will be open source forever. At the moment commerical usage has no limits. In future, there will be maybe a community edition, which features full-features and a ‚ultimate‘ edition for commercial usage. This point is seen as a loose future-plan and I may will be like this or not. But the open source access and private usage is guaranteed!
Current State
TODO : current state
Roadmap
TODO: roadmap
Resources
Keep a look at the readme.md file in the git-link blow, OR download the quest-designer snapshot 1.0.0 build and follow the how to run instructions ! Don’t forget to add comments 🙂
github link : https://github.com/wolfomat/text-adventure
Download
How to run – Quick-start Instructions
This instruction is intended to give you a simple set of instruction to execute on your local computer. For advanced users – feel free to try it out and give feedback.
Requirements:
- java jdk > 11.03 (never tested jre…) https://www.oracle.com/java/technologies/javase-jdk11-downloads.html
- Download mariadb 10.4 stable at: https://downloads.mariadb.org/mariadb/10.4.12/
- Install mariadb with heidi-sql
- Execute the listed SQL Script below
- run the jar-file ‚quest-designer-1.0.0-SNAPSHOT.jar‘ with java -jar
- hibernate will create the required database tables
- editor will be located at: http://localhost:8080/index.xhtml
- Note: in order to make things work after starting, refresh the page twice
1 2 3 4 5 6 7 8 9 10 11 12 13 |
##### SQL SCRIPT ##### -- create database CREATE DATABASE quest_data CHARACTER SET = 'utf8' COLLATE = 'utf8_general_ci'; -- create user CREATE USER 'questuser'@'localhost'; -- grant privileges to user GRANT ALL PRIVILEGES ON quest_data.* To 'questuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL ON quest_data.* TO 'questuser'@'localhost'; FLUSH PRIVILEGES; |
Feel free to add comments !