3 Copyright (C) 2019 Jordach, Jordan Snelling <jordach.snelling@gmail.com>
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.
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.
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.
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;
35 video::SColor bgcolor;
37 std::vector<std::string> textures;
40 video::SColor fog_sun_tint;
41 video::SColor fog_moon_tint;
42 std::string fog_tint_type;
67 video::SColor starcolor;
71 // Utility class for setting default sky, sun, moon, stars values:
75 const SkyColor getSkyColorDefaults()
79 sky.day_horizon = video::SColor(255, 155, 193, 240);
80 sky.indoors = video::SColor(255, 100, 100, 100);
81 sky.dawn_horizon = video::SColor(255, 186, 193, 240);
82 sky.night_horizon = video::SColor(255, 64, 144, 255);
84 sky.day_sky = video::SColor(255, 140, 186, 250);
85 sky.dawn_sky = video::SColor(255, 180, 186, 250);
86 sky.night_sky = video::SColor(255, 0, 107, 255);
90 const SunParams getSunDefaults()
94 sun.sunrise_visible = true;
95 sun.texture = "sun.png";
96 sun.tonemap = "sun_tonemap.png";
97 sun.sunrise = "sunrisebg.png";
102 const MoonParams getMoonDefaults()
106 moon.texture = "moon.png";
107 moon.tonemap = "moon_tonemap.png";
112 const StarParams getStarDefaults()
115 stars.visible = true;
117 stars.starcolor = video::SColor(105, 235, 235, 255);