Mercurial > minori
annotate src/core/json.cpp @ 38:1a34fd7469b9
ci/osx: take a different approach
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Fri, 22 Sep 2023 09:29:20 -0400 |
parents | 5c0397762b53 |
children |
rev | line source |
---|---|
9 | 1 #include "core/json.h" |
2 | 2 |
3 namespace JSON { | |
4 | |
7 | 5 std::string GetString(nlohmann::json const& json, nlohmann::json::json_pointer const& ptr, std::string def) { |
6
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
6 if (json.contains(ptr) && json[ptr].is_string()) |
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
7 return json[ptr].get<std::string>(); |
9 | 8 else |
9 return def; | |
2 | 10 } |
11 | |
7 | 12 int GetInt(nlohmann::json const& json, nlohmann::json::json_pointer const& ptr, int def) { |
6
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
13 if (json.contains(ptr) && json[ptr].is_number()) |
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
14 return json[ptr].get<int>(); |
9 | 15 else |
16 return def; | |
2 | 17 } |
18 | |
7 | 19 bool GetBoolean(nlohmann::json const& json, nlohmann::json::json_pointer const& ptr, bool def) { |
6
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
20 if (json.contains(ptr) && json[ptr].is_boolean()) |
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
21 return json[ptr].get<bool>(); |
9 | 22 else |
23 return def; | |
2 | 24 } |
25 | |
7 | 26 double GetDouble(nlohmann::json const& json, nlohmann::json::json_pointer const& ptr, double def) { |
6
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
27 if (json.contains(ptr) && json[ptr].is_number()) |
1d82f6e04d7d
Update: add first parts to the settings dialog
Paper <mrpapersonic@gmail.com>
parents:
2
diff
changeset
|
28 return json[ptr].get<double>(); |
9 | 29 else |
30 return def; | |
2 | 31 } |
32 | |
9 | 33 } // namespace JSON |