blob: caa56a281eea1ff3d083a2d328f917c225371190 (
plain)
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
|
/*
* Copyright 2022 Frederico de Oliveira Linhares
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "sprite_implementation.hpp"
#include <cstring>
#include <fstream>
#include <yaml-cpp/yaml.h>
bool
cg_SpriteArray_constructor(
struct cg_SpriteArray_s *self, const char *file_path)
{
YAML::Node root = YAML::LoadFile(file_path);
self->len = root.size();
self->sprites = new cg_Sprite_s[self->len];
int index = 0;
for(YAML::const_iterator sprite_node = root.begin();
sprite_node != root.end();
sprite_node++)
{
cg_Sprite_s *sprite = &self->sprites[index];
auto node_name = sprite_node->first.as<std::string>();
sprite->name = new char[node_name.size() + 1];
strcpy(sprite->name, node_name.c_str());
sprite->x = sprite_node->second["x"].as<int32_t>();
sprite->y = sprite_node->second["y"].as<int32_t>();
sprite->width = sprite_node->second["width"].as<int32_t>();
sprite->height = sprite_node->second["height"].as<int32_t>();
index++;
}
return true;
}
void
cg_SpriteArray_destructor(struct cg_SpriteArray_s *self)
{
for(auto i = 0; i < self->len; i++) delete[] self->sprites[i].name;
delete[] self->sprites;
}
|