AlpacaLibary  1.63
A closed source C++ bot for OSRS
GameObjects.hpp
Go to the documentation of this file.
1 #ifndef GAMEOBJECTS_HPP_INCLUDED
2 #define GAMEOBJECTS_HPP_INCLUDED
3 
4 #include "../../Game/Interactable/GameObject.hpp"
5 #include <functional>
6 #include <cstdint>
7 #include <vector>
8 #include <string>
9 
10 namespace GameObjects
11 {
12  std::vector<Interactable::GameObject> GetAllWithin(std::int32_t Distance);
13 
14  std::vector<Interactable::GameObject> GetAll();
15  std::vector<Interactable::GameObject> GetAll(const Tile& T);
16  std::vector<Interactable::GameObject> GetAll(std::int32_t ID, std::int32_t Distance = -1);
17  std::vector<Interactable::GameObject> GetAll(const std::string& Name, std::int32_t Distance = -1);
18  std::vector<Interactable::GameObject> GetAll(const std::vector<std::int32_t>& IDs, std::int32_t Distance = -1);
19  std::vector<Interactable::GameObject> GetAll(const std::vector<std::string>& Names, std::int32_t Distance = -1);
20  std::vector<Interactable::GameObject> GetAll(const std::function<bool (const Interactable::GameObject&)>& Filter, std::int32_t Distance = -1);
21 
23  Interactable::GameObject Get(std::int32_t ID, std::int32_t Distance = -1);
24  Interactable::GameObject Get(const std::string& Name, std::int32_t Distance = -1);
25  Interactable::GameObject Get(const std::vector<std::int32_t>& IDs, std::int32_t Distance = -1);
26  Interactable::GameObject Get(const std::vector<std::string>& Names, std::int32_t Distance = -1);
27  Interactable::GameObject Get(const std::function<bool (const Interactable::GameObject&)>& Filter, std::int32_t Distance = -1);
28 }
29 
30 #endif // GAMEOBJECTS_HPP_INCLUDED
Definition: Tile.hpp:8
std::vector< Interactable::GameObject > GetAll()
std::vector< Interactable::GameObject > GetAllWithin(std::int32_t Distance)
Interactable::GameObject Get(const Tile &T)