summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorYehoshua Pesach Wallach <yehoshuapw@gmail.com>2022-04-18 20:42:58 +0300
committerJF <JF002@users.noreply.github.com>2022-05-10 22:20:02 +0200
commit875b9c4bc5c05ff5e850db7159814b46b467df18 (patch)
tree300b8c93911b4184e565abc02cfd43ef7ecd8d32 /src
parent3005fe871089b83a599b12e6a0d91453fc1b1e88 (diff)
fontgen: Added ability to choose fonts with .c
Diffstat (limited to 'src')
-rw-r--r--src/displayapp/fonts/generate.py12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/displayapp/fonts/generate.py b/src/displayapp/fonts/generate.py
index fea0123b..e142db48 100644
--- a/src/displayapp/fonts/generate.py
+++ b/src/displayapp/fonts/generate.py
@@ -33,6 +33,7 @@ def main():
ap.add_argument('config', type=str, help='config file to use')
ap.add_argument('-e', '--enable', type=str, action='append', help='optional feature to enable in font generation', default=[], metavar='features', dest='features')
ap.add_argument('-f', '--font', type=str, action='append', help='Choose specific fonts to generate (default: all)', default=[])
+ ap.add_argument('-c', '--removec', action='store_true', help='remove .c extension from font names (given in -f options)', default=False)
args = ap.parse_args()
if not os.path.exists(args.config):
@@ -46,8 +47,17 @@ def main():
if enabled_feature not in data['features']:
sys.exit(f'Error: the requested feature {enabled_feature} does not exist in {args.config}.')
+ fonts_to_run = args.font
+ if args.removec and args.font:
+ fonts_to_run = []
+ for font in args.font:
+ if font.endswith('.c'):
+ fonts_to_run.append(font[:-2])
+ else:
+ sys.exit(f'requested to remove .c extension, but {font} does not have it.')
+
for (name,font) in data['fonts'].items():
- if args.font and name not in args.font:
+ if fonts_to_run and name not in fonts_to_run:
continue
sources = font.pop('sources')
if 'patches' in font: