2022-10-14 14:04:59 -04:00
|
|
|
set(GEODE_CLI_MINIMUM_VERSION 1.0.5)
|
|
|
|
|
2022-10-14 14:22:51 -04:00
|
|
|
# for passing CLI through CMake arguments
|
|
|
|
if (DEFINED CLI_PATH)
|
|
|
|
list(APPEND CMAKE_PROGRAM_PATH ${CLI_PATH})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Find Geode CLI
|
2022-07-30 12:24:03 -04:00
|
|
|
if (NOT DEFINED GEODE_CLI)
|
|
|
|
find_program(GEODE_CLI NAMES geode.exe geode-cli.exe geode geode-cli)
|
|
|
|
endif()
|
|
|
|
|
2022-10-14 14:22:51 -04:00
|
|
|
# Check if CLI was found
|
2022-07-30 12:24:03 -04:00
|
|
|
if (GEODE_CLI STREQUAL "GEODE_CLI-NOTFOUND")
|
|
|
|
message(STATUS "Unable to find Geode CLI")
|
|
|
|
else()
|
2022-10-14 14:22:51 -04:00
|
|
|
# `geode --version` returns `geode x.x.x\n` so gotta do some wacky shit
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${GEODE_CLI} --version
|
|
|
|
OUTPUT_VARIABLE GEODE_CLI_VERSION
|
|
|
|
)
|
|
|
|
# Remove trailing newline
|
|
|
|
string(STRIP ${GEODE_CLI_VERSION} GEODE_CLI_VERSION)
|
|
|
|
# Remove program name
|
|
|
|
string(REPLACE "geode " "" GEODE_CLI_VERSION ${GEODE_CLI_VERSION})
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
# Need at least v1.0.5 (--shut-up arg in geode package resources)
|
|
|
|
if (${GEODE_CLI_VERSION} VERSION_LESS ${GEODE_CLI_MINIMUM_VERSION})
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"Found Geode CLI: ${GEODE_CLI}, however it is version ${GEODE_CLI_VERSION} "
|
|
|
|
"while minimum required is version ${GEODE_CLI_MINIMUM_VERSION}. Please update: "
|
|
|
|
"https://github.com/geode-sdk/cli/releases/latest"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Found Geode CLI: ${GEODE_CLI} (version ${GEODE_CLI_VERSION})")
|
2022-07-30 12:24:03 -04:00
|
|
|
endif()
|
|
|
|
|
2022-10-03 06:51:48 -04:00
|
|
|
function(create_geode_file_old proname)
|
2022-09-01 02:35:18 -04:00
|
|
|
message(
|
|
|
|
DEPRECATION
|
2022-10-03 06:51:48 -04:00
|
|
|
"create_geode_file_old has been deprecated. "
|
|
|
|
"Please update to the new (v1.x.x) version of Geode CLI."
|
2022-09-01 02:35:18 -04:00
|
|
|
)
|
|
|
|
|
2022-10-03 07:01:08 -04:00
|
|
|
if (GEODE_DISABLE_CLI_CALLS)
|
|
|
|
message("Skipping creating geode file")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2022-07-30 12:24:03 -04:00
|
|
|
message(STATUS "Creating geode file")
|
|
|
|
|
2022-09-01 05:46:37 -04:00
|
|
|
if(GEODE_CLI STREQUAL "GEODE_CLI-NOTFOUND")
|
|
|
|
message(WARNING "create_geode_file called, but Geode CLI was not found - You will need to manually package the .geode files")
|
|
|
|
else()
|
|
|
|
|
|
|
|
add_custom_target(${proname}_PACKAGE ALL
|
|
|
|
DEPENDS ${proname}
|
|
|
|
COMMAND ${GEODE_CLI} pkg ${CMAKE_CURRENT_SOURCE_DIR} $<TARGET_FILE_DIR:${proname}> $<TARGET_FILE_DIR:${proname}>/${proname}.geode --install --cached
|
|
|
|
VERBATIM USES_TERMINAL
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endfunction()
|
|
|
|
|
2022-10-03 06:51:48 -04:00
|
|
|
function(create_geode_file proname)
|
2022-10-14 14:04:59 -04:00
|
|
|
# Get DONT_INSTALL argument
|
|
|
|
set(options DONT_INSTALL)
|
|
|
|
cmake_parse_arguments(CREATE_GEODE_FILE "${options}" "" "" ${ARGN})
|
|
|
|
|
2022-10-03 07:01:08 -04:00
|
|
|
if (GEODE_DISABLE_CLI_CALLS)
|
|
|
|
message("Skipping creating geode file for ${proname}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2022-10-09 09:24:24 -04:00
|
|
|
# what is this for
|
2022-08-31 13:15:56 -04:00
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/mod.json ${CMAKE_CURRENT_BINARY_DIR}/what.txt)
|
|
|
|
set_target_properties(${proname} PROPERTIES CMAKE_CONFIGURE_DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/mod.json)
|
|
|
|
|
2022-10-09 09:24:24 -04:00
|
|
|
if(GEODE_CLI STREQUAL "GEODE_CLI-NOTFOUND")
|
|
|
|
message(WARNING "create_geode_file called, but Geode CLI was not found - You will need to manually package the .geode files")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Creating geode file for ${proname}")
|
|
|
|
|
2022-08-31 13:15:56 -04:00
|
|
|
execute_process(
|
|
|
|
COMMAND ${GEODE_CLI} package get-id ${CMAKE_CURRENT_SOURCE_DIR} --raw
|
|
|
|
OUTPUT_VARIABLE MOD_ID
|
|
|
|
)
|
|
|
|
|
2022-10-14 14:04:59 -04:00
|
|
|
if (CREATE_GEODE_FILE_DONT_INSTALL)
|
|
|
|
set(INSTALL_ARG "")
|
|
|
|
else()
|
|
|
|
set(INSTALL_ARG "--install")
|
|
|
|
endif()
|
|
|
|
|
2022-08-31 13:15:56 -04:00
|
|
|
set_target_properties(${proname} PROPERTIES PREFIX "")
|
|
|
|
set_target_properties(${proname} PROPERTIES OUTPUT_NAME ${MOD_ID})
|
2022-10-09 09:24:24 -04:00
|
|
|
add_custom_target(${proname}_PACKAGE ALL
|
|
|
|
DEPENDS ${proname} ${CMAKE_CURRENT_SOURCE_DIR}/mod.json
|
2022-10-14 14:04:59 -04:00
|
|
|
COMMAND ${GEODE_CLI} package new ${CMAKE_CURRENT_SOURCE_DIR} --binary $<TARGET_FILE:${proname}> --output $<TARGET_FILE_DIR:${proname}>/${proname}.geode ${INSTALL_ARG}
|
2022-10-09 09:24:24 -04:00
|
|
|
VERBATIM USES_TERMINAL
|
|
|
|
)
|
2022-09-01 02:35:18 -04:00
|
|
|
endfunction()
|
|
|
|
|
2022-10-03 06:51:48 -04:00
|
|
|
function(package_geode_resources proname src dest)
|
2022-10-03 07:01:08 -04:00
|
|
|
if (GEODE_DISABLE_CLI_CALLS)
|
|
|
|
message("Skipping packaging resources from ${src} into ${dest}")
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2022-10-03 06:51:48 -04:00
|
|
|
message(STATUS "Packaging resources from ${src} into ${dest}")
|
2022-08-01 11:18:03 -04:00
|
|
|
|
|
|
|
if(GEODE_CLI STREQUAL "GEODE_CLI-NOTFOUND")
|
2022-10-14 14:04:59 -04:00
|
|
|
message(WARNING
|
|
|
|
"package_geode_resources called, but Geode CLI was "
|
|
|
|
"not found - You will need to manually package the resources"
|
|
|
|
)
|
2022-08-01 11:18:03 -04:00
|
|
|
else()
|
|
|
|
|
|
|
|
add_custom_target(${proname}_PACKAGE ALL
|
|
|
|
DEPENDS ${proname}
|
2022-10-03 06:51:48 -04:00
|
|
|
COMMAND ${GEODE_CLI} package resources ${src} ${dest}
|
2022-08-01 11:18:03 -04:00
|
|
|
VERBATIM USES_TERMINAL
|
|
|
|
)
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
endif()
|
|
|
|
endfunction()
|
|
|
|
|
|
|
|
function(package_geode_resources_now proname src dest header_dest)
|
|
|
|
if (GEODE_DISABLE_CLI_CALLS)
|
2022-10-14 14:22:51 -04:00
|
|
|
message(WARNING
|
2022-10-14 14:04:59 -04:00
|
|
|
"package_geode_resources_now called, but GEODE_DISABLE_CLI_CALLS
|
2022-10-14 14:22:51 -04:00
|
|
|
is set to true - Ignoring it as this function requires CLI calls
|
|
|
|
in order to work"
|
2022-10-14 14:04:59 -04:00
|
|
|
)
|
2022-08-01 11:18:03 -04:00
|
|
|
endif()
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
if(GEODE_CLI STREQUAL "GEODE_CLI-NOTFOUND")
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"package_geode_resources_now called, but Geode CLI "
|
|
|
|
"was not found - Please install Geode CLI from "
|
|
|
|
"https://github.com/geode-sdk/cli/releases/latest"
|
|
|
|
)
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Packaging resources now from ${src} into ${dest}")
|
|
|
|
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${GEODE_CLI} package resources ${src} ${dest} --shut-up
|
|
|
|
RESULT_VARIABLE GEODE_PACKAGE_RES
|
|
|
|
)
|
|
|
|
|
|
|
|
if (NOT GEODE_PACKAGE_RES EQUAL "0")
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"Command \"${GEODE_CLI} package resources ${src} ${dest}\" returned "
|
|
|
|
"${GEODE_PACKAGE_RES} - Expected 0"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
file(GLOB RESOURCE_FILES "${dest}/*.*")
|
|
|
|
|
|
|
|
set(HEADER_FILE
|
2022-10-20 14:47:29 -04:00
|
|
|
"#include <unordered_map>\n\n"
|
|
|
|
"static const std::unordered_map<std::string, std::string> "
|
|
|
|
"LOADER_RESOURCE_HASHES {\n"
|
|
|
|
# "#include <vector>\n\n"
|
|
|
|
# "static const std::vector<std::string> "
|
|
|
|
# "LOADER_RESOURCE_FILES {\n"
|
2022-10-14 14:04:59 -04:00
|
|
|
)
|
|
|
|
|
2022-10-20 14:47:29 -04:00
|
|
|
list(APPEND HASHED_EXTENSIONS ".png")
|
|
|
|
list(APPEND HASHED_EXTENSIONS ".mp3")
|
|
|
|
list(APPEND HASHED_EXTENSIONS ".ogg")
|
|
|
|
|
2022-10-14 14:04:59 -04:00
|
|
|
foreach(file ${RESOURCE_FILES})
|
|
|
|
cmake_path(GET file FILENAME FILE_NAME)
|
2022-10-20 14:47:29 -04:00
|
|
|
get_filename_component(FILE_EXTENSION ${file} EXT)
|
|
|
|
list(FIND HASHED_EXTENSIONS "${FILE_EXTENSION}" FILE_SHOULD_HASH)
|
|
|
|
|
|
|
|
if (NOT FILE_NAME STREQUAL ".geode_cache" AND NOT FILE_SHOULD_HASH EQUAL -1)
|
2022-10-14 14:04:59 -04:00
|
|
|
|
2022-10-20 14:47:29 -04:00
|
|
|
file(SHA256 ${file} COMPUTED_HASH)
|
|
|
|
list(APPEND HEADER_FILE "\t{ \"${FILE_NAME}\", \"${COMPUTED_HASH}\" },\n")
|
2022-10-19 06:33:48 -04:00
|
|
|
|
2022-10-20 14:47:29 -04:00
|
|
|
# list(APPEND HEADER_FILE "\t\"${FILE_NAME}\",\n")
|
2022-10-14 14:04:59 -04:00
|
|
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
list(APPEND HEADER_FILE "}\;\n")
|
|
|
|
|
|
|
|
file(WRITE ${header_dest} ${HEADER_FILE})
|
|
|
|
message(STATUS "Wrote resource hashes to ${header_dest}")
|
|
|
|
|
2022-08-01 11:18:03 -04:00
|
|
|
endfunction()
|