2020-06-13 06:55:27 +08:00
|
|
|
|
import os
|
2019-03-31 11:13:43 +08:00
|
|
|
|
import sys
|
2020-06-13 06:55:27 +08:00
|
|
|
|
import stat
|
|
|
|
|
import re
|
2018-11-02 11:51:14 +08:00
|
|
|
|
import copy
|
2018-04-27 10:02:25 +08:00
|
|
|
|
import glob
|
|
|
|
|
import shutil
|
|
|
|
|
import platform
|
2023-02-10 17:43:09 +08:00
|
|
|
|
import subprocess
|
2018-11-02 11:51:14 +08:00
|
|
|
|
|
|
|
|
|
###########################
|
2020-06-13 06:55:27 +08:00
|
|
|
|
DPI = 'x1'
|
2019-03-31 11:13:43 +08:00
|
|
|
|
ACTION = 'all'
|
|
|
|
|
ASSET_C = ''
|
|
|
|
|
BIN_DIR = ''
|
2020-06-13 06:55:27 +08:00
|
|
|
|
THEMES = ['default']
|
2019-03-31 11:13:43 +08:00
|
|
|
|
ASSETS_ROOT = ''
|
|
|
|
|
AWTK_ROOT = ''
|
2020-06-13 06:55:27 +08:00
|
|
|
|
OUTPUT_ROOT = None
|
2019-03-31 11:13:43 +08:00
|
|
|
|
INPUT_DIR = ''
|
|
|
|
|
OUTPUT_DIR = ''
|
2020-06-13 06:55:27 +08:00
|
|
|
|
APP_THEME = 'default'
|
|
|
|
|
THEME = 'default'
|
|
|
|
|
THEME_PACKAGED = True
|
|
|
|
|
IMAGEGEN_OPTIONS = 'bgra+bgr565'
|
2022-03-08 10:07:25 +08:00
|
|
|
|
LCD_ORIENTATION = '0'
|
2022-05-09 09:50:08 +08:00
|
|
|
|
LCD_FAST_ROTATION_MODE = False
|
2020-06-13 06:55:27 +08:00
|
|
|
|
ON_GENERATE_RES_BEFORE = None
|
|
|
|
|
ON_GENERATE_RES_AFTER = None
|
|
|
|
|
EXEC_CMD_HANDLER = None
|
|
|
|
|
IS_EXCLUDED_FILE_HANDLER = None
|
|
|
|
|
IS_GENERATE_RAW = True
|
|
|
|
|
IS_GENERATE_INC_RES = True
|
|
|
|
|
IS_GENERATE_INC_BITMAP = True
|
2021-09-16 16:00:56 +08:00
|
|
|
|
ASSETS_SUBNAME = '__assets_'
|
2018-11-02 11:51:14 +08:00
|
|
|
|
###########################
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
OS_NAME = platform.system()
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2019-03-22 12:02:10 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def get_action():
|
|
|
|
|
return ACTION
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2021-02-20 15:03:40 +08:00
|
|
|
|
def set_action(action):
|
|
|
|
|
global ACTION
|
|
|
|
|
ACTION = action
|
2019-03-22 12:02:10 +08:00
|
|
|
|
|
2021-09-16 16:00:56 +08:00
|
|
|
|
def get_assets_subname():
|
|
|
|
|
return ASSETS_SUBNAME
|
|
|
|
|
|
|
|
|
|
def set_assets_subname(subname):
|
|
|
|
|
global ASSETS_SUBNAME
|
|
|
|
|
ASSETS_SUBNAME = subname
|
|
|
|
|
|
|
|
|
|
def get_asset_c():
|
|
|
|
|
return ASSET_C
|
|
|
|
|
|
|
|
|
|
def set_asset_c(asset_c):
|
|
|
|
|
global ASSET_C
|
|
|
|
|
ASSET_C = asset_c
|
|
|
|
|
|
|
|
|
|
def get_output_root():
|
|
|
|
|
return OUTPUT_ROOT
|
|
|
|
|
|
|
|
|
|
def get_assets_root():
|
|
|
|
|
return ASSETS_ROOT
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def on_generate_res_before(handler):
|
|
|
|
|
global ON_GENERATE_RES_BEFORE
|
|
|
|
|
ON_GENERATE_RES_BEFORE = handler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def on_generate_res_after(handler):
|
|
|
|
|
global ON_GENERATE_RES_AFTER
|
|
|
|
|
ON_GENERATE_RES_AFTER = handler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def emit_generate_res_before(type):
|
|
|
|
|
if ON_GENERATE_RES_BEFORE != None:
|
|
|
|
|
ctx = {
|
|
|
|
|
'type': type,
|
|
|
|
|
'theme': THEME,
|
|
|
|
|
'imagegen_options': IMAGEGEN_OPTIONS,
|
2022-03-08 10:07:25 +08:00
|
|
|
|
'lcd_orientation' : LCD_ORIENTATION,
|
2022-05-09 09:50:08 +08:00
|
|
|
|
'lcd_fast_rotation_mode' : LCD_FAST_ROTATION_MODE,
|
2020-06-13 06:55:27 +08:00
|
|
|
|
'input': INPUT_DIR,
|
2020-09-28 11:58:12 +08:00
|
|
|
|
'output': OUTPUT_DIR,
|
|
|
|
|
'awtk_root': AWTK_ROOT
|
2020-06-13 06:55:27 +08:00
|
|
|
|
}
|
|
|
|
|
ON_GENERATE_RES_BEFORE(ctx)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def emit_generate_res_after(type):
|
|
|
|
|
if ON_GENERATE_RES_AFTER != None:
|
|
|
|
|
ctx = {
|
|
|
|
|
'type': type,
|
|
|
|
|
'theme': THEME,
|
|
|
|
|
'imagegen_options': IMAGEGEN_OPTIONS,
|
2022-03-08 10:07:25 +08:00
|
|
|
|
'lcd_orientation' : LCD_ORIENTATION,
|
2022-05-09 09:50:08 +08:00
|
|
|
|
'lcd_fast_rotation_mode' : LCD_FAST_ROTATION_MODE,
|
2020-06-13 06:55:27 +08:00
|
|
|
|
'input': INPUT_DIR,
|
2020-09-28 11:58:12 +08:00
|
|
|
|
'output': OUTPUT_DIR,
|
|
|
|
|
'awtk_root': AWTK_ROOT
|
2020-06-13 06:55:27 +08:00
|
|
|
|
}
|
|
|
|
|
ON_GENERATE_RES_AFTER(ctx)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_is_excluded_file_handler(handler):
|
|
|
|
|
global IS_EXCLUDED_FILE_HANDLER
|
|
|
|
|
IS_EXCLUDED_FILE_HANDLER = handler
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def set_exec_command_handler(handler):
|
|
|
|
|
global EXEC_CMD_HANDLER
|
|
|
|
|
EXEC_CMD_HANDLER = handler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_tools_dir(dir):
|
|
|
|
|
global BIN_DIR
|
|
|
|
|
BIN_DIR = dir
|
|
|
|
|
|
2022-05-09 09:50:08 +08:00
|
|
|
|
def set_lcd_rortrail_info(lcd_orientation, lcd_fast_rotation_mode):
|
|
|
|
|
global LCD_ORIENTATION
|
|
|
|
|
global LCD_FAST_ROTATION_MODE
|
|
|
|
|
LCD_ORIENTATION = lcd_orientation
|
|
|
|
|
LCD_FAST_ROTATION_MODE = lcd_fast_rotation_mode
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def set_dpi(dpi):
|
|
|
|
|
global DPI
|
|
|
|
|
DPI = dpi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_enable_generate_raw(enable):
|
|
|
|
|
global IS_GENERATE_RAW
|
|
|
|
|
IS_GENERATE_RAW = enable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_enable_generate_inc_res(enable):
|
|
|
|
|
global IS_GENERATE_INC_RES
|
|
|
|
|
IS_GENERATE_INC_RES = enable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_enable_generate_inc_bitmap(enable):
|
|
|
|
|
global IS_GENERATE_INC_BITMAP
|
|
|
|
|
IS_GENERATE_INC_BITMAP = enable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_app_theme(theme):
|
|
|
|
|
global APP_THEME
|
|
|
|
|
APP_THEME = theme
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def set_current_theme(index):
|
|
|
|
|
global THEME
|
|
|
|
|
global THEME_PACKAGED
|
|
|
|
|
global IMAGEGEN_OPTIONS
|
|
|
|
|
global INPUT_DIR
|
|
|
|
|
global OUTPUT_DIR
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if index >= len(THEMES):
|
|
|
|
|
return
|
2020-03-18 11:21:07 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme = THEMES[index]
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if isinstance(theme, str):
|
|
|
|
|
THEME = theme
|
|
|
|
|
elif isinstance(theme, dict):
|
|
|
|
|
THEME = theme['name']
|
|
|
|
|
THEME_PACKAGED = True
|
|
|
|
|
IMAGEGEN_OPTIONS = 'bgra+bgr565'
|
|
|
|
|
if 'imagegen_options' in theme:
|
|
|
|
|
IMAGEGEN_OPTIONS = theme['imagegen_options']
|
|
|
|
|
if 'packaged' in theme:
|
|
|
|
|
THEME_PACKAGED = theme['packaged']
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
INPUT_DIR = join_path(ASSETS_ROOT, THEME+'/raw')
|
|
|
|
|
if not os.path.exists(INPUT_DIR):
|
|
|
|
|
INPUT_DIR = join_path(ASSETS_ROOT, THEME)
|
|
|
|
|
|
|
|
|
|
OUTPUT_DIR = join_path(OUTPUT_ROOT, THEME)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def theme_foreach(visit, ctx = None):
|
|
|
|
|
for i in range(len(THEMES)):
|
|
|
|
|
set_current_theme(i)
|
|
|
|
|
|
|
|
|
|
if ctx != None:
|
|
|
|
|
visit(ctx)
|
|
|
|
|
else:
|
|
|
|
|
visit()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_imagegen_options_of_default_theme():
|
|
|
|
|
opt = 'bgra+bgr565'
|
|
|
|
|
|
|
|
|
|
if len(THEMES) > 0:
|
|
|
|
|
if isinstance(THEMES[0], str):
|
|
|
|
|
opt = IMAGEGEN_OPTIONS
|
|
|
|
|
elif isinstance(THEMES[0], dict):
|
|
|
|
|
for iter in THEMES:
|
|
|
|
|
if iter['name'] == 'default':
|
|
|
|
|
if 'imagegen_options' in iter:
|
|
|
|
|
opt = iter['imagegen_options']
|
|
|
|
|
break
|
|
|
|
|
return opt
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def is_packaged_of_default_theme():
|
|
|
|
|
packaged = True
|
|
|
|
|
|
|
|
|
|
if len(THEMES) > 0:
|
|
|
|
|
if isinstance(THEMES[0], str):
|
|
|
|
|
packaged = THEME_PACKAGED
|
|
|
|
|
elif isinstance(THEMES[0], dict):
|
|
|
|
|
for iter in THEMES:
|
|
|
|
|
if iter['name'] == 'default':
|
|
|
|
|
if 'packaged' in iter:
|
|
|
|
|
packaged = iter['packaged']
|
|
|
|
|
break
|
|
|
|
|
return packaged
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def getcwd():
|
2020-09-18 11:31:59 +08:00
|
|
|
|
if sys.version_info >= (3, 0):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
return os.getcwd()
|
|
|
|
|
else:
|
|
|
|
|
return os.getcwdu()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def to_file_system_coding(s):
|
2020-09-18 11:31:59 +08:00
|
|
|
|
if sys.version_info >= (3, 0): return s
|
2020-06-13 06:55:27 +08:00
|
|
|
|
coding = sys.getfilesystemencoding()
|
|
|
|
|
return s.encode(coding)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def join_path(root, subdir):
|
2019-03-31 11:13:43 +08:00
|
|
|
|
return os.path.normpath(os.path.join(root, subdir))
|
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def make_dirs(path):
|
|
|
|
|
if not os.path.exists(path):
|
|
|
|
|
os.makedirs(path)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def copy_dir(src, dst):
|
|
|
|
|
if not os.path.exists(src):
|
|
|
|
|
print('copy directory: ' + src + ' is not exists.')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
else:
|
2020-06-13 06:55:27 +08:00
|
|
|
|
print('copy directory: ' + src + ' ==> ' + dst)
|
|
|
|
|
shutil.copytree(src, dst)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def copy_file(src, dst):
|
|
|
|
|
if not os.path.exists(src):
|
|
|
|
|
print('copy file: ' + src + ' is not exists.')
|
|
|
|
|
else:
|
|
|
|
|
print('copy file: ' + src + ' ==> ' + dst)
|
|
|
|
|
shutil.copy(src, dst)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def remove_dir(dir):
|
|
|
|
|
if os.path.isdir(dir):
|
|
|
|
|
for root, dirs, files in os.walk(dir):
|
|
|
|
|
for f in files:
|
|
|
|
|
real_path = join_path(root, f)
|
|
|
|
|
os.chmod(real_path, stat.S_IRWXU)
|
2023-02-10 17:43:09 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
shutil.rmtree(dir)
|
|
|
|
|
elif os.path.isfile(dir):
|
|
|
|
|
os.chmod(dir, stat.S_IRWXU)
|
|
|
|
|
os.remove(dir)
|
|
|
|
|
else:
|
|
|
|
|
print('dir ' + dir + ' not exist')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
def get_appint_folder_ex(path, regex = '/', folder_list = [], parent = ''):
|
2023-03-13 18:00:45 +08:00
|
|
|
|
if not os.path.exists(path) or not os.path.isdir(path):
|
2023-03-10 18:19:49 +08:00
|
|
|
|
return folder_list
|
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
for f in os.listdir(path):
|
|
|
|
|
src = join_path(path, f)
|
|
|
|
|
if os.path.isdir(src) and f != '.' and f != '..':
|
|
|
|
|
file_path = os.path.join(parent, f)
|
|
|
|
|
if regex == '/':
|
|
|
|
|
folder_list.append(tuple((src, file_path)))
|
|
|
|
|
folder_list = get_appint_folder_ex(src, regex, folder_list, file_path)
|
|
|
|
|
elif (regex == os.path.splitext(f)[1]):
|
|
|
|
|
file_path = os.path.join(parent, f)
|
|
|
|
|
folder_list.append(tuple((src, file_path)))
|
|
|
|
|
return folder_list
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_appint_folder(path, regex = '/', include_self = True):
|
|
|
|
|
folder_list = []
|
|
|
|
|
regex_list = regex.split("|")
|
|
|
|
|
|
2023-03-13 18:00:45 +08:00
|
|
|
|
if not os.path.exists(path) or not os.path.isdir(path):
|
2023-03-10 18:19:49 +08:00
|
|
|
|
return folder_list
|
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
for reg in regex_list:
|
|
|
|
|
folder_list += get_appint_folder_ex(path, reg, [], '')
|
|
|
|
|
|
|
|
|
|
if include_self == True:
|
|
|
|
|
folder_list.append(tuple((path, '')))
|
|
|
|
|
return folder_list
|
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def to_exe(name):
|
|
|
|
|
if OS_NAME == 'Windows':
|
|
|
|
|
return join_path(BIN_DIR, name+'.exe')
|
|
|
|
|
else:
|
|
|
|
|
return join_path(BIN_DIR, name)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def glob_asset_files(path):
|
|
|
|
|
if not path.endswith(os.sep + 'ui' + os.sep + '*.data'):
|
|
|
|
|
result = glob.glob(path)
|
|
|
|
|
else:
|
|
|
|
|
result = []
|
|
|
|
|
dir = path[0 : len(path) - 7]
|
|
|
|
|
if os.path.isdir(dir):
|
|
|
|
|
for root, dirs, files in os.walk(dir):
|
|
|
|
|
for f in files:
|
|
|
|
|
filename, extname = os.path.splitext(f)
|
|
|
|
|
if extname == '.data':
|
|
|
|
|
result.append(join_path(root, f))
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
return result
|
2018-11-02 11:51:14 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def read_file(filename):
|
|
|
|
|
content = ''
|
2020-09-18 11:31:59 +08:00
|
|
|
|
if sys.version_info >= (3, 0):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
with open(filename, 'r', encoding='utf8') as f:
|
|
|
|
|
content = f.read()
|
|
|
|
|
else:
|
|
|
|
|
with open(filename, 'r') as f:
|
|
|
|
|
content = f.read()
|
|
|
|
|
return content
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def write_file(filename, s):
|
2020-09-18 11:31:59 +08:00
|
|
|
|
if sys.version_info >= (3, 0):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
with open(filename, 'w', encoding='utf8') as f:
|
|
|
|
|
f.write(s)
|
|
|
|
|
else:
|
|
|
|
|
with open(filename, 'w') as f:
|
|
|
|
|
s = s.encode('utf8')
|
|
|
|
|
f.write(s)
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def is_excluded_file(filename):
|
|
|
|
|
return (IS_EXCLUDED_FILE_HANDLER and IS_EXCLUDED_FILE_HANDLER(filename))
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def to_asset_const_name(filename, root):
|
|
|
|
|
basename = os.path.splitext(filename)[0]
|
|
|
|
|
basename = basename.replace(root, '.')
|
|
|
|
|
basename = basename.replace('\\', '/')
|
|
|
|
|
basename = basename.replace('/fonts/', '/font/')
|
|
|
|
|
basename = basename.replace('/images/', '/image/')
|
|
|
|
|
basename = basename.replace('/styles/', '/style/')
|
|
|
|
|
basename = basename.replace('/scripts/', '/script/')
|
2021-11-23 10:42:33 +08:00
|
|
|
|
basename = basename.replace('/flows/', '/flow/')
|
2020-06-13 06:55:27 +08:00
|
|
|
|
basename = basename.replace('./', '')
|
|
|
|
|
basename = re.sub(r'[^a-zA-Z0-9]', '_', basename)
|
|
|
|
|
return basename
|
2018-04-27 18:12:12 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def build_all():
|
|
|
|
|
os.system('scons')
|
2018-05-04 14:52:15 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def exec_cmd(cmd):
|
|
|
|
|
if EXEC_CMD_HANDLER:
|
|
|
|
|
EXEC_CMD_HANDLER(cmd)
|
|
|
|
|
else:
|
|
|
|
|
print(cmd)
|
|
|
|
|
# 转为文件系统的编码格式,避免中文乱码
|
|
|
|
|
cmd = to_file_system_coding(cmd)
|
2023-02-10 17:43:09 +08:00
|
|
|
|
# 启动子进程
|
|
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, shell=True)
|
|
|
|
|
exe_name = cmd.split(' ', 1)[0]
|
|
|
|
|
out_str = p.communicate()[0]
|
|
|
|
|
if out_str != None:
|
|
|
|
|
out_str = out_str.decode('UTF-8')
|
|
|
|
|
# 将输出信息重新打印到控制台
|
|
|
|
|
print(out_str)
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
# 如果程序出现异常或某个资源打包失败则直接退出
|
|
|
|
|
if p.returncode != 0:
|
|
|
|
|
sys.exit(exe_name + ' exit code:' + str(p.returncode))
|
|
|
|
|
if 'gen fail' in out_str:
|
|
|
|
|
sys.exit(1)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def themegen(raw, inc, theme):
|
|
|
|
|
exec_cmd(to_exe('themegen') + ' \"' + raw + '\" \"' + inc + '\" data ' + theme)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def themegen_bin(raw, bin):
|
|
|
|
|
exec_cmd(to_exe('themegen') + ' \"' + raw + '\" \"' + bin + '\" bin')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def strgen(raw, inc, theme):
|
2019-10-19 07:09:19 +08:00
|
|
|
|
if(os.path.isfile(raw)):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
exec_cmd(to_exe('strgen') + ' \"' + raw + '\" \"' + inc + '\" data ' + theme)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def strgen_bin(raw, bin):
|
2019-10-19 07:09:19 +08:00
|
|
|
|
if(os.path.isfile(raw)):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
exec_cmd(to_exe('strgen') + ' \"' + raw + '\" \"' + bin + '\" bin')
|
|
|
|
|
|
|
|
|
|
def resgen(raw, inc, theme, outExtname):
|
|
|
|
|
exec_cmd(to_exe('resgen') + ' \"' + raw + '\" \"' + inc + '\" ' + theme + ' ' + outExtname)
|
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def fontgen(raw, text, inc, size, options, theme):
|
|
|
|
|
fontgenName = 'fontgen'
|
|
|
|
|
if options == 'mono' and os.path.exists(to_exe('fontgen_ft')):
|
|
|
|
|
fontgenName = 'fontgen_ft'
|
2018-11-20 16:25:28 +08:00
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
exec_cmd(to_exe(fontgenName) + ' \"' + raw + '\" \"' + text + '\" \"' + inc + '\" ' +
|
|
|
|
|
str(size) + ' ' + options + ' ' + theme)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
|
2022-05-09 09:50:08 +08:00
|
|
|
|
def imagegen(raw, inc, options, theme, lcd_orientation, lcd_fast_rotation_mode):
|
|
|
|
|
if not lcd_fast_rotation_mode :
|
|
|
|
|
lcd_orientation = '0'
|
2022-03-08 10:07:25 +08:00
|
|
|
|
exec_cmd(to_exe('imagegen') + ' \"' + raw + '\" \"' + inc + '\" ' + options + ' ' + theme + ' ' + lcd_orientation)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def svggen(raw, inc, theme):
|
|
|
|
|
exec_cmd(to_exe('bsvggen') + ' \"' + raw + '\" \"' + inc + '\" data ' + theme)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def svggen_bin(raw, bin):
|
|
|
|
|
exec_cmd(to_exe('bsvggen') + ' \"' + raw + '\" \"' + bin + '\" bin')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def xml_to_ui(raw, inc, theme):
|
|
|
|
|
exec_cmd(to_exe('xml_to_ui') + ' \"' + raw + '\" \"' + inc + '\" data \"\" ' + theme)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2018-04-27 18:12:12 +08:00
|
|
|
|
def xml_to_ui_bin(raw, bin):
|
2020-06-13 06:55:27 +08:00
|
|
|
|
exec_cmd(to_exe('xml_to_ui') + ' \"' + raw + '\" \"' + bin + '\" bin')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 18:12:12 +08:00
|
|
|
|
|
2018-11-02 11:51:14 +08:00
|
|
|
|
def gen_res_all_style():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'styles')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('style')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
bin = join_path(OUTPUT_DIR, 'raw/styles')
|
|
|
|
|
make_dirs(bin)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
themegen_bin(raw, bin)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/styles')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
themegen(raw, inc, THEME)
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('style')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_res_svg():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
raw = join_path(INPUT_DIR, 'images/svg')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
bin = join_path(OUTPUT_DIR, 'raw/images/svg')
|
|
|
|
|
make_dirs(bin)
|
|
|
|
|
svggen_bin(raw, bin)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/images')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
svggen(raw, inc, THEME)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_res_png_jpg():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
|
|
|
|
dirs = ['xx', 'x1', 'x2', 'x3']
|
|
|
|
|
for d in dirs:
|
|
|
|
|
raw = join_path(INPUT_DIR, 'images/'+d)
|
|
|
|
|
if os.path.exists(raw):
|
|
|
|
|
dst = join_path(OUTPUT_DIR, 'raw/images/'+d)
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
remove_dir(dst)
|
|
|
|
|
copy_dir(raw, dst)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/images')
|
|
|
|
|
dirs = [DPI, 'xx']
|
|
|
|
|
for d in dirs:
|
|
|
|
|
raw = join_path(INPUT_DIR, 'images/'+d)
|
|
|
|
|
if os.path.exists(raw):
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
if IS_GENERATE_INC_RES:
|
|
|
|
|
resgen(raw, inc, THEME, '.res')
|
|
|
|
|
if IS_GENERATE_INC_BITMAP:
|
2022-05-09 09:50:08 +08:00
|
|
|
|
imagegen(raw, inc, IMAGEGEN_OPTIONS, THEME, LCD_ORIENTATION, LCD_FAST_ROTATION_MODE)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
# 如果当前主题的gen选项与default主题不一致,则按新的gen选项重新生成图片的位图数据
|
|
|
|
|
if IS_GENERATE_INC_BITMAP and THEME != 'default':
|
|
|
|
|
if get_imagegen_options_of_default_theme() != IMAGEGEN_OPTIONS:
|
|
|
|
|
for d in dirs:
|
|
|
|
|
raw = join_path(ASSETS_ROOT, 'default/raw')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
raw = join_path(ASSETS_ROOT, 'default')
|
|
|
|
|
raw = join_path(raw, 'images/'+d)
|
|
|
|
|
|
|
|
|
|
if os.path.exists(raw):
|
|
|
|
|
make_dirs(inc)
|
2022-05-09 09:50:08 +08:00
|
|
|
|
imagegen(raw, inc, IMAGEGEN_OPTIONS, THEME, LCD_ORIENTATION, LCD_FAST_ROTATION_MODE)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_res_all_image():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('image')
|
2018-11-20 16:25:28 +08:00
|
|
|
|
gen_res_png_jpg()
|
2018-11-21 09:34:23 +08:00
|
|
|
|
gen_res_svg()
|
2020-06-13 06:55:27 +08:00
|
|
|
|
emit_generate_res_after('image')
|
2018-11-20 16:25:28 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-11-02 11:51:14 +08:00
|
|
|
|
def gen_res_all_ui():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'ui')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('ui')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
bin = join_path(OUTPUT_DIR, 'raw/ui')
|
|
|
|
|
make_dirs(bin)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
xml_to_ui_bin(raw, bin)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/ui')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
xml_to_ui(raw, inc, THEME)
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('ui')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-03-15 17:44:48 +08:00
|
|
|
|
def gen_res_all_data():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'data')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('data')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
|
|
|
|
dst = join_path(OUTPUT_DIR, 'raw/data')
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
remove_dir(dst)
|
|
|
|
|
copy_dir(raw, dst)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/data')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
resgen(raw, inc, THEME, '.data')
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('data')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-12-21 18:07:55 +08:00
|
|
|
|
def gen_res_all_flows():
|
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'flows')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('flows')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
|
|
|
|
dst = join_path(OUTPUT_DIR, 'raw/flows')
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
remove_dir(dst)
|
|
|
|
|
copy_dir(raw, dst)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/flows')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
resgen(raw, inc, THEME, '.flows')
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('flows')
|
|
|
|
|
|
2019-03-15 17:44:48 +08:00
|
|
|
|
|
|
|
|
|
def gen_res_all_xml():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
raw = join_path(INPUT_DIR, 'xml')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
2019-03-15 17:44:48 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
emit_generate_res_before('xml')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
|
|
|
|
dst = join_path(OUTPUT_DIR, 'raw/xml')
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
remove_dir(dst)
|
|
|
|
|
copy_dir(raw, dst)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/xml')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
resgen(raw, inc, THEME, '.data')
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('xml')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_res_bitmap_font(input_dir, font_options, theme):
|
|
|
|
|
if not os.path.exists(join_path(input_dir, 'fonts/config')):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
for f in glob.glob(join_path(input_dir, 'fonts/config/*.txt')):
|
2020-03-16 21:19:20 +08:00
|
|
|
|
filename, extname = os.path.splitext(f)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
fontname = os.path.basename(filename)
|
|
|
|
|
index = fontname.rfind('_')
|
|
|
|
|
if index > 0:
|
2020-06-15 18:32:07 +08:00
|
|
|
|
raw = os.path.dirname(os.path.dirname(filename)) + '/origin/' + fontname[0 : index] + '.ttf'
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
raw = os.path.dirname(os.path.dirname(filename)) + '/' + fontname[0 : index] + '.ttf'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if os.path.exists(raw):
|
|
|
|
|
size = fontname[index + 1 : len(fontname)]
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/fonts/' + fontname[0 : index] + '_' + str(size) + '.data')
|
|
|
|
|
fontgen(raw, f, inc, size, font_options, theme)
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def gen_res_all_font():
|
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('font')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
2023-03-10 18:19:49 +08:00
|
|
|
|
make_dirs(join_path(OUTPUT_DIR, 'raw/fonts'))
|
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
in_files = join_path(INPUT_DIR, 'fonts/')
|
|
|
|
|
for f in get_appint_folder(in_files, '.ttf', False):
|
|
|
|
|
out_files = f[0].replace(INPUT_DIR, join_path(OUTPUT_DIR, 'raw'))
|
|
|
|
|
out_foler = os.path.dirname(out_files)
|
|
|
|
|
if not os.path.exists(out_foler):
|
|
|
|
|
make_dirs(out_foler)
|
|
|
|
|
copy_file(f[0], out_files)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc_dir = join_path(OUTPUT_DIR, 'inc/fonts')
|
|
|
|
|
make_dirs(inc_dir)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_BITMAP:
|
|
|
|
|
font_options = 'none'
|
|
|
|
|
if IMAGEGEN_OPTIONS == 'mono':
|
|
|
|
|
font_options = 'mono'
|
|
|
|
|
|
|
|
|
|
# 位图字体的保留设置在fonts/config目录中,比如default_18.txt中设置default字体18字号的保留字符
|
|
|
|
|
gen_res_bitmap_font(INPUT_DIR, font_options, THEME)
|
|
|
|
|
if THEME != 'default':
|
|
|
|
|
# 如果当前主题的gen选项与default主题不同时为mono,则按新的gen选项重新生成位图字体
|
|
|
|
|
opt = get_imagegen_options_of_default_theme()
|
|
|
|
|
if (opt == 'mono' or IMAGEGEN_OPTIONS == 'mono') and opt != IMAGEGEN_OPTIONS:
|
|
|
|
|
input_dir = join_path(ASSETS_ROOT, 'default/raw')
|
|
|
|
|
if not os.path.exists(input_dir):
|
|
|
|
|
input_dir = join_path(ASSETS_ROOT, 'default')
|
|
|
|
|
gen_res_bitmap_font(input_dir, font_options, THEME)
|
|
|
|
|
|
|
|
|
|
# 对default_full的特殊处理,兼容awtk的demos
|
2020-09-11 22:58:48 +08:00
|
|
|
|
IS_AWTK_DEMO = False
|
|
|
|
|
if os.path.exists('scripts/update_res_common.py'):
|
|
|
|
|
IS_AWTK_DEMO = True
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
raw = join_path(INPUT_DIR, 'fonts/default_full.ttf')
|
|
|
|
|
if IS_AWTK_DEMO and os.path.exists(raw):
|
|
|
|
|
text = join_path(INPUT_DIR, 'fonts/text.txt')
|
|
|
|
|
if os.path.exists(text):
|
|
|
|
|
fontsizes = [16, 18, 20, 24, 32, 96]
|
|
|
|
|
for size in fontsizes:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/fonts/default_%d.data' % size)
|
|
|
|
|
fontgen(raw, text, inc, size, font_options, THEME)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES:
|
|
|
|
|
if not os.path.exists(join_path(INPUT_DIR, 'fonts')):
|
|
|
|
|
return
|
|
|
|
|
|
2023-03-08 18:08:14 +08:00
|
|
|
|
for f in get_appint_folder(join_path(INPUT_DIR, 'fonts/'), ".ttf", False):
|
|
|
|
|
filename, extname = os.path.splitext(f[0])
|
|
|
|
|
raw = f[0]
|
2020-06-13 06:55:27 +08:00
|
|
|
|
filename = filename.replace(INPUT_DIR, join_path(OUTPUT_DIR, 'inc'))
|
|
|
|
|
inc = filename + '.res'
|
|
|
|
|
resgen(raw, inc, THEME, '.res')
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('font')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-07-05 15:22:04 +08:00
|
|
|
|
|
2019-02-07 17:27:19 +08:00
|
|
|
|
def gen_res_all_script():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'scripts')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('script')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
if INPUT_DIR != join_path(OUTPUT_DIR, 'raw'):
|
|
|
|
|
dst = join_path(OUTPUT_DIR, 'raw/scripts')
|
|
|
|
|
if os.path.exists(dst):
|
|
|
|
|
remove_dir(dst)
|
|
|
|
|
copy_dir(raw, dst)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/scripts')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
resgen(raw, inc, THEME, '.res')
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('script')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2019-02-07 17:27:19 +08:00
|
|
|
|
|
2018-11-02 11:51:14 +08:00
|
|
|
|
def gen_res_all_string():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if not THEME_PACKAGED and THEME != 'default':
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
raw = join_path(INPUT_DIR, 'strings/strings.xml')
|
|
|
|
|
if not os.path.exists(raw):
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
emit_generate_res_before('string')
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_RAW:
|
|
|
|
|
bin = join_path(OUTPUT_DIR, 'raw/strings')
|
|
|
|
|
make_dirs(bin)
|
|
|
|
|
strgen_bin(raw, bin)
|
|
|
|
|
|
|
|
|
|
if IS_GENERATE_INC_RES or IS_GENERATE_INC_BITMAP:
|
|
|
|
|
inc = join_path(OUTPUT_DIR, 'inc/strings')
|
|
|
|
|
make_dirs(inc)
|
|
|
|
|
strgen(raw, inc, THEME)
|
|
|
|
|
|
|
|
|
|
emit_generate_res_after('string')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-07-05 15:22:04 +08:00
|
|
|
|
|
2018-07-22 14:22:09 +08:00
|
|
|
|
def gen_gpinyin():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
emit_generate_res_before('gpinyin')
|
|
|
|
|
exec_cmd(to_exe('resgen') + ' ' + join_path('3rd', 'gpinyin/data/gpinyin.dat') +
|
|
|
|
|
' ' + join_path('3rd', 'gpinyin/src/gpinyin.inc'))
|
|
|
|
|
exec_cmd(to_exe('resgen') + ' ' + join_path('tools', 'word_gen/words.bin') +
|
|
|
|
|
' ' + join_path('src', 'input_methods/suggest_words.inc'))
|
2023-02-10 17:43:09 +08:00
|
|
|
|
exec_cmd(to_exe('resgen') + ' ' + join_path('tools','word_gen/words.bin') +
|
2020-06-13 06:55:27 +08:00
|
|
|
|
' ' + join_path('tests', 'suggest_test.inc'))
|
|
|
|
|
emit_generate_res_after('gpinyin')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2018-11-02 11:51:14 +08:00
|
|
|
|
|
|
|
|
|
def gen_res_all():
|
2020-06-13 06:55:27 +08:00
|
|
|
|
print('=========================================================')
|
|
|
|
|
emit_generate_res_before('all')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_all_string()
|
|
|
|
|
gen_res_all_font()
|
|
|
|
|
gen_res_all_script()
|
|
|
|
|
gen_res_all_image()
|
|
|
|
|
gen_res_all_ui()
|
|
|
|
|
gen_res_all_style()
|
|
|
|
|
gen_res_all_data()
|
2020-12-21 18:07:55 +08:00
|
|
|
|
gen_res_all_flows()
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_all_xml()
|
2020-06-13 06:55:27 +08:00
|
|
|
|
emit_generate_res_after('all')
|
|
|
|
|
print('=========================================================')
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def gen_includes(files, inherited, with_multi_theme):
|
|
|
|
|
result = ""
|
2019-10-19 07:09:19 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if with_multi_theme:
|
|
|
|
|
remove = OUTPUT_ROOT
|
|
|
|
|
else:
|
|
|
|
|
remove = os.path.dirname(OUTPUT_ROOT)
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
for f in files:
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if is_excluded_file(f):
|
2020-04-28 18:04:52 +08:00
|
|
|
|
continue
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
if inherited:
|
|
|
|
|
filename = f.replace(join_path(OUTPUT_ROOT, 'default'), join_path(OUTPUT_ROOT, THEME))
|
|
|
|
|
if os.path.exists(filename):
|
|
|
|
|
continue
|
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
incf = copy.copy(f)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
incf = incf.replace(remove, ".")
|
2019-03-31 11:13:43 +08:00
|
|
|
|
incf = incf.replace('\\', '/')
|
|
|
|
|
incf = incf.replace('./', '')
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result += '#include "'+incf+'"\n'
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2020-03-16 21:19:20 +08:00
|
|
|
|
return result
|
2018-06-08 19:19:06 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def gen_extern_declares(files):
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result = ""
|
|
|
|
|
for f in files:
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if is_excluded_file(f):
|
2020-04-28 18:04:52 +08:00
|
|
|
|
continue
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
filename = f.replace(join_path(OUTPUT_ROOT, 'default'), join_path(OUTPUT_ROOT, THEME))
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
constname = to_asset_const_name(f, join_path(OUTPUT_ROOT, 'default/inc'))
|
|
|
|
|
result += 'extern TK_CONST_DATA_ALIGN(const unsigned char '+constname+'[]);\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
|
|
|
|
return result
|
2018-06-08 19:19:06 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def gen_assets_includes(curr_theme_path, defl_theme_path = None, with_multi_theme = True):
|
|
|
|
|
files = glob_asset_files(curr_theme_path)
|
|
|
|
|
result = gen_includes(files, False, with_multi_theme)
|
|
|
|
|
|
|
|
|
|
if defl_theme_path != None and THEME != 'default':
|
|
|
|
|
files = glob_asset_files(defl_theme_path)
|
|
|
|
|
if with_multi_theme and is_packaged_of_default_theme():
|
|
|
|
|
result += gen_extern_declares(files)
|
2020-03-16 21:19:20 +08:00
|
|
|
|
else:
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_includes(files, True, with_multi_theme)
|
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
return result
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def gen_assets_add(filename, is_default_theme):
|
|
|
|
|
if is_default_theme:
|
|
|
|
|
constname = to_asset_const_name(filename, join_path(OUTPUT_ROOT, 'default/inc'))
|
|
|
|
|
return ' assets_manager_add(am, '+constname+');\n'
|
|
|
|
|
else:
|
|
|
|
|
constname = to_asset_const_name(filename, join_path(OUTPUT_DIR, 'inc'))
|
|
|
|
|
return ' assets_manager_add(am, '+constname+'_'+THEME+');\n'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def gen_assets_adds(curr_theme_path, defl_theme_path = None):
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result = ""
|
2020-06-13 06:55:27 +08:00
|
|
|
|
is_default_theme = THEME == 'default'
|
|
|
|
|
|
|
|
|
|
files = glob_asset_files(curr_theme_path)
|
|
|
|
|
|
2020-03-16 21:19:20 +08:00
|
|
|
|
for f in files:
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if is_excluded_file(f):
|
2020-04-28 18:04:52 +08:00
|
|
|
|
continue
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_assets_add(f, is_default_theme)
|
|
|
|
|
if defl_theme_path != None and not is_default_theme:
|
|
|
|
|
files = glob_asset_files(defl_theme_path)
|
|
|
|
|
for f in files:
|
|
|
|
|
if is_excluded_file(f):
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
filename = f.replace(join_path(OUTPUT_ROOT, 'default'), join_path(OUTPUT_ROOT, THEME))
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
result += gen_assets_add(f, True)
|
2018-11-21 09:34:23 +08:00
|
|
|
|
|
2020-03-16 21:19:20 +08:00
|
|
|
|
return result
|
2019-10-19 07:09:19 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def gen_assets_c_of_one_theme(with_multi_theme = True):
|
|
|
|
|
if not THEME_PACKAGED:
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
if with_multi_theme:
|
2021-09-16 16:00:56 +08:00
|
|
|
|
filename = join_path(OUTPUT_ROOT, ASSETS_SUBNAME+THEME+'.inc')
|
2020-06-13 06:55:27 +08:00
|
|
|
|
else:
|
|
|
|
|
filename, extname = os.path.splitext(ASSET_C)
|
|
|
|
|
filename = filename + '_' + THEME + extname
|
|
|
|
|
|
|
|
|
|
func_name = 'assets_init'
|
|
|
|
|
if with_multi_theme:
|
|
|
|
|
func_name = 'assets_init_'+THEME
|
|
|
|
|
|
2019-03-31 11:13:43 +08:00
|
|
|
|
result = '#include "awtk.h"\n'
|
|
|
|
|
result += '#include "base/assets_manager.h"\n'
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#if !defined(WITH_FS_RES) || defined(AWTK_WEB)\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/strings/*.data'), join_path(OUTPUT_ROOT, 'default/inc/strings/*.data'), with_multi_theme)
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/styles/*.data'), join_path(OUTPUT_ROOT, 'default/inc/styles/*.data'), with_multi_theme)
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/ui/*.data'), join_path(OUTPUT_ROOT, 'default/inc/ui/*.data'), with_multi_theme)
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/xml/*.data'), join_path(OUTPUT_ROOT, 'default/inc/xml/*.data'), with_multi_theme)
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/data/*.data'), join_path(OUTPUT_ROOT, 'default/inc/data/*.data'), with_multi_theme)
|
2021-11-23 10:42:33 +08:00
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/flows/*.flows'), join_path(OUTPUT_ROOT, 'default/inc/flows/*.flows'), with_multi_theme)
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += "#ifndef AWTK_WEB\n"
|
2019-03-31 11:13:43 +08:00
|
|
|
|
result += "#ifdef WITH_STB_IMAGE\n"
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/images/*.res'), join_path(OUTPUT_ROOT, 'default/inc/images/*.res'), with_multi_theme)
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += "#else /*WITH_STB_IMAGE*/\n"
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/images/*.data'), join_path(OUTPUT_ROOT, 'default/inc/images/*.data'), with_multi_theme)
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += '#endif /*WITH_STB_IMAGE*/\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += "#ifdef WITH_TRUETYPE_FONT\n"
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/fonts/*.res'), join_path(OUTPUT_ROOT, 'default/inc/fonts/*.res'), with_multi_theme)
|
|
|
|
|
result += "#else /*WITH_TRUETYPE_FONT*/\n"
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/fonts/*.data'), join_path(OUTPUT_ROOT, 'default/inc/fonts/*.data'), with_multi_theme)
|
|
|
|
|
result += '#endif /*WITH_TRUETYPE_FONT*/\n'
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/scripts/*.res'), join_path(OUTPUT_ROOT, 'default/inc/scripts/*.res'), with_multi_theme)
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#endif /*AWTK_WEB*/\n'
|
|
|
|
|
result += "#ifdef WITH_VGCANVAS\n"
|
|
|
|
|
result += gen_assets_includes(join_path(OUTPUT_DIR, 'inc/images/*.bsvg'), join_path(OUTPUT_ROOT, 'default/inc/images/*.bsvg'), with_multi_theme)
|
|
|
|
|
result += '#endif /*WITH_VGCANVAS*/\n'
|
|
|
|
|
result += '#endif /*!defined(WITH_FS_RES) || defined(AWTK_WEB)*/\n'
|
2019-03-31 11:13:43 +08:00
|
|
|
|
result += '\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
result += 'ret_t ' + func_name + '(void) {\n'
|
2021-02-20 09:29:24 +08:00
|
|
|
|
result += ' assets_manager_t* am = assets_manager();\n'
|
|
|
|
|
result += ' assets_manager_set_theme(am, "' + THEME + '");\n'
|
|
|
|
|
result += '\n'
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#if defined(WITH_FS_RES) && !defined(AWTK_WEB)\n'
|
2019-09-13 07:55:19 +08:00
|
|
|
|
result += ' assets_manager_preload(am, ASSET_TYPE_STYLE, "default");\n'
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#else /*defined(WITH_FS_RES) && !defined(AWTK_WEB)*/\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/strings/*.data'), join_path(OUTPUT_ROOT, 'default/inc/strings/*.data'))
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/styles/*.data'), join_path(OUTPUT_ROOT, 'default/inc/styles/*.data'))
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/ui/*.data'), join_path(OUTPUT_ROOT, 'default/inc/ui/*.data'))
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/xml/*.data'), join_path(OUTPUT_ROOT, 'default/inc/xml/*.data'))
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/data/*.data'), join_path(OUTPUT_ROOT, 'default/inc/data/*.data'))
|
2021-11-23 10:42:33 +08:00
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/flows/*.flows'), join_path(OUTPUT_ROOT, 'default/inc/flows/*.flows'))
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#ifndef AWTK_WEB\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
if IS_GENERATE_INC_RES:
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/images/*.res'), join_path(OUTPUT_ROOT, 'default/inc/images/*.res'))
|
|
|
|
|
else:
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/images/*.data'), join_path(OUTPUT_ROOT, 'default/inc/images/*.data'))
|
|
|
|
|
result += "#ifdef WITH_TRUETYPE_FONT\n"
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/fonts/*.res'), join_path(OUTPUT_ROOT, 'default/inc/fonts/*.res'))
|
|
|
|
|
result += "#else /*WITH_TRUETYPE_FONT*/\n"
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/fonts/*.data'), join_path(OUTPUT_ROOT, 'default/inc/fonts/*.data'))
|
|
|
|
|
result += '#endif /*WITH_TRUETYPE_FONT*/\n'
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/scripts/*.res'), join_path(OUTPUT_ROOT, 'default/inc/scripts/*.res'))
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#endif /*AWTK_WEB*/\n'
|
|
|
|
|
result += "#ifdef WITH_VGCANVAS\n"
|
|
|
|
|
result += gen_assets_adds(join_path(OUTPUT_DIR, 'inc/images/*.bsvg'), join_path(OUTPUT_ROOT, 'default/inc/images/*.bsvg'))
|
|
|
|
|
result += '#endif /*WITH_VGCANVAS*/\n'
|
|
|
|
|
result += '#endif /*defined(WITH_FS_RES) && !defined(AWTK_WEB)*/\n'
|
2019-03-31 11:13:43 +08:00
|
|
|
|
result += '\n'
|
|
|
|
|
|
|
|
|
|
result += ' tk_init_assets();\n'
|
|
|
|
|
result += ' return RET_OK;\n'
|
|
|
|
|
result += '}\n'
|
2019-04-14 19:14:16 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
write_file(filename, result)
|
2018-04-27 10:02:25 +08:00
|
|
|
|
|
2019-10-19 07:09:19 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def gen_asset_c_entry_with_multi_theme():
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result = '#include "awtk.h"\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += '#include "base/assets_manager.h"\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
assets_root = os.path.relpath(OUTPUT_ROOT, os.path.dirname(ASSET_C)).replace('\\', '/')
|
|
|
|
|
for i in range(len(THEMES)):
|
|
|
|
|
set_current_theme(i)
|
|
|
|
|
if THEME_PACKAGED:
|
2021-09-16 16:00:56 +08:00
|
|
|
|
result += '#include "'+assets_root+'/'+ASSETS_SUBNAME+THEME+'.inc"\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
|
|
|
|
result += '\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += '#ifndef APP_THEME\n'
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += '#define APP_THEME "' + APP_THEME + '"\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += '#endif /*APP_THEME*/\n\n'
|
2020-03-19 16:44:31 +08:00
|
|
|
|
|
2020-04-02 16:55:11 +08:00
|
|
|
|
result += 'bool_t assets_has_theme(const char* name) {\n'
|
2020-03-19 16:44:31 +08:00
|
|
|
|
result += ' return_value_if_fail(name != NULL, FALSE);\n\n'
|
|
|
|
|
result += ' '
|
2020-06-13 06:55:27 +08:00
|
|
|
|
for i in range(len(THEMES)):
|
|
|
|
|
set_current_theme(i)
|
|
|
|
|
if THEME_PACKAGED:
|
|
|
|
|
result += 'if (tk_str_eq(name, "'+THEME+'")) {\n'
|
|
|
|
|
result += ' return TRUE;\n'
|
|
|
|
|
result += ' } else '
|
2020-03-19 16:44:31 +08:00
|
|
|
|
result += '{\n'
|
|
|
|
|
result += ' return FALSE;\n }\n}\n\n'
|
|
|
|
|
|
|
|
|
|
result += 'static ret_t assets_init_internal(const char* theme) {\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result += ' assets_manager_t* am = assets_manager();\n'
|
|
|
|
|
result += ' return_value_if_fail(theme != NULL && am != NULL, RET_BAD_PARAMS);\n\n'
|
|
|
|
|
result += ' assets_manager_set_theme(am, theme);\n\n'
|
|
|
|
|
result += ' '
|
2020-06-13 06:55:27 +08:00
|
|
|
|
for i in range(len(THEMES)):
|
|
|
|
|
set_current_theme(i)
|
|
|
|
|
if THEME_PACKAGED:
|
|
|
|
|
result += 'if (tk_str_eq(theme, "'+THEME+'")) {\n'
|
|
|
|
|
result += ' return assets_init_'+THEME+'();\n'
|
|
|
|
|
result += ' } else '
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += '{\n'
|
2020-03-16 21:19:20 +08:00
|
|
|
|
result += ' log_debug(\"%s not support.\\n\", theme);\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += ' return RET_NOT_IMPL;\n }\n}\n\n'
|
|
|
|
|
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#if !defined(WITH_FS_RES) || defined(AWTK_WEB)\n'
|
2020-10-12 21:35:24 +08:00
|
|
|
|
result += 'static ret_t widget_set_theme_without_file_system(widget_t* widget, const char* name) {\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += ' const asset_info_t* info = NULL;\n'
|
|
|
|
|
result += ' event_t e = event_init(EVT_THEME_CHANGED, NULL);\n'
|
|
|
|
|
result += ' widget_t* wm = widget_get_window_manager(widget);\n'
|
|
|
|
|
result += ' font_manager_t* fm = widget_get_font_manager(widget);\n'
|
|
|
|
|
result += ' image_manager_t* imm = widget_get_image_manager(widget);\n'
|
|
|
|
|
result += ' assets_manager_t* am = widget_get_assets_manager(widget);\n'
|
|
|
|
|
result += ' locale_info_t* locale_info = widget_get_locale_info(widget);\n\n'
|
2020-03-19 16:44:31 +08:00
|
|
|
|
result += ' return_value_if_fail(am != NULL && name != NULL, RET_BAD_PARAMS);\n'
|
|
|
|
|
result += ' return_value_if_fail(assets_has_theme(name), RET_BAD_PARAMS);\n\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += ' font_manager_unload_all(fm);\n'
|
|
|
|
|
result += ' image_manager_unload_all(imm);\n'
|
|
|
|
|
result += ' assets_manager_clear_all(am);\n'
|
|
|
|
|
result += ' widget_reset_canvas(widget);\n\n'
|
|
|
|
|
result += ' assets_init_internal(name);\n'
|
|
|
|
|
result += ' locale_info_reload(locale_info);\n\n'
|
|
|
|
|
result += ' info = assets_manager_ref(am, ASSET_TYPE_STYLE, "default");\n'
|
2021-01-29 12:42:14 +08:00
|
|
|
|
result += ' theme_set_theme_data(theme(), info->data);\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += ' assets_manager_unref(assets_manager(), info);\n\n'
|
|
|
|
|
result += ' widget_dispatch(wm, &e);\n'
|
|
|
|
|
result += ' widget_invalidate_force(wm, NULL);\n\n'
|
|
|
|
|
result += ' log_debug("theme changed: %s\\n", name);\n\n'
|
|
|
|
|
result += ' return RET_OK;\n'
|
2021-11-09 14:56:49 +08:00
|
|
|
|
result += '}\n\n'
|
|
|
|
|
result += 'static ret_t on_set_theme_without_file_system(void* ctx, event_t* e) {\n'
|
|
|
|
|
result += ' theme_change_event_t* evt = theme_change_event_cast(e);\n'
|
|
|
|
|
result += ' widget_set_theme_without_file_system(window_manager(), evt->name);\n'
|
|
|
|
|
result += ' return RET_OK;\n'
|
2020-10-12 21:35:24 +08:00
|
|
|
|
result += '}\n'
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#endif /*!defined(WITH_FS_RES) || defined(AWTK_WEB)*/\n\n'
|
2020-03-19 16:44:31 +08:00
|
|
|
|
|
2021-11-09 14:56:49 +08:00
|
|
|
|
result += 'ret_t assets_init(void) {\n'
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#if !defined(WITH_FS_RES) || defined(AWTK_WEB)\n'
|
2021-11-09 14:56:49 +08:00
|
|
|
|
result += ' widget_on(window_manager(), EVT_THEME_WILL_CHANGE, on_set_theme_without_file_system, NULL);\n'
|
2022-06-23 17:05:43 +08:00
|
|
|
|
result += '#endif /*!defined(WITH_FS_RES) || defined(AWTK_WEB)*/\n'
|
2021-11-09 14:56:49 +08:00
|
|
|
|
result += ' return assets_init_internal(APP_THEME);\n}\n\n'
|
|
|
|
|
|
2020-03-19 16:44:31 +08:00
|
|
|
|
result += 'ret_t assets_set_global_theme(const char* name) {\n'
|
|
|
|
|
result += ' return widget_set_theme(window_manager(), name);\n'
|
2020-03-18 21:36:24 +08:00
|
|
|
|
result += '}\n'
|
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
write_file(ASSET_C, result)
|
2020-03-16 21:19:20 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
def gen_res_c(with_multi_theme = True):
|
|
|
|
|
theme_foreach(gen_assets_c_of_one_theme, with_multi_theme)
|
|
|
|
|
|
|
|
|
|
if with_multi_theme:
|
|
|
|
|
gen_asset_c_entry_with_multi_theme()
|
|
|
|
|
|
|
|
|
|
def gen_res_json_one(res_type, files):
|
2021-09-29 17:42:33 +08:00
|
|
|
|
result = ''
|
2020-06-13 06:55:27 +08:00
|
|
|
|
for f in files:
|
|
|
|
|
uri = f.replace(os.getcwd(), "")[1:]
|
|
|
|
|
uri = uri.replace('\\', '/')
|
|
|
|
|
filename, extname = os.path.splitext(uri)
|
|
|
|
|
basename = os.path.basename(filename)
|
|
|
|
|
result = result + ' {name:"' + basename + '\", uri:"' + uri
|
|
|
|
|
if res_type == 'image' and extname != '.svg' and extname != '.bsvg':
|
2021-09-29 17:42:33 +08:00
|
|
|
|
from PIL import Image
|
2020-06-13 06:55:27 +08:00
|
|
|
|
img = Image.open(f)
|
|
|
|
|
w, h = img.size
|
|
|
|
|
result = result + '", w:' + str(w) + ', h:' + str(h) + '},\n'
|
|
|
|
|
else:
|
|
|
|
|
result = result + '"},\n'
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
2021-09-29 17:42:33 +08:00
|
|
|
|
def gen_res_json_all_theme(res_type, sub_filepath):
|
|
|
|
|
result = "\n " + res_type + ': [\n'
|
|
|
|
|
for i in range(len(THEMES)):
|
|
|
|
|
set_current_theme(i)
|
|
|
|
|
files = glob.glob(join_path(INPUT_DIR, sub_filepath))
|
|
|
|
|
result += gen_res_json_one(res_type, files)
|
|
|
|
|
result += ' ],'
|
|
|
|
|
|
|
|
|
|
return result
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def gen_res_json():
|
|
|
|
|
result = 'const g_awtk_assets = {'
|
2021-09-29 17:42:33 +08:00
|
|
|
|
result += gen_res_json_all_theme("image", 'images/*/*.*')
|
|
|
|
|
result += gen_res_json_all_theme("ui", 'ui/*.bin')
|
|
|
|
|
result += gen_res_json_all_theme("style",'styles/*.bin')
|
|
|
|
|
result += gen_res_json_all_theme("string", 'strings/*.bin')
|
|
|
|
|
result += gen_res_json_all_theme("xml", 'xml/*.xml')
|
|
|
|
|
result += gen_res_json_all_theme("data", 'data/*.*')
|
|
|
|
|
result += gen_res_json_all_theme("script", 'scripts/*.*')
|
|
|
|
|
result += gen_res_json_all_theme("font", 'fonts/*.ttf')
|
2020-06-13 06:55:27 +08:00
|
|
|
|
result += '\n};\n'
|
|
|
|
|
|
|
|
|
|
write_file(ASSET_C.replace('.c', '_web.js'), result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def init(awtk_root, assets_root, themes, asset_c, output = None):
|
|
|
|
|
global THEMES
|
2019-03-31 11:13:43 +08:00
|
|
|
|
global ASSET_C
|
|
|
|
|
global BIN_DIR
|
|
|
|
|
global ASSETS_ROOT
|
|
|
|
|
global AWTK_ROOT
|
2020-06-13 06:55:27 +08:00
|
|
|
|
global OUTPUT_ROOT
|
2019-03-31 11:13:43 +08:00
|
|
|
|
|
|
|
|
|
ASSET_C = asset_c
|
|
|
|
|
AWTK_ROOT = awtk_root
|
2020-06-13 06:55:27 +08:00
|
|
|
|
ASSETS_ROOT = assets_root
|
|
|
|
|
BIN_DIR = join_path(AWTK_ROOT, 'bin')
|
|
|
|
|
|
|
|
|
|
if output != None:
|
|
|
|
|
OUTPUT_ROOT = output
|
|
|
|
|
else:
|
|
|
|
|
OUTPUT_ROOT = ASSETS_ROOT
|
|
|
|
|
|
|
|
|
|
if isinstance(themes, str):
|
|
|
|
|
THEMES = [themes]
|
|
|
|
|
else:
|
|
|
|
|
THEMES = themes
|
|
|
|
|
|
|
|
|
|
set_current_theme(0)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def dump_args():
|
|
|
|
|
print('---------------------------------------------------------')
|
|
|
|
|
print('DPI = '+DPI)
|
|
|
|
|
print('THEMES = '+str(THEMES))
|
|
|
|
|
print('IMAGEGEN_OPTIONS = '+IMAGEGEN_OPTIONS)
|
2022-05-09 09:50:08 +08:00
|
|
|
|
print('LCD_FAST_ROTATION_MODE = '+str(LCD_FAST_ROTATION_MODE))
|
2022-03-08 10:07:25 +08:00
|
|
|
|
print('LCD_ORIENTATION = LCD_ORIENTATION_'+LCD_ORIENTATION)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
print('AWTK_ROOT = '+AWTK_ROOT)
|
|
|
|
|
print('BIN_DIR = '+BIN_DIR)
|
|
|
|
|
print('ASSETS_ROOT = '+ASSETS_ROOT)
|
|
|
|
|
print('ASSET_C = '+ASSET_C)
|
|
|
|
|
print('OUTPUT = '+OUTPUT_ROOT)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def update_res():
|
2019-03-31 11:13:43 +08:00
|
|
|
|
if ACTION == 'all':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
clean_res()
|
|
|
|
|
theme_foreach(gen_res_all)
|
2020-04-30 09:15:22 +08:00
|
|
|
|
gen_res_c()
|
2021-09-29 17:42:33 +08:00
|
|
|
|
elif ACTION == 'res':
|
|
|
|
|
clean_res()
|
|
|
|
|
theme_foreach(gen_res_all)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
elif ACTION == 'clean':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
clean_res()
|
2019-03-31 11:13:43 +08:00
|
|
|
|
elif ACTION == 'web':
|
2022-06-23 17:05:43 +08:00
|
|
|
|
gen_res_c()
|
2019-04-07 18:31:16 +08:00
|
|
|
|
elif ACTION == 'json':
|
|
|
|
|
gen_res_json()
|
2019-03-31 11:13:43 +08:00
|
|
|
|
elif ACTION == 'string':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_string)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == "font":
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_font)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == "script":
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_script)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == 'image':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_image)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == 'ui':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_ui)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == 'style':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_style)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == 'data':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_data)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
2020-12-21 18:07:55 +08:00
|
|
|
|
elif ACTION == 'flows':
|
|
|
|
|
theme_foreach(gen_res_all_flows)
|
|
|
|
|
gen_res_c()
|
2019-03-31 11:13:43 +08:00
|
|
|
|
elif ACTION == 'xml':
|
2020-06-13 06:55:27 +08:00
|
|
|
|
theme_foreach(gen_res_all_xml)
|
2019-03-31 11:13:43 +08:00
|
|
|
|
gen_res_c()
|
|
|
|
|
elif ACTION == 'pinyin':
|
|
|
|
|
gen_gpinyin()
|
2020-04-30 09:15:22 +08:00
|
|
|
|
elif ACTION == 'assets.c':
|
|
|
|
|
gen_res_c()
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
dump_args()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def clean_res_bin(dir):
|
|
|
|
|
if os.path.isdir(dir):
|
|
|
|
|
for root, dirs, files in os.walk(dir):
|
|
|
|
|
for f in files:
|
|
|
|
|
filename, extname = os.path.splitext(f)
|
|
|
|
|
if extname == '.bin' or extname == '.bsvg':
|
|
|
|
|
real_path = join_path(root, f)
|
|
|
|
|
os.chmod(real_path, stat.S_IRWXU)
|
|
|
|
|
os.remove(real_path)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def clean_res_of_one_theme():
|
|
|
|
|
print('clean res: ' + OUTPUT_DIR)
|
|
|
|
|
clean_res_bin(join_path(OUTPUT_DIR, 'raw/ui'))
|
|
|
|
|
clean_res_bin(join_path(OUTPUT_DIR, 'raw/images/svg'))
|
2020-07-07 11:45:59 +08:00
|
|
|
|
clean_res_bin(join_path(OUTPUT_DIR, 'raw/strings'))
|
|
|
|
|
clean_res_bin(join_path(OUTPUT_DIR, 'raw/styles'))
|
2020-06-13 06:55:27 +08:00
|
|
|
|
remove_dir(join_path(OUTPUT_DIR, 'inc'))
|
2021-09-16 16:00:56 +08:00
|
|
|
|
remove_dir(join_path(OUTPUT_ROOT, ASSETS_SUBNAME+THEME+'.inc'))
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def clean_res():
|
|
|
|
|
print('=========================================================')
|
|
|
|
|
if ASSETS_ROOT != OUTPUT_ROOT:
|
|
|
|
|
dir = os.path.dirname(OUTPUT_ROOT)
|
|
|
|
|
print('clean res: ' + dir)
|
|
|
|
|
remove_dir(dir)
|
|
|
|
|
else:
|
|
|
|
|
theme_foreach(clean_res_of_one_theme)
|
|
|
|
|
remove_dir(ASSET_C)
|
|
|
|
|
print('=========================================================')
|
|
|
|
|
|
2021-02-20 15:03:40 +08:00
|
|
|
|
def get_args(args) :
|
|
|
|
|
list_args = []
|
|
|
|
|
for arg in args:
|
|
|
|
|
if arg.startswith('--') :
|
|
|
|
|
continue
|
|
|
|
|
list_args.append(arg)
|
|
|
|
|
return list_args
|
|
|
|
|
|
|
|
|
|
def show_usage_imlp():
|
|
|
|
|
args = ' action[clean|web|json|all|font|image|ui|style|string|script|data|xml|assets.c] dpi[x1|x2] image_options[rgba|bgra+bgr565|mono] awtk_root[--awtk_root=XXXXX]'
|
|
|
|
|
print('=========================================================')
|
|
|
|
|
print('Usage: python '+sys.argv[0] + args)
|
|
|
|
|
print('Example:')
|
|
|
|
|
print('python ' + sys.argv[0] + ' all')
|
|
|
|
|
print('python ' + sys.argv[0] + ' clean')
|
|
|
|
|
print('python ' + sys.argv[0] + ' style --awtk_root=XXXXX ')
|
|
|
|
|
print('python ' + sys.argv[0] + ' all x1 bgra+bgr565')
|
|
|
|
|
print('python ' + sys.argv[0] + ' all x1 bgra+bgr565 --awtk_root=XXXXX')
|
|
|
|
|
print('=========================================================')
|
|
|
|
|
sys.exit(0)
|
2020-06-13 06:55:27 +08:00
|
|
|
|
|
|
|
|
|
def show_usage():
|
2019-03-31 11:13:43 +08:00
|
|
|
|
if len(sys.argv) == 1:
|
2023-03-08 18:08:14 +08:00
|
|
|
|
show_usage_imlp()
|
2018-11-02 11:51:14 +08:00
|
|
|
|
else:
|
2021-02-20 15:03:40 +08:00
|
|
|
|
sys_args = get_args(sys.argv[1:])
|
|
|
|
|
if len(sys_args) == 0 :
|
|
|
|
|
show_usage_imlp()
|
2019-10-19 07:09:19 +08:00
|
|
|
|
|
2020-06-13 06:55:27 +08:00
|
|
|
|
show_usage()
|