You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
600 B
35 lines
600 B
/** |
|
* @file controls/tracker.hpp |
|
* |
|
* Tracker system for accessibility: target cycling, pathfinding, and auto-walk. |
|
*/ |
|
#pragma once |
|
|
|
#include <cstdint> |
|
|
|
namespace devilution { |
|
|
|
enum class TrackerTargetCategory : uint8_t { |
|
Items, |
|
Chests, |
|
Doors, |
|
Shrines, |
|
Objects, |
|
Breakables, |
|
Monsters, |
|
DeadBodies, |
|
Npcs, |
|
Players, |
|
DungeonEntrances, |
|
Stairs, |
|
QuestLocations, |
|
Portals, |
|
}; |
|
|
|
void TrackerPageUpKeyPressed(); |
|
void TrackerPageDownKeyPressed(); |
|
void TrackerHomeKeyPressed(); |
|
void UpdateAutoWalkTracker(); |
|
void ResetAutoWalkTracker(); |
|
|
|
} // namespace devilution
|
|
|