// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2004 Alistair Riddoch
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (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
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software Foundation,
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
// $Id: emergencetest.cpp,v 1.6 2006-10-26 00:48:16 alriddoch Exp $
#include "physics/Collision.h"
#include "modules/Location.h"
#include <iostream>
#include <cassert>
int main()
{
int ret = 0;
{
CoordList coords(1, Point3D(0, 0, 0));
Vector3D velocity(1, 0, 0);
BBox container(WFMath::Point<3>(-1, -1, -1), WFMath::Point<3>(1,1,1));
float time = 0;
bool res = predictEmergence(coords, velocity, container, time);
std::cout << "Vertex emergence predicted after " << time
<< " seconds" << std::endl << std::flush;
velocity = Vector3D(0.1, 0.1, 0.1);
time = 0;
res = predictEmergence(coords, velocity, container, time);
std::cout << "Vertex emergence predicted after " << time
<< " seconds" << std::endl << std::flush;
velocity = Vector3D(0.2, 0.2, -0.2);
time = 0;
res = predictEmergence(coords, velocity, container, time);
std::cout << "Vertex emergence predicted after " << time
<< " seconds" << std::endl << std::flush;
}
{
float time = 0;
Location a(0, Point3D(0,0,0), Vector3D(-1,1,1));
a.m_bBox = BBox(WFMath::Point<3>(-1, -1, -1), WFMath::Point<3>(1,1,1));
a.m_orientation = Quaternion(Vector3D(1,1,1), 45);
Location b(0, Point3D(5,0,0));
b.m_bBox = BBox(WFMath::Point<3>(-5, -5, -5), WFMath::Point<3>(5,5,5));
predictEmergence(a, b, time);
std::cout << "Vertex emergence predicted after " << time
<< " seconds" << std::endl << std::flush;
}
return ret;
}
syntax highlighted by Code2HTML, v. 0.9.1