]> git.lizzy.rs Git - minetest.git/blob - src/collision.cpp
e363673feeecedb836c4e62c98306521e35c26fb
[minetest.git] / src / collision.cpp
1 /*
2 Minetest
3 Copyright (C) 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 "collision.h"
21 #include <cmath>
22 #include "mapblock.h"
23 #include "map.h"
24 #include "nodedef.h"
25 #include "gamedef.h"
26 #ifndef SERVER
27 #include "client/clientenvironment.h"
28 #include "client/localplayer.h"
29 #endif
30 #include "serverenvironment.h"
31 #include "server/serveractiveobject.h"
32 #include "util/timetaker.h"
33 #include "profiler.h"
34
35 #ifdef __FAST_MATH__
36 #warning "-ffast-math is known to cause bugs in collision code, do not use!"
37 #endif
38
39 struct NearbyCollisionInfo {
40         // node
41         NearbyCollisionInfo(bool is_ul, int bouncy, const v3s16 &pos,
42                         const aabb3f &box) :
43                 is_unloaded(is_ul),
44                 obj(nullptr),
45                 bouncy(bouncy),
46                 position(pos),
47                 box(box)
48         {}
49
50         // object
51         NearbyCollisionInfo(ActiveObject *obj, int bouncy,
52                         const aabb3f &box) :
53                 is_unloaded(false),
54                 obj(obj),
55                 bouncy(bouncy),
56                 box(box)
57         {}
58
59         inline bool isObject() const { return obj != nullptr; }
60
61         bool is_unloaded;
62         bool is_step_up = false;
63         ActiveObject *obj;
64         int bouncy;
65         v3s16 position;
66         aabb3f box;
67 };
68
69 // Helper functions:
70 // Truncate floating point numbers to specified number of decimal places
71 // in order to move all the floating point error to one side of the correct value
72 static inline f32 truncate(const f32 val, const f32 factor)
73 {
74         return truncf(val * factor) / factor;
75 }
76
77 static inline v3f truncate(const v3f& vec, const f32 factor)
78 {
79         return v3f(
80                 truncate(vec.X, factor),
81                 truncate(vec.Y, factor),
82                 truncate(vec.Z, factor)
83         );
84 }
85
86 // Helper function:
87 // Checks for collision of a moving aabbox with a static aabbox
88 // Returns -1 if no collision, 0 if X collision, 1 if Y collision, 2 if Z collision
89 // The time after which the collision occurs is stored in dtime.
90 CollisionAxis axisAlignedCollision(
91                 const aabb3f &staticbox, const aabb3f &movingbox,
92                 const v3f &speed, f32 *dtime)
93 {
94         //TimeTaker tt("axisAlignedCollision");
95
96         aabb3f relbox(
97                         (movingbox.MaxEdge.X - movingbox.MinEdge.X) + (staticbox.MaxEdge.X - staticbox.MinEdge.X),                                              // sum of the widths
98                         (movingbox.MaxEdge.Y - movingbox.MinEdge.Y) + (staticbox.MaxEdge.Y - staticbox.MinEdge.Y),
99                         (movingbox.MaxEdge.Z - movingbox.MinEdge.Z) + (staticbox.MaxEdge.Z - staticbox.MinEdge.Z),
100                         std::max(movingbox.MaxEdge.X, staticbox.MaxEdge.X) - std::min(movingbox.MinEdge.X, staticbox.MinEdge.X),        //outer bounding 'box' dimensions
101                         std::max(movingbox.MaxEdge.Y, staticbox.MaxEdge.Y) - std::min(movingbox.MinEdge.Y, staticbox.MinEdge.Y),
102                         std::max(movingbox.MaxEdge.Z, staticbox.MaxEdge.Z) - std::min(movingbox.MinEdge.Z, staticbox.MinEdge.Z)
103         );
104
105         const f32 dtime_max = *dtime;
106         f32 inner_margin;               // the distance of clipping recovery
107         f32 distance;
108         f32 time;
109
110
111         if (speed.Y) {
112                 distance = relbox.MaxEdge.Y - relbox.MinEdge.Y;
113                 *dtime = distance / std::abs(speed.Y);
114                 time = std::max(*dtime, 0.0f);
115
116                 if (*dtime <= dtime_max) {
117                         inner_margin = std::max(-0.5f * (staticbox.MaxEdge.Y - staticbox.MinEdge.Y), -2.0f);
118
119                         if ((speed.Y > 0 && staticbox.MinEdge.Y - movingbox.MaxEdge.Y > inner_margin) ||
120                                 (speed.Y < 0 && movingbox.MinEdge.Y - staticbox.MaxEdge.Y > inner_margin)) {
121                                 if (
122                                         (std::max(movingbox.MaxEdge.X + speed.X * time, staticbox.MaxEdge.X)
123                                                 - std::min(movingbox.MinEdge.X + speed.X * time, staticbox.MinEdge.X)
124                                                 - relbox.MinEdge.X < 0) &&
125                                                 (std::max(movingbox.MaxEdge.Z + speed.Z * time, staticbox.MaxEdge.Z)
126                                                         - std::min(movingbox.MinEdge.Z + speed.Z * time, staticbox.MinEdge.Z)
127                                                         - relbox.MinEdge.Z < 0)
128                                         )
129                                         return COLLISION_AXIS_Y;
130                         }
131                 }
132                 else {
133                         return COLLISION_AXIS_NONE;
134                 }
135         }
136
137         // NO else if here
138
139         if (speed.X) {
140                 distance = relbox.MaxEdge.X - relbox.MinEdge.X;
141                 *dtime = distance / std::abs(speed.X);
142                 time = std::max(*dtime, 0.0f);
143
144                 if (*dtime <= dtime_max) {
145                         inner_margin = std::max(-0.5f * (staticbox.MaxEdge.X - staticbox.MinEdge.X), -2.0f);
146
147                         if ((speed.X > 0 && staticbox.MinEdge.X - movingbox.MaxEdge.X > inner_margin) ||
148                                 (speed.X < 0 && movingbox.MinEdge.X - staticbox.MaxEdge.X > inner_margin)) {
149                                 if (
150                                         (std::max(movingbox.MaxEdge.Y + speed.Y * time, staticbox.MaxEdge.Y)
151                                                 - std::min(movingbox.MinEdge.Y + speed.Y * time, staticbox.MinEdge.Y)
152                                                 - relbox.MinEdge.Y < 0) &&
153                                                 (std::max(movingbox.MaxEdge.Z + speed.Z * time, staticbox.MaxEdge.Z)
154                                                         - std::min(movingbox.MinEdge.Z + speed.Z * time, staticbox.MinEdge.Z)
155                                                         - relbox.MinEdge.Z < 0)
156                                         )
157                                         return COLLISION_AXIS_X;
158                         }
159                 } else {
160                         return COLLISION_AXIS_NONE;
161                 }
162         }
163
164         // NO else if here
165
166         if (speed.Z) {
167                 distance = relbox.MaxEdge.Z - relbox.MinEdge.Z;
168                 *dtime = distance / std::abs(speed.Z);
169                 time = std::max(*dtime, 0.0f);
170
171                 if (*dtime <= dtime_max) {
172                         inner_margin = std::max(-0.5f * (staticbox.MaxEdge.Z - staticbox.MinEdge.Z), -2.0f);
173
174                         if ((speed.Z > 0 && staticbox.MinEdge.Z - movingbox.MaxEdge.Z > inner_margin) ||
175                                 (speed.Z < 0 && movingbox.MinEdge.Z - staticbox.MaxEdge.Z > inner_margin)) {
176                                 if (
177                                         (std::max(movingbox.MaxEdge.X + speed.X * time, staticbox.MaxEdge.X)
178                                                 - std::min(movingbox.MinEdge.X + speed.X * time, staticbox.MinEdge.X)
179                                                 - relbox.MinEdge.X < 0) &&
180                                                 (std::max(movingbox.MaxEdge.Y + speed.Y * time, staticbox.MaxEdge.Y)
181                                                         - std::min(movingbox.MinEdge.Y + speed.Y * time, staticbox.MinEdge.Y)
182                                                         - relbox.MinEdge.Y < 0)
183                                         )
184                                         return COLLISION_AXIS_Z;
185                         }
186                 }
187         }
188
189         return COLLISION_AXIS_NONE;
190 }
191
192 // Helper function:
193 // Checks if moving the movingbox up by the given distance would hit a ceiling.
194 bool wouldCollideWithCeiling(
195                 const std::vector<NearbyCollisionInfo> &cinfo,
196                 const aabb3f &movingbox,
197                 f32 y_increase, f32 d)
198 {
199         //TimeTaker tt("wouldCollideWithCeiling");
200
201         assert(y_increase >= 0);        // pre-condition
202
203         for (const auto &it : cinfo) {
204                 const aabb3f &staticbox = it.box;
205                 if ((movingbox.MaxEdge.Y - d <= staticbox.MinEdge.Y) &&
206                                 (movingbox.MaxEdge.Y + y_increase > staticbox.MinEdge.Y) &&
207                                 (movingbox.MinEdge.X < staticbox.MaxEdge.X) &&
208                                 (movingbox.MaxEdge.X > staticbox.MinEdge.X) &&
209                                 (movingbox.MinEdge.Z < staticbox.MaxEdge.Z) &&
210                                 (movingbox.MaxEdge.Z > staticbox.MinEdge.Z))
211                         return true;
212         }
213
214         return false;
215 }
216
217 static inline void getNeighborConnectingFace(const v3s16 &p,
218         const NodeDefManager *nodedef, Map *map, MapNode n, int v, int *neighbors)
219 {
220         MapNode n2 = map->getNode(p);
221         if (nodedef->nodeboxConnects(n, n2, v))
222                 *neighbors |= v;
223 }
224
225 collisionMoveResult collisionMoveSimple(Environment *env, IGameDef *gamedef,
226                 f32 pos_max_d, const aabb3f &box_0,
227                 f32 stepheight, f32 dtime,
228                 v3f *pos_f, v3f *speed_f,
229                 v3f accel_f, ActiveObject *self,
230                 bool collideWithObjects)
231 {
232         static bool time_notification_done = false;
233         Map *map = &env->getMap();
234
235         ScopeProfiler sp(g_profiler, "collisionMoveSimple()", SPT_AVG);
236
237         collisionMoveResult result;
238
239         /*
240                 Calculate new velocity
241         */
242         if (dtime > 0.5f) {
243                 if (!time_notification_done) {
244                         time_notification_done = true;
245                         infostream << "collisionMoveSimple: maximum step interval exceeded,"
246                                         " lost movement details!"<<std::endl;
247                 }
248                 dtime = 0.5f;
249         } else {
250                 time_notification_done = false;
251         }
252
253         v3f dpos_f = (*speed_f + accel_f * 0.5f * dtime) * dtime;
254         v3f newpos_f = *pos_f + dpos_f;
255         *speed_f += accel_f * dtime;
256
257         // If the object is static, there are no collisions
258         if (dpos_f == v3f())
259                 return result;
260
261         // Limit speed for avoiding hangs
262         speed_f->Y = rangelim(speed_f->Y, -5000, 5000);
263         speed_f->X = rangelim(speed_f->X, -5000, 5000);
264         speed_f->Z = rangelim(speed_f->Z, -5000, 5000);
265
266         *speed_f = truncate(*speed_f, 10000.0f);
267
268         /*
269                 Collect node boxes in movement range
270         */
271         std::vector<NearbyCollisionInfo> cinfo;
272         {
273         //TimeTaker tt2("collisionMoveSimple collect boxes");
274         ScopeProfiler sp2(g_profiler, "collisionMoveSimple(): collect boxes", SPT_AVG);
275
276         v3f minpos_f(
277                 MYMIN(pos_f->X, newpos_f.X),
278                 MYMIN(pos_f->Y, newpos_f.Y) + 0.01f * BS, // bias rounding, player often at +/-n.5
279                 MYMIN(pos_f->Z, newpos_f.Z)
280         );
281         v3f maxpos_f(
282                 MYMAX(pos_f->X, newpos_f.X),
283                 MYMAX(pos_f->Y, newpos_f.Y),
284                 MYMAX(pos_f->Z, newpos_f.Z)
285         );
286         v3s16 min = floatToInt(minpos_f + box_0.MinEdge, BS) - v3s16(1, 1, 1);
287         v3s16 max = floatToInt(maxpos_f + box_0.MaxEdge, BS) + v3s16(1, 1, 1);
288
289         bool any_position_valid = false;
290
291         v3s16 p;
292         for (p.X = min.X; p.X <= max.X; p.X++)
293         for (p.Y = min.Y; p.Y <= max.Y; p.Y++)
294         for (p.Z = min.Z; p.Z <= max.Z; p.Z++) {
295                 bool is_position_valid;
296                 MapNode n = map->getNode(p, &is_position_valid);
297
298                 if (is_position_valid && n.getContent() != CONTENT_IGNORE) {
299                         // Object collides into walkable nodes
300
301                         any_position_valid = true;
302                         const NodeDefManager *nodedef = gamedef->getNodeDefManager();
303                         const ContentFeatures &f = nodedef->get(n);
304
305                         if (!f.walkable)
306                                 continue;
307
308                         // Negative bouncy may have a meaning, but we need +value here.
309                         int n_bouncy_value = abs(itemgroup_get(f.groups, "bouncy"));
310
311                         int neighbors = 0;
312                         if (f.drawtype == NDT_NODEBOX &&
313                                 f.node_box.type == NODEBOX_CONNECTED) {
314                                 v3s16 p2 = p;
315
316                                 p2.Y++;
317                                 getNeighborConnectingFace(p2, nodedef, map, n, 1, &neighbors);
318
319                                 p2 = p;
320                                 p2.Y--;
321                                 getNeighborConnectingFace(p2, nodedef, map, n, 2, &neighbors);
322
323                                 p2 = p;
324                                 p2.Z--;
325                                 getNeighborConnectingFace(p2, nodedef, map, n, 4, &neighbors);
326
327                                 p2 = p;
328                                 p2.X--;
329                                 getNeighborConnectingFace(p2, nodedef, map, n, 8, &neighbors);
330
331                                 p2 = p;
332                                 p2.Z++;
333                                 getNeighborConnectingFace(p2, nodedef, map, n, 16, &neighbors);
334
335                                 p2 = p;
336                                 p2.X++;
337                                 getNeighborConnectingFace(p2, nodedef, map, n, 32, &neighbors);
338                         }
339                         std::vector<aabb3f> nodeboxes;
340                         n.getCollisionBoxes(gamedef->ndef(), &nodeboxes, neighbors);
341
342                         // Calculate float position only once
343                         v3f posf = intToFloat(p, BS);
344                         for (auto box : nodeboxes) {
345                                 box.MinEdge += posf;
346                                 box.MaxEdge += posf;
347                                 cinfo.emplace_back(false, n_bouncy_value, p, box);
348                         }
349                 } else {
350                         // Collide with unloaded nodes (position invalid) and loaded
351                         // CONTENT_IGNORE nodes (position valid)
352                         aabb3f box = getNodeBox(p, BS);
353                         cinfo.emplace_back(true, 0, p, box);
354                 }
355         }
356
357         // Do not move if world has not loaded yet, since custom node boxes
358         // are not available for collision detection.
359         // This also intentionally occurs in the case of the object being positioned
360         // solely on loaded CONTENT_IGNORE nodes, no matter where they come from.
361         if (!any_position_valid) {
362                 *speed_f = v3f(0, 0, 0);
363                 return result;
364         }
365
366         } // tt2
367
368         if(collideWithObjects)
369         {
370                 /* add object boxes to cinfo */
371
372                 std::vector<ActiveObject*> objects;
373 #ifndef SERVER
374                 ClientEnvironment *c_env = dynamic_cast<ClientEnvironment*>(env);
375                 if (c_env != 0) {
376                         // Calculate distance by speed, add own extent and 1.5m of tolerance
377                         f32 distance = speed_f->getLength() * dtime +
378                                 box_0.getExtent().getLength() + 1.5f * BS;
379                         std::vector<DistanceSortedActiveObject> clientobjects;
380                         c_env->getActiveObjects(*pos_f, distance, clientobjects);
381
382                         for (auto &clientobject : clientobjects) {
383                                 // Do collide with everything but itself and the parent CAO
384                                 if (!self || (self != clientobject.obj &&
385                                                 self != clientobject.obj->getParent())) {
386                                         objects.push_back((ActiveObject*) clientobject.obj);
387                                 }
388                         }
389                 }
390                 else
391 #endif
392                 {
393                         ServerEnvironment *s_env = dynamic_cast<ServerEnvironment*>(env);
394                         if (s_env != NULL) {
395                                 // Calculate distance by speed, add own extent and 1.5m of tolerance
396                                 f32 distance = speed_f->getLength() * dtime +
397                                         box_0.getExtent().getLength() + 1.5f * BS;
398
399                                 // search for objects which are not us, or we are not its parent
400                                 // we directly use the callback to populate the result to prevent
401                                 // a useless result loop here
402                                 auto include_obj_cb = [self, &objects] (ServerActiveObject *obj) {
403                                         if (!obj->isGone() &&
404                                                 (!self || (self != obj && self != obj->getParent()))) {
405                                                 objects.push_back((ActiveObject *)obj);
406                                         }
407                                         return false;
408                                 };
409
410                                 std::vector<ServerActiveObject *> s_objects;
411                                 s_env->getObjectsInsideRadius(s_objects, *pos_f, distance, include_obj_cb);
412                         }
413                 }
414
415                 for (std::vector<ActiveObject*>::const_iterator iter = objects.begin();
416                                 iter != objects.end(); ++iter) {
417                         ActiveObject *object = *iter;
418
419                         if (object && object->collideWithObjects()) {
420                                 aabb3f object_collisionbox;
421                                 if (object->getCollisionBox(&object_collisionbox))
422                                         cinfo.emplace_back(object, 0, object_collisionbox);
423                         }
424                 }
425 #ifndef SERVER
426                 if (self && c_env) {
427                         LocalPlayer *lplayer = c_env->getLocalPlayer();
428                         if (lplayer->getParent() == nullptr) {
429                                 aabb3f lplayer_collisionbox = lplayer->getCollisionbox();
430                                 v3f lplayer_pos = lplayer->getPosition();
431                                 lplayer_collisionbox.MinEdge += lplayer_pos;
432                                 lplayer_collisionbox.MaxEdge += lplayer_pos;
433                                 ActiveObject *obj = (ActiveObject*) lplayer->getCAO();
434                                 cinfo.emplace_back(obj, 0, lplayer_collisionbox);
435                         }
436                 }
437 #endif
438         } //tt3
439
440         /*
441                 Collision detection
442         */
443
444         f32 d = 0.0f;
445
446         int loopcount = 0;
447
448         while(dtime > BS * 1e-10f) {
449                 // Avoid infinite loop
450                 loopcount++;
451                 if (loopcount >= 100) {
452                         warningstream << "collisionMoveSimple: Loop count exceeded, aborting to avoid infiniite loop" << std::endl;
453                         break;
454                 }
455
456                 aabb3f movingbox = box_0;
457                 movingbox.MinEdge += *pos_f;
458                 movingbox.MaxEdge += *pos_f;
459
460                 CollisionAxis nearest_collided = COLLISION_AXIS_NONE;
461                 f32 nearest_dtime = dtime;
462                 int nearest_boxindex = -1;
463
464                 /*
465                         Go through every nodebox, find nearest collision
466                 */
467                 for (u32 boxindex = 0; boxindex < cinfo.size(); boxindex++) {
468                         const NearbyCollisionInfo &box_info = cinfo[boxindex];
469                         // Ignore if already stepped up this nodebox.
470                         if (box_info.is_step_up)
471                                 continue;
472
473                         // Find nearest collision of the two boxes (raytracing-like)
474                         f32 dtime_tmp = nearest_dtime;
475                         CollisionAxis collided = axisAlignedCollision(box_info.box,
476                                         movingbox, *speed_f, &dtime_tmp);
477
478                         if (collided == -1 || dtime_tmp >= nearest_dtime)
479                                 continue;
480
481                         nearest_dtime = dtime_tmp;
482                         nearest_collided = collided;
483                         nearest_boxindex = boxindex;
484                 }
485
486                 if (nearest_collided == COLLISION_AXIS_NONE) {
487                         // No collision with any collision box.
488                         *pos_f += truncate(*speed_f * dtime, 100.0f);
489                         dtime = 0;  // Set to 0 to avoid "infinite" loop due to small FP numbers
490                 } else {
491                         // Otherwise, a collision occurred.
492                         NearbyCollisionInfo &nearest_info = cinfo[nearest_boxindex];
493                         const aabb3f& cbox = nearest_info.box;
494
495                         //movingbox except moved to the horizontal position it would be after step up
496                         aabb3f stepbox = movingbox;
497                         stepbox.MinEdge.X += speed_f->X * dtime;
498                         stepbox.MinEdge.Z += speed_f->Z * dtime;
499                         stepbox.MaxEdge.X += speed_f->X * dtime;
500                         stepbox.MaxEdge.Z += speed_f->Z * dtime;
501                         // Check for stairs.
502                         bool step_up = (nearest_collided != COLLISION_AXIS_Y) && // must not be Y direction
503                                         (movingbox.MinEdge.Y < cbox.MaxEdge.Y) &&
504                                         (movingbox.MinEdge.Y + stepheight > cbox.MaxEdge.Y) &&
505                                         (!wouldCollideWithCeiling(cinfo, stepbox,
506                                                         cbox.MaxEdge.Y - movingbox.MinEdge.Y,
507                                                         d));
508
509                         // Get bounce multiplier
510                         float bounce = -(float)nearest_info.bouncy / 100.0f;
511
512                         // Move to the point of collision and reduce dtime by nearest_dtime
513                         if (nearest_dtime < 0) {
514                                 // Handle negative nearest_dtime
515                                 if (!step_up) {
516                                         if (nearest_collided == COLLISION_AXIS_X)
517                                                 pos_f->X += speed_f->X * nearest_dtime;
518                                         if (nearest_collided == COLLISION_AXIS_Y)
519                                                 pos_f->Y += speed_f->Y * nearest_dtime;
520                                         if (nearest_collided == COLLISION_AXIS_Z)
521                                                 pos_f->Z += speed_f->Z * nearest_dtime;
522                                 }
523                         } else {
524                                 *pos_f += truncate(*speed_f * nearest_dtime, 100.0f);
525                                 dtime -= nearest_dtime;
526                         }
527
528                         bool is_collision = true;
529                         if (nearest_info.is_unloaded)
530                                 is_collision = false;
531
532                         CollisionInfo info;
533                         if (nearest_info.isObject())
534                                 info.type = COLLISION_OBJECT;
535                         else
536                                 info.type = COLLISION_NODE;
537
538                         info.node_p = nearest_info.position;
539                         info.object = nearest_info.obj;
540                         info.old_speed = *speed_f;
541                         info.plane = nearest_collided;
542
543                         // Set the speed component that caused the collision to zero
544                         if (step_up) {
545                                 // Special case: Handle stairs
546                                 nearest_info.is_step_up = true;
547                                 is_collision = false;
548                         } else if (nearest_collided == COLLISION_AXIS_X) {
549                                 if (fabs(speed_f->X) > BS * 3)
550                                         speed_f->X *= bounce;
551                                 else
552                                         speed_f->X = 0;
553                                 result.collides = true;
554                         } else if (nearest_collided == COLLISION_AXIS_Y) {
555                                 if(fabs(speed_f->Y) > BS * 3)
556                                         speed_f->Y *= bounce;
557                                 else
558                                         speed_f->Y = 0;
559                                 result.collides = true;
560                         } else if (nearest_collided == COLLISION_AXIS_Z) {
561                                 if (fabs(speed_f->Z) > BS * 3)
562                                         speed_f->Z *= bounce;
563                                 else
564                                         speed_f->Z = 0;
565                                 result.collides = true;
566                         }
567
568                         info.new_speed = *speed_f;
569                         if (info.new_speed.getDistanceFrom(info.old_speed) < 0.1f * BS)
570                                 is_collision = false;
571
572                         if (is_collision) {
573                                 info.axis = nearest_collided;
574                                 result.collisions.push_back(info);
575                         }
576                 }
577         }
578
579         /*
580                 Final touches: Check if standing on ground, step up stairs.
581         */
582         aabb3f box = box_0;
583         box.MinEdge += *pos_f;
584         box.MaxEdge += *pos_f;
585         for (const auto &box_info : cinfo) {
586                 const aabb3f &cbox = box_info.box;
587
588                 /*
589                         See if the object is touching ground.
590
591                         Object touches ground if object's minimum Y is near node's
592                         maximum Y and object's X-Z-area overlaps with the node's
593                         X-Z-area.
594                 */
595
596                 if (cbox.MaxEdge.X - d > box.MinEdge.X && cbox.MinEdge.X + d < box.MaxEdge.X &&
597                                 cbox.MaxEdge.Z - d > box.MinEdge.Z &&
598                                 cbox.MinEdge.Z + d < box.MaxEdge.Z) {
599                         if (box_info.is_step_up) {
600                                 pos_f->Y += cbox.MaxEdge.Y - box.MinEdge.Y;
601                                 box = box_0;
602                                 box.MinEdge += *pos_f;
603                                 box.MaxEdge += *pos_f;
604                         }
605                         if (std::fabs(cbox.MaxEdge.Y - box.MinEdge.Y) < 0.05f) {
606                                 result.touching_ground = true;
607
608                                 if (box_info.isObject())
609                                         result.standing_on_object = true;
610                         }
611                 }
612         }
613
614         return result;
615 }