ABPMultimediaUA / ex_sensors

Example on how to add sensors to enemies in a simple but structured way

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Enemy Sensor Implementation in C++

This code is an application example for the implementation of simple sensors for enemies. It shows a simple maze game with different types of enemies and walls. The EnemySensor type has a seeing sensor and is able to see players in its looking at direction.

Screenshot of an enemy looking at a Player using its sight sensor

Explanation

This example was used during Computer Games lessons of the Multimedia Degree at the University of Alicante. You may want to check out the associated C++ lesson video (in Spanish):

Francisco Gallego's Computer Games Lesson at the University of Alicante

Compilation requisites

In order to compile this code you require:

  • A Linux/*Nix operative system (Win10 bash may do the job)
  • CMake 3.2 or greater
  • A compiler supporting C++11 or greater (GNU GCC is recommended)
  • NCurses library and its development headers

Compilation instructions

  1. Enter project folder
  2. Create a build subfolder (mkdir bin/)
  3. Enter build subfolder (cd bin/)
  4. Launch CMake (cmake ../src/)
  5. If CMake succeeded, run make (make)
  6. If build succeeded, run minimaze game (./minimaze)

Copyright and License

(c) 2017 Francisco J. Gallego-Durán

This code is distributed under GNU-GPL v3 License.

About

Example on how to add sensors to enemies in a simple but structured way

License:GNU General Public License v3.0


Languages

Language:C++ 97.5%Language:CMake 2.5%