awtk/tools/res_gen/main.c

104 lines
3.9 KiB
C
Raw Normal View History

2018-04-01 08:12:52 +08:00
/**
* File: main.c
2018-05-15 09:31:58 +08:00
* Author: AWTK Develop Team
2018-04-01 08:12:52 +08:00
* Brief: res to c source
*
2019-01-07 10:58:36 +08:00
* Copyright (c) 2018 - 2019 Guangzhou ZHIYUAN Electronics Co.,Ltd.
2018-04-01 08:12:52 +08:00
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* License file for more details.
*
*/
/**
* History:
* ================================================================
* 2018-04-01 Li XianJing <xianjimli@hotmail.com> created
*
*/
#include "tkc/mem.h"
2018-04-01 08:12:52 +08:00
#include "common/utils.h"
2018-08-24 07:45:37 +08:00
#include "base/assets_manager.h"
2018-04-01 08:12:52 +08:00
int main(int argc, char** argv) {
uint32_t size = 0;
uint8_t* input_buff = NULL;
2018-11-02 11:51:14 +08:00
const char* in_filename = NULL;
const char* out_filename = NULL;
2018-04-01 08:12:52 +08:00
2018-05-04 11:45:09 +08:00
TKMEM_INIT(4 * 1024 * 1024);
2018-04-01 08:12:52 +08:00
if (argc != 3) {
2018-11-02 11:51:14 +08:00
printf("Usage: %s in_filename out_filename\n", argv[0]);
2018-04-01 08:12:52 +08:00
return 0;
}
2018-11-02 11:51:14 +08:00
in_filename = argv[1];
out_filename = argv[2];
2018-04-01 08:12:52 +08:00
2018-11-02 11:51:14 +08:00
exit_if_need_not_update(in_filename, out_filename);
input_buff = (uint8_t*)read_file(in_filename, &size);
2018-04-01 08:12:52 +08:00
return_value_if_fail(input_buff != NULL, 0);
2018-11-02 11:51:14 +08:00
if (end_with(in_filename, ".ttf")) {
output_res_c_source(out_filename, ASSET_TYPE_FONT, ASSET_TYPE_FONT_TTF, input_buff, size);
} else if (end_with(in_filename, ".png")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_PNG, input_buff, size);
2019-07-09 17:31:29 +08:00
} else if (end_with(in_filename, ".bmp")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_BMP, input_buff, size);
2018-11-02 11:51:14 +08:00
} else if (end_with(in_filename, ".jpg")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_JPG, input_buff, size);
2018-11-27 09:37:44 +08:00
} else if (end_with(in_filename, ".gif")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_GIF, input_buff, size);
} else if (end_with(in_filename, ".lz4")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_LZ4, input_buff, size);
} else if (end_with(in_filename, ".webp")) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_WEBP, input_buff, size);
2019-02-07 17:27:19 +08:00
} else if (end_with(in_filename, ".js")) {
output_res_c_source(out_filename, ASSET_TYPE_SCRIPT, ASSET_TYPE_SCRIPT_JS, input_buff, size);
} else if (end_with(in_filename, ".lua")) {
output_res_c_source(out_filename, ASSET_TYPE_SCRIPT, ASSET_TYPE_SCRIPT_LUA, input_buff, size);
} else if (end_with(in_filename, ".py")) {
output_res_c_source(out_filename, ASSET_TYPE_SCRIPT, ASSET_TYPE_SCRIPT_PYTHON, input_buff,
size);
2019-03-15 17:44:48 +08:00
} else if (end_with(in_filename, ".xml")) {
output_res_c_source(out_filename, ASSET_TYPE_XML, 0, input_buff, size);
} else if (strstr(in_filename, "images") != NULL) {
output_res_c_source(out_filename, ASSET_TYPE_IMAGE, ASSET_TYPE_IMAGE_OTHER, input_buff, size);
2018-04-01 08:12:52 +08:00
} else {
const char* name = strrchr(in_filename, '/');
if (name == NULL) {
name = strrchr(in_filename, '\\');
}
if (name != NULL) {
name++;
}
if (end_with(in_filename, ".txt")) {
output_res_c_source_ex(out_filename, ASSET_TYPE_DATA, ASSET_TYPE_DATA_TEXT, input_buff, size,
name);
} else if (end_with(in_filename, ".json")) {
output_res_c_source_ex(out_filename, ASSET_TYPE_DATA, ASSET_TYPE_DATA_JSON, input_buff, size,
name);
} else if (end_with(in_filename, ".bin")) {
output_res_c_source_ex(out_filename, ASSET_TYPE_DATA, ASSET_TYPE_DATA_BIN, input_buff, size,
name);
} else if (end_with(in_filename, ".dat")) {
output_res_c_source_ex(out_filename, ASSET_TYPE_DATA, ASSET_TYPE_DATA_DAT, input_buff, size,
name);
} else {
output_res_c_source_ex(out_filename, ASSET_TYPE_DATA, ASSET_TYPE_DATA_NONE, input_buff, size,
name);
}
2018-04-01 08:12:52 +08:00
}
2018-04-29 16:51:54 +08:00
TKMEM_FREE(input_buff);
2018-04-01 08:12:52 +08:00
printf("done\n");
return 0;
}