aboutsummaryrefslogtreecommitdiff
path: root/TileColorFactory.h
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-18 15:48:14 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-18 15:48:14 +0200
commitd8289105193707daede1a5b59137f18e20f20aeb (patch)
tree939908b9c4c6f7aaef8aa61ee2e04be3e85610b6 /TileColorFactory.h
parent76e61d68bbf568ec0d7fc4632e52d4de5496b003 (diff)
(2/2) rename
Diffstat (limited to 'TileColorFactory.h')
-rw-r--r--TileColorFactory.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/TileColorFactory.h b/TileColorFactory.h
new file mode 100644
index 0000000..83dfeed
--- /dev/null
+++ b/TileColorFactory.h
@@ -0,0 +1,27 @@
+#pragma once
+
+#include <map>
+#include <string>
+
+#include "Color.h"
+
+class TileColorFactory {
+ typedef std::map<std::string, Color> TileAppearanceCollection;
+
+public:
+ static Color get_color(std::string);
+ static void register_color(std::string, Color);
+
+private:
+ static TileAppearanceCollection & get_collection() {
+ static TileAppearanceCollection c = {};
+ return c;
+ }
+
+ static constexpr Color default_color = {
+ .red = 0xff,
+ .green = 0xff,
+ .blue = 0xff,
+ };
+};
+