Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Use cmake modules for PhysFS #30

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,5 @@ compile_commands.json

# clion
.idea/

.vscode/
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "lib/libsquish"]
path = lib/libsquish
url = https://github.com/tito/libsquish.git
[submodule "lib/physfs"]
path = lib/physfs
url = https://github.com/REGoth-project/physfs
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,22 @@ addons:

git:
submodules: false
install:
- wget https://www.icculus.org/physfs/downloads/physfs-3.0.1.tar.bz2
- tar xf physfs-3.0.1.tar.bz2
- mkdir deps
- mkdir build-physfs
- cd build-physfs
- cmake -DCMAKE_INSTALL_PREFIX=../deps ../physfs-3.0.1 -DPHYSFS_BUILD_TEST=OFF
- cmake --build . --target install
- cd ..

script:
- if [ "$CXX" = "g++" ]; then export CXX="g++-6" CC="gcc-6"; fi
- git submodule update --init --recursive
- mkdir -p build
- cd build
- cmake -GNinja -DZENLIB_BUILD_EXAMPLES=On -DZENLIB_BUILD_TESTS=On ..
- cmake -GNinja -DZENLIB_BUILD_EXAMPLES=On -DZENLIB_BUILD_TESTS=On -DCMAKE_PREFIX_PATH=../deps ..
- ninja
- cd ../tests
- ../build/tests/test_vdfs
7 changes: 3 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ cmake_minimum_required(VERSION 2.4)
project(ZenLib)

include(ExternalProject)
set(CMAKE_MODULE_PATH
${CMAKE_MODULE_PATH}
"${CMAKE_CURRENT_SOURCE_DIR}/cmake")

set(ZENLIB_BUILD_EXAMPLES OFF CACHE BOOL "Whether to build the examples")
set(ZENLIB_BUILD_TESTS OFF CACHE BOOL "Whether to build tests")
Expand All @@ -17,12 +20,8 @@ endif()
# 3rd-party dependencies
add_subdirectory(lib/libsquish)

set(PHYSFS_BUILD_TEST OFF CACHE STRING "" FORCE)
add_subdirectory(lib/physfs)

include_directories(lib/glm/glm)
include_directories(lib/libsquish)
include_directories(lib/physfs/src)
include_directories(.)

# Internal libraries
Expand Down
33 changes: 33 additions & 0 deletions cmake/FindPhysFS.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
find_path(PhysFS_INCLUDE_DIR NAMES physfs.h)
find_library(PhysFS_LIBRARY NAMES physfs libphysfs)
mark_as_advanced(PhysFS_INCLUDE_DIR PhysFS_LIBRARY)

include(FindPackageHandleStandardArgs)

find_package_handle_standard_args(PhysFS REQUIRED_VARS PhysFS_LIBRARY PhysFS_INCLUDE_DIR)

if(PhysFS_FOUND)
if(NOT TARGET PhysFS::PhysFS)
add_library(PhysFS::PhysFS UNKNOWN IMPORTED)
set_target_properties(PhysFS::PhysFS PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES "C"
IMPORTED_LOCATION "${PhysFS_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${PhysFS_INCLUDE_DIR}")
endif()

if (PhysFS_INCLUDE_DIR AND EXISTS "${PhysFS_INCLUDE_DIR}/physfs.h")
file(STRINGS "${PhysFS_INCLUDE_DIR}/physfs.h" physfs_major_version REGEX "^#define[ \\t]+PHYSFS_VER_MAJOR[ \\t]+\\d+")
file(STRINGS "${PhysFS_INCLUDE_DIR}/physfs.h" physfs_minor_version REGEX "^#define[ \\t]+PHYSFS_VER_MINOR[ \\t]+\\d+")
file(STRINGS "${PhysFS_INCLUDE_DIR}/physfs.h" physfs_patch_version REGEX "^#define[ \\t]+PHYSFS_VER_PATCH[ \\t]+\\d+")

string(REGEX REPLACE "^#define[ \\t]+PHYSFS_VER_MAJOR[ \\t]+(\\d+)" "\\1" PHYSFS_MAJOR "${physfs_major_version}")
string(REGEX REPLACE "^#define[ \\t]+PHYSFS_VER_MAJOR[ \\t]+(\\d+)" "\\1" PHYSFS_MINOR "${physfs_minor_version}")
string(REGEX REPLACE "^#define[ \\t]+PHYSFS_VER_MAJOR[ \\t]+(\\d+)" "\\1" PHYSFS_PATCH "${physfs_patch_version}")

set(PHYSFS_VERSION_STRING "${PHYSFS_MAJOR}.${PHYSFS_MINOR}.${PHYSFS_PATCH}")

unset(physfs_major_version)
unset(physfs_minor_version)
unset(physfs_patch_version)
endif ()
endif()
1 change: 0 additions & 1 deletion lib/physfs
Submodule physfs deleted from 4174d6
6 changes: 4 additions & 2 deletions vdfs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ project(VDFS)

file(GLOB SRC
*.cpp
*.c
*.h
)

add_library(vdfs STATIC ${SRC} "../lib/physfs/extras/ignorecase.c")
find_package(PhysFS 3 REQUIRED)
add_library(vdfs STATIC ${SRC})

# Remove WIN-API min and max macros since they mess up std::min/max
if(MSVC)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /DNOMINMAX")
endif()

target_link_libraries(vdfs physfs-static)
target_link_libraries(vdfs PhysFS::PhysFS)
set_target_properties(vdfs PROPERTIES LINKER_LANGUAGE C)
target_include_directories(vdfs PUBLIC ..)
2 changes: 1 addition & 1 deletion vdfs/fileIndex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <algorithm>
#include <physfs.h>
#include <assert.h>
#include "../lib/physfs/extras/ignorecase.h"
#include "ignorecase.h"

using namespace VDFS;

Expand Down
199 changes: 199 additions & 0 deletions vdfs/ignorecase.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
/** \file ignorecase.c */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

#include <physfs.h>
#include "ignorecase.h"

/**
* Please see ignorecase.h for details.
*
* License: this code is public domain. I make no warranty that it is useful,
* correct, harmless, or environmentally safe.
*
* This particular file may be used however you like, including copying it
* verbatim into a closed-source project, exploiting it commercially, and
* removing any trace of my name from the source (although I hope you won't
* do that). I welcome enhancements and corrections to this file, but I do
* not require you to send me patches if you make changes. This code has
* NO WARRANTY.
*
* Unless otherwise stated, the rest of PhysicsFS falls under the zlib license.
* Please see LICENSE.txt in the root of the source tree.
*
* \author Ryan C. Gordon.
*/

static int locateOneElement(char *buf)
{
char *ptr;
char **rc;
char **i;

if (PHYSFS_exists(buf))
return 1; /* quick rejection: exists in current case. */

ptr = strrchr(buf, '/'); /* find entry at end of path. */
if (ptr == NULL)
{
rc = PHYSFS_enumerateFiles("/");
ptr = buf;
} /* if */
else
{
*ptr = '\0';
rc = PHYSFS_enumerateFiles(buf);
*ptr = '/';
ptr++; /* point past dirsep to entry itself. */
} /* else */

for (i = rc; *i != NULL; i++)
{
if (PHYSFS_utf8stricmp(*i, ptr) == 0)
{
strcpy(ptr, *i); /* found a match. Overwrite with this case. */
PHYSFS_freeList(rc);
return 1;
} /* if */
} /* for */

/* no match at all... */
PHYSFS_freeList(rc);
return 0;
} /* locateOneElement */


int PHYSFSEXT_locateCorrectCase(char *buf)
{
int rc;
char *ptr;

while (*buf == '/') /* skip any '/' at start of string... */
buf++;

ptr = buf;
if (*ptr == '\0')
return 0; /* Uh...I guess that's success. */

while ( (ptr = strchr(ptr + 1, '/')) != NULL )
{
*ptr = '\0'; /* block this path section off */
rc = locateOneElement(buf);
*ptr = '/'; /* restore path separator */
if (!rc)
return -2; /* missing element in path. */
} /* while */

/* check final element... */
return locateOneElement(buf) ? 0 : -1;
} /* PHYSFSEXT_locateCorrectCase */


#ifdef TEST_PHYSFSEXT_LOCATECORRECTCASE
int main(int argc, char **argv)
{
int rc;
char buf[128];
PHYSFS_File *f;

if (!PHYSFS_init(argv[0]))
{
fprintf(stderr, "PHYSFS_init(): %s\n", PHYSFS_getLastError());
return 1;
} /* if */

if (!PHYSFS_addToSearchPath(".", 1))
{
fprintf(stderr, "PHYSFS_addToSearchPath(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

if (!PHYSFS_setWriteDir("."))
{
fprintf(stderr, "PHYSFS_setWriteDir(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

if (!PHYSFS_mkdir("/a/b/c"))
{
fprintf(stderr, "PHYSFS_mkdir(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

if (!PHYSFS_mkdir("/a/b/C"))
{
fprintf(stderr, "PHYSFS_mkdir(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

f = PHYSFS_openWrite("/a/b/c/x.txt");
PHYSFS_close(f);
if (f == NULL)
{
fprintf(stderr, "PHYSFS_openWrite(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

f = PHYSFS_openWrite("/a/b/C/X.txt");
PHYSFS_close(f);
if (f == NULL)
{
fprintf(stderr, "PHYSFS_openWrite(): %s\n", PHYSFS_getLastError());
PHYSFS_deinit();
return 1;
} /* if */

strcpy(buf, "/a/b/c/x.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != 0) || (strcmp(buf, "/a/b/c/x.txt") != 0))
printf("test 1 failed\n");

strcpy(buf, "/a/B/c/x.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != 0) || (strcmp(buf, "/a/b/c/x.txt") != 0))
printf("test 2 failed\n");

strcpy(buf, "/a/b/C/x.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != 0) || (strcmp(buf, "/a/b/C/X.txt") != 0))
printf("test 3 failed\n");

strcpy(buf, "/a/b/c/X.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != 0) || (strcmp(buf, "/a/b/c/x.txt") != 0))
printf("test 4 failed\n");

strcpy(buf, "/a/b/c/z.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != -1) || (strcmp(buf, "/a/b/c/z.txt") != 0))
printf("test 5 failed\n");

strcpy(buf, "/A/B/Z/z.txt");
rc = PHYSFSEXT_locateCorrectCase(buf);
if ((rc != -2) || (strcmp(buf, "/a/b/Z/z.txt") != 0))
printf("test 6 failed\n");

printf("Testing completed.\n");
printf(" If no errors were reported, you're good to go.\n");

PHYSFS_delete("/a/b/c/x.txt");
PHYSFS_delete("/a/b/C/X.txt");
PHYSFS_delete("/a/b/c");
PHYSFS_delete("/a/b/C");
PHYSFS_delete("/a/b");
PHYSFS_delete("/a");
PHYSFS_deinit();
return 0;
} /* main */
#endif

/* end of ignorecase.c ... */

Loading