aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/spritesheet.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-07 13:30:32 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-07 13:30:32 +0100
commit5356fc4701eeccc5f5c85df2890f60f0cdf99a4b (patch)
treed9a565117954d0c6bc74ba358e3540b5a8fbda11 /yage/core/spritesheet.h
parentc981a77fd21c9220587ca3889fb99a05dcc1f6c3 (diff)
downloadYAGE-5356fc4701eeccc5f5c85df2890f60f0cdf99a4b.tar.gz
YAGE-5356fc4701eeccc5f5c85df2890f60f0cdf99a4b.zip
Removing rapidjson dependency
Diffstat (limited to 'yage/core/spritesheet.h')
-rw-r--r--yage/core/spritesheet.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/yage/core/spritesheet.h b/yage/core/spritesheet.h
deleted file mode 100644
index ea1db44b..00000000
--- a/yage/core/spritesheet.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @file: spritesheet.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-/// @file
-
-#ifndef YAGE_SPRITESHEET_H
-#define YAGE_SPRITESHEET_H
-
-/** @todo think of removing this, by, for example, using a pointer
- * This could be more efficient when copying the texture out of the
- * spritesheet.
- */
-#include "../data/texture.h"
-#include "../util/noncopyable.h"
-
-#include <rapidjson/reader.h>
-
-#include <map>
-#include <string>
-
-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<std::string, details::Coordinate> SpriteMap;
-
-} // namespace details
-
-class SpriteSheet : public NonCopyable
-{
-public:
- SpriteSheet() = default;
- 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