cyphesis/navigation/Makefile.am
Erik Ogenvik 514d0812a0 Added basic awareness for navigation.
"Awareness" refers to an entity's view of the surrounding world with
regards to how the entity could navigate. We use Recast/Detour to build
a navmesh for the entity.

However, since each world can have many NPCs, each one with their own
mind, we don't want to keep a complete navmesh for each single mind.
This will quickly become expensive. Therefore we want to share
awarenesses between multiple entities of the same type. So, for example,
all fishes handled by the same ai client will share one single awareness
of the world.
This to some degree involves some cheating, since AI minds now might get
knowledge of the world they otherwise wouldn't have. We consider this to
not be such a big issue. If this is unacceptable for some worlds these
should then disable awareness sharing and take the resource hit.
2016-03-19 23:05:13 +01:00

9 lines
No EOL
430 B
Makefile

SUBDIRS = external
noinst_LIBRARIES = libnavigation.a
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_builddir) -I$(srcdir)/external/RecastDetour/Detour/Include -I$(srcdir)/external/RecastDetour/DetourTileCache/Include -I$(srcdir)/external/RecastDetour/Recast/Include -DPREFIX=\"@prefix@\"
libnavigation_a_SOURCES = Awareness.cpp fastlz.c Steering.cpp
noinst_HEADERS = Awareness.h fastlz.h Steering.h AwarenessUtils.h IHeightProvider.h