diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1b0c5e8 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "cmake/cmake-d"] + path = cmake/cmake-d + url = https://github.com/dcarp/cmake-d.git diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..fdfc028 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,12 @@ +cmake_minimum_required(VERSION 2.6 FATAL_ERROR) +list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake-d) +project(disgaea_solver D) + +add_executable(${PROJECT_NAME} + src/main.d + src/disgaea_solve.d +) + +target_include_directories(${PROJECT_NAME} + PUBLIC src +) diff --git a/cmake/cmake-d b/cmake/cmake-d new file mode 160000 index 0000000..2f3f6b1 --- /dev/null +++ b/cmake/cmake-d @@ -0,0 +1 @@ +Subproject commit 2f3f6b1b0702655762061ab8bab01a288b98cb74 diff --git a/src/disgaea_solve.d b/src/disgaea_solve.d new file mode 100644 index 0000000..f3867df --- /dev/null +++ b/src/disgaea_solve.d @@ -0,0 +1,8 @@ +module src.disgaea_solve; + +struct Action { + char block; + char tile; +} + +Action[] disgaea_solve ( diff --git a/src/main.d b/src/main.d new file mode 100644 index 0000000..c147928 --- /dev/null +++ b/src/main.d @@ -0,0 +1,17 @@ +import std.stdio; +import std.array; +import disgaea_solve; + +int main (string[] parArgs) { + immutable int expected_arg_count = 3; + if (parArgs.length - 1 < expected_arg_count) { + writefln("Wrong number of arguments: received %d, expected %d", + parArgs.length - 1, + expected_arg_count + ); + writefln("Usage: %s ", parArgs[0]); + return 2; + } + + return 0; +}