]> git.lizzy.rs Git - dragonfireclient.git/blob - src/camera.cpp
Turn off verbose info message introduced accidentally with ae9b1aa
[dragonfireclient.git] / src / camera.cpp
1 /*
2 Minetest
3 Copyright (C) 2010-2013 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 "camera.h"
21 #include "debug.h"
22 #include "client.h"
23 #include "map.h"
24 #include "clientmap.h"     // MapDrawControl
25 #include "player.h"
26 #include <cmath>
27 #include "client/renderingengine.h"
28 #include "settings.h"
29 #include "wieldmesh.h"
30 #include "noise.h"         // easeCurve
31 #include "sound.h"
32 #include "event.h"
33 #include "nodedef.h"
34 #include "util/numeric.h"
35 #include "constants.h"
36 #include "fontengine.h"
37 #include "script/scripting_client.h"
38
39 #define CAMERA_OFFSET_STEP 200
40 #define WIELDMESH_OFFSET_X 55.0f
41 #define WIELDMESH_OFFSET_Y -35.0f
42
43 Camera::Camera(MapDrawControl &draw_control, Client *client):
44         m_draw_control(draw_control),
45         m_client(client)
46 {
47         scene::ISceneManager *smgr = RenderingEngine::get_scene_manager();
48         // note: making the camera node a child of the player node
49         // would lead to unexpected behaviour, so we don't do that.
50         m_playernode = smgr->addEmptySceneNode(smgr->getRootSceneNode());
51         m_headnode = smgr->addEmptySceneNode(m_playernode);
52         m_cameranode = smgr->addCameraSceneNode(smgr->getRootSceneNode());
53         m_cameranode->bindTargetAndRotation(true);
54
55         // This needs to be in its own scene manager. It is drawn after
56         // all other 3D scene nodes and before the GUI.
57         m_wieldmgr = smgr->createNewSceneManager();
58         m_wieldmgr->addCameraSceneNode();
59         m_wieldnode = new WieldMeshSceneNode(m_wieldmgr, -1, false);
60         m_wieldnode->setItem(ItemStack(), m_client);
61         m_wieldnode->drop(); // m_wieldmgr grabbed it
62
63         /* TODO: Add a callback function so these can be updated when a setting
64          *       changes.  At this point in time it doesn't matter (e.g. /set
65          *       is documented to change server settings only)
66          *
67          * TODO: Local caching of settings is not optimal and should at some stage
68          *       be updated to use a global settings object for getting thse values
69          *       (as opposed to the this local caching). This can be addressed in
70          *       a later release.
71          */
72         m_cache_fall_bobbing_amount = g_settings->getFloat("fall_bobbing_amount");
73         m_cache_view_bobbing_amount = g_settings->getFloat("view_bobbing_amount");
74         m_cache_fov                 = g_settings->getFloat("fov");
75         m_cache_zoom_fov            = g_settings->getFloat("zoom_fov");
76         m_arm_inertia               = g_settings->getBool("arm_inertia");
77         m_nametags.clear();
78 }
79
80 Camera::~Camera()
81 {
82         m_wieldmgr->drop();
83 }
84
85 bool Camera::successfullyCreated(std::string &error_message)
86 {
87         if (!m_playernode) {
88                 error_message = "Failed to create the player scene node";
89         } else if (!m_headnode) {
90                 error_message = "Failed to create the head scene node";
91         } else if (!m_cameranode) {
92                 error_message = "Failed to create the camera scene node";
93         } else if (!m_wieldmgr) {
94                 error_message = "Failed to create the wielded item scene manager";
95         } else if (!m_wieldnode) {
96                 error_message = "Failed to create the wielded item scene node";
97         } else {
98                 error_message.clear();
99         }
100
101         if (g_settings->getBool("enable_client_modding")) {
102                 m_client->getScript()->on_camera_ready(this);
103         }
104         return error_message.empty();
105 }
106
107 // Returns the fractional part of x
108 inline f32 my_modf(f32 x)
109 {
110         double dummy;
111         return modf(x, &dummy);
112 }
113
114 void Camera::step(f32 dtime)
115 {
116         if(m_view_bobbing_fall > 0)
117         {
118                 m_view_bobbing_fall -= 3 * dtime;
119                 if(m_view_bobbing_fall <= 0)
120                         m_view_bobbing_fall = -1; // Mark the effect as finished
121         }
122
123         bool was_under_zero = m_wield_change_timer < 0;
124         m_wield_change_timer = MYMIN(m_wield_change_timer + dtime, 0.125);
125
126         if (m_wield_change_timer >= 0 && was_under_zero)
127                 m_wieldnode->setItem(m_wield_item_next, m_client);
128
129         if (m_view_bobbing_state != 0)
130         {
131                 //f32 offset = dtime * m_view_bobbing_speed * 0.035;
132                 f32 offset = dtime * m_view_bobbing_speed * 0.030;
133                 if (m_view_bobbing_state == 2) {
134                         // Animation is getting turned off
135                         if (m_view_bobbing_anim < 0.25) {
136                                 m_view_bobbing_anim -= offset;
137                         } else if (m_view_bobbing_anim > 0.75) {
138                                 m_view_bobbing_anim += offset;
139                         }
140
141                         if (m_view_bobbing_anim < 0.5) {
142                                 m_view_bobbing_anim += offset;
143                                 if (m_view_bobbing_anim > 0.5)
144                                         m_view_bobbing_anim = 0.5;
145                         } else {
146                                 m_view_bobbing_anim -= offset;
147                                 if (m_view_bobbing_anim < 0.5)
148                                         m_view_bobbing_anim = 0.5;
149                         }
150
151                         if (m_view_bobbing_anim <= 0 || m_view_bobbing_anim >= 1 ||
152                                         fabs(m_view_bobbing_anim - 0.5) < 0.01) {
153                                 m_view_bobbing_anim = 0;
154                                 m_view_bobbing_state = 0;
155                         }
156                 }
157                 else {
158                         float was = m_view_bobbing_anim;
159                         m_view_bobbing_anim = my_modf(m_view_bobbing_anim + offset);
160                         bool step = (was == 0 ||
161                                         (was < 0.5f && m_view_bobbing_anim >= 0.5f) ||
162                                         (was > 0.5f && m_view_bobbing_anim <= 0.5f));
163                         if(step) {
164                                 MtEvent *e = new SimpleTriggerEvent("ViewBobbingStep");
165                                 m_client->event()->put(e);
166                         }
167                 }
168         }
169
170         if (m_digging_button != -1)
171         {
172                 f32 offset = dtime * 3.5;
173                 float m_digging_anim_was = m_digging_anim;
174                 m_digging_anim += offset;
175                 if (m_digging_anim >= 1)
176                 {
177                         m_digging_anim = 0;
178                         m_digging_button = -1;
179                 }
180                 float lim = 0.15;
181                 if(m_digging_anim_was < lim && m_digging_anim >= lim)
182                 {
183                         if(m_digging_button == 0)
184                         {
185                                 MtEvent *e = new SimpleTriggerEvent("CameraPunchLeft");
186                                 m_client->event()->put(e);
187                         } else if(m_digging_button == 1) {
188                                 MtEvent *e = new SimpleTriggerEvent("CameraPunchRight");
189                                 m_client->event()->put(e);
190                         }
191                 }
192         }
193 }
194
195 static inline v2f dir(const v2f &pos_dist)
196 {
197         f32 x = pos_dist.X - WIELDMESH_OFFSET_X;
198         f32 y = pos_dist.Y - WIELDMESH_OFFSET_Y;
199
200         f32 x_abs = std::fabs(x);
201         f32 y_abs = std::fabs(y);
202
203         if (x_abs >= y_abs) {
204                 y *= (1.0f / x_abs);
205                 x /= x_abs;
206         }
207
208         if (y_abs >= x_abs) {
209                 x *= (1.0f / y_abs);
210                 y /= y_abs;
211         }
212
213         return v2f(std::fabs(x), std::fabs(y));
214 }
215
216 void Camera::addArmInertia(f32 player_yaw)
217 {
218         m_cam_vel.X = std::fabs(rangelim(m_last_cam_pos.X - player_yaw,
219                 -100.0f, 100.0f) / 0.016f) * 0.01f;
220         m_cam_vel.Y = std::fabs((m_last_cam_pos.Y - m_camera_direction.Y) / 0.016f);
221         f32 gap_X = std::fabs(WIELDMESH_OFFSET_X - m_wieldmesh_offset.X);
222         f32 gap_Y = std::fabs(WIELDMESH_OFFSET_Y - m_wieldmesh_offset.Y);
223
224         if (m_cam_vel.X > 1.0f || m_cam_vel.Y > 1.0f) {
225                 /*
226                     The arm moves relative to the camera speed,
227                     with an acceleration factor.
228                 */
229
230                 if (m_cam_vel.X > 1.0f) {
231                         if (m_cam_vel.X > m_cam_vel_old.X)
232                                 m_cam_vel_old.X = m_cam_vel.X;
233
234                         f32 acc_X = 0.12f * (m_cam_vel.X - (gap_X * 0.1f));
235                         m_wieldmesh_offset.X += m_last_cam_pos.X < player_yaw ? acc_X : -acc_X;
236
237                         if (m_last_cam_pos.X != player_yaw)
238                                 m_last_cam_pos.X = player_yaw;
239
240                         m_wieldmesh_offset.X = rangelim(m_wieldmesh_offset.X,
241                                 WIELDMESH_OFFSET_X - 7.0f, WIELDMESH_OFFSET_X + 7.0f);
242                 }
243
244                 if (m_cam_vel.Y > 1.0f) {
245                         if (m_cam_vel.Y > m_cam_vel_old.Y)
246                                 m_cam_vel_old.Y = m_cam_vel.Y;
247
248                         f32 acc_Y = 0.12f * (m_cam_vel.Y - (gap_Y * 0.1f));
249                         m_wieldmesh_offset.Y +=
250                                 m_last_cam_pos.Y > m_camera_direction.Y ? acc_Y : -acc_Y;
251
252                         if (m_last_cam_pos.Y != m_camera_direction.Y)
253                                 m_last_cam_pos.Y = m_camera_direction.Y;
254
255                         m_wieldmesh_offset.Y = rangelim(m_wieldmesh_offset.Y,
256                                 WIELDMESH_OFFSET_Y - 10.0f, WIELDMESH_OFFSET_Y + 5.0f);
257                 }
258
259                 m_arm_dir = dir(m_wieldmesh_offset);
260         } else {
261                 /*
262                     Now the arm gets back to its default position when the camera stops,
263                     following a vector, with a smooth deceleration factor.
264                 */
265
266                 f32 dec_X = 0.12f * (m_cam_vel_old.X * (1.0f +
267                         (1.0f - m_arm_dir.X))) * (gap_X / 20.0f);
268
269                 f32 dec_Y = 0.06f * (m_cam_vel_old.Y * (1.0f +
270                         (1.0f - m_arm_dir.Y))) * (gap_Y / 15.0f);
271
272                 if (gap_X < 0.1f)
273                         m_cam_vel_old.X = 0.0f;
274
275                 m_wieldmesh_offset.X -=
276                         m_wieldmesh_offset.X > WIELDMESH_OFFSET_X ? dec_X : -dec_X;
277
278                 if (gap_Y < 0.1f)
279                         m_cam_vel_old.Y = 0.0f;
280
281                 m_wieldmesh_offset.Y -=
282                         m_wieldmesh_offset.Y > WIELDMESH_OFFSET_Y ? dec_Y : -dec_Y;
283         }
284 }
285
286 void Camera::update(LocalPlayer* player, f32 frametime, f32 busytime, f32 tool_reload_ratio)
287 {
288         // Get player position
289         // Smooth the movement when walking up stairs
290         v3f old_player_position = m_playernode->getPosition();
291         v3f player_position = player->getPosition();
292         if (player->isAttached && player->parent)
293                 player_position = player->parent->getPosition();
294         //if(player->touching_ground && player_position.Y > old_player_position.Y)
295         if(player->touching_ground &&
296                         player_position.Y > old_player_position.Y)
297         {
298                 f32 oldy = old_player_position.Y;
299                 f32 newy = player_position.Y;
300                 f32 t = exp(-23*frametime);
301                 player_position.Y = oldy * t + newy * (1-t);
302         }
303
304         // Set player node transformation
305         m_playernode->setPosition(player_position);
306         m_playernode->setRotation(v3f(0, -1 * player->getYaw(), 0));
307         m_playernode->updateAbsolutePosition();
308
309         // Get camera tilt timer (hurt animation)
310         float cameratilt = fabs(fabs(player->hurt_tilt_timer-0.75)-0.75);
311
312         // Fall bobbing animation
313         float fall_bobbing = 0;
314         if(player->camera_impact >= 1 && m_camera_mode < CAMERA_MODE_THIRD)
315         {
316                 if(m_view_bobbing_fall == -1) // Effect took place and has finished
317                         player->camera_impact = m_view_bobbing_fall = 0;
318                 else if(m_view_bobbing_fall == 0) // Initialize effect
319                         m_view_bobbing_fall = 1;
320
321                 // Convert 0 -> 1 to 0 -> 1 -> 0
322                 fall_bobbing = m_view_bobbing_fall < 0.5 ? m_view_bobbing_fall * 2 : -(m_view_bobbing_fall - 0.5) * 2 + 1;
323                 // Smoothen and invert the above
324                 fall_bobbing = sin(fall_bobbing * 0.5 * M_PI) * -1;
325                 // Amplify according to the intensity of the impact
326                 fall_bobbing *= (1 - rangelim(50 / player->camera_impact, 0, 1)) * 5;
327
328                 fall_bobbing *= m_cache_fall_bobbing_amount;
329         }
330
331         // Calculate players eye offset for different camera modes
332         v3f PlayerEyeOffset = player->getEyeOffset();
333         if (m_camera_mode == CAMERA_MODE_FIRST)
334                 PlayerEyeOffset += player->eye_offset_first;
335         else
336                 PlayerEyeOffset += player->eye_offset_third;
337
338         // Set head node transformation
339         m_headnode->setPosition(PlayerEyeOffset+v3f(0,cameratilt*-player->hurt_tilt_strength+fall_bobbing,0));
340         m_headnode->setRotation(v3f(player->getPitch(), 0, cameratilt*player->hurt_tilt_strength));
341         m_headnode->updateAbsolutePosition();
342
343         // Compute relative camera position and target
344         v3f rel_cam_pos = v3f(0,0,0);
345         v3f rel_cam_target = v3f(0,0,1);
346         v3f rel_cam_up = v3f(0,1,0);
347
348         if (m_cache_view_bobbing_amount != 0.0f && m_view_bobbing_anim != 0.0f &&
349                 m_camera_mode < CAMERA_MODE_THIRD) {
350                 f32 bobfrac = my_modf(m_view_bobbing_anim * 2);
351                 f32 bobdir = (m_view_bobbing_anim < 0.5) ? 1.0 : -1.0;
352
353                 #if 1
354                 f32 bobknob = 1.2;
355                 f32 bobtmp = sin(pow(bobfrac, bobknob) * M_PI);
356                 //f32 bobtmp2 = cos(pow(bobfrac, bobknob) * M_PI);
357
358                 v3f bobvec = v3f(
359                         0.3 * bobdir * sin(bobfrac * M_PI),
360                         -0.28 * bobtmp * bobtmp,
361                         0.);
362
363                 //rel_cam_pos += 0.2 * bobvec;
364                 //rel_cam_target += 0.03 * bobvec;
365                 //rel_cam_up.rotateXYBy(0.02 * bobdir * bobtmp * M_PI);
366                 float f = 1.0;
367                 f *= m_cache_view_bobbing_amount;
368                 rel_cam_pos += bobvec * f;
369                 //rel_cam_target += 0.995 * bobvec * f;
370                 rel_cam_target += bobvec * f;
371                 rel_cam_target.Z -= 0.005 * bobvec.Z * f;
372                 //rel_cam_target.X -= 0.005 * bobvec.X * f;
373                 //rel_cam_target.Y -= 0.005 * bobvec.Y * f;
374                 rel_cam_up.rotateXYBy(-0.03 * bobdir * bobtmp * M_PI * f);
375                 #else
376                 f32 angle_deg = 1 * bobdir * sin(bobfrac * M_PI);
377                 f32 angle_rad = angle_deg * M_PI / 180;
378                 f32 r = 0.05;
379                 v3f off = v3f(
380                         r * sin(angle_rad),
381                         r * (cos(angle_rad) - 1),
382                         0);
383                 rel_cam_pos += off;
384                 //rel_cam_target += off;
385                 rel_cam_up.rotateXYBy(angle_deg);
386                 #endif
387
388         }
389
390         // Compute absolute camera position and target
391         m_headnode->getAbsoluteTransformation().transformVect(m_camera_position, rel_cam_pos);
392         m_headnode->getAbsoluteTransformation().rotateVect(m_camera_direction, rel_cam_target - rel_cam_pos);
393
394         v3f abs_cam_up;
395         m_headnode->getAbsoluteTransformation().rotateVect(abs_cam_up, rel_cam_up);
396
397         // Seperate camera position for calculation
398         v3f my_cp = m_camera_position;
399
400         // Reposition the camera for third person view
401         if (m_camera_mode > CAMERA_MODE_FIRST)
402         {
403                 if (m_camera_mode == CAMERA_MODE_THIRD_FRONT)
404                         m_camera_direction *= -1;
405
406                 my_cp.Y += 2;
407
408                 // Calculate new position
409                 bool abort = false;
410                 for (int i = BS; i <= BS * 2.75; i++) {
411                         my_cp.X = m_camera_position.X + m_camera_direction.X * -i;
412                         my_cp.Z = m_camera_position.Z + m_camera_direction.Z * -i;
413                         if (i > 12)
414                                 my_cp.Y = m_camera_position.Y + (m_camera_direction.Y * -i);
415
416                         // Prevent camera positioned inside nodes
417                         INodeDefManager *nodemgr = m_client->ndef();
418                         MapNode n = m_client->getEnv().getClientMap()
419                                 .getNodeNoEx(floatToInt(my_cp, BS));
420
421                         const ContentFeatures& features = nodemgr->get(n);
422                         if (features.walkable) {
423                                 my_cp.X += m_camera_direction.X*-1*-BS/2;
424                                 my_cp.Z += m_camera_direction.Z*-1*-BS/2;
425                                 my_cp.Y += m_camera_direction.Y*-1*-BS/2;
426                                 abort = true;
427                                 break;
428                         }
429                 }
430
431                 // If node blocks camera position don't move y to heigh
432                 if (abort && my_cp.Y > player_position.Y+BS*2)
433                         my_cp.Y = player_position.Y+BS*2;
434         }
435
436         // Update offset if too far away from the center of the map
437         m_camera_offset.X += CAMERA_OFFSET_STEP*
438                         (((s16)(my_cp.X/BS) - m_camera_offset.X)/CAMERA_OFFSET_STEP);
439         m_camera_offset.Y += CAMERA_OFFSET_STEP*
440                         (((s16)(my_cp.Y/BS) - m_camera_offset.Y)/CAMERA_OFFSET_STEP);
441         m_camera_offset.Z += CAMERA_OFFSET_STEP*
442                         (((s16)(my_cp.Z/BS) - m_camera_offset.Z)/CAMERA_OFFSET_STEP);
443
444         // Set camera node transformation
445         m_cameranode->setPosition(my_cp-intToFloat(m_camera_offset, BS));
446         m_cameranode->setUpVector(abs_cam_up);
447         // *100.0 helps in large map coordinates
448         m_cameranode->setTarget(my_cp-intToFloat(m_camera_offset, BS) + 100 * m_camera_direction);
449
450         // update the camera position in front-view mode to render blocks behind player
451         if (m_camera_mode == CAMERA_MODE_THIRD_FRONT)
452                 m_camera_position = my_cp;
453
454         // Get FOV
455         f32 fov_degrees;
456         if (player->getPlayerControl().zoom && player->getCanZoom()) {
457                 fov_degrees = m_cache_zoom_fov;
458         } else {
459                 fov_degrees = m_cache_fov;
460         }
461         fov_degrees = rangelim(fov_degrees, 1.0, 160.0);
462
463         // FOV and aspect ratio
464         const v2u32 &window_size = RenderingEngine::get_instance()->getWindowSize();
465         m_aspect = (f32) window_size.X / (f32) window_size.Y;
466         m_fov_y = fov_degrees * M_PI / 180.0;
467         // Increase vertical FOV on lower aspect ratios (<16:10)
468         m_fov_y *= MYMAX(1.0, MYMIN(1.4, sqrt(16./10. / m_aspect)));
469         m_fov_x = 2 * atan(m_aspect * tan(0.5 * m_fov_y));
470         m_cameranode->setAspectRatio(m_aspect);
471         m_cameranode->setFOV(m_fov_y);
472
473         if (m_arm_inertia)
474                 addArmInertia(player->getYaw());
475
476         // Position the wielded item
477         //v3f wield_position = v3f(45, -35, 65);
478         v3f wield_position = v3f(m_wieldmesh_offset.X, m_wieldmesh_offset.Y, 65);
479         //v3f wield_rotation = v3f(-100, 120, -100);
480         v3f wield_rotation = v3f(-100, 120, -100);
481         wield_position.Y += fabs(m_wield_change_timer)*320 - 40;
482         if(m_digging_anim < 0.05 || m_digging_anim > 0.5)
483         {
484                 f32 frac = 1.0;
485                 if(m_digging_anim > 0.5)
486                         frac = 2.0 * (m_digging_anim - 0.5);
487                 // This value starts from 1 and settles to 0
488                 f32 ratiothing = pow((1.0f - tool_reload_ratio), 0.5f);
489                 //f32 ratiothing2 = pow(ratiothing, 0.5f);
490                 f32 ratiothing2 = (easeCurve(ratiothing*0.5))*2.0;
491                 wield_position.Y -= frac * 25.0 * pow(ratiothing2, 1.7f);
492                 //wield_position.Z += frac * 5.0 * ratiothing2;
493                 wield_position.X -= frac * 35.0 * pow(ratiothing2, 1.1f);
494                 wield_rotation.Y += frac * 70.0 * pow(ratiothing2, 1.4f);
495                 //wield_rotation.X -= frac * 15.0 * pow(ratiothing2, 1.4f);
496                 //wield_rotation.Z += frac * 15.0 * pow(ratiothing2, 1.0f);
497         }
498         if (m_digging_button != -1)
499         {
500                 f32 digfrac = m_digging_anim;
501                 wield_position.X -= 50 * sin(pow(digfrac, 0.8f) * M_PI);
502                 wield_position.Y += 24 * sin(digfrac * 1.8 * M_PI);
503                 wield_position.Z += 25 * 0.5;
504
505                 // Euler angles are PURE EVIL, so why not use quaternions?
506                 core::quaternion quat_begin(wield_rotation * core::DEGTORAD);
507                 core::quaternion quat_end(v3f(80, 30, 100) * core::DEGTORAD);
508                 core::quaternion quat_slerp;
509                 quat_slerp.slerp(quat_begin, quat_end, sin(digfrac * M_PI));
510                 quat_slerp.toEuler(wield_rotation);
511                 wield_rotation *= core::RADTODEG;
512         } else {
513                 f32 bobfrac = my_modf(m_view_bobbing_anim);
514                 wield_position.X -= sin(bobfrac*M_PI*2.0) * 3.0;
515                 wield_position.Y += sin(my_modf(bobfrac*2.0)*M_PI) * 3.0;
516         }
517         m_wieldnode->setPosition(wield_position);
518         m_wieldnode->setRotation(wield_rotation);
519
520         m_wieldnode->setColor(player->light_color);
521
522         // Set render distance
523         updateViewingRange();
524
525         // If the player is walking, swimming, or climbing,
526         // view bobbing is enabled and free_move is off,
527         // start (or continue) the view bobbing animation.
528         const v3f &speed = player->getSpeed();
529         const bool movement_XZ = hypot(speed.X, speed.Z) > BS;
530         const bool movement_Y = fabs(speed.Y) > BS;
531
532         const bool walking = movement_XZ && player->touching_ground;
533         const bool swimming = (movement_XZ || player->swimming_vertical) && player->in_liquid;
534         const bool climbing = movement_Y && player->is_climbing;
535         if ((walking || swimming || climbing) &&
536                         (!g_settings->getBool("free_move") || !m_client->checkLocalPrivilege("fly"))) {
537                 // Start animation
538                 m_view_bobbing_state = 1;
539                 m_view_bobbing_speed = MYMIN(speed.getLength(), 70);
540         }
541         else if (m_view_bobbing_state == 1)
542         {
543                 // Stop animation
544                 m_view_bobbing_state = 2;
545                 m_view_bobbing_speed = 60;
546         }
547 }
548
549 void Camera::updateViewingRange()
550 {
551         f32 viewing_range = g_settings->getFloat("viewing_range");
552         f32 near_plane = g_settings->getFloat("near_plane");
553
554         m_draw_control.wanted_range = std::fmin(adjustDist(viewing_range, getFovMax()), 4000);
555         m_cameranode->setNearValue(rangelim(near_plane, 0.0f, 0.5f) * BS);
556         if (m_draw_control.range_all) {
557                 m_cameranode->setFarValue(100000.0);
558                 return;
559         }
560         m_cameranode->setFarValue((viewing_range < 2000) ? 2000 * BS : viewing_range * BS);
561 }
562
563 void Camera::setDigging(s32 button)
564 {
565         if (m_digging_button == -1)
566                 m_digging_button = button;
567 }
568
569 void Camera::wield(const ItemStack &item)
570 {
571         if (item.name != m_wield_item_next.name ||
572                         item.metadata != m_wield_item_next.metadata) {
573                 m_wield_item_next = item;
574                 if (m_wield_change_timer > 0)
575                         m_wield_change_timer = -m_wield_change_timer;
576                 else if (m_wield_change_timer == 0)
577                         m_wield_change_timer = -0.001;
578         }
579 }
580
581 void Camera::drawWieldedTool(irr::core::matrix4* translation)
582 {
583         // Clear Z buffer so that the wielded tool stay in front of world geometry
584         m_wieldmgr->getVideoDriver()->clearZBuffer();
585
586         // Draw the wielded node (in a separate scene manager)
587         scene::ICameraSceneNode* cam = m_wieldmgr->getActiveCamera();
588         cam->setAspectRatio(m_cameranode->getAspectRatio());
589         cam->setFOV(72.0*M_PI/180.0);
590         cam->setNearValue(10);
591         cam->setFarValue(1000);
592         if (translation != NULL)
593         {
594                 irr::core::matrix4 startMatrix = cam->getAbsoluteTransformation();
595                 irr::core::vector3df focusPoint = (cam->getTarget()
596                                 - cam->getAbsolutePosition()).setLength(1)
597                                 + cam->getAbsolutePosition();
598
599                 irr::core::vector3df camera_pos =
600                                 (startMatrix * *translation).getTranslation();
601                 cam->setPosition(camera_pos);
602                 cam->setTarget(focusPoint);
603         }
604         m_wieldmgr->drawAll();
605 }
606
607 void Camera::drawNametags()
608 {
609         core::matrix4 trans = m_cameranode->getProjectionMatrix();
610         trans *= m_cameranode->getViewMatrix();
611
612         for (std::list<Nametag *>::const_iterator
613                         i = m_nametags.begin();
614                         i != m_nametags.end(); ++i) {
615                 Nametag *nametag = *i;
616                 if (nametag->nametag_color.getAlpha() == 0) {
617                         // Enforce hiding nametag,
618                         // because if freetype is enabled, a grey
619                         // shadow can remain.
620                         continue;
621                 }
622                 v3f pos = nametag->parent_node->getAbsolutePosition() + nametag->nametag_pos * BS;
623                 f32 transformed_pos[4] = { pos.X, pos.Y, pos.Z, 1.0f };
624                 trans.multiplyWith1x4Matrix(transformed_pos);
625                 if (transformed_pos[3] > 0) {
626                         std::wstring nametag_colorless =
627                                 unescape_translate(utf8_to_wide(nametag->nametag_text));
628                         core::dimension2d<u32> textsize =
629                                 g_fontengine->getFont()->getDimension(
630                                 nametag_colorless.c_str());
631                         f32 zDiv = transformed_pos[3] == 0.0f ? 1.0f :
632                                 core::reciprocal(transformed_pos[3]);
633                         v2u32 screensize = RenderingEngine::get_video_driver()->getScreenSize();
634                         v2s32 screen_pos;
635                         screen_pos.X = screensize.X *
636                                 (0.5 * transformed_pos[0] * zDiv + 0.5) - textsize.Width / 2;
637                         screen_pos.Y = screensize.Y *
638                                 (0.5 - transformed_pos[1] * zDiv * 0.5) - textsize.Height / 2;
639                         core::rect<s32> size(0, 0, textsize.Width, textsize.Height);
640                         g_fontengine->getFont()->draw(
641                                 translate_string(utf8_to_wide(nametag->nametag_text)).c_str(),
642                                 size + screen_pos, nametag->nametag_color);
643                 }
644         }
645 }
646
647 Nametag *Camera::addNametag(scene::ISceneNode *parent_node,
648                 const std::string &nametag_text, video::SColor nametag_color,
649                 const v3f &pos)
650 {
651         Nametag *nametag = new Nametag(parent_node, nametag_text, nametag_color, pos);
652         m_nametags.push_back(nametag);
653         return nametag;
654 }
655
656 void Camera::removeNametag(Nametag *nametag)
657 {
658         m_nametags.remove(nametag);
659         delete nametag;
660 }