diff options
author | HampusM <hampus@hampusmat.com> | 2022-02-27 17:12:49 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-13 17:56:53 +0200 |
commit | fe79577396231f2edb7927f1f61ce814f03851a7 (patch) | |
tree | d353a1caa449ec772dcf9a8681084fc2d6e64116 /src/interfaces/bounds.hpp | |
parent | 6964d48c970e5f7b11897096c816271785af23ac (diff) |
add basic engine graphics
Diffstat (limited to 'src/interfaces/bounds.hpp')
-rw-r--r-- | src/interfaces/bounds.hpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/interfaces/bounds.hpp b/src/interfaces/bounds.hpp new file mode 100644 index 0000000..9cec97e --- /dev/null +++ b/src/interfaces/bounds.hpp @@ -0,0 +1,41 @@ +#pragma once + +#include "interfaces/vector2.hpp" + +#include <functional> +#include <memory> + +enum CoordsValidation +{ + VALID, + X_HIGH, + Y_HIGH +}; + +class IBounds +{ +public: + [[nodiscard]] virtual unsigned int width() const = 0; + + virtual void width(unsigned int width) = 0; + + [[nodiscard]] virtual unsigned int height() const = 0; + + virtual void height(unsigned int height) = 0; + + [[nodiscard]] virtual CoordsValidation + validate_coords(const IVector2 &coords) const = 0; + + virtual const IBounds &operator*=(const IBounds &bounds) = 0; + virtual const IBounds &operator+=(const IBounds &bounds) = 0; + virtual const IBounds &operator-=(const IBounds &bounds) = 0; +}; + +struct IBoundsOptions +{ + unsigned int width; + unsigned int height; +}; + +using IBoundsFactory = + std::function<std::shared_ptr<IBounds>(const IBoundsOptions &options)>; |