tsteiner / orcpub

Code for Orcpub2 Community Edition

Home Page:https://www.dungeonmastersvault.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Orcpub2 - Community Edition

This is the code for OrcPub2.com. Many, many people have expressed interest in helping out or checking out the code, so I have decided to make that possible by open sourcing it.

Running

To run a local instance of Orcpub, all you need is Docker, docker-compose, and the docker-compose.yml file and an SSL certificate. Simply edit the paths to the SSL certificate and key in the web service definition and run the following:

   docker-compose pull
   docker-compose up -d

NOTE: If you need a quick SSL certificate, the script at deploy/snakeoil.sh will generate one. Links to Docker installation can be found below.

Unix instructions here

Windows instructions here

Docker Cheat Sheet

Getting Started with Development

With docker

We have managed to dockerize the project which should make the setup easy.

Dependencies

Local development

  1. Start by forking this repo in your own github account and checkout the develop branch from there.
  2. Create snakeoil (self-signed) ssl certificates by running ./deploy/snakeoil.sh
  3. Run docker-compose docker-compose up or if you want to demonize it docker-compose up -d
  • This will pull the ready to use orcpub docker images and run them
  • This should create a directory data, in which the database is stored. This persist shutting the application down. If you want a fresh database, just delete the directory
  1. The website should be accessible via browser in https://localhost

There are two docker-compose files.

docker-compose.yaml will pull from the docker repo which the community maintains. this is the default

docker-compose-build.yaml will build orcpub from your downloaded clone directory. See below.

NOTES The application configuration is Environmental Variable based, meaning that its behaviour will change when modifying them at start time. To modify the variables edit the docker-compose.yaml or docker-compose-build.yaml files.

Example variables:

EMAIL_SERVER_URL: '' # Url to a smtp server
EMAIL_ACCESS_KEY: '' # User for the mail server
EMAIL_SECRET_KEY: '' # Password for the user
EMAIL_SERVER_PORT: 587 # Mail server port
DATOMIC_URL: datomic:free://datomic:4334/orcpub # Url for the database

How do I contribute?

Well, first of all, thanks for rolling for initiative! We work on forks, meaning that it is enough for you to fork this repo, and enable this commented part in docker-compose.yaml

build:
  context: docker/orcpub
  args:
    REPO: Orcpub
    BRANCH: develop

This will modify the deployment, so it will build the application rather than using our image. However note that you need to change the REPO and BRANCH to YOUR fork Afterwards, run docker-compose up --build to start building!

Without docker

On Windows: bin\transactor config/samples/free-transactor-template.properties

On Mac/Unix: bin/transactor config/samples/free-transactor-template.properties

  • Install leiningen (https://leiningen.org/#install) into a directory.
    • Mac / Linux: The latest version (2.9.1 as of this writing) should work.
    • Windows: There is an issue with 2.9.1, so downgrade to 2.8.1 (lein downgrade 2.8.1).
  • Download the code from your git fork git clone git@github.com:yourrepo/your.git Use the clone url in YOUR repo.
  • cd into orcpub
  • run lein repl
  • run lein figwheel Once lein figwheel finishes, a browser will launch.

You should leave all three processes running: Datomic transactor, lein repl, and lein figwheel.

(NOTE: There is an issue using leiningen 2.8.1 causing a ClassCastException.)

When you save changes, it will auto compile and send all changes to the browser without the need to reload. After the compilation process is complete, you will get a Browser Connected REPL. An easy way to try it is:

(js/alert "Am I connected?")

and you should see an alert in the browser window.

Editors

Emacs

Emacs with Cider you can run the command to start the Cider REPL:

C-c M-j
Vim

vim-fireplace provides a good way to interact with a running repl without leaving Vim.

IntelliJ / Cursive

You can use the community edition of IntelliJ IDEA with the Cursive plug-in.

REPL

Once you have a REPL, you can run this from within it to create the database, transact the database schema, and start the server:

You only need to (init-database) ONCE.

user=> (init-database)
user=> (start-server)

To stop you will need to do this:

user=> (stop-server)

Within Emacs you should be able to save your file (C-x C-s) and reload it into the REPL (C-c C-w) to get your server-side changes to take effect. Within Vim with vim-fireplace you can eval a form with cpp, a paragraph with cpip, etc; check out its help file for more information. Regardless of editor, your client-side changes will take effect immediately when you change a CLJS or CLJC file while lein figwheel is running.

Running a Server

Production builds should use the prod or uberjar profiles. Work is underway to Dockerize this. In the meantime, you may run a copy of Orcpub with in-memory database as follows:

lein uberjar
PORT=8890 java -jar target/orcpub.jar

There are several issues which need to be worked out, such as mail server configuration, persistant database, etc. This is just a beginning.

OrcPub Fundamentals

Overview

OrcPub's design is based around the concept of hierarchical option selections applying modifiers to a entity. Consider D&D 5e as an example. In D&D 5e you build and maintain characters, which are entities, by selecting from a set of character options, such as race and class. When you select a race you will be affored other option selections, such as subrace or subclass. Option selections also apply modifiers to your character, such as 'Darkvision 60'. Option selections are defined in templates. An entity is really just a record of hierarchical choices made. A built entity is a collection of derived attributes and functions derived from applying all of the modifiers of all the choices made. Here is some pseudocode to this more concrete:

user> (def character-entity {:options {:race
                                       {:key :elf,
                                        :options {:subrace {:key :high-elf}}}}})
                                          
user> (def template {:selections [{:key :race
                                   :min 1
                                   :max 1
                                   :options [{:name "Elf"
                                              :key :elf
                                              :modifiers [(modifier ?dex-bonus (+ ?dex-bonus 2))
                                                          (modifier ?race "Elf")]
                                              :selections [{:key :subrace
                                                            :min 1
                                                            :max 1
                                                            :options [{:name "High Elf"
                                                                       :key :high-elf
                                                                       :modifiers [(modifier ?subrace "High Elf")
                                                                                   (modifier ?int-bonus (+ ?int-bonus 1))]}]}]}]}]}
                                                                 
user> (def built-character (build-entity charater-entity template))

user> built-character
{:race "Elf"
 :subrace "High Elf"
 :dex-bonus 2
 :int-bonus 1}

This may seem overly complicated, but after my work on the Original Orcpub.com, I realized that this really the only real correct solution as it models how character building actually works. The original Orcpub stored characters essentially like the built-character above with a centralized set of functions to compute other derived values. This is the most straightforward solution, but this has flaws:

  • You have difficulty figuring out which options have been selected and which ones still need to be selected.
  • You keep having to patch your data as your application evolves. For example, say you store a character's known spells as a list of spell IDs. Then you realize later that users want to also know what their attack bonus is for each spell. At the very least you'll have to make some significant changes to every stored character.
  • It is not scalable. Every time you add in more options, say from some new sourcebook, you have to pile on more conditional logic in your derived attribute functions. Believe me, this gets unmanageable very quickly.
  • It's not reusable in, say, a Rifts character builder.

The OrcPub2 architecture fixes these problems:

  • You know exactly which options have been selected, which have not, and how every modifier is arrived at, given the entity and the most up-to-date templates.
  • You don't need to patch up stored characters if you find a bug since characters are stored as just a set of very generic choices.
  • It's scalable and pluggable. Most logic for derived values is stored inside of the options that create or modify these derived values. Many rules within D&D 5e allow for picking the best of alternate calculations for a particular attribute (AC comes to mind). With the OrcPub2 solution you can have an option easily override or modify a calculation without any other code having to know about it. This makes for a MUCH more manageable solution and makes it easy to add options as plugins.
  • The entity builder engine could be used for building any character in any system. In fact, it could be used to build any entity in any system. For example, say you have a game system with well-defined mechanics building a vehicle, the entity builder engine could do that.

Modifiers

Character modifiers are tough to get right. As mentioned above, the naive approach is to try to centralize all logic for a calculation in one place. For example you might have a character that looks like this:

{:race "Elf"
 :subrace "High Elf"
 :base-abilities {:int 12
                  :dex 13}}

Given this, you might start calculating initiative as follows:

(defn ability-modifier [value] ...)

(defn race-dexterity [character]
  (case (:race character)
    "Elf" 2
    ...))
    
(defn subrace-dexterity [character] ...)

(defn base-ability [character ability-key]
  (get-in character [:base-abilities ability-key]))

(defn dexterity [character]
  (+ (base-ability character :dex)
     (race-dexterity character)
     (subrace-dexterity character)))
     
(defn initiative [character]
   (ability-modifier (dexterity character)))

Consider what happens when you need to account for the 'Improved Initiative' feat, you'll need to add the calculation to the initiative function. Okay, this is probably still manageable. Then consider what happens when some cool subclass comes along that gets an initiative bonus at 9th level. Now it starts getting more unmanagable. When you try to add every option from every book into the mix, each of which might have some totally new condition for modifying initiative, you quickly end up with a nausiating ball of mud that will be scary to work with.

OrcPub2 decentralizes most calculations using modifiers associated with selected character options. When you add options you also specify any modifiers associated with that option. For example, in the OrcPub2 entity example above, we have the elf option:

{:name "Elf"
  :key :elf
  :modifiers [(modifier ?dex-bonus (+ ?dex-bonus 2))
              (modifier ?race "Elf")]
  ...}

If you build a character that has this :elf option selected, the modifiers will be applied the the :dex-bonus and :race in the built character. Let's look closer at the ?dex-bonus modifier. The second argument to the modifier function is a special symbol that prefixes a ? on the attribute instead of the : we'll expect on the output attribute key, in this case ?dex-bonus will be modifying the value output to the :dex-bonus attribute. The third argument is a modifier body. This can be any Clojure expression you like, but if you will be deriving your new value from an old value or from another attribute you must use the ? reference. In this example we updating ?dex-bonus by adding 2 to it. Modifiers can be derived from attributes that are derived from other attributes, and so forth. For example, we may have a character whose options provide the following chain of modifiers:

(modifier ?dexterity 12)
(modifier ?intelligence 15)
(modifier ?dex-mod (ability-mod ?dexterity))
(modifier ?int-mod (ability-mod ?intelligence))
(modifier ?initiative ?dex-mod)
(modifier ?initiative (+ ?initiative (* 2 ?intelligence-mod)))

Modifier Order is Important!

Consider what would happen if we applied the above modifiers in a different order:

(modifier ?initiative (+ ?initiative (* 2 ?int-mod)))
(modifier ?dexterity 12)
(modifier ?intelligence 15)
(modifier ?dex-mod (ability-mod ?dexterity))
(modifier ?int-mod (ability-mod ?intelligence))
(modifier ?initiative ?dex-mod)

Either our initiative calculation would throw an error our it would be completely wrong since the other derived attributes it depends on have not been applied yet. There is no logical ordering for which options should be applied, so modifiers can very well be provided out of order. For this reason we have to build a dependency graph of derived attributes and then apply the modifiers in topologically sorted order. Identifying these dependencies is why we use the ? references.

FAQs

Q: Ummmmm, why is your code so ugly, I thought Clojure code was supposed to be pretty.

A: Yeah, about that...I worked on this for about 4 months full time, trying to compete with D&D Beyond's huge team and budget. That lead to a stressed-out me and ugly code. Help me make it pretty!

Q: Mwahahahaha, now that I have your code I'm going to fork it and build the most awesome website in the world that will totally frackin' annihilate OrcPub2.com. I'm going to call it FlumphTavern69.com. Come at me bro!

A: Hell yeah, do that, flumphs are some sexy creatures!

Q: Blahahahaha, you done fracked up, we are super-mega-corp Hex Inc. we will steal your awesome code and put it into our less awesome app. What you got to say about that, huh, beotch?

A: I'm down for that, your app makes me sad, if you were to combine your official license and professional visual design with my more modern technical and UX design, your app would make me happy and I could justify paying all the money for all the content

Q: Seriously?!!! Your unit test coverage is pathetic!

A: Yep, add some, it would be awesome.

Q: I'm a newb Clojure developer looking to get my feet wet, where to start?

A: First I would start by getting the fundamentals down at http://www.4clojure.com/, then maybe getting your bearing by checking out my more gentle (and clean) introduction to the OrcPub stack: https://github.com/larrychristensen/messenjer, which I walkthrough on https://lambdastew.com. From there you might add some unit tests or pick up an open issue on the "Issues" tab (and add unit tests with it).

Q: Your DSL for defining character options is pretty cool, I can build any type of character option out there. How about I add a bunch on content from the Player's Handbook?

A: I love your enthusiasm, but we cannot accept pull requests containing copyrighted content. We do, however, encourage you to fork OrcPub and create your own private version with the full content options

About

Code for Orcpub2 Community Edition

https://www.dungeonmastersvault.com/

License:Eclipse Public License 2.0


Languages

Language:Clojure 94.3%Language:CSS 5.0%Language:JavaScript 0.3%Language:C 0.2%Language:HTML 0.1%Language:C++ 0.0%Language:Pawn 0.0%Language:Dockerfile 0.0%Language:Shell 0.0%Language:Batchfile 0.0%