├── .clang-format ├── .gitignore ├── CK2Province.cc ├── CK2Province.hh ├── CK2Ruler.cc ├── CK2Ruler.hh ├── CK2Title.cc ├── CK2Title.hh ├── CK2War.cc ├── CK2War.hh ├── Converter.cc ├── Converter.hh ├── EU4Country.cc ├── EU4Country.hh ├── EU4Province.cc ├── EU4Province.hh ├── LICENSE ├── Logger.cc ├── Logger.hh ├── README.md ├── StringManips.cc ├── StringManips.hh ├── StructUtils.hh ├── UtilityFunctions.cc ├── UtilityFunctions.hh ├── Window.cc ├── Window.hh ├── constants.cc ├── constants.hh ├── debug └── maps │ └── provinces.txt ├── documentation.pdf ├── documentation.tex ├── release ├── CK2toEU4.exe ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Widgets.dll ├── config.txt ├── libgcc_s_dw2-1.dll ├── libstdc++-6.dll ├── libwinpthread-1.dll ├── maps │ ├── advisors.txt │ ├── areas.txt │ ├── ck_building_weights.txt │ ├── ck_buildings.txt │ ├── ck_province_titles.txt │ ├── ck_traits.txt │ ├── custom_overrides.txt │ ├── de_jure_lieges.txt │ ├── dynasties.txt │ ├── eu_buildings.txt │ ├── eu_leader_traits.txt │ ├── eu_ruler_traits.txt │ ├── input.eu4 │ ├── provinces.txt │ ├── staged_wonder_mods.txt │ └── staged_wonder_text.txt ├── mingwm10.dll └── platforms │ └── qwindows.dll └── score.tex /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/.gitignore -------------------------------------------------------------------------------- /CK2Province.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Province.cc -------------------------------------------------------------------------------- /CK2Province.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Province.hh -------------------------------------------------------------------------------- /CK2Ruler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Ruler.cc -------------------------------------------------------------------------------- /CK2Ruler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Ruler.hh -------------------------------------------------------------------------------- /CK2Title.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Title.cc -------------------------------------------------------------------------------- /CK2Title.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2Title.hh -------------------------------------------------------------------------------- /CK2War.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2War.cc -------------------------------------------------------------------------------- /CK2War.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/CK2War.hh -------------------------------------------------------------------------------- /Converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Converter.cc -------------------------------------------------------------------------------- /Converter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Converter.hh -------------------------------------------------------------------------------- /EU4Country.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/EU4Country.cc -------------------------------------------------------------------------------- /EU4Country.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/EU4Country.hh -------------------------------------------------------------------------------- /EU4Province.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/EU4Province.cc -------------------------------------------------------------------------------- /EU4Province.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/EU4Province.hh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Logger.cc -------------------------------------------------------------------------------- /Logger.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Logger.hh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/README.md -------------------------------------------------------------------------------- /StringManips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/StringManips.cc -------------------------------------------------------------------------------- /StringManips.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/StringManips.hh -------------------------------------------------------------------------------- /StructUtils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/StructUtils.hh -------------------------------------------------------------------------------- /UtilityFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/UtilityFunctions.cc -------------------------------------------------------------------------------- /UtilityFunctions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/UtilityFunctions.hh -------------------------------------------------------------------------------- /Window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Window.cc -------------------------------------------------------------------------------- /Window.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/Window.hh -------------------------------------------------------------------------------- /constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/constants.cc -------------------------------------------------------------------------------- /constants.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/constants.hh -------------------------------------------------------------------------------- /debug/maps/provinces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/debug/maps/provinces.txt -------------------------------------------------------------------------------- /documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/documentation.pdf -------------------------------------------------------------------------------- /documentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/documentation.tex -------------------------------------------------------------------------------- /release/CK2toEU4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/CK2toEU4.exe -------------------------------------------------------------------------------- /release/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/Qt5Core.dll -------------------------------------------------------------------------------- /release/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/Qt5Gui.dll -------------------------------------------------------------------------------- /release/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/Qt5Widgets.dll -------------------------------------------------------------------------------- /release/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/config.txt -------------------------------------------------------------------------------- /release/libgcc_s_dw2-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/libgcc_s_dw2-1.dll -------------------------------------------------------------------------------- /release/libstdc++-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/libstdc++-6.dll -------------------------------------------------------------------------------- /release/libwinpthread-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/libwinpthread-1.dll -------------------------------------------------------------------------------- /release/maps/advisors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/advisors.txt -------------------------------------------------------------------------------- /release/maps/areas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/areas.txt -------------------------------------------------------------------------------- /release/maps/ck_building_weights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/ck_building_weights.txt -------------------------------------------------------------------------------- /release/maps/ck_buildings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/ck_buildings.txt -------------------------------------------------------------------------------- /release/maps/ck_province_titles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/ck_province_titles.txt -------------------------------------------------------------------------------- /release/maps/ck_traits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/ck_traits.txt -------------------------------------------------------------------------------- /release/maps/custom_overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/custom_overrides.txt -------------------------------------------------------------------------------- /release/maps/de_jure_lieges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/de_jure_lieges.txt -------------------------------------------------------------------------------- /release/maps/dynasties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/dynasties.txt -------------------------------------------------------------------------------- /release/maps/eu_buildings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/eu_buildings.txt -------------------------------------------------------------------------------- /release/maps/eu_leader_traits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/eu_leader_traits.txt -------------------------------------------------------------------------------- /release/maps/eu_ruler_traits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/eu_ruler_traits.txt -------------------------------------------------------------------------------- /release/maps/input.eu4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/input.eu4 -------------------------------------------------------------------------------- /release/maps/provinces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/provinces.txt -------------------------------------------------------------------------------- /release/maps/staged_wonder_mods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/staged_wonder_mods.txt -------------------------------------------------------------------------------- /release/maps/staged_wonder_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/maps/staged_wonder_text.txt -------------------------------------------------------------------------------- /release/mingwm10.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/mingwm10.dll -------------------------------------------------------------------------------- /release/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/release/platforms/qwindows.dll -------------------------------------------------------------------------------- /score.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kingofmen/CK2toEU4/HEAD/score.tex --------------------------------------------------------------------------------