summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-04-26 01:38:12 +0300
committerAndrei Karas <akaras@inbox.ru>2016-04-26 01:38:12 +0300
commit19314ec1a0b4aaaa3d80e0e31167564d26ebbe46 (patch)
treea6675c7663ce1ac5ed12a423e764af7586b7e1db /src
parent706501b18a4ec00c78a9e8f1abd3f8a67cc63224 (diff)
downloadplus-19314ec1a0b4aaaa3d80e0e31167564d26ebbe46.tar.gz
plus-19314ec1a0b4aaaa3d80e0e31167564d26ebbe46.tar.bz2
plus-19314ec1a0b4aaaa3d80e0e31167564d26ebbe46.tar.xz
plus-19314ec1a0b4aaaa3d80e0e31167564d26ebbe46.zip
Add memory count function into Tileset.
Diffstat (limited to 'src')
-rw-r--r--src/resources/map/tileset.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/resources/map/tileset.h b/src/resources/map/tileset.h
index 8308e5585..1c8cccda1 100644
--- a/src/resources/map/tileset.h
+++ b/src/resources/map/tileset.h
@@ -74,6 +74,23 @@ class Tileset final : public ImageSet
return mProperties[name];
}
+ int calcMemoryLocal() override final
+ {
+ int sz = ImageSet::calcMemoryLocal() +
+ sizeof(Tileset);
+ const std::map<std::string, std::string>::const_iterator it_end =
+ mProperties.end();
+ std::map<std::string, std::string>::const_iterator it =
+ mProperties.begin();
+ while (it != it_end)
+ {
+ sz += (*it).first.capacity() +
+ (*it).second.capacity();
+ ++ it;
+ }
+ return sz;
+ }
+
private:
int mFirstGid;