blob: 83ffa06193a543f9706212315201cd8608e53ffc (
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
|
/*
* Copyright (C) 2005-2009 Team XBMC
* http://www.xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
* http://www.gnu.org/copyleft/gpl.html
*
*/
#ifndef XBTF_H_
#define XBTF_H_
#include <string>
#include <vector>
#include <stdint.h>
#define XBTF_MAGIC "XBTF"
#define XBTF_VERSION "2"
#define XB_FMT_DXT_MASK 15
#define XB_FMT_UNKNOWN 0
#define XB_FMT_DXT1 1
#define XB_FMT_DXT3 2
#define XB_FMT_DXT5 4
#define XB_FMT_DXT5_YCoCg 8
#define XB_FMT_A8R8G8B8 16
#define XB_FMT_A8 32
class CXBTFFrame
{
public:
CXBTFFrame();
uint32_t GetWidth() const;
void SetWidth(uint32_t width);
uint32_t GetFormat() 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;
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();
CXBTFFile(const CXBTFFile& ref);
char* GetPath();
void SetPath(const std::string& path);
uint32_t GetLoop() const;
void SetLoop(uint32_t loop);
std::vector<CXBTFFrame>& GetFrames();
uint64_t GetHeaderSize() const;
private:
char m_path[256];
uint32_t m_loop;
std::vector<CXBTFFrame> m_frames;
};
class CXBTF
{
public:
CXBTF();
uint64_t GetHeaderSize() const;
std::vector<CXBTFFile>& GetFiles();
private:
std::vector<CXBTFFile> m_files;
};
#endif
|