Skip to content
Snippets Groups Projects
Commit 989d10f9 authored by David Bergström's avatar David Bergström
Browse files

Run the existing baseline behaviour from a Python function

parent 69ab4896
No related branches found
No related tags found
No related merge requests found
......@@ -26,4 +26,25 @@ set_target_properties(sc2protocol PROPERTIES COMPILE_FLAGS "/W0")
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT CommandCenter)
pybind11_add_module(library library.cxx)
# TODO: Move everything below this line to a separate directory
include_directories(SYSTEM
${PROJECT_SOURCE_DIR}/lib/s2client-api/include
${PROJECT_SOURCE_DIR}/lib/s2client-api/contrib/protobuf/src
${PROJECT_BINARY_DIR}/lib/s2client-api/generated
)
# All the source files for the bot.
file(GLOB BOT_SOURCES "src/*.cpp" "src/*.h" "src/*.hpp")
link_directories(${PROJECT_BINARY_DIR}/s2client-api/bin)
# Enable compilation of the SC2 version of the bot code
# TODO: Remove all remaining BW code
add_definitions(-DSC2API)
# Create the executable.
pybind11_add_module(library library.cpp ${BOT_SOURCES})
target_link_libraries(library PRIVATE
sc2api sc2lib sc2utils sc2protocol libprotobuf
)
#include <pybind11/pybind11.h>
#include <sc2api/sc2_api.h>
#include "src/IDABot.h"
#include <iostream>
void run()
{
char *argv[] = { "executable", NULL};
int argc = sizeof(argv) / sizeof(char*) - 1;
sc2::Coordinator coordinator;
coordinator.LoadSettings(argc, argv);
IDABot bot;
coordinator.SetParticipants({
CreateParticipant(sc2::Race::Terran, &bot),
sc2::CreateComputer(sc2::Race::Zerg)
});
coordinator.LaunchStarcraft();
coordinator.StartGame("InterloperTest.SC2Map");
while (coordinator.Update()) {
}
}
int add(int i, int j)
{
return i + j + 1;
}
PYBIND11_MODULE(library, m)
{
m.doc() = "pybind11 example plugin";
m.def("add", &add, "A function which adds two numbers");
m.def("run", &run, "Start Starcraft 2");
}
#include <pybind11/pybind11.h>
int add(int i, int j)
{
return i + j + 1;
}
PYBIND11_MODULE(library, m)
{
m.doc() = "pybind11 example plugin";
m.def("add", &add, "A function which adds two numbers");
}
#include <iostream>
#include <pybind11/pybind11.h>
int add(int i, int j)
{
return i + j;
}
int main (int argc, char *argv[])
{
while (true)
{
std::cout << "Hello World!" << std::endl;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment