This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pls |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def process_province_history(): | |
def mark_barony(barony, county_set): | |
try: | |
if barony.val.startswith('b_'): | |
county_set.add(barony.val) | |
except AttributeError: | |
pass | |
tree = ck2parser.parse_file(swmhpath / 'map/default.map') | |
defs = next(v.val for n, v in tree if n.val == 'definitions') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def update_tree(v): | |
for n2, v2 in v: | |
if isinstance(n2, ck2parser.String): | |
if ck2parser.is_codename(n2.val): | |
for n3, v3 in v2: | |
if n3.val == 'capital': | |
prov_key = 'PROV{}'.format(v3.val) | |
capital_name = localisation[prov_key] | |
if not v3.post_comment: | |
v3.post_comment = ck2parser.Comment( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[map.cpp:1445]: Province 1348 has no pixels in provinces.bmp | |
[map.cpp:1445]: Province 1950 has no pixels in provinces.bmp | |
[map.cpp:1445]: Province 1957 has no pixels in provinces.bmp | |
[map.cpp:1445]: Province 1958 has no pixels in provinces.bmp | |
[map.cpp:785]: Strait First Parameter Not Valid! Line: 127 | |
[map.cpp:785]: Strait First Parameter Not Valid! Line: 128 | |
[persistent.cpp:37]: Error: "Unexpected token: dignity, near line: 6 | |
" in file: "common/dynasties/75_minor_titles_hre.txt" near line: 6 | |
[persistent.cpp:37]: Error: "Unexpected token: grant_limit, near line: 7 | |
" in file: "common/dynasties/75_minor_titles_hre.txt" near line: 7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: cp1252 -*- | |
# -*- python-indent-offset: 4 -*- | |
import os | |
import sys | |
import shutil | |
import traceback | |
import time |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import collections | |
import pathlib | |
import string | |
import sys | |
wd = pathlib.Path('SWMH-BETA') | |
glob = '**/*' | |
out_path = wd / '../out.txt' | |
binary = ['.dds', '.tga', '.xac', '.bmp', '.db'] | |
suspicious = ['¡', '¤', '§', '°', '¿', 'À', 'Ã', 'Â', 'Ã', 'Ä', 'Ã…', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage[twoside,legalpaper]{geometry} | |
\usepackage{chngcntr} | |
\counterwithout{paragraph}{subsubsection} | |
\renewcommand{\theparagraph}{\arabic{paragraph}.} | |
\setcounter{secnumdepth}{4} | |
\usepackage{titlesec} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ioannes Barbarus | |
# [email protected] | |
# requires: | |
# >= Python 3.4 | |
# >= funcparserlib 0.3.6 | |
# >= NetworkX 0.32 | |
# >= NumPy 1.9.0 | |
# >= Pillow 2.0.0 | |
# >= tabulate 0.7.3 |
NewerOlder