Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/noise/noise_texture_2d.h
10278 views
1
/**************************************************************************/
2
/* noise_texture_2d.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "noise.h"
34
35
#include "core/object/ref_counted.h"
36
#include "scene/resources/texture.h"
37
38
class NoiseTexture2D : public Texture2D {
39
GDCLASS(NoiseTexture2D, Texture2D);
40
41
private:
42
Ref<Image> image;
43
44
Thread noise_thread;
45
46
bool first_time = true;
47
bool update_queued = false;
48
bool regen_queued = false;
49
50
mutable RID texture;
51
uint32_t flags = 0;
52
53
Size2i size = Size2i(512, 512);
54
bool invert = false;
55
bool in_3d_space = false;
56
bool generate_mipmaps = true;
57
bool seamless = false;
58
real_t seamless_blend_skirt = 0.1;
59
bool as_normal_map = false;
60
float bump_strength = 8.0;
61
bool normalize = true;
62
63
Ref<Gradient> color_ramp;
64
Ref<Noise> noise;
65
66
void _thread_done(const Ref<Image> &p_image);
67
static void _thread_function(void *p_ud);
68
69
void _queue_update();
70
Ref<Image> _generate_texture();
71
void _update_texture();
72
void _set_texture_image(const Ref<Image> &p_image);
73
74
Ref<Image> _modulate_with_gradient(Ref<Image> p_image, Ref<Gradient> p_gradient);
75
76
protected:
77
static void _bind_methods();
78
void _validate_property(PropertyInfo &p_property) const;
79
80
public:
81
void set_noise(Ref<Noise> p_noise);
82
Ref<Noise> get_noise();
83
84
void set_width(int p_width);
85
void set_height(int p_height);
86
87
void set_invert(bool p_invert);
88
bool get_invert() const;
89
90
void set_in_3d_space(bool p_enable);
91
bool is_in_3d_space() const;
92
93
void set_generate_mipmaps(bool p_enable);
94
bool is_generating_mipmaps() const;
95
96
void set_seamless(bool p_seamless);
97
bool get_seamless();
98
99
void set_seamless_blend_skirt(real_t p_blend_skirt);
100
real_t get_seamless_blend_skirt();
101
102
void set_as_normal_map(bool p_as_normal_map);
103
bool is_normal_map();
104
105
void set_bump_strength(float p_bump_strength);
106
float get_bump_strength();
107
108
void set_normalize(bool p_normalize);
109
bool is_normalized() const;
110
111
void set_color_ramp(const Ref<Gradient> &p_gradient);
112
Ref<Gradient> get_color_ramp() const;
113
114
int get_width() const override;
115
int get_height() const override;
116
117
virtual RID get_rid() const override;
118
virtual bool has_alpha() const override { return false; }
119
120
virtual Ref<Image> get_image() const override;
121
122
NoiseTexture2D();
123
virtual ~NoiseTexture2D();
124
};
125
126