diff --git a/.github/workflows/build-liminal-glfw-linux64.yml b/.github/workflows/build-liminal-glfw-linux64.yml new file mode 100644 index 00000000..fadb2d6f --- /dev/null +++ b/.github/workflows/build-liminal-glfw-linux64.yml @@ -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 \ No newline at end of file diff --git a/ci/install-linux-toolchain.sh b/ci/install-linux-toolchain.sh new file mode 100755 index 00000000..0485dc71 --- /dev/null +++ b/ci/install-linux-toolchain.sh @@ -0,0 +1,2 @@ +#!/bin/bash +sudo apt install build-essential \ No newline at end of file diff --git a/src/dawn/asset/AssetLoader.cpp b/src/dawn/asset/AssetLoader.cpp index 41cce6c7..2772b13b 100644 --- a/src/dawn/asset/AssetLoader.cpp +++ b/src/dawn/asset/AssetLoader.cpp @@ -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() { diff --git a/src/dawn/games/vn/events/VNSetEvent.hpp b/src/dawn/games/vn/events/VNSetEvent.hpp index ea0d5a33..70acbeca 100644 --- a/src/dawn/games/vn/events/VNSetEvent.hpp +++ b/src/dawn/games/vn/events/VNSetEvent.hpp @@ -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(); } diff --git a/src/dawnshared/display/Color.cpp b/src/dawnshared/display/Color.cpp index 747e0c3e..e9caa202 100644 --- a/src/dawnshared/display/Color.cpp +++ b/src/dawnshared/display/Color.cpp @@ -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 {}; diff --git a/src/dawnshared/util/parser/TypeParsers.hpp b/src/dawnshared/util/parser/TypeParsers.hpp index cc612eec..b464b678 100644 --- a/src/dawnshared/util/parser/TypeParsers.hpp +++ b/src/dawnshared/util/parser/TypeParsers.hpp @@ -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 parserFromTypeName(std::string type) { diff --git a/src/dawntools/texturetool/CMakeLists.txt b/src/dawntools/texturetool/CMakeLists.txt index 3e6bc6bf..8dc5874b 100644 --- a/src/dawntools/texturetool/CMakeLists.txt +++ b/src/dawntools/texturetool/CMakeLists.txt @@ -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} ) diff --git a/src/dawntools/texturetool/TextureTool.cpp b/src/dawntools/texturetool/TextureTool.cpp index 24f099d1..97c11567 100644 --- a/src/dawntools/texturetool/TextureTool.cpp +++ b/src/dawntools/texturetool/TextureTool.cpp @@ -25,7 +25,8 @@ std::map 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;