Go to file
2019-11-04 17:53:48 +00:00
gradle/wrapper Switch to gradle. 2018-12-02 18:47:21 +01:00
src Add focus void spell. 2019-11-04 18:47:30 +01:00
test/com/aps/spells Implement spell power system 2019-09-24 14:06:34 +02:00
.gitignore Feature/add save files 2019-06-09 17:41:05 +00:00
build.gradle Update Apfloat to 1.9.0 2019-07-11 16:22:42 +02:00
gradlew Switch to gradle. 2018-12-02 18:47:21 +01:00
gradlew.bat Switch to gradle. 2018-12-02 18:47:21 +01:00
README.md Merge branch 'feature/spell_power' of heyitsdross/spell-slingers into master 2019-10-10 13:54:49 +02:00
settings.gradle Switch to gradle. 2018-12-02 18:47:21 +01:00

Readme

About

Spell Slingers is a strategic idle-style game where you become a slinger, the mad scientist version of a wizard. Explore the unknown world of magic and have a blast doing so!

Contributing

Required tech: Java 11, Gradle.

Pull the project, run gradle clean install in terminal or in your IDE, verify the project runs.

App structure

The program is divided into a few components that somewhat resemble an MVC pattern:

  • GUI elements / controls (aka Views)
  • Reactive pieces, relating to the flow of events and code execution. (Similar to controllers, but more spread out)
  • Entities relevant to requirements, such as player stats, spells, etc. (Model)

The GUI is constructed using JavaFX. The reactive library of choice is RxJava, and RxJavaFX is used to simplify event listeners and open up more possibilities to work with the GUI components. The game entities generally follow whichever pattern seems to suit use cases and ease of development the best. This usually ends up being Java Beans pattern, but sometimes Builders are used.

MIT

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. End license text.