lua api: add register_on_item_activate
[waspsaliva.git] / src / client / clouds.h
bloba4d810faad3e1b6803860b2d8485c7ebeae4a5b5
1 /*
2 Minetest
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.
20 #pragma once
22 #include "irrlichttypes_extrabloated.h"
23 #include <iostream>
24 #include "constants.h"
25 #include "cloudparams.h"
27 // Menu clouds
28 class Clouds;
29 extern Clouds *g_menuclouds;
31 // Scene manager used for menu clouds
32 namespace irr{namespace scene{class ISceneManager;}}
33 extern irr::scene::ISceneManager *g_menucloudsmgr;
35 class Clouds : public scene::ISceneNode
37 public:
38 Clouds(scene::ISceneManager* mgr,
39 s32 id,
40 u32 seed
43 ~Clouds();
46 ISceneNode methods
49 virtual void OnRegisterSceneNode();
51 virtual void render();
53 virtual const aabb3f &getBoundingBox() const
55 return m_box;
58 virtual u32 getMaterialCount() const
60 return 1;
63 virtual video::SMaterial& getMaterial(u32 i)
65 return m_material;
69 Other stuff
72 void step(float dtime);
74 void update(const v3f &camera_p, const video::SColorf &color);
76 void updateCameraOffset(const v3s16 &camera_offset)
78 m_camera_offset = camera_offset;
79 updateBox();
82 void readSettings();
84 void setDensity(float density)
86 m_params.density = density;
87 // currently does not need bounding
90 void setColorBright(const video::SColor &color_bright)
92 m_params.color_bright = color_bright;
95 void setColorAmbient(const video::SColor &color_ambient)
97 m_params.color_ambient = color_ambient;
100 void setHeight(float height)
102 m_params.height = height; // add bounding when necessary
103 updateBox();
106 void setSpeed(v2f speed)
108 m_params.speed = speed;
111 void setThickness(float thickness)
113 m_params.thickness = thickness;
114 updateBox();
117 bool isCameraInsideCloud() const { return m_camera_inside_cloud; }
119 const video::SColor getColor() const { return m_color.toSColor(); }
121 private:
122 void updateBox()
124 float height_bs = m_params.height * BS;
125 float thickness_bs = m_params.thickness * BS;
126 m_box = aabb3f(-BS * 1000000.0f, height_bs - BS * m_camera_offset.Y, -BS * 1000000.0f,
127 BS * 1000000.0f, height_bs + thickness_bs - BS * m_camera_offset.Y, BS * 1000000.0f);
130 bool gridFilled(int x, int y) const;
132 video::SMaterial m_material;
133 aabb3f m_box;
134 u16 m_cloud_radius_i;
135 bool m_enable_3d;
136 u32 m_seed;
137 v3f m_camera_pos;
138 v2f m_origin;
139 v3s16 m_camera_offset;
140 video::SColorf m_color = video::SColorf(1.0f, 1.0f, 1.0f, 1.0f);
141 CloudParams m_params;
142 bool m_camera_inside_cloud = false;