3 Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@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.
22 #include "constants.h"
24 #include "main.h" // For g_profiler and g_settings
29 scene::ISceneNode* parent,
30 scene::ISceneManager* mgr,
35 scene::ISceneNode(parent, mgr, id),
40 m_material.setFlag(video::EMF_LIGHTING, false);
41 //m_material.setFlag(video::EMF_BACK_FACE_CULLING, false);
42 m_material.setFlag(video::EMF_BACK_FACE_CULLING, true);
43 m_material.setFlag(video::EMF_BILINEAR_FILTER, false);
44 m_material.setFlag(video::EMF_FOG_ENABLE, true);
45 m_material.setFlag(video::EMF_ANTI_ALIASING, true);
46 //m_material.MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
47 m_material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
49 m_cloud_y = BS * (cloudheight ? cloudheight :
50 g_settings->getS16("cloud_height"));
52 m_box = core::aabbox3d<f32>(-BS*1000000,m_cloud_y-BS,-BS*1000000,
53 BS*1000000,m_cloud_y+BS,BS*1000000);
61 void Clouds::OnRegisterSceneNode()
65 SceneManager->registerNodeForRendering(this, scene::ESNRP_TRANSPARENT);
66 //SceneManager->registerNodeForRendering(this, scene::ESNRP_SOLID);
69 ISceneNode::OnRegisterSceneNode();
72 #define MYROUND(x) (x > 0.0 ? (int)x : (int)x - 1)
76 video::IVideoDriver* driver = SceneManager->getVideoDriver();
78 if(SceneManager->getSceneNodeRenderPass() != scene::ESNRP_TRANSPARENT)
79 //if(SceneManager->getSceneNodeRenderPass() != scene::ESNRP_SOLID)
82 ScopeProfiler sp(g_profiler, "Rendering of clouds, avg", SPT_AVG);
84 bool enable_3d = g_settings->getBool("enable_3d_clouds");
85 int num_faces_to_draw = enable_3d ? 6 : 1;
87 m_material.setFlag(video::EMF_BACK_FACE_CULLING, enable_3d);
89 driver->setTransform(video::ETS_WORLD, AbsoluteTransformation);
90 driver->setMaterial(m_material);
93 Clouds move from X+ towards X-
96 const s16 cloud_radius_i = 12;
97 const float cloud_size = BS*64;
98 const v2f cloud_speed(0, -BS*2);
100 const float cloud_full_radius = cloud_size * cloud_radius_i;
102 // Position of cloud noise origin in world coordinates
103 v2f world_cloud_origin_pos_f = m_time*cloud_speed;
104 // Position of cloud noise origin from the camera
105 v2f cloud_origin_from_camera_f = world_cloud_origin_pos_f - m_camera_pos;
106 // The center point of drawing in the noise
107 v2f center_of_drawing_in_noise_f = -cloud_origin_from_camera_f;
108 // The integer center point of drawing in the noise
109 v2s16 center_of_drawing_in_noise_i(
110 MYROUND(center_of_drawing_in_noise_f.X / cloud_size),
111 MYROUND(center_of_drawing_in_noise_f.Y / cloud_size)
113 // The world position of the integer center point of drawing in the noise
114 v2f world_center_of_drawing_in_noise_f = v2f(
115 center_of_drawing_in_noise_i.X * cloud_size,
116 center_of_drawing_in_noise_i.Y * cloud_size
117 ) + world_cloud_origin_pos_f;
119 /*video::SColor c_top(128,b*240,b*240,b*255);
120 video::SColor c_side_1(128,b*230,b*230,b*255);
121 video::SColor c_side_2(128,b*220,b*220,b*245);
122 video::SColor c_bottom(128,b*205,b*205,b*230);*/
123 video::SColorf c_top_f(m_color);
124 video::SColorf c_side_1_f(m_color);
125 video::SColorf c_side_2_f(m_color);
126 video::SColorf c_bottom_f(m_color);
127 c_side_1_f.r *= 0.95;
128 c_side_1_f.g *= 0.95;
129 c_side_1_f.b *= 0.95;
130 c_side_2_f.r *= 0.90;
131 c_side_2_f.g *= 0.90;
132 c_side_2_f.b *= 0.90;
133 c_bottom_f.r *= 0.80;
134 c_bottom_f.g *= 0.80;
135 c_bottom_f.b *= 0.80;
140 video::SColor c_top = c_top_f.toSColor();
141 video::SColor c_side_1 = c_side_1_f.toSColor();
142 video::SColor c_side_2 = c_side_2_f.toSColor();
143 video::SColor c_bottom = c_bottom_f.toSColor();
145 // Get fog parameters for setting them back later
146 video::SColor fog_color(0,0,0,0);
147 video::E_FOG_TYPE fog_type = video::EFT_FOG_LINEAR;
151 bool fog_pixelfog = false;
152 bool fog_rangefog = false;
153 driver->getFog(fog_color, fog_type, fog_start, fog_end, fog_density,
154 fog_pixelfog, fog_rangefog);
157 driver->setFog(fog_color, fog_type, cloud_full_radius * 0.5,
158 cloud_full_radius*1.2, fog_density, fog_pixelfog, fog_rangefog);
162 bool *grid = new bool[cloud_radius_i*2*cloud_radius_i*2];
164 for(s16 zi=-cloud_radius_i; zi<cloud_radius_i; zi++)
165 for(s16 xi=-cloud_radius_i; xi<cloud_radius_i; xi++)
167 u32 i = (zi+cloud_radius_i)*cloud_radius_i*2 + xi+cloud_radius_i;
170 xi+center_of_drawing_in_noise_i.X,
171 zi+center_of_drawing_in_noise_i.Y
175 double noise = noise2d_perlin_abs(
176 (float)p_in_noise_i.X*cloud_size/BS/200,
177 (float)p_in_noise_i.Y*cloud_size/BS/200,
179 grid[i] = (noise >= 0.80);
182 double noise = noise2d_perlin(
183 (float)p_in_noise_i.X*cloud_size/BS/200,
184 (float)p_in_noise_i.Y*cloud_size/BS/200,
186 grid[i] = (noise >= 0.4);
190 #define GETINDEX(x, z, radius) (((z)+(radius))*(radius)*2 + (x)+(radius))
191 #define CONTAINS(x, z, radius) \
192 ((x) >= -(radius) && (x) < (radius) && (z) >= -(radius) && (z) < (radius))
194 for(s16 zi0=-cloud_radius_i; zi0<cloud_radius_i; zi0++)
195 for(s16 xi0=-cloud_radius_i; xi0<cloud_radius_i; xi0++)
199 // Draw from front to back (needed for transparency)
201 zi = -cloud_radius_i - zi;
203 xi = -cloud_radius_i - xi;*/
204 // Draw from back to front
206 zi = cloud_radius_i - zi - 1;
208 xi = cloud_radius_i - xi - 1;
210 u32 i = GETINDEX(xi, zi, cloud_radius_i);
215 v2f p0 = v2f(xi,zi)*cloud_size + world_center_of_drawing_in_noise_f;
217 video::S3DVertex v[4] = {
218 video::S3DVertex(0,0,0, 0,0,0, c_top, 0, 1),
219 video::S3DVertex(0,0,0, 0,0,0, c_top, 1, 1),
220 video::S3DVertex(0,0,0, 0,0,0, c_top, 1, 0),
221 video::S3DVertex(0,0,0, 0,0,0, c_top, 0, 0)
224 /*if(zi <= 0 && xi <= 0){
225 v[0].Color.setBlue(255);
226 v[1].Color.setBlue(255);
227 v[2].Color.setBlue(255);
228 v[3].Color.setBlue(255);
231 f32 rx = cloud_size/2;
233 f32 rz = cloud_size/2;
235 for(int i=0; i<num_faces_to_draw; i++)
240 for(int j=0;j<4;j++){
241 v[j].Normal.set(0,1,0);
243 v[0].Pos.set(-rx, ry,-rz);
244 v[1].Pos.set(-rx, ry, rz);
245 v[2].Pos.set( rx, ry, rz);
246 v[3].Pos.set( rx, ry,-rz);
249 if(CONTAINS(xi, zi-1, cloud_radius_i)){
250 u32 j = GETINDEX(xi, zi-1, cloud_radius_i);
254 for(int j=0;j<4;j++){
255 v[j].Color = c_side_1;
256 v[j].Normal.set(0,0,-1);
258 v[0].Pos.set(-rx, ry,-rz);
259 v[1].Pos.set( rx, ry,-rz);
260 v[2].Pos.set( rx,-ry,-rz);
261 v[3].Pos.set(-rx,-ry,-rz);
264 if(CONTAINS(xi+1, zi, cloud_radius_i)){
265 u32 j = GETINDEX(xi+1, zi, cloud_radius_i);
269 for(int j=0;j<4;j++){
270 v[j].Color = c_side_2;
271 v[j].Normal.set(1,0,0);
273 v[0].Pos.set( rx, ry,-rz);
274 v[1].Pos.set( rx, ry, rz);
275 v[2].Pos.set( rx,-ry, rz);
276 v[3].Pos.set( rx,-ry,-rz);
279 if(CONTAINS(xi, zi+1, cloud_radius_i)){
280 u32 j = GETINDEX(xi, zi+1, cloud_radius_i);
284 for(int j=0;j<4;j++){
285 v[j].Color = c_side_1;
286 v[j].Normal.set(0,0,-1);
288 v[0].Pos.set( rx, ry, rz);
289 v[1].Pos.set(-rx, ry, rz);
290 v[2].Pos.set(-rx,-ry, rz);
291 v[3].Pos.set( rx,-ry, rz);
294 if(CONTAINS(xi-1, zi, cloud_radius_i)){
295 u32 j = GETINDEX(xi-1, zi, cloud_radius_i);
299 for(int j=0;j<4;j++){
300 v[j].Color = c_side_2;
301 v[j].Normal.set(-1,0,0);
303 v[0].Pos.set(-rx, ry, rz);
304 v[1].Pos.set(-rx, ry,-rz);
305 v[2].Pos.set(-rx,-ry,-rz);
306 v[3].Pos.set(-rx,-ry, rz);
309 for(int j=0;j<4;j++){
310 v[j].Color = c_bottom;
311 v[j].Normal.set(0,-1,0);
313 v[0].Pos.set( rx,-ry, rz);
314 v[1].Pos.set(-rx,-ry, rz);
315 v[2].Pos.set(-rx,-ry,-rz);
316 v[3].Pos.set( rx,-ry,-rz);
320 v3f pos(p0.X, m_cloud_y, p0.Y);
322 for(u16 i=0; i<4; i++)
324 u16 indices[] = {0,1,2,2,3,0};
325 driver->drawVertexPrimitiveList(v, 4, indices, 2,
326 video::EVT_STANDARD, scene::EPT_TRIANGLES, video::EIT_16BIT);
332 // Restore fog settings
333 driver->setFog(fog_color, fog_type, fog_start, fog_end, fog_density,
334 fog_pixelfog, fog_rangefog);
337 void Clouds::step(float dtime)
342 void Clouds::update(v2f camera_p, video::SColorf color)
344 m_camera_pos = camera_p;
346 //m_brightness = brightness;
347 //dstream<<"m_brightness="<<m_brightness<<std::endl;