AlpacaLibrary/Include/Game/Interactable/DecorativeObject.hpp

48 lines
1.6 KiB
C++

#ifndef INTERACTABLEDECORATIVEOBJECT_HPP_INCLUDED
#define INTERACTABLEDECORATIVEOBJECT_HPP_INCLUDED
#include "../../Core/Classes/DecorativeObject.hpp"
#include "../../Core/Classes/ObjectInfo.hpp"
#include "../../Core/Types/Tile.hpp"
#include "../../Core/Types/Point.hpp"
#include "../../Core/Types/Box.hpp"
#include "../../Core/Types/Convex.hpp"
#include "../../Core/Input.hpp"
#include "../../Game/Tools/Camera.hpp"
#include <cstdint>
namespace Interactable
{
class DecorativeObject : public Internal::DecorativeObject
{
public:
DecorativeObject(const Internal::DecorativeObject& D);
DecorativeObject(const DecorativeObject& D);
std::int32_t GetID() const;
std::string GetName() const;
Internal::ObjectInfo GetInfo() const;
std::vector<Point> GetModel() const;
Convex GetConvex() const;
Box GetBox() const;
Point GetPoint() const;
Point GetPoint(double PointGenAccuracy) const;
double GetVisibility() const;
Tile GetTile() const;
bool RotateTo(std::int32_t Angle = 0) const;
bool RotateTo(Camera::COMPASS_DIRECTION Direction) const;
bool Hover() const;
bool Interact(const Button& B = BUTTON_LEFT) const;
bool Interact(const std::string& Option, bool CheckTarget = true) const;
bool Interact(const std::vector<std::string>& Options, bool CheckTarget = true) const;
operator Internal::DecorativeObject() const;
};
}
#endif // INTERACTABLEDECORATIVEOBJECT_HPP_INCLUDED