-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtexture_file_source.h
107 lines (96 loc) · 3.65 KB
/
texture_file_source.h
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) 2020-2024 Sami Väisänen
// Copyright (C) 2020-2024 Ensisoft http://www.ensisoft.com
//
// 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 3 of the License, 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 this program. If not, see <https://www.gnu.org/licenses/>.
#pragma once
#include "config.h"
#include "base/hash.h"
#include "graphics/texture_source.h"
namespace gfx
{
// Source texture data from an image file.
class TextureFileSource : public TextureSource
{
public:
enum class Flags {
AllowPacking,
AllowResizing,
PremulAlpha
};
TextureFileSource()
: mId(base::RandomString(10))
{
mFlags.set(Flags::AllowResizing, true);
mFlags.set(Flags::AllowPacking, true);
}
explicit TextureFileSource(std::string file, std::string id = base::RandomString(10))
: mId(std::move(id))
, mFile(std::move(file))
{
mFlags.set(Flags::AllowResizing, true);
mFlags.set(Flags::AllowPacking, true);
}
ColorSpace GetColorSpace() const override
{ return mColorSpace; }
Source GetSourceType() const override
{ return Source::Filesystem; }
base::bitflag<Effect> GetEffects() const override
{ return mEffects; }
std::string GetId() const override
{ return mId; }
std::string GetName() const override
{ return mName; }
void SetName(const std::string& name) override
{ mName = name; }
void SetEffect(Effect effect, bool on_off) override
{ mEffects.set(effect, on_off); }
void SetColorSpace(ColorSpace colorspace) override
{ mColorSpace = colorspace; }
std::string GetGpuId() const override;
std::size_t GetHash() const override;
std::shared_ptr<IBitmap> GetData() const override;
Texture* Upload(const Environment& env, Device& device) const override;
void IntoJson(data::Writer& data) const override;
bool FromJson(const data::Reader& data) override;
void BeginPacking(TexturePacker* packer) const override;
void FinishPacking(const TexturePacker* packer) override;
void SetFileName(const std::string& file)
{ mFile = file; }
const std::string& GetFilename() const
{ return mFile; }
bool TestFlag(Flags flag) const
{ return mFlags.test(flag); }
void SetFlag(Flags flag, bool on_off)
{ mFlags.set(flag, on_off); }
protected:
virtual std::unique_ptr<TextureSource> MakeCopy(std::string id) const override
{
auto ret = std::make_unique<TextureFileSource>(*this);
ret->mId = std::move(id);
return ret;
}
private:
std::string mId;
std::string mFile;
std::string mName;
base::bitflag<Flags> mFlags;
base::bitflag<Effect> mEffects;
ColorSpace mColorSpace = ColorSpace::sRGB;
private:
};
inline auto LoadTextureFromFile(std::string uri, std::string id = base::RandomString(10))
{
return std::make_unique<TextureFileSource>(std::move(uri), std::move(id));
}
} // namespace