AI%3ANullAI - beyond-all-reason/springrts_engine_wiki_mirror GitHub Wiki

Description

This Skirmish AI is written in pure C, to prove that the C AI interface works. It consists of only the very minimum that is needed for a spring Skirmish AI to load.

NullAI is an empty implementation, meaning it will load, but do absolutely nothing. It can be used to test the AI interface or for exploring a map if one wants the end game screen not to appear. It can also be used as a template for new C or C++ Skirmish AI projects.

This AI uses the C & C++ AI Interface library. See also Null Legacy C++ AI and C++ Test AI.

Download

It comes with spring source. Reffer to Obtaining the Source.

Known Crashes

  • None

How to compile

The easy way

Use SCons or CMake (refer to Building spring).

The hard way

  • include directories:
    • {spring_source}/rts
    • {spring_source}/rts/System
    • {spring_source}/rts/ExternalAI/Interface
    • {spring_source}/AI/Skirmish/NullAI
  • source files:
    • {spring_source}/AI/Skirmish/NullAI/*.c
  • create dynamic loadable shared library (module)
  • should compile with all C compilers (tested with MinGW, GCC, Intel)

How to install

from: {spring_source}/AI/Skirmish/NullAI/ to: {spring_data_dir}/AI/Skirmish/NullAI/{NullAI-version}/

  • copy build/libNullAI.so, build/libNullAI.dylib or build/NullAI.dll to ./
  • copy data/* to ./

' <- Back to AI page'

Category:AI