Translated using Weblate (Chinese (Simplified))
[oweals/minetest.git] / src / client / wieldmesh.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2014 celeron55, Perttu Ahola <celeron55@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 #include "wieldmesh.h"
21 #include "settings.h"
22 #include "shader.h"
23 #include "inventory.h"
24 #include "client.h"
25 #include "itemdef.h"
26 #include "nodedef.h"
27 #include "mesh.h"
28 #include "content_mapblock.h"
29 #include "mapblock_mesh.h"
30 #include "client/meshgen/collector.h"
31 #include "client/tile.h"
32 #include "log.h"
33 #include "util/numeric.h"
34 #include <map>
35 #include <IMeshManipulator.h>
36
37 #define WIELD_SCALE_FACTOR 30.0
38 #define WIELD_SCALE_FACTOR_EXTRUDED 40.0
39
40 #define MIN_EXTRUSION_MESH_RESOLUTION 16
41 #define MAX_EXTRUSION_MESH_RESOLUTION 512
42
43 static scene::IMesh *createExtrusionMesh(int resolution_x, int resolution_y)
44 {
45         const f32 r = 0.5;
46
47         scene::IMeshBuffer *buf = new scene::SMeshBuffer();
48         video::SColor c(255,255,255,255);
49         v3f scale(1.0, 1.0, 0.1);
50
51         // Front and back
52         {
53                 video::S3DVertex vertices[8] = {
54                         // z-
55                         video::S3DVertex(-r,+r,-r, 0,0,-1, c, 0,0),
56                         video::S3DVertex(+r,+r,-r, 0,0,-1, c, 1,0),
57                         video::S3DVertex(+r,-r,-r, 0,0,-1, c, 1,1),
58                         video::S3DVertex(-r,-r,-r, 0,0,-1, c, 0,1),
59                         // z+
60                         video::S3DVertex(-r,+r,+r, 0,0,+1, c, 0,0),
61                         video::S3DVertex(-r,-r,+r, 0,0,+1, c, 0,1),
62                         video::S3DVertex(+r,-r,+r, 0,0,+1, c, 1,1),
63                         video::S3DVertex(+r,+r,+r, 0,0,+1, c, 1,0),
64                 };
65                 u16 indices[12] = {0,1,2,2,3,0,4,5,6,6,7,4};
66                 buf->append(vertices, 8, indices, 12);
67         }
68
69         f32 pixelsize_x = 1 / (f32) resolution_x;
70         f32 pixelsize_y = 1 / (f32) resolution_y;
71
72         for (int i = 0; i < resolution_x; ++i) {
73                 f32 pixelpos_x = i * pixelsize_x - 0.5;
74                 f32 x0 = pixelpos_x;
75                 f32 x1 = pixelpos_x + pixelsize_x;
76                 f32 tex0 = (i + 0.1) * pixelsize_x;
77                 f32 tex1 = (i + 0.9) * pixelsize_x;
78                 video::S3DVertex vertices[8] = {
79                         // x-
80                         video::S3DVertex(x0,-r,-r, -1,0,0, c, tex0,1),
81                         video::S3DVertex(x0,-r,+r, -1,0,0, c, tex1,1),
82                         video::S3DVertex(x0,+r,+r, -1,0,0, c, tex1,0),
83                         video::S3DVertex(x0,+r,-r, -1,0,0, c, tex0,0),
84                         // x+
85                         video::S3DVertex(x1,-r,-r, +1,0,0, c, tex0,1),
86                         video::S3DVertex(x1,+r,-r, +1,0,0, c, tex0,0),
87                         video::S3DVertex(x1,+r,+r, +1,0,0, c, tex1,0),
88                         video::S3DVertex(x1,-r,+r, +1,0,0, c, tex1,1),
89                 };
90                 u16 indices[12] = {0,1,2,2,3,0,4,5,6,6,7,4};
91                 buf->append(vertices, 8, indices, 12);
92         }
93         for (int i = 0; i < resolution_y; ++i) {
94                 f32 pixelpos_y = i * pixelsize_y - 0.5;
95                 f32 y0 = -pixelpos_y - pixelsize_y;
96                 f32 y1 = -pixelpos_y;
97                 f32 tex0 = (i + 0.1) * pixelsize_y;
98                 f32 tex1 = (i + 0.9) * pixelsize_y;
99                 video::S3DVertex vertices[8] = {
100                         // y-
101                         video::S3DVertex(-r,y0,-r, 0,-1,0, c, 0,tex0),
102                         video::S3DVertex(+r,y0,-r, 0,-1,0, c, 1,tex0),
103                         video::S3DVertex(+r,y0,+r, 0,-1,0, c, 1,tex1),
104                         video::S3DVertex(-r,y0,+r, 0,-1,0, c, 0,tex1),
105                         // y+
106                         video::S3DVertex(-r,y1,-r, 0,+1,0, c, 0,tex0),
107                         video::S3DVertex(-r,y1,+r, 0,+1,0, c, 0,tex1),
108                         video::S3DVertex(+r,y1,+r, 0,+1,0, c, 1,tex1),
109                         video::S3DVertex(+r,y1,-r, 0,+1,0, c, 1,tex0),
110                 };
111                 u16 indices[12] = {0,1,2,2,3,0,4,5,6,6,7,4};
112                 buf->append(vertices, 8, indices, 12);
113         }
114
115         // Create mesh object
116         scene::SMesh *mesh = new scene::SMesh();
117         mesh->addMeshBuffer(buf);
118         buf->drop();
119         scaleMesh(mesh, scale);  // also recalculates bounding box
120         return mesh;
121 }
122
123 /*
124         Caches extrusion meshes so that only one of them per resolution
125         is needed. Also caches one cube (for convenience).
126
127         E.g. there is a single extrusion mesh that is used for all
128         16x16 px images, another for all 256x256 px images, and so on.
129
130         WARNING: Not thread safe. This should not be a problem since
131         rendering related classes (such as WieldMeshSceneNode) will be
132         used from the rendering thread only.
133 */
134 class ExtrusionMeshCache: public IReferenceCounted
135 {
136 public:
137         // Constructor
138         ExtrusionMeshCache()
139         {
140                 for (int resolution = MIN_EXTRUSION_MESH_RESOLUTION;
141                                 resolution <= MAX_EXTRUSION_MESH_RESOLUTION;
142                                 resolution *= 2) {
143                         m_extrusion_meshes[resolution] =
144                                 createExtrusionMesh(resolution, resolution);
145                 }
146                 m_cube = createCubeMesh(v3f(1.0, 1.0, 1.0));
147         }
148         // Destructor
149         virtual ~ExtrusionMeshCache()
150         {
151                 for (auto &extrusion_meshe : m_extrusion_meshes) {
152                         extrusion_meshe.second->drop();
153                 }
154                 m_cube->drop();
155         }
156         // Get closest extrusion mesh for given image dimensions
157         // Caller must drop the returned pointer
158         scene::IMesh* create(core::dimension2d<u32> dim)
159         {
160                 // handle non-power of two textures inefficiently without cache
161                 if (!is_power_of_two(dim.Width) || !is_power_of_two(dim.Height)) {
162                         return createExtrusionMesh(dim.Width, dim.Height);
163                 }
164
165                 int maxdim = MYMAX(dim.Width, dim.Height);
166
167                 std::map<int, scene::IMesh*>::iterator
168                         it = m_extrusion_meshes.lower_bound(maxdim);
169
170                 if (it == m_extrusion_meshes.end()) {
171                         // no viable resolution found; use largest one
172                         it = m_extrusion_meshes.find(MAX_EXTRUSION_MESH_RESOLUTION);
173                         sanity_check(it != m_extrusion_meshes.end());
174                 }
175
176                 scene::IMesh *mesh = it->second;
177                 mesh->grab();
178                 return mesh;
179         }
180         // Returns a 1x1x1 cube mesh with one meshbuffer (material) per face
181         // Caller must drop the returned pointer
182         scene::IMesh* createCube()
183         {
184                 m_cube->grab();
185                 return m_cube;
186         }
187
188 private:
189         std::map<int, scene::IMesh*> m_extrusion_meshes;
190         scene::IMesh *m_cube;
191 };
192
193 ExtrusionMeshCache *g_extrusion_mesh_cache = NULL;
194
195
196 WieldMeshSceneNode::WieldMeshSceneNode(scene::ISceneManager *mgr, s32 id, bool lighting):
197         scene::ISceneNode(mgr->getRootSceneNode(), mgr, id),
198         m_material_type(video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF),
199         m_lighting(lighting)
200 {
201         m_enable_shaders = g_settings->getBool("enable_shaders");
202         m_anisotropic_filter = g_settings->getBool("anisotropic_filter");
203         m_bilinear_filter = g_settings->getBool("bilinear_filter");
204         m_trilinear_filter = g_settings->getBool("trilinear_filter");
205
206         // If this is the first wield mesh scene node, create a cache
207         // for extrusion meshes (and a cube mesh), otherwise reuse it
208         if (!g_extrusion_mesh_cache)
209                 g_extrusion_mesh_cache = new ExtrusionMeshCache();
210         else
211                 g_extrusion_mesh_cache->grab();
212
213         // Disable bounding box culling for this scene node
214         // since we won't calculate the bounding box.
215         setAutomaticCulling(scene::EAC_OFF);
216
217         // Create the child scene node
218         scene::IMesh *dummymesh = g_extrusion_mesh_cache->createCube();
219         m_meshnode = SceneManager->addMeshSceneNode(dummymesh, this, -1);
220         m_meshnode->setReadOnlyMaterials(false);
221         m_meshnode->setVisible(false);
222         dummymesh->drop(); // m_meshnode grabbed it
223 }
224
225 WieldMeshSceneNode::~WieldMeshSceneNode()
226 {
227         sanity_check(g_extrusion_mesh_cache);
228         if (g_extrusion_mesh_cache->drop())
229                 g_extrusion_mesh_cache = nullptr;
230 }
231
232 void WieldMeshSceneNode::setCube(const ContentFeatures &f,
233                         v3f wield_scale)
234 {
235         scene::IMesh *cubemesh = g_extrusion_mesh_cache->createCube();
236         scene::SMesh *copy = cloneMesh(cubemesh);
237         cubemesh->drop();
238         postProcessNodeMesh(copy, f, false, true, &m_material_type, &m_colors, true);
239         changeToMesh(copy);
240         copy->drop();
241         m_meshnode->setScale(wield_scale * WIELD_SCALE_FACTOR);
242 }
243
244 void WieldMeshSceneNode::setExtruded(const std::string &imagename,
245         const std::string &overlay_name, v3f wield_scale, ITextureSource *tsrc,
246         u8 num_frames)
247 {
248         video::ITexture *texture = tsrc->getTexture(imagename);
249         if (!texture) {
250                 changeToMesh(nullptr);
251                 return;
252         }
253         video::ITexture *overlay_texture =
254                 overlay_name.empty() ? NULL : tsrc->getTexture(overlay_name);
255
256         core::dimension2d<u32> dim = texture->getSize();
257         // Detect animation texture and pull off top frame instead of using entire thing
258         if (num_frames > 1) {
259                 u32 frame_height = dim.Height / num_frames;
260                 dim = core::dimension2d<u32>(dim.Width, frame_height);
261         }
262         scene::IMesh *original = g_extrusion_mesh_cache->create(dim);
263         scene::SMesh *mesh = cloneMesh(original);
264         original->drop();
265         //set texture
266         mesh->getMeshBuffer(0)->getMaterial().setTexture(0,
267                 tsrc->getTexture(imagename));
268         if (overlay_texture) {
269                 scene::IMeshBuffer *copy = cloneMeshBuffer(mesh->getMeshBuffer(0));
270                 copy->getMaterial().setTexture(0, overlay_texture);
271                 mesh->addMeshBuffer(copy);
272                 copy->drop();
273         }
274         changeToMesh(mesh);
275         mesh->drop();
276
277         m_meshnode->setScale(wield_scale * WIELD_SCALE_FACTOR_EXTRUDED);
278
279         // Customize materials
280         for (u32 layer = 0; layer < m_meshnode->getMaterialCount(); layer++) {
281                 video::SMaterial &material = m_meshnode->getMaterial(layer);
282                 material.TextureLayer[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE;
283                 material.TextureLayer[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE;
284                 material.MaterialType = m_material_type;
285                 material.MaterialTypeParam = 0.5f;
286                 material.setFlag(video::EMF_BACK_FACE_CULLING, true);
287                 // Enable bi/trilinear filtering only for high resolution textures
288                 if (dim.Width > 32) {
289                         material.setFlag(video::EMF_BILINEAR_FILTER, m_bilinear_filter);
290                         material.setFlag(video::EMF_TRILINEAR_FILTER, m_trilinear_filter);
291                 } else {
292                         material.setFlag(video::EMF_BILINEAR_FILTER, false);
293                         material.setFlag(video::EMF_TRILINEAR_FILTER, false);
294                 }
295                 material.setFlag(video::EMF_ANISOTROPIC_FILTER, m_anisotropic_filter);
296                 // mipmaps cause "thin black line" artifacts
297 #if (IRRLICHT_VERSION_MAJOR >= 1 && IRRLICHT_VERSION_MINOR >= 8) || IRRLICHT_VERSION_MAJOR >= 2
298                 material.setFlag(video::EMF_USE_MIP_MAPS, false);
299 #endif
300                 if (m_enable_shaders) {
301                         material.setTexture(2, tsrc->getShaderFlagsTexture(false));
302                 }
303         }
304 }
305
306 scene::SMesh *createSpecialNodeMesh(Client *client, content_t id, std::vector<ItemPartColor> *colors)
307 {
308         MeshMakeData mesh_make_data(client, false, false);
309         MeshCollector collector;
310         mesh_make_data.setSmoothLighting(false);
311         MapblockMeshGenerator gen(&mesh_make_data, &collector);
312         gen.renderSingle(id);
313         colors->clear();
314         scene::SMesh *mesh = new scene::SMesh();
315         for (auto &prebuffers : collector.prebuffers)
316                 for (PreMeshBuffer &p : prebuffers) {
317                         if (p.layer.material_flags & MATERIAL_FLAG_ANIMATION) {
318                                 const FrameSpec &frame = (*p.layer.frames)[0];
319                                 p.layer.texture = frame.texture;
320                                 p.layer.normal_texture = frame.normal_texture;
321                         }
322                         for (video::S3DVertex &v : p.vertices)
323                                 v.Color.setAlpha(255);
324                         scene::SMeshBuffer *buf = new scene::SMeshBuffer();
325                         buf->Material.setTexture(0, p.layer.texture);
326                         p.layer.applyMaterialOptions(buf->Material);
327                         mesh->addMeshBuffer(buf);
328                         buf->append(&p.vertices[0], p.vertices.size(),
329                                         &p.indices[0], p.indices.size());
330                         buf->drop();
331                         colors->push_back(
332                                 ItemPartColor(p.layer.has_color, p.layer.color));
333                 }
334         return mesh;
335 }
336
337 void WieldMeshSceneNode::setItem(const ItemStack &item, Client *client, bool check_wield_image)
338 {
339         ITextureSource *tsrc = client->getTextureSource();
340         IItemDefManager *idef = client->getItemDefManager();
341         IShaderSource *shdrsrc = client->getShaderSource();
342         const NodeDefManager *ndef = client->getNodeDefManager();
343         const ItemDefinition &def = item.getDefinition(idef);
344         const ContentFeatures &f = ndef->get(def.name);
345         content_t id = ndef->getId(def.name);
346
347         scene::SMesh *mesh = nullptr;
348
349         if (m_enable_shaders) {
350                 u32 shader_id = shdrsrc->getShader("object_shader", TILE_MATERIAL_BASIC, NDT_NORMAL);
351                 m_material_type = shdrsrc->getShaderInfo(shader_id).material;
352         }
353
354         // Color-related
355         m_colors.clear();
356         m_base_color = idef->getItemstackColor(item, client);
357
358         // If wield_image needs to be checked and is defined, it overrides everything else
359         if (!def.wield_image.empty() && check_wield_image) {
360                 setExtruded(def.wield_image, def.wield_overlay, def.wield_scale, tsrc,
361                         1);
362                 m_colors.emplace_back();
363                 // overlay is white, if present
364                 m_colors.emplace_back(true, video::SColor(0xFFFFFFFF));
365                 return;
366         }
367
368         // Handle nodes
369         // See also CItemDefManager::createClientCached()
370         if (def.type == ITEM_NODE) {
371                 if (f.mesh_ptr[0]) {
372                         // e.g. mesh nodes and nodeboxes
373                         mesh = cloneMesh(f.mesh_ptr[0]);
374                         postProcessNodeMesh(mesh, f, m_enable_shaders, true,
375                                 &m_material_type, &m_colors);
376                         changeToMesh(mesh);
377                         mesh->drop();
378                         // mesh is pre-scaled by BS * f->visual_scale
379                         m_meshnode->setScale(
380                                         def.wield_scale * WIELD_SCALE_FACTOR
381                                         / (BS * f.visual_scale));
382                 } else {
383                         switch (f.drawtype) {
384                                 case NDT_AIRLIKE: {
385                                         changeToMesh(nullptr);
386                                         break;
387                                 }
388                                 case NDT_PLANTLIKE: {
389                                         setExtruded(tsrc->getTextureName(f.tiles[0].layers[0].texture_id),
390                                                 tsrc->getTextureName(f.tiles[0].layers[1].texture_id),
391                                                 def.wield_scale, tsrc,
392                                                 f.tiles[0].layers[0].animation_frame_count);
393                                         // Add color
394                                         const TileLayer &l0 = f.tiles[0].layers[0];
395                                         m_colors.emplace_back(l0.has_color, l0.color);
396                                         const TileLayer &l1 = f.tiles[0].layers[1];
397                                         m_colors.emplace_back(l1.has_color, l1.color);
398                                         break;
399                                 }
400                                 case NDT_PLANTLIKE_ROOTED: {
401                                         setExtruded(tsrc->getTextureName(f.special_tiles[0].layers[0].texture_id),
402                                                 "", def.wield_scale, tsrc,
403                                                 f.special_tiles[0].layers[0].animation_frame_count);
404                                         // Add color
405                                         const TileLayer &l0 = f.special_tiles[0].layers[0];
406                                         m_colors.emplace_back(l0.has_color, l0.color);
407                                         break;
408                                 }
409                                 case NDT_NORMAL:
410                                 case NDT_ALLFACES:
411                                 case NDT_LIQUID:
412                                 case NDT_FLOWINGLIQUID: {
413                                         setCube(f, def.wield_scale);
414                                         break;
415                                 }
416                                 default: {
417                                         mesh = createSpecialNodeMesh(client, id, &m_colors);
418                                         changeToMesh(mesh);
419                                         mesh->drop();
420                                         m_meshnode->setScale(
421                                                         def.wield_scale * WIELD_SCALE_FACTOR
422                                                         / (BS * f.visual_scale));
423                                 }
424                         }
425                 }
426                 u32 material_count = m_meshnode->getMaterialCount();
427                 for (u32 i = 0; i < material_count; ++i) {
428                         video::SMaterial &material = m_meshnode->getMaterial(i);
429                         material.MaterialType = m_material_type;
430                         material.MaterialTypeParam = 0.5f;
431                         material.setFlag(video::EMF_BACK_FACE_CULLING, true);
432                         material.setFlag(video::EMF_BILINEAR_FILTER, m_bilinear_filter);
433                         material.setFlag(video::EMF_TRILINEAR_FILTER, m_trilinear_filter);
434                 }
435                 return;
436         }
437         else if (!def.inventory_image.empty()) {
438                 setExtruded(def.inventory_image, def.inventory_overlay, def.wield_scale,
439                         tsrc, 1);
440                 m_colors.emplace_back();
441                 // overlay is white, if present
442                 m_colors.emplace_back(true, video::SColor(0xFFFFFFFF));
443                 return;
444         }
445
446         // no wield mesh found
447         changeToMesh(nullptr);
448 }
449
450 void WieldMeshSceneNode::setColor(video::SColor c)
451 {
452         assert(!m_lighting);
453         scene::IMesh *mesh = m_meshnode->getMesh();
454         if (!mesh)
455                 return;
456
457         u8 red = c.getRed();
458         u8 green = c.getGreen();
459         u8 blue = c.getBlue();
460         u32 mc = mesh->getMeshBufferCount();
461         for (u32 j = 0; j < mc; j++) {
462                 video::SColor bc(m_base_color);
463                 if ((m_colors.size() > j) && (m_colors[j].override_base))
464                         bc = m_colors[j].color;
465                 video::SColor buffercolor(255,
466                         bc.getRed() * red / 255,
467                         bc.getGreen() * green / 255,
468                         bc.getBlue() * blue / 255);
469                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(j);
470
471                 if (m_enable_shaders)
472                         setMeshBufferColor(buf, buffercolor);
473                 else
474                         colorizeMeshBuffer(buf, &buffercolor);
475         }
476 }
477
478 void WieldMeshSceneNode::setNodeLightColor(video::SColor color)
479 {
480         if (!m_meshnode)
481                 return;
482
483         if (m_enable_shaders) {
484                 for (u32 i = 0; i < m_meshnode->getMaterialCount(); ++i) {
485                         video::SMaterial &material = m_meshnode->getMaterial(i);
486                         material.EmissiveColor = color;
487                 }
488         }
489
490         setColor(color);
491 }
492
493 void WieldMeshSceneNode::render()
494 {
495         // note: if this method is changed to actually do something,
496         // you probably should implement OnRegisterSceneNode as well
497 }
498
499 void WieldMeshSceneNode::changeToMesh(scene::IMesh *mesh)
500 {
501         if (!mesh) {
502                 scene::IMesh *dummymesh = g_extrusion_mesh_cache->createCube();
503                 m_meshnode->setVisible(false);
504                 m_meshnode->setMesh(dummymesh);
505                 dummymesh->drop();  // m_meshnode grabbed it
506         } else {
507                 m_meshnode->setMesh(mesh);
508         }
509
510         m_meshnode->setMaterialFlag(video::EMF_LIGHTING, m_lighting);
511         // need to normalize normals when lighting is enabled (because of setScale())
512         m_meshnode->setMaterialFlag(video::EMF_NORMALIZE_NORMALS, m_lighting);
513         m_meshnode->setVisible(true);
514 }
515
516 void getItemMesh(Client *client, const ItemStack &item, ItemMesh *result)
517 {
518         ITextureSource *tsrc = client->getTextureSource();
519         IItemDefManager *idef = client->getItemDefManager();
520         const NodeDefManager *ndef = client->getNodeDefManager();
521         const ItemDefinition &def = item.getDefinition(idef);
522         const ContentFeatures &f = ndef->get(def.name);
523         content_t id = ndef->getId(def.name);
524
525         FATAL_ERROR_IF(!g_extrusion_mesh_cache, "Extrusion mesh cache is not yet initialized");
526         
527         scene::SMesh *mesh = nullptr;
528
529         // Shading is on by default
530         result->needs_shading = true;
531
532         // If inventory_image is defined, it overrides everything else
533         if (!def.inventory_image.empty()) {
534                 mesh = getExtrudedMesh(tsrc, def.inventory_image,
535                         def.inventory_overlay);
536                 result->buffer_colors.emplace_back();
537                 // overlay is white, if present
538                 result->buffer_colors.emplace_back(true, video::SColor(0xFFFFFFFF));
539                 // Items with inventory images do not need shading
540                 result->needs_shading = false;
541         } else if (def.type == ITEM_NODE) {
542                 if (f.mesh_ptr[0]) {
543                         mesh = cloneMesh(f.mesh_ptr[0]);
544                         scaleMesh(mesh, v3f(0.12, 0.12, 0.12));
545                         postProcessNodeMesh(mesh, f, false, false, nullptr,
546                                 &result->buffer_colors);
547                 } else {
548                         switch (f.drawtype) {
549                                 case NDT_PLANTLIKE: {
550                                         mesh = getExtrudedMesh(tsrc,
551                                                 tsrc->getTextureName(f.tiles[0].layers[0].texture_id),
552                                                 tsrc->getTextureName(f.tiles[0].layers[1].texture_id));
553                                         // Add color
554                                         const TileLayer &l0 = f.tiles[0].layers[0];
555                                         result->buffer_colors.emplace_back(l0.has_color, l0.color);
556                                         const TileLayer &l1 = f.tiles[0].layers[1];
557                                         result->buffer_colors.emplace_back(l1.has_color, l1.color);
558                                         break;
559                                 }
560                                 case NDT_PLANTLIKE_ROOTED: {
561                                         mesh = getExtrudedMesh(tsrc,
562                                                 tsrc->getTextureName(f.special_tiles[0].layers[0].texture_id), "");
563                                         // Add color
564                                         const TileLayer &l0 = f.special_tiles[0].layers[0];
565                                         result->buffer_colors.emplace_back(l0.has_color, l0.color);
566                                         break;
567                                 }
568                                 case NDT_NORMAL:
569                                 case NDT_ALLFACES:
570                                 case NDT_LIQUID:
571                                 case NDT_FLOWINGLIQUID: {
572                                         scene::IMesh *cube = g_extrusion_mesh_cache->createCube();
573                                         mesh = cloneMesh(cube);
574                                         cube->drop();
575                                         scaleMesh(mesh, v3f(1.2, 1.2, 1.2));
576                                         // add overlays
577                                         postProcessNodeMesh(mesh, f, false, false, nullptr,
578                                                 &result->buffer_colors);
579                                         break;
580                                 }
581                                 default: {
582                                         mesh = createSpecialNodeMesh(client, id, &result->buffer_colors);
583                                         scaleMesh(mesh, v3f(0.12, 0.12, 0.12));
584                                 }
585                         }
586                 }
587
588                 u32 mc = mesh->getMeshBufferCount();
589                 for (u32 i = 0; i < mc; ++i) {
590                         scene::IMeshBuffer *buf = mesh->getMeshBuffer(i);
591                         video::SMaterial &material = buf->getMaterial();
592                         material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
593                         material.MaterialTypeParam = 0.5f;
594                         material.setFlag(video::EMF_BILINEAR_FILTER, false);
595                         material.setFlag(video::EMF_TRILINEAR_FILTER, false);
596                         material.setFlag(video::EMF_BACK_FACE_CULLING, true);
597                         material.setFlag(video::EMF_LIGHTING, false);
598                 }
599
600                 rotateMeshXZby(mesh, -45);
601                 rotateMeshYZby(mesh, -30);
602         }
603         result->mesh = mesh;
604 }
605
606
607
608 scene::SMesh *getExtrudedMesh(ITextureSource *tsrc,
609         const std::string &imagename, const std::string &overlay_name)
610 {
611         // check textures
612         video::ITexture *texture = tsrc->getTextureForMesh(imagename);
613         if (!texture) {
614                 return NULL;
615         }
616         video::ITexture *overlay_texture =
617                 (overlay_name.empty()) ? NULL : tsrc->getTexture(overlay_name);
618
619         // get mesh
620         core::dimension2d<u32> dim = texture->getSize();
621         scene::IMesh *original = g_extrusion_mesh_cache->create(dim);
622         scene::SMesh *mesh = cloneMesh(original);
623         original->drop();
624
625         //set texture
626         mesh->getMeshBuffer(0)->getMaterial().setTexture(0,
627                 tsrc->getTexture(imagename));
628         if (overlay_texture) {
629                 scene::IMeshBuffer *copy = cloneMeshBuffer(mesh->getMeshBuffer(0));
630                 copy->getMaterial().setTexture(0, overlay_texture);
631                 mesh->addMeshBuffer(copy);
632                 copy->drop();
633         }
634         // Customize materials
635         for (u32 layer = 0; layer < mesh->getMeshBufferCount(); layer++) {
636                 video::SMaterial &material = mesh->getMeshBuffer(layer)->getMaterial();
637                 material.TextureLayer[0].TextureWrapU = video::ETC_CLAMP_TO_EDGE;
638                 material.TextureLayer[0].TextureWrapV = video::ETC_CLAMP_TO_EDGE;
639                 material.setFlag(video::EMF_BILINEAR_FILTER, false);
640                 material.setFlag(video::EMF_TRILINEAR_FILTER, false);
641                 material.setFlag(video::EMF_BACK_FACE_CULLING, true);
642                 material.setFlag(video::EMF_LIGHTING, false);
643                 material.MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL;
644                 material.MaterialTypeParam = 0.5f;
645         }
646         scaleMesh(mesh, v3f(2.0, 2.0, 2.0));
647
648         return mesh;
649 }
650
651 void postProcessNodeMesh(scene::SMesh *mesh, const ContentFeatures &f,
652         bool use_shaders, bool set_material, const video::E_MATERIAL_TYPE *mattype,
653         std::vector<ItemPartColor> *colors, bool apply_scale)
654 {
655         u32 mc = mesh->getMeshBufferCount();
656         // Allocate colors for existing buffers
657         colors->clear();
658         for (u32 i = 0; i < mc; ++i)
659                 colors->push_back(ItemPartColor());
660
661         for (u32 i = 0; i < mc; ++i) {
662                 const TileSpec *tile = &(f.tiles[i]);
663                 scene::IMeshBuffer *buf = mesh->getMeshBuffer(i);
664                 for (int layernum = 0; layernum < MAX_TILE_LAYERS; layernum++) {
665                         const TileLayer *layer = &tile->layers[layernum];
666                         if (layer->texture_id == 0)
667                                 continue;
668                         if (layernum != 0) {
669                                 scene::IMeshBuffer *copy = cloneMeshBuffer(buf);
670                                 copy->getMaterial() = buf->getMaterial();
671                                 mesh->addMeshBuffer(copy);
672                                 copy->drop();
673                                 buf = copy;
674                                 colors->push_back(
675                                         ItemPartColor(layer->has_color, layer->color));
676                         } else {
677                                 (*colors)[i] = ItemPartColor(layer->has_color, layer->color);
678                         }
679                         video::SMaterial &material = buf->getMaterial();
680                         if (set_material)
681                                 layer->applyMaterialOptions(material);
682                         if (mattype) {
683                                 material.MaterialType = *mattype;
684                         }
685                         if (layer->animation_frame_count > 1) {
686                                 const FrameSpec &animation_frame = (*layer->frames)[0];
687                                 material.setTexture(0, animation_frame.texture);
688                         } else {
689                                 material.setTexture(0, layer->texture);
690                         }
691                         if (use_shaders) {
692                                 if (layer->normal_texture) {
693                                         if (layer->animation_frame_count > 1) {
694                                                 const FrameSpec &animation_frame = (*layer->frames)[0];
695                                                 material.setTexture(1, animation_frame.normal_texture);
696                                         } else
697                                                 material.setTexture(1, layer->normal_texture);
698                                 }
699                                 material.setTexture(2, layer->flags_texture);
700                         }
701                         if (apply_scale && tile->world_aligned) {
702                                 u32 n = buf->getVertexCount();
703                                 for (u32 k = 0; k != n; ++k)
704                                         buf->getTCoords(k) /= layer->scale;
705                         }
706                 }
707         }
708 }