godot/scene/resources/sky.h

89 lines
3.3 KiB
C++
Raw Permalink Normal View History

/*************************************************************************/
/* sky.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* 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. */
/*************************************************************************/
#ifndef SKY_H
#define SKY_H
2016-11-19 17:23:37 +01: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"
class Sky : public Resource {
GDCLASS(Sky, Resource);
2016-11-19 17:23:37 +01:00
public:
enum RadianceSize {
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
};
private:
2019-08-26 22:43:58 +02:00
RID sky;
ProcessMode mode = PROCESS_MODE_AUTOMATIC;
RadianceSize radiance_size = RADIANCE_SIZE_256;
2020-03-20 01:32:19 +01:00
Ref<Material> sky_material;
2016-11-19 17:23:37 +01:00
protected:
static void _bind_methods();
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
Sky();
2019-08-26 22:43:58 +02:00
~Sky();
2016-11-19 17:23:37 +01: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
#endif // SKY_H