summaryrefslogtreecommitdiffhomepage
path: root/loader/ground-cell.cpp
blob: f8373d76ba7d2fd619eb1451539472605aabab90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ground-cell.hpp"
#include "compat/vector-wrapper.hpp"
#include "loader/loader.hpp"
#include "serialize/json-helper.hpp"
//#include "serialize/corrade-string.hpp"
#include "serialize/ground-atlas.hpp"

namespace floormat {

vector_wrapper<const ground_cell> ground_cell::load_atlases_from_json()
{
    char buf[fm_FILENAME_MAX];
    auto s = loader.make_atlas_path(buf, loader.GROUND_TILESET_PATH, "ground.json"_s);
    return {json_helper::from_json<std::vector<ground_cell>>(s)};
}

} // namespace floormat