Added ave and craig
26
.github/workflows/build-liminal-glfw-linux64.yml
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
name: build-liminal-glfw-linux64
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Toolchain
|
||||
run: ./ci/install-linux-toolchain.sh
|
||||
|
||||
- name: Install Libraries
|
||||
run: ./ci/install-libraries.sh
|
||||
|
||||
- name: Build Tools
|
||||
run: ./ci/build-tools.sh
|
||||
|
||||
- name: Build Game
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
cmake .. -DDAWN_BUILD_TARGET=target-liminial-linux64-glfw
|
||||
make
|
13
assets/games/liminal/prefabs/AvePrefab.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<prefab name="AvePrefab" type="">
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.35310734463276836158, 0.5201" xy1="0.35310734463276836158, 0" />
|
||||
<SimpleTexturedMaterial ref="poseMaterial" opaque="false" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.35310734463276836158, 1" xy1="0.35310734463276836158, 0.5201" />
|
||||
<SimpleTexturedMaterial ref="faceMaterial" opaque="false" />
|
||||
</item>
|
||||
</prefab>
|
@ -3,7 +3,9 @@
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/AvePrefab.xml)
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/EthPrefab.xml)
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/CraigPrefab.xml)
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/RoninPrefab.xml)
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/VNTextbox.xml)
|
||||
tool_prefab(${CMAKE_CURRENT_LIST_DIR}/VNTextboxMonologue.xml)
|
27
assets/games/liminal/prefabs/CraigPrefab.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<prefab name="CraigPrefab" type="">
|
||||
<!--
|
||||
4779
|
||||
|
||||
1361/4779 = 0.2849
|
||||
1 - 0.2849 = 0.7151
|
||||
|
||||
3375/4779 = 0.7061/2=0.35305
|
||||
-->
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.35305, 0.7151" xy1="0.35305, 0" />
|
||||
<SimpleTexturedMaterial ref="bodyMaterial" opaque="false" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.35305, 1" xy1="0.35305, 0.7151" />
|
||||
<SimpleTexturedMaterial ref="faceMaterial" opaque="false" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.35305, 1" xy1="0.35305, 0" />
|
||||
<SimpleTexturedMaterial ref="poseMaterial" opaque="false" />
|
||||
</item>
|
||||
</prefab>
|
@ -1,13 +1,13 @@
|
||||
<prefab name="RoninPrefab" type="" scale="2, 2, 2">
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.37383385162150155487, 1" xy1="0.37383385162150155487, 0" />
|
||||
<QuadMeshHost xy0="-0.37383385162150155487, 0.63894826849080803762" xy1="0.37383385162150155487, 0" />
|
||||
<SimpleTexturedMaterial ref="bodyMaterial" opaque="false" />
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<MeshRenderer />
|
||||
<QuadMeshHost xy0="-0.37383385162150155487, 1" xy1="0.37383385162150155487, 0" />
|
||||
<QuadMeshHost xy0="-0.37383385162150155487, 1" xy1="0.37383385162150155487, 0.63894826849080803762" />
|
||||
<SimpleTexturedMaterial ref="faceMaterial" opaque="false" />
|
||||
</item>
|
||||
|
||||
|
@ -7,4 +7,5 @@ tool_scene(${CMAKE_CURRENT_LIST_DIR}/SceneStandard.xml)
|
||||
tool_scene(${CMAKE_CURRENT_LIST_DIR}/SceneMonologue.xml)
|
||||
tool_vnscene(${CMAKE_CURRENT_LIST_DIR}/SceneInitial.xml)
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/test/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/prologue/CMakeLists.txt")
|
@ -1,5 +1,6 @@
|
||||
<vnscene name="SceneInitial" extend="scenes/SceneMonologue">
|
||||
<events>
|
||||
<scene-change scene="vnscenes/ScenePrologue5" />
|
||||
<!-- <scene-change scene="vnscenes/ScenePrologue5" /> -->
|
||||
<scene-change scene="vnscenes/TestCraig" />
|
||||
</events>
|
||||
</vnscene>
|
9
assets/games/liminal/scenes/test/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_vnscene(${CMAKE_CURRENT_LIST_DIR}/TestAve.xml)
|
||||
tool_vnscene(${CMAKE_CURRENT_LIST_DIR}/TestCraig.xml)
|
||||
tool_vnscene(${CMAKE_CURRENT_LIST_DIR}/TestEth.xml)
|
||||
tool_vnscene(${CMAKE_CURRENT_LIST_DIR}/TestRonin.xml)
|
16
assets/games/liminal/scenes/test/TestAve.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<vnscene name="TestAve" extend="scenes/SceneStandard">
|
||||
<item ref="ave" prefab="prefabs/AvePrefab" />
|
||||
<asset type="texture" name="texture_ave_face_day_anger" ref="aveFaceNeutral" />
|
||||
<asset type="texture" name="texture_ave_pose_day_cross" ref="avePoseCross" />
|
||||
|
||||
<events>
|
||||
<set-font font="font_main" style="italics" size="32" />
|
||||
|
||||
<set property="ave->faceMaterial->texture" type="Texture*" value="&aveFaceNeutral->texture" />
|
||||
<set property="ave->poseMaterial->texture" type="Texture*" value="&avePoseCross->texture" />
|
||||
|
||||
<text>
|
||||
<string lang="en"><font style="italics">TEST SCENE.</font></string>
|
||||
</text>
|
||||
</events>
|
||||
</vnscene>
|
18
assets/games/liminal/scenes/test/TestCraig.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<vnscene name="TestCraig" extend="scenes/SceneStandard">
|
||||
<item ref="craig" prefab="prefabs/CraigPrefab" />
|
||||
<asset type="texture" name="texture_craig_face_day_neutral" ref="craigFaceNeutral" />
|
||||
<asset type="texture" name="texture_craig_pose_day_cross" ref="craigPoseCross" />
|
||||
<asset type="texture" name="texture_craig_pose_day_body" ref="craigBody" />
|
||||
|
||||
<events>
|
||||
<set-font font="font_main" style="italics" size="32" />
|
||||
|
||||
<set property="craig->faceMaterial->texture" type="Texture*" value="&craigFaceNeutral->texture" />
|
||||
<set property="craig->poseMaterial->texture" type="Texture*" value="&craigPoseCross->texture" />
|
||||
<set property="craig->bodyMaterial->texture" type="Texture*" value="&craigBody->texture" />
|
||||
|
||||
<text>
|
||||
<string lang="en"><font style="italics">TEST SCENE.</font></string>
|
||||
</text>
|
||||
</events>
|
||||
</vnscene>
|
16
assets/games/liminal/scenes/test/TestEth.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<vnscene name="TestEth" extend="scenes/SceneStandard">
|
||||
<item ref="eth" prefab="prefabs/EthPrefab" />
|
||||
<asset type="texture" name="texture_eth_face_day_anger" ref="ethFaceNeutral" />
|
||||
<asset type="texture" name="texture_eth_pose_day_cross" ref="ethPoseCross" />
|
||||
|
||||
<events>
|
||||
<set-font font="font_main" style="italics" size="32" />
|
||||
|
||||
<set property="eth->faceMaterial->texture" type="Texture*" value="ðFaceNeutral->texture" />
|
||||
<set property="eth->poseMaterial->texture" type="Texture*" value="ðPoseCross->texture" />
|
||||
|
||||
<text>
|
||||
<string lang="en"><font style="italics">TEST SCENE.</font></string>
|
||||
</text>
|
||||
</events>
|
||||
</vnscene>
|
18
assets/games/liminal/scenes/test/TestRonin.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<vnscene name="TestRonin" extend="scenes/SceneStandard">
|
||||
<item ref="ronin" prefab="prefabs/RoninPrefab" />
|
||||
<asset type="texture" name="texture_ronin_face_day_furious" ref="roninFaceNeutral" />
|
||||
<asset type="texture" name="texture_ronin_pose_day_cross" ref="roninPoseCross" />
|
||||
<asset type="texture" name="texture_ronin_pose_day_body" ref="roninBody" />
|
||||
|
||||
<events>
|
||||
<set-font font="font_main" style="italics" size="32" />
|
||||
|
||||
<set property="ronin->faceMaterial->texture" type="Texture*" value="&roninFaceNeutral->texture" />
|
||||
<set property="ronin->poseMaterial->texture" type="Texture*" value="&roninPoseCross->texture" />
|
||||
<set property="ronin->bodyMaterial->texture" type="Texture*" value="&roninBody->texture" />
|
||||
|
||||
<text>
|
||||
<string lang="en"><font style="italics">TEST SCENE.</font></string>
|
||||
</text>
|
||||
</events>
|
||||
</vnscene>
|
@ -5,6 +5,8 @@
|
||||
|
||||
set(LIMINIAL_CHARACTER_SCALE 0.2)
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/ave/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/craig/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/eth/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/ronin/CMakeLists.txt")
|
||||
|
||||
|
7
assets/games/liminal/textures/ave/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/faces/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/poses/CMakeLists.txt")
|
14
assets/games/liminal/textures/ave/faces/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(AVE_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=2294
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
35
assets/games/liminal/textures/ave/faces/day/CMakeLists.txt
Normal file
@ -0,0 +1,35 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
|
||||
tool_texture(texture_ave_face_day_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_day_pensive
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pensive.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/faces/day/anger.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/confused.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/fear.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/happy.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/neutral.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/ave/faces/day/pensive.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
34
assets/games/liminal/textures/ave/faces/night/CMakeLists.txt
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_ave_face_night_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_face_night_pensive
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pensive.png"
|
||||
${AVE_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/faces/night/anger.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/confused.png
Normal file
After Width: | Height: | Size: 2.8 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/fear.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/happy.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/neutral.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/ave/faces/night/pensive.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
14
assets/games/liminal/textures/ave/poses/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(AVE_POSE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_START_Y=2294
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
24
assets/games/liminal/textures/ave/poses/day/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_ave_pose_day_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_front
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_hips
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/wrist.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/poses/day/cross.png
Normal file
After Width: | Height: | Size: 9.5 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/neutral.png
Normal file
After Width: | Height: | Size: 11 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/pocket.png
Normal file
After Width: | Height: | Size: 10 MiB |
BIN
assets/games/liminal/textures/ave/poses/day/wrist.png
Normal file
After Width: | Height: | Size: 9.3 MiB |
24
assets/games/liminal/textures/ave/poses/night/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_ave_pose_night_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_front
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_hips
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/wrist.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ave_pose_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${AVE_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/ave/poses/night/cross.png
Normal file
After Width: | Height: | Size: 8.4 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/neutral.png
Normal file
After Width: | Height: | Size: 9.4 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/pocket.png
Normal file
After Width: | Height: | Size: 9.1 MiB |
BIN
assets/games/liminal/textures/ave/poses/night/wrist.png
Normal file
After Width: | Height: | Size: 8.2 MiB |
7
assets/games/liminal/textures/craig/CMakeLists.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/faces/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/poses/CMakeLists.txt")
|
14
assets/games/liminal/textures/craig/faces/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(CRAIG_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=1361
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
34
assets/games/liminal/textures/craig/faces/day/CMakeLists.txt
Normal file
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_face_day_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_day_thinking
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/thinking.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/faces/day/anger.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/confused.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/fear.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/happy.png
Normal file
After Width: | Height: | Size: 3.4 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/neutral.png
Normal file
After Width: | Height: | Size: 2.9 MiB |
BIN
assets/games/liminal/textures/craig/faces/day/thinking.png
Normal file
After Width: | Height: | Size: 3.3 MiB |
@ -0,0 +1,34 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_face_night_anger
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/anger.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_fear
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fear.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_happy
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/happy.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_neutral
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/neutral.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_face_night_thinking
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/thinking.png"
|
||||
${CRAIG_FACE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/faces/night/anger.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/confused.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/fear.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/happy.png
Normal file
After Width: | Height: | Size: 2.6 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/neutral.png
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
assets/games/liminal/textures/craig/faces/night/thinking.png
Normal file
After Width: | Height: | Size: 3.2 MiB |
18
assets/games/liminal/textures/craig/poses/CMakeLists.txt
Normal file
@ -0,0 +1,18 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
set(CRAIG_POSE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
)
|
||||
|
||||
set(CRAIG_BODY_TEXTURE_OPTIONS
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
CROP_START_Y=1361
|
||||
)
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt")
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt")
|
29
assets/games/liminal/textures/craig/poses/day/CMakeLists.txt
Normal file
@ -0,0 +1,29 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_pose_day_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${CRAIG_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_gun
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fist.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_hair
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/hair.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_day_neck
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/poses/day/body.png
Normal file
After Width: | Height: | Size: 15 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/cross.png
Normal file
After Width: | Height: | Size: 8.3 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/fist.png
Normal file
After Width: | Height: | Size: 7.9 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/hair.png
Normal file
After Width: | Height: | Size: 8.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/day/pocket.png
Normal file
After Width: | Height: | Size: 6.7 MiB |
@ -0,0 +1,29 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
tool_texture(texture_craig_pose_night_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${CRAIG_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_cross
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/cross.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_gun
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/fist.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_hair
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/hair.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_craig_pose_night_neck
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/pocket.png"
|
||||
${CRAIG_POSE_TEXTURE_OPTIONS}
|
||||
)
|
BIN
assets/games/liminal/textures/craig/poses/night/body.png
Normal file
After Width: | Height: | Size: 14 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/cross.png
Normal file
After Width: | Height: | Size: 7.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/fist.png
Normal file
After Width: | Height: | Size: 7.7 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/hair.png
Normal file
After Width: | Height: | Size: 8.4 MiB |
BIN
assets/games/liminal/textures/craig/poses/night/pocket.png
Normal file
After Width: | Height: | Size: 6.2 MiB |
@ -7,7 +7,7 @@ set(ETH_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=2833
|
||||
CROP_END_Y=1431
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
|
@ -7,6 +7,7 @@ set(RONIN_FACE_TEXTURE_OPTIONS
|
||||
SCALE=${LIMINIAL_CHARACTER_SCALE}
|
||||
FILTER_MIN=nearest
|
||||
FILTER_MAG=nearest
|
||||
CROP_END_Y=1689
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
|
@ -10,12 +10,12 @@ tool_texture(texture_ronin_face_day_anger
|
||||
|
||||
tool_texture(texture_ronin_face_day_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${ETH_FACE_TEXTURE_OPTIONS}
|
||||
${RONIN_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_face_day_furious
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/furious.png"
|
||||
${ETH_FACE_TEXTURE_OPTIONS}
|
||||
${RONIN_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_face_day_happy
|
||||
|
@ -10,12 +10,12 @@ tool_texture(texture_ronin_face_night_anger
|
||||
|
||||
tool_texture(texture_ronin_face_night_confused
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/confused.png"
|
||||
${ETH_FACE_TEXTURE_OPTIONS}
|
||||
${RONIN_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_face_night_furious
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/furious.png"
|
||||
${ETH_FACE_TEXTURE_OPTIONS}
|
||||
${RONIN_FACE_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_face_night_happy
|
||||
|
@ -9,5 +9,10 @@ set(RONIN_POSE_TEXTURE_OPTIONS
|
||||
FILTER_MAG=nearest
|
||||
)
|
||||
|
||||
set(RONIN_BODY_TEXTURE_OPTIONS
|
||||
${RONIN_POSE_TEXTURE_OPTIONS}
|
||||
CROP_START_Y=1689
|
||||
)
|
||||
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/day/CMakeLists.txt)
|
||||
include(${CMAKE_CURRENT_LIST_DIR}/night/CMakeLists.txt)
|
@ -5,7 +5,7 @@
|
||||
|
||||
tool_texture(texture_ronin_pose_day_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${RONIN_POSE_TEXTURE_OPTIONS}
|
||||
${RONIN_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_pose_day_cross
|
||||
|
@ -5,7 +5,7 @@
|
||||
|
||||
tool_texture(texture_ronin_pose_night_body
|
||||
FILE="${CMAKE_CURRENT_LIST_DIR}/body.png"
|
||||
${RONIN_POSE_TEXTURE_OPTIONS}
|
||||
${RONIN_BODY_TEXTURE_OPTIONS}
|
||||
)
|
||||
|
||||
tool_texture(texture_ronin_pose_night_cross
|
||||
|
2
ci/install-linux-toolchain.sh
Executable file
@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
sudo apt install build-essential
|
@ -18,7 +18,7 @@ void AssetLoader::open() {
|
||||
assertNull(this->handle, "AssetLoader::open: File is already open");
|
||||
std::string pathFull = DAWN_ASSET_BUILD_PREFIX + this->fileName;
|
||||
this->handle = fopen(pathFull.c_str(), "rb");
|
||||
assertNotNull(this->handle, "AssetLoader::open: Failed to open file");
|
||||
assertNotNull(this->handle, "AssetLoader::open: Failed to open file " + pathFull);
|
||||
}
|
||||
|
||||
int32_t AssetLoader::close() {
|
||||
|
@ -15,7 +15,7 @@ namespace Dawn {
|
||||
|
||||
protected:
|
||||
void onStart() override {
|
||||
assertNotNull(this->modifies);
|
||||
assertNotNull(this->modifies, "VNSetEvent::onStart() modifies is null!");
|
||||
*modifies = value;
|
||||
this->next();
|
||||
}
|
||||
|
@ -34,6 +34,28 @@ struct Color Color::fromString(std::string str) {
|
||||
return COLOR_BLUE;
|
||||
}
|
||||
|
||||
// Hex code?
|
||||
|
||||
// Split by comma
|
||||
auto splitByComma = stringSplit(str, ",");
|
||||
if(splitByComma.size() == 3) {
|
||||
// RGB
|
||||
return {
|
||||
(float_t)std::stof(splitByComma[0]),
|
||||
(float_t)std::stof(splitByComma[1]),
|
||||
(float_t)std::stof(splitByComma[2]),
|
||||
1.0f
|
||||
};
|
||||
} else if(splitByComma.size() == 4) {
|
||||
// RGBA
|
||||
return {
|
||||
(float_t)std::stof(splitByComma[0]),
|
||||
(float_t)std::stof(splitByComma[1]),
|
||||
(float_t)std::stof(splitByComma[2]),
|
||||
(float_t)std::stof(splitByComma[3])
|
||||
};
|
||||
}
|
||||
|
||||
// TODO: Parse other kinds of colors
|
||||
assertUnreachable("Failed to find a color match for " + str);
|
||||
return {};
|
||||
|
@ -124,7 +124,7 @@ namespace Dawn {
|
||||
};
|
||||
|
||||
static inline std::string colorParser(std::string v, std::string *error) {
|
||||
return rawParser(v, error);
|
||||
return "Color::fromString(" + stringParser(v, error) + ")";
|
||||
}
|
||||
|
||||
static inline std::function<std::string(std::string, std::string*)> parserFromTypeName(std::string type) {
|
||||
|
@ -83,6 +83,7 @@ function(tool_texture target)
|
||||
--cropStartY="${CROP_START_Y}"
|
||||
--cropEndX="${CROP_END_X}"
|
||||
--cropEndY="${CROP_END_Y}"
|
||||
--preview="${DAWN_BUILD_DIR}/preview/${target}"
|
||||
COMMENT "Generating texture ${target} from ${FILE}"
|
||||
DEPENDS ${DEPS}
|
||||
)
|
||||
|
@ -25,7 +25,8 @@ std::map<std::string, std::string> TextureTool::getOptionalFlags() {
|
||||
{ "cropStartX", "" },
|
||||
{ "cropStartY", "" },
|
||||
{ "cropEndX", "" },
|
||||
{ "cropEndY", "" }
|
||||
{ "cropEndY", "" },
|
||||
{ "preview", "" }
|
||||
};
|
||||
}
|
||||
|
||||
@ -73,14 +74,14 @@ int32_t TextureTool::start() {
|
||||
if(!flags["cropEndY"].empty()) cropEndY = std::stoi(flags["cropEndY"]);
|
||||
|
||||
if(cropStartX > 0 || cropStartY > 0 || cropEndX > 0 || cropEndY > 0) {
|
||||
int32_t cropWidth = originalWidth - cropStartX - cropEndX;
|
||||
int32_t cropHeight = originalHeight - cropStartY - cropEndY;
|
||||
int32_t cropWidth = (cropEndX == 0 ? originalWidth : cropEndX) - cropStartX;
|
||||
int32_t cropHeight = (cropEndY == 0 ? originalHeight : cropEndY) - cropStartY;
|
||||
|
||||
float_t s0, t0, s1, t1;
|
||||
s0 = (float_t)cropStartX / (float_t)originalWidth;
|
||||
t0 = (float_t)cropStartY / (float_t)originalHeight;
|
||||
s1 = 1.0f - ((float_t)cropEndX / (float_t)originalWidth);
|
||||
t1 = 1.0f - ((float_t)cropEndY / (float_t)originalHeight);
|
||||
s1 = ((float_t)(cropEndX == 0 ? originalWidth : cropEndX) / (float_t)originalWidth);
|
||||
t1 = ((float_t)(cropEndY == 0 ? originalHeight : cropEndY) / (float_t)originalHeight);
|
||||
|
||||
stbir_resize_region(
|
||||
bufferCurrent, currentWidth, currentHeight, 0,
|
||||
@ -165,6 +166,21 @@ int32_t TextureTool::start() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Write preview
|
||||
File preview(flags["preview"] + ".png");
|
||||
if(!preview.mkdirp()) {
|
||||
std::cout << "Failed to make preview dir " << preview.filename << std::endl;
|
||||
return 1;
|
||||
}
|
||||
stbi_write_png(
|
||||
preview.filename.c_str(),
|
||||
currentWidth,
|
||||
currentHeight,
|
||||
STBI_rgb_alpha,
|
||||
bufferCurrent,
|
||||
0
|
||||
);
|
||||
|
||||
// Write texture
|
||||
if(!out.writeRaw((char*)bufferCurrent, sizeof(uint8_t) * len)) {
|
||||
std::cout << "Failed to write texture data for " << out.filename << std::endl;
|
||||
|