From f776df6076725d14679b31168e3ede53c966182e Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Tue, 31 Oct 2017 22:11:18 +0000 Subject: renaming base folder --- yage/base/spritesheet.h | 64 ------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 yage/base/spritesheet.h (limited to 'yage/base/spritesheet.h') diff --git a/yage/base/spritesheet.h b/yage/base/spritesheet.h deleted file mode 100644 index 2ead0ba1..00000000 --- a/yage/base/spritesheet.h +++ /dev/null @@ -1,64 +0,0 @@ -/* ---------------------------------------------------------------------------- - * spritesheet.h - * - * Copyright (c) 2017 Yann Herklotz Grave - * MIT License, see LICENSE file for more details. - * ---------------------------------------------------------------------------- - */ - -/** @file - */ - -#ifndef YAGE_SPRITESHEET_H -#define YAGE_SPRITESHEET_H - -#include "texture.h" - -#include - -#include -#include - -namespace yage -{ - -namespace details -{ - -struct Coordinate { - int x; - int y; - int width; - int height; - - Coordinate() = default; - - Coordinate(int x_i, int y_i, int width_i, int height_i) - : x(x_i), y(y_i), width(width_i), height(height_i) - { - } -}; - -typedef std::map SpriteMap; - -} // namespace details - -class SpriteSheet -{ -public: - SpriteSheet(std::string pngFileName, std::string jsonFileName); - - void sprite(std::string spriteName) const; - std::string fileContent(std::string jsonFileName) const; - -private: - Texture texture_; - details::SpriteMap fileLocations_; - - details::SpriteMap parseJson(int &width, int &height, - std::string jsonContent) const; -}; - -} // namespace yage - -#endif -- cgit