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.
30 lines
547 B
30 lines
547 B
|
2 months ago
|
/**
|
||
|
|
* @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,
|
||
|
|
};
|
||
|
|
|
||
|
|
void CycleTrackerTargetKeyPressed();
|
||
|
|
void NavigateToTrackerTargetKeyPressed();
|
||
|
|
void AutoWalkToTrackerTargetKeyPressed();
|
||
|
|
void UpdateAutoWalkTracker();
|
||
|
|
void ResetAutoWalkTracker();
|
||
|
|
|
||
|
|
} // namespace devilution
|