summaryrefslogtreecommitdiffstats
path: root/src/WorldStorage/StatSerializer.cpp
blob: 11b5ffbf9f28ae57ce5c50785094e31bc0b2727f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229

// StatSerializer.cpp


#include "Globals.h"
#include "../Statistics.h"
#include "StatSerializer.h"
#include "NamespaceSerializer.h"

#include <json/json.h>





namespace StatSerializer
{
	static auto MakeStatisticsDirectory(const std::string & WorldPath, std::string && FileName)
	{
		// Even though stats are shared between worlds, they are (usually) saved
		// inside the folder of the default world.

		// Path to the world's statistics folder.
		const auto Path = WorldPath + cFile::GetPathSeparator() + "stats";

		// Ensure that the directory exists.
		cFile::CreateFolder(Path);

		return Path + cFile::GetPathSeparator() + std::move(FileName) + ".json";
	}





	static void SaveStatToJSON(const cStatManager & Manager, Json::Value & a_Out)
	{
		Manager.ForEachStatisticType([&a_Out](const cStatManager::CustomStore & Store)
		{
			if (Store.empty())
			{
				// Avoid saving "custom": null to disk:
				return;
			}

			auto & Custom = a_Out["custom"];
			for (const auto & Item : Store)
			{
				Custom[NamespaceSerializer::From(Item.first)] = Item.second;
			}
		});
	}





	static void LoadLegacyFromJSON(cStatManager & Manager, const Json::Value & In)
	{
		// Upgrade mapping from pre-1.13 names. TODO: remove on 2020-09-18
		static const std::unordered_map<std::string_view, Statistic> LegacyMapping
		{
			{ "achievement.openInventory", Statistic::AchOpenInventory },
			{ "achievement.mineWood", Statistic::AchMineWood },
			{ "achievement.buildWorkBench", Statistic::AchBuildWorkBench },
			{ "achievement.buildPickaxe", Statistic::AchBuildPickaxe },
			{ "achievement.buildFurnace", Statistic::AchBuildFurnace },
			{ "achievement.acquireIron", Statistic::AchAcquireIron },
			{ "achievement.buildHoe", Statistic::AchBuildHoe },
			{ "achievement.makeBread", Statistic::AchMakeBread },
			{ "achievement.bakeCake", Statistic::AchBakeCake },
			{ "achievement.buildBetterPickaxe", Statistic::AchBuildBetterPickaxe },
			{ "achievement.cookFish", Statistic::AchCookFish },
			{ "achievement.onARail", Statistic::AchOnARail },
			{ "achievement.buildSword", Statistic::AchBuildSword },
			{ "achievement.killEnemy", Statistic::AchKillEnemy },
			{ "achievement.killCow", Statistic::AchKillCow },
			{ "achievement.flyPig", Statistic::AchFlyPig },
			{ "achievement.snipeSkeleton", Statistic::AchSnipeSkeleton },
			{ "achievement.diamonds", Statistic::AchDiamonds },
			{ "achievement.portal", Statistic::AchPortal },
			{ "achievement.ghast", Statistic::AchGhast },
			{ "achievement.blazeRod", Statistic::AchBlazeRod },
			{ "achievement.potion", Statistic::AchPotion },
			{ "achievement.theEnd", Statistic::AchTheEnd },
			{ "achievement.theEnd2", Statistic::AchTheEnd2 },
			{ "achievement.enchantments", Statistic::AchEnchantments },
			{ "achievement.overkill", Statistic::AchOverkill },
			{ "achievement.bookcase", Statistic::AchBookcase },
			{ "achievement.exploreAllBiomes", Statistic::AchExploreAllBiomes },
			{ "achievement.spawnWither", Statistic::AchSpawnWither },
			{ "achievement.killWither", Statistic::AchKillWither },
			{ "achievement.fullBeacon", Statistic::AchFullBeacon },
			{ "achievement.breedCow", Statistic::AchBreedCow },
			{ "achievement.diamondsToYou", Statistic::AchDiamondsToYou },
			{ "stat.animalsBred", Statistic::AnimalsBred },
			{ "stat.boatOneCm", Statistic::BoatOneCm },
			{ "stat.climbOneCm", Statistic::ClimbOneCm },
			{ "stat.crouchOneCm", Statistic::CrouchOneCm },
			{ "stat.damageDealt", Statistic::DamageDealt },
			{ "stat.damageTaken", Statistic::DamageTaken },
			{ "stat.deaths", Statistic::Deaths },
			{ "stat.drop", Statistic::Drop },
			{ "stat.fallOneCm", Statistic::FallOneCm },
			{ "stat.fishCaught", Statistic::FishCaught },
			{ "stat.flyOneCm", Statistic::FlyOneCm },
			{ "stat.horseOneCm", Statistic::HorseOneCm },
			{ "stat.jump", Statistic::Jump },
			{ "stat.leaveGame", Statistic::LeaveGame },
			{ "stat.minecartOneCm", Statistic::MinecartOneCm },
			{ "stat.mobKills", Statistic::MobKills },
			{ "stat.pigOneCm", Statistic::PigOneCm },
			{ "stat.playerKills", Statistic::PlayerKills },
			{ "stat.playOneMinute", Statistic::PlayOneMinute },
			{ "stat.sprintOneCm", Statistic::SprintOneCm },
			{ "stat.swimOneCm", Statistic::SwimOneCm },
			{ "stat.talkedToVillager", Statistic::TalkedToVillager },
			{ "stat.timeSinceDeath", Statistic::TimeSinceDeath },
			{ "stat.tradedWithVillager", Statistic::TradedWithVillager },
			{ "stat.walkOneCm", Statistic::WalkOneCm },
			{ "stat.diveOneCm", Statistic::WalkUnderWaterOneCm },
			{ "stat.armorCleaned", Statistic::CleanArmor },
			{ "stat.bannerCleaned", Statistic::CleanBanner },
			{ "stat.cakeSlicesEaten", Statistic::EatCakeSlice },
			{ "stat.itemEnchanted", Statistic::EnchantItem },
			{ "stat.cauldronFilled", Statistic::FillCauldron },
			{ "stat.dispenserInspected", Statistic::InspectDispenser },
			{ "stat.dropperInspected", Statistic::InspectDropper },
			{ "stat.hopperInspected", Statistic::InspectHopper },
			{ "stat.beaconInteraction", Statistic::InteractWithBeacon },
			{ "stat.brewingstandInteraction", Statistic::InteractWithBrewingstand },
			{ "stat.craftingTableInteraction", Statistic::InteractWithCraftingTable },
			{ "stat.furnaceInteraction", Statistic::InteractWithFurnace },
			{ "stat.chestOpened", Statistic::OpenChest },
			{ "stat.enderchestOpened", Statistic::OpenEnderchest },
			{ "stat.noteblockPlayed", Statistic::PlayNoteblock },
			{ "stat.recordPlayed", Statistic::PlayRecord },
			{ "stat.flowerPotted", Statistic::PotFlower },
			{ "stat.trappedChestTriggered", Statistic::TriggerTrappedChest },
			{ "stat.noteblockTuned", Statistic::TuneNoteblock },
			{ "stat.cauldronUsed", Statistic::UseCauldron },
			{ "stat.aviateOneCm", Statistic::AviateOneCm },
			{ "stat.sleepInBed", Statistic::SleepInBed },
			{ "stat.sneakTime", Statistic::SneakTime }
		};

		for (auto Entry = In.begin(); Entry != In.end(); ++Entry)
		{
			const auto & Key = Entry.key().asString();
			const auto FindResult = LegacyMapping.find(Key);

			if ((FindResult != LegacyMapping.end()) && Entry->isInt())
			{
				auto Value = Entry->asInt();
				if (Value < 0)
				{
					FLOGWARNING("Invalid stat value: {0} = {1}", Key, Value);
					continue;
				}
				Manager.SetValue(FindResult->second, ToUnsigned(Value));
			}
		}
	}





	static void LoadCustomStatFromJSON(cStatManager & Manager, const Json::Value & a_In)
	{
		for (auto it = a_In.begin(); it != a_In.end(); ++it)
		{
			const auto & Key = it.key().asString();
			const auto StatInfo = NamespaceSerializer::SplitNamespacedID(Key);
			if (StatInfo.first == NamespaceSerializer::Namespace::Unknown)
			{
				// Ignore non-Vanilla, non-Cuberite namespaces for now:
				continue;
			}

			const auto & StatName = StatInfo.second;
			try
			{
				auto Value = it->asInt();
				if (Value < 0)
				{
					FLOGWARNING("Invalid statistic value: {0} = {1}", Key, Value);
					continue;
				}
				Manager.SetValue(NamespaceSerializer::ToCustomStatistic(StatName), ToUnsigned(Value));
			}
			catch (const std::out_of_range &)
			{
				FLOGWARNING("Invalid statistic type \"{}\"", StatName);
			}
			catch (const Json::LogicError &)
			{
				FLOGWARNING("Invalid statistic value for type \"{}\"", StatName);
			}
		}
	}





	void Load(cStatManager & Manager, const std::string & WorldPath, std::string && FileName)
	{
		Json::Value Root;
		InputFileStream(MakeStatisticsDirectory(WorldPath, std::move(FileName))) >> Root;

		LoadLegacyFromJSON(Manager, Root);
		LoadCustomStatFromJSON(Manager, Root["stats"]["custom"]);
	}





	void Save(const cStatManager & Manager, const std::string & WorldPath, std::string && FileName)
	{
		Json::Value Root;

		SaveStatToJSON(Manager, Root["stats"]);
		Root["DataVersion"] = NamespaceSerializer::DataVersion();

		OutputFileStream(MakeStatisticsDirectory(WorldPath, std::move(FileName))) << Root;
	}
}