@awayfl/awayfl-player
Version:
Flash Player emulator for executing SWF files (published for FP versions 6 and up) in javascript
79 lines (78 loc) • 4.25 kB
JavaScript
/*
* Copyright (c) 2006-2007 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
*/
var b2Settings = /** @class */ (function () {
function b2Settings() {
}
// assert
b2Settings.b2Assert = function (a) {
if (!a) {
var nullVec = void 0;
nullVec.x++;
}
};
b2Settings.USHRT_MAX = 0x0000ffff;
b2Settings.b2_pi = Math.PI;
// Collision
b2Settings.b2_maxManifoldPoints = 2;
b2Settings.b2_maxPolygonVertices = 8;
b2Settings.b2_maxProxies = 1024; // this must be a power of two
b2Settings.b2_maxPairs = 8 * b2Settings.b2_maxProxies; // this must be a power of two
// Dynamics
/// A small length used as a collision and constraint tolerance. Usually it is
/// chosen to be numerically significant, but visually insignificant.
b2Settings.b2_linearSlop = 0.005; // 0.5 cm
/// A small angle used as a collision and constraint tolerance. Usually it is
/// chosen to be numerically significant, but visually insignificant.
b2Settings.b2_angularSlop = 2.0 / 180.0 * b2Settings.b2_pi; // 2 degrees
/// Continuous collision detection (CCD) works with core, shrunken shapes. This is the
/// amount by which shapes are automatically shrunk to work with CCD. This must be
/// larger than b2_linearSlop.
b2Settings.b2_toiSlop = 8.0 * b2Settings.b2_linearSlop;
/// Maximum number of contacts to be handled to solve a TOI island.
b2Settings.b2_maxTOIContactsPerIsland = 32;
/// A velocity threshold for elastic collisions. Any collision with a relative linear
/// velocity below this threshold will be treated as inelastic.
b2Settings.b2_velocityThreshold = 1.0; // 1 m/s
/// The maximum linear position correction used when solving constraints. This helps to
/// prevent overshoot.
b2Settings.b2_maxLinearCorrection = 0.2; // 20 cm
/// The maximum angular position correction used when solving constraints. This helps to
/// prevent overshoot.
b2Settings.b2_maxAngularCorrection = 8.0 / 180.0 * b2Settings.b2_pi; // 8 degrees
/// The maximum linear velocity of a body. This limit is very large and is used
/// to prevent numerical problems. You shouldn't need to adjust this.
b2Settings.b2_maxLinearVelocity = 200.0;
b2Settings.b2_maxLinearVelocitySquared = b2Settings.b2_maxLinearVelocity * b2Settings.b2_maxLinearVelocity;
/// The maximum angular velocity of a body. This limit is very large and is used
/// to prevent numerical problems. You shouldn't need to adjust this.
b2Settings.b2_maxAngularVelocity = 250.0;
b2Settings.b2_maxAngularVelocitySquared = b2Settings.b2_maxAngularVelocity * b2Settings.b2_maxAngularVelocity;
/// This scale factor controls how fast overlap is resolved. Ideally this would be 1 so
/// that overlap is removed in one time step. However using values close to 1 often lead
/// to overshoot.
b2Settings.b2_contactBaumgarte = 0.2;
// Sleep
/// The time that a body must be still before it will go to sleep.
b2Settings.b2_timeToSleep = 0.5; // half a second
/// A body cannot sleep if its linear velocity is above this tolerance.
b2Settings.b2_linearSleepTolerance = 0.01; // 1 cm/s
/// A body cannot sleep if its angular velocity is above this tolerance.
b2Settings.b2_angularSleepTolerance = 2.0 / 180.0; // 2 degrees/s
return b2Settings;
}());
export { b2Settings };