Doing some code reshuffling

This commit is contained in:
2021-11-01 14:34:42 -07:00
parent 5c7468283b
commit a86592f5bd
13 changed files with 77 additions and 17 deletions

View File

@ -39,6 +39,21 @@ add_subdirectory(tools)
if(TARGET_TYPE STREQUAL test)
add_subdirectory(test)
elseif(TARGET_TYPE STREQUAL game)
# Set up shared assets
# Shaders
tool_copy(shader_textured
shared/shaders/textured.vert shaders/textured.vert
shared/shaders/textured.frag shaders/textured.frag
)
# Fonts
tool_copy(font_opensans
shared/fonts/opensans/OpenSans-Regular.ttf fonts/opensans/OpenSans-Regular.ttf
shared/fonts/opensans/OpenSans-Bold.ttf fonts/opensans/OpenSans-Bold.ttf
)
# Poker Game
if(TARGET_GAME STREQUAL poker)
add_compile_definitions(
GAME_NAME="Penny's Poker"
@ -51,24 +66,26 @@ elseif(TARGET_TYPE STREQUAL game)
)
set(DIR_CHARS poker/characters)
tool_vn_character(penny
tool_vn_character(vn_penny
${DIR_CHARS}/penny/character.xml ${DIR_CHARS}/penny.png
)
tool_vn_character(lucy
tool_vn_character(vn_lucy
${DIR_CHARS}/lucy/character.xml ${DIR_CHARS}/lucy.png
)
tool_vn_character(jenny
${DIR_CHARS}/jenny/character.xml ${DIR_CHARS}/jenny.png
tool_vn_character(vn_julie
${DIR_CHARS}/julie/character.xml ${DIR_CHARS}/julie.png
)
tool_vn_character(sammy
tool_vn_character(vn_sammy
${DIR_CHARS}/sammy/character.xml ${DIR_CHARS}/sammy.png
)
tool_assets(
penny
lucy
jenny
sammy
shader_textured
font_opensans
vn_penny
vn_lucy
vn_julie
vn_sammy
)
endif()

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "../util/math.h"
#include "fuck.h"
#include "common.h"
#include "player.h"
#include "pot.h"

View File

@ -7,7 +7,7 @@
#pragma once
#include "../libs.h"
#include "fuck.h"
#include "common.h"
#include "card.h"
/**

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "../util/flags.h"
#include "fuck.h"
#include "common.h"
#include "bet.h"
/**

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "../util/flags.h"
#include "fuck.h"
#include "common.h"
#include "card.h"
#include "pot.h"
#include "bet.h"

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "../util/array.h"
#include "fuck.h"
#include "common.h"
/**
* Adds a new pot to the poker game instance.

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "../util/math.h"
#include "fuck.h"
#include "common.h"
#include "bet.h"
#include "card.h"
#include "winner.h"

View File

@ -8,7 +8,7 @@
#pragma once
#include "../libs.h"
#include "card.h"
#include "fuck.h"
#include "common.h"
#include "player.h"

8
test/util/array.c Normal file
View File

@ -0,0 +1,8 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#include "array.h"

12
test/util/array.h Normal file
View File

@ -0,0 +1,12 @@
/**
* Copyright (c) 2021 Dominic Masters
*
* This software is released under the MIT License.
* https://opensource.org/licenses/MIT
*/
#pragma once
#include <unity.h>
#include <util/array.h>
int test_array_h();

View File

@ -9,4 +9,27 @@ function(tool_assets args)
DEPENDS ${ARGV}
COMMENT "Compressing Assets"
)
endfunction()
function(tool_copy target)
math(EXPR CARGSN "${ARGC} - 1")
set(LOOP_DEPENDENCIES)
foreach(index RANGE 1 ${CARGSN} 2)
math(EXPR indexnext "${index} + 1")
set(LOOP_TARGET "item_${target}_${index}")
LIST(GET ARGV ${index} from)
LIST(GET ARGV ${indexnext} to)
LIST(APPEND LOOP_DEPENDENCIES ${LOOP_TARGET})
add_custom_command(OUTPUT ${LOOP_TARGET}
COMMAND ${CMAKE_COMMAND} -E copy "${ROOT_DIR}/${ASSETS_DIR}/${from}" "${ASSETS_DIR}/${to}"
COMMENT "Copying ${from} => ${to}"
)
endforeach()
add_custom_target(${target}
DEPENDS ${MY_LIST}
COMMENT "Copying ${FILE_NAME}"
)
endfunction()

View File

@ -6,6 +6,6 @@
function(tool_vn_character DEP_NAME IN OUT)
add_custom_target(${DEP_NAME}
COMMAND node ${TOOLS_DIR}/vn/character-sheet-generator.js --assets="${ASSETS_DIR}" --root="${ROOT_DIR}" --in="${IN}" --out="${OUT}"
COMMENT "Adding VN Character ${FILE_NAME}"
COMMENT "Adding VN Character ${DEP_NAME}"
)
endfunction()