]> git.lizzy.rs Git - dragonfireclient.git/blob - src/skyparams.h
Allow resetting celestial vault elements by leaving its arguments empty (#11922)
[dragonfireclient.git] / src / skyparams.h
1 /*
2 Minetest
3 Copyright (C) 2019 Jordach, Jordan Snelling <jordach.snelling@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #pragma once
21
22 struct SkyColor
23 {
24         video::SColor day_sky;
25         video::SColor day_horizon;
26         video::SColor dawn_sky;
27         video::SColor dawn_horizon;
28         video::SColor night_sky;
29         video::SColor night_horizon;
30         video::SColor indoors;
31 };
32
33 struct SkyboxParams
34 {
35         video::SColor bgcolor;
36         std::string type;
37         std::vector<std::string> textures;
38         bool clouds;
39         SkyColor sky_color;
40         video::SColor fog_sun_tint;
41         video::SColor fog_moon_tint;
42         std::string fog_tint_type;
43 };
44
45 struct SunParams
46 {
47         bool visible;
48         std::string texture;
49         std::string tonemap;
50         std::string sunrise;
51         bool sunrise_visible;
52         f32 scale;
53 };
54
55 struct MoonParams
56 {
57         bool visible;
58         std::string texture;
59         std::string tonemap;
60         f32 scale;
61 };
62
63 struct StarParams
64 {
65         bool visible;
66         u32 count;
67         video::SColor starcolor;
68         f32 scale;
69 };
70
71 struct CloudParams
72 {
73         float density;
74         video::SColor color_bright;
75         video::SColor color_ambient;
76         float thickness;
77         float height;
78         v2f speed;
79 };
80
81 // Utility class for setting default sky, sun, moon, stars values:
82 class SkyboxDefaults
83 {
84 public:
85         static const SkyboxParams getSkyDefaults()
86         {
87                 SkyboxParams sky;
88                 sky.bgcolor = video::SColor(255, 255, 255, 255);
89                 sky.type = "regular";
90                 sky.clouds = true;
91                 sky.sky_color = getSkyColorDefaults();
92                 sky.fog_sun_tint = video::SColor(255, 244, 125, 29);
93                 sky.fog_moon_tint = video::SColorf(0.5, 0.6, 0.8, 1).toSColor();
94                 sky.fog_tint_type = "default";
95                 return sky;
96         }
97
98         static const SkyColor getSkyColorDefaults()
99         {
100                 SkyColor sky;
101                 // Horizon colors
102                 sky.day_horizon = video::SColor(255, 144, 211, 246);
103                 sky.indoors = video::SColor(255, 100, 100, 100);
104                 sky.dawn_horizon = video::SColor(255, 186, 193, 240);
105                 sky.night_horizon = video::SColor(255, 64, 144, 255);
106                 // Sky colors
107                 sky.day_sky = video::SColor(255, 97, 181, 245);
108                 sky.dawn_sky = video::SColor(255, 180, 186, 250);
109                 sky.night_sky = video::SColor(255, 0, 107, 255);
110                 return sky;
111         }
112
113         static const SunParams getSunDefaults()
114         {
115                 SunParams sun;
116                 sun.visible = true;
117                 sun.sunrise_visible = true;
118                 sun.texture = "sun.png";
119                 sun.tonemap = "sun_tonemap.png";
120                 sun.sunrise = "sunrisebg.png";
121                 sun.scale = 1;
122                 return sun;
123         }
124
125         static const MoonParams getMoonDefaults()
126         {
127                 MoonParams moon;
128                 moon.visible = true;
129                 moon.texture = "moon.png";
130                 moon.tonemap = "moon_tonemap.png";
131                 moon.scale = 1;
132                 return moon;
133         }
134
135         static const StarParams getStarDefaults()
136         {
137                 StarParams stars;
138                 stars.visible = true;
139                 stars.count = 1000;
140                 stars.starcolor = video::SColor(105, 235, 235, 255);
141                 stars.scale = 1;
142                 return stars;
143         }
144
145         static const CloudParams getCloudDefaults()
146         {
147                 CloudParams clouds;
148                 clouds.density = 0.4f;
149                 clouds.color_bright = video::SColor(229, 240, 240, 255);
150                 clouds.color_ambient = video::SColor(255, 0, 0, 0);
151                 clouds.thickness = 16.0f;
152                 clouds.height = 120;
153                 clouds.speed = v2f(0.0f, -2.0f);
154                 return clouds;
155         }
156 };