├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vimrc ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── api ├── Cargo.toml ├── Rocket.toml └── src │ └── main.rs ├── cmake_uninstall.cmake.in ├── config.h.in ├── data ├── banners │ └── welcome_mat1 ├── character_sheets │ ├── Blank ASCII Character Sheet.txt │ ├── Character Details (Optional) - Form Fillable.pdf │ ├── Character Details (Optional) - Print Version.pdf │ ├── Character Sheet - Alternative - Form Fillable.pdf │ ├── Character Sheet - Alternative - Print Version.pdf │ ├── Character Sheet - Alternative 2.pdf │ ├── Character Sheet - Form Fillable.pdf │ ├── Character Sheet - Print Version.pdf │ ├── CharacterSheet_3Pgs_ Complete.pdf │ ├── CharacterSheet_TyrannyofDragons.pdf │ ├── DnD_5E_CharacterSheet - Form Fillable.pdf │ ├── Spellcasting Sheet (Optional) - Form Fillable.pdf │ ├── Spellcasting Sheet (Optional) - Print Version.pdf │ └── ascii_char_sheet ├── names │ ├── aarakocra.lst │ ├── changeling.lst │ ├── dragonborn │ │ ├── child.lst │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── dwarf │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── elf │ │ ├── child.lst │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── gnome │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── goliath │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── half-orc │ │ ├── female.lst │ │ └── male.lst │ ├── halfling │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── human │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── kalashtar │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── kor │ │ ├── female.lst │ │ └── male.lst │ ├── minotaur │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ ├── shifter.lst │ ├── tiefling │ │ ├── female.lst │ │ ├── last.lst │ │ └── male.lst │ └── warforged.lst └── openrpg.json ├── include ├── character.h ├── character │ ├── ability-scores.h │ ├── backgrounds.h │ ├── character.h │ ├── classes.h │ ├── races.h │ └── skills.h ├── core │ ├── core-wrapper.h │ ├── opt-parser.h │ ├── platform.h │ ├── platform │ │ ├── osx.h │ │ ├── unix.h │ │ └── win32.h │ ├── types.h │ ├── utils.h │ └── xml.h ├── names.h ├── names │ ├── names-wrapper.h │ └── names.h ├── openrpg.h ├── roll.h ├── roll │ ├── die.h │ ├── roll-parser.h │ └── roll-wrapper.h └── wrappers.h ├── man └── man1 │ └── openrpg.1 ├── package.json ├── src ├── CMakeLists.txt ├── character │ ├── CMakeLists.txt │ ├── backgrounds.cpp │ ├── character-generator.cpp │ ├── character.cpp │ ├── classes.cpp │ └── races.cpp ├── core │ ├── CMakeLists.txt │ ├── core-wrapper.cpp │ ├── platform │ │ ├── osx.cpp │ │ ├── unix.cpp │ │ └── win32.cpp │ ├── utils.cpp │ └── xml.cpp ├── names │ ├── CMakeLists.txt │ ├── name-generator-wrapper.cpp │ ├── name-generator.cpp │ └── names.cpp ├── nodejs │ ├── CMakeLists.txt │ ├── export.js │ ├── node-addon.cpp │ └── openrpg.d.ts ├── openrpg.cpp └── roll │ ├── CMakeLists.txt │ ├── roll-parser.cpp │ ├── roll-wrapper.cpp │ └── roll.cpp └── test ├── CMakeLists.txt ├── name-generator-test.cpp ├── roll-parser-test.cpp └── test.js /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/.vimrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/README.md -------------------------------------------------------------------------------- /api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/api/Cargo.toml -------------------------------------------------------------------------------- /api/Rocket.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/api/Rocket.toml -------------------------------------------------------------------------------- /api/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/api/src/main.rs -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/config.h.in -------------------------------------------------------------------------------- /data/banners/welcome_mat1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/banners/welcome_mat1 -------------------------------------------------------------------------------- /data/character_sheets/Blank ASCII Character Sheet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Blank ASCII Character Sheet.txt -------------------------------------------------------------------------------- /data/character_sheets/Character Details (Optional) - Form Fillable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Details (Optional) - Form Fillable.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Details (Optional) - Print Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Details (Optional) - Print Version.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Sheet - Alternative - Form Fillable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Sheet - Alternative - Form Fillable.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Sheet - Alternative - Print Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Sheet - Alternative - Print Version.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Sheet - Alternative 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Sheet - Alternative 2.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Sheet - Form Fillable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Sheet - Form Fillable.pdf -------------------------------------------------------------------------------- /data/character_sheets/Character Sheet - Print Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Character Sheet - Print Version.pdf -------------------------------------------------------------------------------- /data/character_sheets/CharacterSheet_3Pgs_ Complete.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/CharacterSheet_3Pgs_ Complete.pdf -------------------------------------------------------------------------------- /data/character_sheets/CharacterSheet_TyrannyofDragons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/CharacterSheet_TyrannyofDragons.pdf -------------------------------------------------------------------------------- /data/character_sheets/DnD_5E_CharacterSheet - Form Fillable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/DnD_5E_CharacterSheet - Form Fillable.pdf -------------------------------------------------------------------------------- /data/character_sheets/Spellcasting Sheet (Optional) - Form Fillable.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Spellcasting Sheet (Optional) - Form Fillable.pdf -------------------------------------------------------------------------------- /data/character_sheets/Spellcasting Sheet (Optional) - Print Version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/Spellcasting Sheet (Optional) - Print Version.pdf -------------------------------------------------------------------------------- /data/character_sheets/ascii_char_sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/character_sheets/ascii_char_sheet -------------------------------------------------------------------------------- /data/names/aarakocra.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/aarakocra.lst -------------------------------------------------------------------------------- /data/names/changeling.lst: -------------------------------------------------------------------------------- 1 | Bin 2 | Dox 3 | Fie 4 | Hars 5 | Jin 6 | Lam 7 | Nit 8 | Ot 9 | Paik 10 | Ruz 11 | Sim 12 | Toox 13 | Yog 14 | -------------------------------------------------------------------------------- /data/names/dragonborn/child.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dragonborn/child.lst -------------------------------------------------------------------------------- /data/names/dragonborn/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dragonborn/female.lst -------------------------------------------------------------------------------- /data/names/dragonborn/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dragonborn/last.lst -------------------------------------------------------------------------------- /data/names/dragonborn/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dragonborn/male.lst -------------------------------------------------------------------------------- /data/names/dwarf/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dwarf/female.lst -------------------------------------------------------------------------------- /data/names/dwarf/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dwarf/last.lst -------------------------------------------------------------------------------- /data/names/dwarf/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/dwarf/male.lst -------------------------------------------------------------------------------- /data/names/elf/child.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/elf/child.lst -------------------------------------------------------------------------------- /data/names/elf/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/elf/female.lst -------------------------------------------------------------------------------- /data/names/elf/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/elf/last.lst -------------------------------------------------------------------------------- /data/names/elf/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/elf/male.lst -------------------------------------------------------------------------------- /data/names/gnome/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/gnome/female.lst -------------------------------------------------------------------------------- /data/names/gnome/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/gnome/last.lst -------------------------------------------------------------------------------- /data/names/gnome/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/gnome/male.lst -------------------------------------------------------------------------------- /data/names/goliath/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/goliath/female.lst -------------------------------------------------------------------------------- /data/names/goliath/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/goliath/last.lst -------------------------------------------------------------------------------- /data/names/goliath/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/goliath/male.lst -------------------------------------------------------------------------------- /data/names/half-orc/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/half-orc/female.lst -------------------------------------------------------------------------------- /data/names/half-orc/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/half-orc/male.lst -------------------------------------------------------------------------------- /data/names/halfling/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/halfling/female.lst -------------------------------------------------------------------------------- /data/names/halfling/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/halfling/last.lst -------------------------------------------------------------------------------- /data/names/halfling/male.lst: -------------------------------------------------------------------------------- 1 | Alton 2 | Beau 3 | Cade 4 | Eldon 5 | Garret 6 | Lyle 7 | Milo 8 | Osborn 9 | Roscoe 10 | Wellby 11 | -------------------------------------------------------------------------------- /data/names/human/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/human/female.lst -------------------------------------------------------------------------------- /data/names/human/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/human/last.lst -------------------------------------------------------------------------------- /data/names/human/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/human/male.lst -------------------------------------------------------------------------------- /data/names/kalashtar/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/kalashtar/female.lst -------------------------------------------------------------------------------- /data/names/kalashtar/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/kalashtar/last.lst -------------------------------------------------------------------------------- /data/names/kalashtar/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/kalashtar/male.lst -------------------------------------------------------------------------------- /data/names/kor/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/kor/female.lst -------------------------------------------------------------------------------- /data/names/kor/male.lst: -------------------------------------------------------------------------------- 1 | Arthi 2 | Durnan 3 | Forkai 4 | Kurmo 5 | Munda 6 | Sorto 7 | Zujrat 8 | -------------------------------------------------------------------------------- /data/names/minotaur/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/minotaur/female.lst -------------------------------------------------------------------------------- /data/names/minotaur/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/minotaur/last.lst -------------------------------------------------------------------------------- /data/names/minotaur/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/minotaur/male.lst -------------------------------------------------------------------------------- /data/names/shifter.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/shifter.lst -------------------------------------------------------------------------------- /data/names/tiefling/female.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/tiefling/female.lst -------------------------------------------------------------------------------- /data/names/tiefling/last.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/tiefling/last.lst -------------------------------------------------------------------------------- /data/names/tiefling/male.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/tiefling/male.lst -------------------------------------------------------------------------------- /data/names/warforged.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/names/warforged.lst -------------------------------------------------------------------------------- /data/openrpg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/data/openrpg.json -------------------------------------------------------------------------------- /include/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character.h -------------------------------------------------------------------------------- /include/character/ability-scores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/ability-scores.h -------------------------------------------------------------------------------- /include/character/backgrounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/backgrounds.h -------------------------------------------------------------------------------- /include/character/character.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/character.h -------------------------------------------------------------------------------- /include/character/classes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/classes.h -------------------------------------------------------------------------------- /include/character/races.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/races.h -------------------------------------------------------------------------------- /include/character/skills.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/character/skills.h -------------------------------------------------------------------------------- /include/core/core-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/core-wrapper.h -------------------------------------------------------------------------------- /include/core/opt-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/opt-parser.h -------------------------------------------------------------------------------- /include/core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/platform.h -------------------------------------------------------------------------------- /include/core/platform/osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/platform/osx.h -------------------------------------------------------------------------------- /include/core/platform/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/platform/unix.h -------------------------------------------------------------------------------- /include/core/platform/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/platform/win32.h -------------------------------------------------------------------------------- /include/core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/types.h -------------------------------------------------------------------------------- /include/core/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/utils.h -------------------------------------------------------------------------------- /include/core/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/core/xml.h -------------------------------------------------------------------------------- /include/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/names.h -------------------------------------------------------------------------------- /include/names/names-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/names/names-wrapper.h -------------------------------------------------------------------------------- /include/names/names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/names/names.h -------------------------------------------------------------------------------- /include/openrpg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/openrpg.h -------------------------------------------------------------------------------- /include/roll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/roll.h -------------------------------------------------------------------------------- /include/roll/die.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/roll/die.h -------------------------------------------------------------------------------- /include/roll/roll-parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/roll/roll-parser.h -------------------------------------------------------------------------------- /include/roll/roll-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/roll/roll-wrapper.h -------------------------------------------------------------------------------- /include/wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/include/wrappers.h -------------------------------------------------------------------------------- /man/man1/openrpg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/man/man1/openrpg.1 -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/package.json -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/character/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/CMakeLists.txt -------------------------------------------------------------------------------- /src/character/backgrounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/backgrounds.cpp -------------------------------------------------------------------------------- /src/character/character-generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/character-generator.cpp -------------------------------------------------------------------------------- /src/character/character.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/character.cpp -------------------------------------------------------------------------------- /src/character/classes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/classes.cpp -------------------------------------------------------------------------------- /src/character/races.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/character/races.cpp -------------------------------------------------------------------------------- /src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/core/core-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/core-wrapper.cpp -------------------------------------------------------------------------------- /src/core/platform/osx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/platform/osx.cpp -------------------------------------------------------------------------------- /src/core/platform/unix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/platform/unix.cpp -------------------------------------------------------------------------------- /src/core/platform/win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/platform/win32.cpp -------------------------------------------------------------------------------- /src/core/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/utils.cpp -------------------------------------------------------------------------------- /src/core/xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/core/xml.cpp -------------------------------------------------------------------------------- /src/names/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/names/CMakeLists.txt -------------------------------------------------------------------------------- /src/names/name-generator-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/names/name-generator-wrapper.cpp -------------------------------------------------------------------------------- /src/names/name-generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/names/name-generator.cpp -------------------------------------------------------------------------------- /src/names/names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/names/names.cpp -------------------------------------------------------------------------------- /src/nodejs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/nodejs/CMakeLists.txt -------------------------------------------------------------------------------- /src/nodejs/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/nodejs/export.js -------------------------------------------------------------------------------- /src/nodejs/node-addon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/nodejs/node-addon.cpp -------------------------------------------------------------------------------- /src/nodejs/openrpg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/nodejs/openrpg.d.ts -------------------------------------------------------------------------------- /src/openrpg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/openrpg.cpp -------------------------------------------------------------------------------- /src/roll/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/roll/CMakeLists.txt -------------------------------------------------------------------------------- /src/roll/roll-parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/roll/roll-parser.cpp -------------------------------------------------------------------------------- /src/roll/roll-wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/roll/roll-wrapper.cpp -------------------------------------------------------------------------------- /src/roll/roll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/src/roll/roll.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/name-generator-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/test/name-generator-test.cpp -------------------------------------------------------------------------------- /test/roll-parser-test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/test/roll-parser-test.cpp -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/incomingstick/OpenRPG/HEAD/test/test.js --------------------------------------------------------------------------------