2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* sky.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2019-02-12 17:18:13 +01:00
|
|
|
#ifndef SKY_H
|
|
|
|
#define SKY_H
|
2016-11-19 17:23:37 +01:00
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/thread.h"
|
2020-03-20 01:32:19 +01:00
|
|
|
#include "scene/resources/material.h"
|
2016-11-19 17:23:37 +01:00
|
|
|
#include "scene/resources/texture.h"
|
2019-02-12 17:18:13 +01:00
|
|
|
|
2017-05-25 18:53:59 +02:00
|
|
|
class Sky : public Resource {
|
|
|
|
GDCLASS(Sky, Resource);
|
2016-11-19 17:23:37 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum RadianceSize {
|
2017-07-22 19:07:38 +02:00
|
|
|
RADIANCE_SIZE_32,
|
|
|
|
RADIANCE_SIZE_64,
|
|
|
|
RADIANCE_SIZE_128,
|
2016-11-19 17:23:37 +01:00
|
|
|
RADIANCE_SIZE_256,
|
|
|
|
RADIANCE_SIZE_512,
|
|
|
|
RADIANCE_SIZE_1024,
|
|
|
|
RADIANCE_SIZE_2048,
|
|
|
|
RADIANCE_SIZE_MAX
|
|
|
|
};
|
|
|
|
|
2019-08-26 22:43:58 +02:00
|
|
|
enum ProcessMode {
|
2020-07-11 02:07:30 +02:00
|
|
|
PROCESS_MODE_AUTOMATIC,
|
2019-08-26 22:43:58 +02:00
|
|
|
PROCESS_MODE_QUALITY,
|
2020-07-11 02:07:30 +02:00
|
|
|
PROCESS_MODE_INCREMENTAL,
|
2019-08-26 22:43:58 +02:00
|
|
|
PROCESS_MODE_REALTIME
|
|
|
|
};
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
private:
|
2019-08-26 22:43:58 +02:00
|
|
|
RID sky;
|
2022-02-18 08:13:32 +01:00
|
|
|
ProcessMode mode = PROCESS_MODE_AUTOMATIC;
|
2021-02-09 18:24:36 +01:00
|
|
|
RadianceSize radiance_size = RADIANCE_SIZE_256;
|
2020-03-20 01:32:19 +01:00
|
|
|
Ref<Material> sky_material;
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2016-11-19 17:23:37 +01:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2016-11-19 17:23:37 +01:00
|
|
|
void set_radiance_size(RadianceSize p_size);
|
|
|
|
RadianceSize get_radiance_size() const;
|
2019-08-26 22:43:58 +02:00
|
|
|
|
|
|
|
void set_process_mode(ProcessMode p_mode);
|
|
|
|
ProcessMode get_process_mode() const;
|
|
|
|
|
2020-03-20 01:32:19 +01:00
|
|
|
void set_material(const Ref<Material> &p_material);
|
|
|
|
Ref<Material> get_material() const;
|
|
|
|
|
2020-07-10 12:34:39 +02:00
|
|
|
virtual RID get_rid() const override;
|
2019-08-26 22:43:58 +02:00
|
|
|
|
2017-05-25 18:53:59 +02:00
|
|
|
Sky();
|
2019-08-26 22:43:58 +02:00
|
|
|
~Sky();
|
2016-11-19 17:23:37 +01:00
|
|
|
};
|
|
|
|
|
2017-05-25 18:53:59 +02:00
|
|
|
VARIANT_ENUM_CAST(Sky::RadianceSize)
|
2019-08-26 22:43:58 +02:00
|
|
|
VARIANT_ENUM_CAST(Sky::ProcessMode)
|
2016-11-19 17:23:37 +01:00
|
|
|
|
2019-02-12 17:18:13 +01:00
|
|
|
#endif // SKY_H
|