-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtexture_text_buffer_source.h
100 lines (86 loc) · 3.42 KB
/
texture_text_buffer_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
// 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/text_buffer.h"
#include "graphics/texture_source.h"
namespace gfx
{
// Rasterize text buffer and provide as a texture source.
class TextureTextBufferSource : public TextureSource
{
public:
TextureTextBufferSource()
: mId(base::RandomString(10))
{}
explicit TextureTextBufferSource(const TextBuffer& text, std::string id = base::RandomString(10))
: mId(std::move(id))
, mTextBuffer(text)
{}
explicit TextureTextBufferSource(TextBuffer&& text, std::string id = base::RandomString(10)) noexcept
: mId(std::move(id))
, mTextBuffer(std::move(text))
{}
base::bitflag<Effect> GetEffects() const override
{return mEffects; }
Source GetSourceType() const override
{ return Source::TextBuffer; }
std::string GetId() const override
{ return mId; }
std::string GetGpuId() 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); }
std::shared_ptr<IBitmap> GetData() const override;
std::size_t GetHash() 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;
gfx::TextBuffer& GetTextBuffer()
{ return mTextBuffer; }
const gfx::TextBuffer& GetTextBuffer() const
{ return mTextBuffer; }
void SetTextBuffer(const TextBuffer& text)
{ mTextBuffer = text; }
void SetTextBuffer(TextBuffer&& text)
{ mTextBuffer = std::move(text); }
protected:
virtual std::unique_ptr<TextureSource> MakeCopy(std::string id) const override
{
auto ret = std::make_unique<TextureTextBufferSource>(*this);
ret->mId = std::move(id);
return ret;
}
private:
std::string mId;
std::string mName;
TextBuffer mTextBuffer;
base::bitflag<Effect> mEffects;
};
inline auto CreateTextureFromText(const TextBuffer& text, std::string id = base::RandomString(10))
{
return std::make_unique<TextureTextBufferSource>(text, std::move(id));
}
inline auto CreateTextureFromText(TextBuffer&& text, std::string id = base::RandomString(10))
{
return std::make_unique<TextureTextBufferSource>(std::move(text), std::move(id));
}
} // namespace