Giter VIP home page Giter VIP logo

xeed's Introduction

XEED

XEED is a tool that organizes role-playing settings. It focuses on story driven games and does not have map support.

The goal of XEED is to help the game master to store and organize the vast amount of data in a roleplaying setting. The main focus is the characters and their most important traits such as background, personality, relations and factions/groups rather than individual stats. XEED is written in Java and aims at being platform independent.

Key Features

  • A modular template system that allows XEED to adapt to a variety of games.
  • User can create their own character templates.
  • A customizable main window; display only the data need.
  • Organize your notes, groups, characters and relationships in one compact file format.
  • Visualize your data with graphs.
  • An autosave function ensures your data is safe in case of crashes.
  • Optional autoupdate feature that updates to the latest version.
  • Export your setting information to HTML, PDF, TXT, or dTree graphs.

Usage

The latests release can be found under "releases".

Installation

XEED uses maven for building executable jars with bundled dependencies.

mvn package

It will generate a target/ folder with the compiled jars.

Running

Depending on the host system either double click on the built jar files or type:

java -jar XEED.jar

Tests

None at the moment but they should be stored in src/test/java/.

Contributions

Pull requests are welcome. Main developer is @erik_gartner.

Problems

This project is very old and suffers from incorrect code conventions, bad patterns and a tangled structure. Fixing these problem should be considered high priority before developing new features.

For example:

  • Variables have the type as prefix.
  • Methods start with a capital letter.
  • The coupling is very high.
  • Potential threading problem.
  • Propagating changes between forms is mess.
  • Main class is way to big and contains and breaks many OOP principles.

Despite these problem the program is generally stable and extended usage over several years have only revealed minor bugs.

License

Copyright 2015 Erik Gärtner

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

xeed's People

Contributors

erikgartner avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

xeed's Issues

Bug: Array out of range exception when loading Graph form

When opening the Graph form with more groups than characters an array out-of-bounds.

Offending code snippet in frmGraph.java:171

for (int x = 0; x < clsEngine.groupDB.size(); x++) {
            Vector o = new Vector(0);
            o.add(selectedgroups.contains(clsEngine.charDB.get(x)));
            o.add(clsEngine.groupDB.get(x));
            jTableModelRelGroup.add(o);
}

Version: 2.0 Beta 7 Build 45.18F0FEEE6

Rework syncronization

Currently the Notifierclass propagates updates through out all the windows using a thread.
A much better and less error prone solution would be to use a observers.

Rework character storage

Characters should:

  • Be sorted
  • Window handles shouldn't be stored with characters
  • Restructured within a setting class

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.