TDME2 1.9.121
PathFindingCustomTest.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
6
8
9/**
10 * Path finding custom test interface
11 * @author Andreas Drewke
12 * @version $Id$
13 */
15{
16 /**
17 * Destructor
18 */
20
21 /**
22 * Initialize custom test for a sequence of isWalkable calls for the current path finding execution
23 */
24 virtual void initialize() = 0;
25
26 /**
27 * Disposes custom test after a sequence of isWalkable calls for the last path finding execution
28 */
29 virtual void dispose() = 0;
30
31 /**
32 * Is walkable user test
33 * @param pathFinding current path finding instance
34 * @param x x
35 * @param y y
36 * @param z z
37 * @return is walkable
38 */
39 virtual bool isWalkable(PathFinding* pathFinding, float x, float y, float z) = 0;
40
41};
Path finding class.
Definition: PathFinding.h:44
Path finding custom test interface.
virtual void initialize()=0
Initialize custom test for a sequence of isWalkable calls for the current path finding execution.
virtual void dispose()=0
Disposes custom test after a sequence of isWalkable calls for the last path finding execution.
virtual bool isWalkable(PathFinding *pathFinding, float x, float y, float z)=0
Is walkable user test.