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.
31 lines
610 B
31 lines
610 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, |
|
}; |
|
|
|
extern TrackerTargetCategory SelectedTrackerTargetCategory; |
|
|
|
void CycleTrackerTargetKeyPressed(); |
|
void NavigateToTrackerTargetKeyPressed(); |
|
void AutoWalkToTrackerTargetKeyPressed(); |
|
void UpdateAutoWalkTracker(); |
|
void ResetAutoWalkTracker(); |
|
|
|
} // namespace devilution
|
|
|