AudaxEngine
Java game engine that can be used to create interactive dialogue-based games with choices. The API provides a set of classes and methods to manage the game's story, characters, dialogue sections, and choices.
- Java 17 or later
- Basic knowledge of the Java programming language
The source code is organized into several packages, each containing specific classes for different functionalities of the game engine. Here's an overview of the main packages:
me.adversing.engine.core.handlers
: Contains theStoryHandler
class to manage game stories.me.adversing.engine.dialogue
: Contains the abstractDialogue
class and other related classes to handle game dialogues.me.adversing.engine.dialogue.section
: Contains theDialogueSection
class and other related classes to manage dialogue sections.me.adversing.engine.logic
: Contains theChoice
class and other related classes to handle game choices.me.adversing.engine.obj.entities.character
: Contains the abstractCharacter
class and other related classes to manage game characters.me.adversing.engine.obj.entities.gameobject
: Contains theGameObject
class and other related classes to manage game objects.
To create a game using this game engine, you need to follow a few steps:
- Create stories and define dialogue sections.
- Create characters and define their information and relationships with other characters.
- Create choices and associate them with dialogue sections.
- Create game objects, if necessary.
- Use the game engine classes to handle the interaction between characters, objects, and the player.
You may find the documentation here (W.I.P).