2011-04-10 14:16:27 +02:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-04-10 14:16:27 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-04-10 14:16:27 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-04-10 14:16:27 +02:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-04-10 14:16:27 +02:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2011-04-10 14:16:27 +02:00
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2012-03-19 04:25:09 +01:00
|
|
|
#include <vector>
|
2011-04-10 14:16:27 +02:00
|
|
|
|
|
|
|
class Map;
|
2011-11-14 20:41:30 +01:00
|
|
|
class IGameDef;
|
2013-01-12 18:59:19 +01:00
|
|
|
class Environment;
|
2013-04-09 23:16:13 +02:00
|
|
|
class ActiveObject;
|
2011-04-10 14:16:27 +02:00
|
|
|
|
2012-09-01 11:58:37 +02:00
|
|
|
enum CollisionType
|
|
|
|
{
|
2013-01-12 18:59:19 +01:00
|
|
|
COLLISION_NODE,
|
|
|
|
COLLISION_OBJECT,
|
2012-09-01 11:58:37 +02:00
|
|
|
};
|
|
|
|
|
2019-06-10 13:00:35 +02:00
|
|
|
enum CollisionAxis
|
|
|
|
{
|
|
|
|
COLLISION_AXIS_NONE = -1,
|
|
|
|
COLLISION_AXIS_X,
|
|
|
|
COLLISION_AXIS_Y,
|
|
|
|
COLLISION_AXIS_Z,
|
|
|
|
};
|
|
|
|
|
2012-09-01 11:58:37 +02:00
|
|
|
struct CollisionInfo
|
|
|
|
{
|
2017-08-17 20:23:54 +02:00
|
|
|
CollisionInfo() = default;
|
|
|
|
|
2017-06-16 11:25:52 +02:00
|
|
|
CollisionType type = COLLISION_NODE;
|
2019-06-10 13:00:35 +02:00
|
|
|
CollisionAxis axis = COLLISION_AXIS_NONE;
|
2017-06-16 11:25:52 +02:00
|
|
|
v3s16 node_p = v3s16(-32768,-32768,-32768); // COLLISION_NODE
|
2020-04-26 22:52:00 +02:00
|
|
|
ActiveObject *object = nullptr; // COLLISION_OBJECT
|
2012-09-01 11:58:37 +02:00
|
|
|
v3f old_speed;
|
|
|
|
v3f new_speed;
|
2018-11-22 22:47:15 +01:00
|
|
|
int plane = -1;
|
2012-09-01 11:58:37 +02:00
|
|
|
};
|
|
|
|
|
2011-04-10 14:16:27 +02:00
|
|
|
struct collisionMoveResult
|
|
|
|
{
|
2017-08-17 20:23:54 +02:00
|
|
|
collisionMoveResult() = default;
|
|
|
|
|
2017-06-16 11:25:52 +02:00
|
|
|
bool touching_ground = false;
|
|
|
|
bool collides = false;
|
|
|
|
bool standing_on_object = false;
|
2012-09-01 11:58:37 +02:00
|
|
|
std::vector<CollisionInfo> collisions;
|
2011-04-10 14:16:27 +02:00
|
|
|
};
|
|
|
|
|
2011-06-26 14:48:56 +02:00
|
|
|
// Moves using a single iteration; speed should not exceed pos_max_d/dtime
|
2013-01-12 18:59:19 +01:00
|
|
|
collisionMoveResult collisionMoveSimple(Environment *env,IGameDef *gamedef,
|
2012-03-19 04:25:09 +01:00
|
|
|
f32 pos_max_d, const aabb3f &box_0,
|
|
|
|
f32 stepheight, f32 dtime,
|
2016-01-25 00:06:01 +01:00
|
|
|
v3f *pos_f, v3f *speed_f,
|
|
|
|
v3f accel_f, ActiveObject *self=NULL,
|
2013-06-14 14:04:46 +02:00
|
|
|
bool collideWithObjects=true);
|
2011-06-26 14:48:56 +02:00
|
|
|
|
2012-03-19 04:25:09 +01:00
|
|
|
// Helper function:
|
|
|
|
// Checks for collision of a moving aabbox with a static aabbox
|
|
|
|
// Returns -1 if no collision, 0 if X collision, 1 if Y collision, 2 if Z collision
|
|
|
|
// dtime receives time until first collision, invalid if -1 is returned
|
2019-06-10 13:00:35 +02:00
|
|
|
CollisionAxis axisAlignedCollision(
|
2012-03-19 04:25:09 +01:00
|
|
|
const aabb3f &staticbox, const aabb3f &movingbox,
|
2020-04-08 22:45:05 +02:00
|
|
|
const v3f &speed, f32 *dtime);
|
2012-03-19 04:25:09 +01:00
|
|
|
|
|
|
|
// Helper function:
|
|
|
|
// Checks if moving the movingbox up by the given distance would hit a ceiling.
|
|
|
|
bool wouldCollideWithCeiling(
|
|
|
|
const std::vector<aabb3f> &staticboxes,
|
|
|
|
const aabb3f &movingbox,
|
|
|
|
f32 y_increase, f32 d);
|