blob: 382943902b576ea3e01ccab763252364b37f5de1 (
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
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
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#pragma once
#include <ctime>
#include <map>
#include <string>
#include <vector>
#include <stdint.h>
static const std::string XBTF_MAGIC = "XBTF";
static const std::string XBTF_VERSION = "2";
#include "TextureFormats.h"
class CXBTFFrame
{
public:
CXBTFFrame();
uint32_t GetWidth() const;
void SetWidth(uint32_t width);
uint32_t GetFormat(bool raw = false) const;
void SetFormat(uint32_t format);
uint32_t GetHeight() const;
void SetHeight(uint32_t height);
uint64_t GetUnpackedSize() const;
void SetUnpackedSize(uint64_t size);
uint64_t GetPackedSize() const;
void SetPackedSize(uint64_t size);
uint64_t GetOffset() const;
void SetOffset(uint64_t offset);
uint64_t GetHeaderSize() const;
uint32_t GetDuration() const;
void SetDuration(uint32_t duration);
bool IsPacked() const;
bool HasAlpha() const;
private:
uint32_t m_width;
uint32_t m_height;
uint32_t m_format;
uint64_t m_packedSize;
uint64_t m_unpackedSize;
uint64_t m_offset;
uint32_t m_duration;
};
class CXBTFFile
{
public:
CXBTFFile();
const std::string& GetPath() const;
void SetPath(const std::string& path);
uint32_t GetLoop() const;
void SetLoop(uint32_t loop);
const std::vector<CXBTFFrame>& GetFrames() const;
std::vector<CXBTFFrame>& GetFrames();
uint64_t GetPackedSize() const;
uint64_t GetUnpackedSize() const;
uint64_t GetHeaderSize() const;
static const size_t MaximumPathLength = 256;
private:
std::string m_path;
uint32_t m_loop = 0;
std::vector<CXBTFFrame> m_frames;
};
class CXBTFBase
{
public:
virtual ~CXBTFBase() = default;
uint64_t GetHeaderSize() const;
bool Exists(const std::string& name) const;
bool Get(const std::string& name, CXBTFFile& file) const;
std::vector<CXBTFFile> GetFiles() const;
void AddFile(const CXBTFFile& file);
void UpdateFile(const CXBTFFile& file);
protected:
CXBTFBase() = default;
std::map<std::string, CXBTFFile> m_files;
};
|