2011-04-29 14:34:26 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-04-29 14:34:26 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-04-29 14:34:26 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-04-29 14:34:26 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-04-29 14:34:26 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CLOUDS_HEADER
|
|
|
|
#define CLOUDS_HEADER
|
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2011-04-29 14:34:26 +02:00
|
|
|
#include <iostream>
|
2014-06-09 08:18:27 +02:00
|
|
|
#include "constants.h"
|
2017-03-17 10:39:47 +01:00
|
|
|
#include "cloudparams.h"
|
2011-04-29 14:34:26 +02:00
|
|
|
|
2015-04-01 15:01:28 +02:00
|
|
|
// Menu clouds
|
|
|
|
class Clouds;
|
|
|
|
extern Clouds *g_menuclouds;
|
|
|
|
|
|
|
|
// Scene manager used for menu clouds
|
|
|
|
namespace irr{namespace scene{class ISceneManager;}}
|
|
|
|
extern irr::scene::ISceneManager *g_menucloudsmgr;
|
|
|
|
|
2011-04-29 14:34:26 +02:00
|
|
|
class Clouds : public scene::ISceneNode
|
|
|
|
{
|
|
|
|
public:
|
2017-06-26 20:11:17 +02:00
|
|
|
Clouds(scene::ISceneManager* mgr,
|
2011-04-29 14:34:26 +02:00
|
|
|
s32 id,
|
2013-03-05 23:23:03 +01:00
|
|
|
u32 seed,
|
|
|
|
s16 cloudheight=0
|
2011-04-29 14:34:26 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
~Clouds();
|
|
|
|
|
|
|
|
/*
|
|
|
|
ISceneNode methods
|
|
|
|
*/
|
|
|
|
|
|
|
|
virtual void OnRegisterSceneNode();
|
|
|
|
|
|
|
|
virtual void render();
|
2017-06-16 11:25:52 +02:00
|
|
|
|
2016-02-11 15:21:21 +01:00
|
|
|
virtual const aabb3f &getBoundingBox() const
|
2011-04-29 14:34:26 +02:00
|
|
|
{
|
|
|
|
return m_box;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual u32 getMaterialCount() const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual video::SMaterial& getMaterial(u32 i)
|
|
|
|
{
|
|
|
|
return m_material;
|
|
|
|
}
|
2017-06-16 11:25:52 +02:00
|
|
|
|
2011-04-29 14:34:26 +02:00
|
|
|
/*
|
|
|
|
Other stuff
|
|
|
|
*/
|
|
|
|
|
|
|
|
void step(float dtime);
|
|
|
|
|
2017-05-07 18:41:47 +02:00
|
|
|
void update(const v3f &camera_p, const video::SColorf &color);
|
2017-06-16 11:25:52 +02:00
|
|
|
|
2014-01-26 11:40:21 +01:00
|
|
|
void updateCameraOffset(v3s16 camera_offset)
|
|
|
|
{
|
|
|
|
m_camera_offset = camera_offset;
|
2017-03-17 10:39:47 +01:00
|
|
|
updateBox();
|
2014-01-26 11:40:21 +01:00
|
|
|
}
|
2011-04-29 14:34:26 +02:00
|
|
|
|
2015-07-09 08:07:59 +02:00
|
|
|
void readSettings();
|
|
|
|
|
2017-03-17 10:39:47 +01:00
|
|
|
void setDensity(float density)
|
|
|
|
{
|
|
|
|
m_params.density = density;
|
|
|
|
// currently does not need bounding
|
|
|
|
}
|
|
|
|
|
|
|
|
void setColorBright(const video::SColor &color_bright)
|
|
|
|
{
|
|
|
|
m_params.color_bright = color_bright;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setColorAmbient(const video::SColor &color_ambient)
|
|
|
|
{
|
|
|
|
m_params.color_ambient = color_ambient;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setHeight(float height)
|
|
|
|
{
|
|
|
|
m_params.height = height; // add bounding when necessary
|
|
|
|
updateBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setSpeed(v2f speed)
|
|
|
|
{
|
|
|
|
m_params.speed = speed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setThickness(float thickness)
|
|
|
|
{
|
|
|
|
m_params.thickness = thickness;
|
|
|
|
updateBox();
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:41:47 +02:00
|
|
|
bool isCameraInsideCloud() const { return m_camera_inside_cloud; }
|
|
|
|
|
|
|
|
const video::SColor getColor() const { return m_color.toSColor(); }
|
|
|
|
|
2011-04-29 14:34:26 +02:00
|
|
|
private:
|
2017-03-17 10:39:47 +01:00
|
|
|
void updateBox()
|
|
|
|
{
|
|
|
|
float height_bs = m_params.height * BS;
|
|
|
|
float thickness_bs = m_params.thickness * BS;
|
|
|
|
m_box = aabb3f(-BS * 1000000.0f, height_bs - BS * m_camera_offset.Y, -BS * 1000000.0f,
|
|
|
|
BS * 1000000.0f, height_bs + thickness_bs - BS * m_camera_offset.Y, BS * 1000000.0f);
|
|
|
|
}
|
|
|
|
|
2017-05-07 18:41:47 +02:00
|
|
|
bool gridFilled(int x, int y) const;
|
|
|
|
|
2011-04-29 14:34:26 +02:00
|
|
|
video::SMaterial m_material;
|
2016-02-11 15:21:21 +01:00
|
|
|
aabb3f m_box;
|
2015-07-09 08:07:59 +02:00
|
|
|
s16 m_passed_cloud_y;
|
2015-05-04 19:53:58 +02:00
|
|
|
u16 m_cloud_radius_i;
|
2015-05-04 22:50:04 +02:00
|
|
|
bool m_enable_3d;
|
2011-04-29 14:34:26 +02:00
|
|
|
u32 m_seed;
|
2017-05-07 18:41:47 +02:00
|
|
|
v3f m_camera_pos;
|
2017-03-17 10:39:47 +01:00
|
|
|
v2f m_origin;
|
2014-01-26 11:40:21 +01:00
|
|
|
v3s16 m_camera_offset;
|
2017-06-16 11:25:52 +02:00
|
|
|
video::SColorf m_color = video::SColorf(1.0f, 1.0f, 1.0f, 1.0f);
|
2017-03-17 10:39:47 +01:00
|
|
|
CloudParams m_params;
|
2017-05-07 18:41:47 +02:00
|
|
|
bool m_camera_inside_cloud = false;
|
2017-03-17 10:39:47 +01:00
|
|
|
|
2011-04-29 14:34:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|