/*
** Command & Conquer Renegade(tm)
** Copyright 2025 Electronic Arts Inc.
**
** 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 3 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, see .
*/
/***********************************************************************************************
*** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
***********************************************************************************************
* *
* Project Name : WWMath *
* *
* $Archive:: /Commando/Code/wwmath/wwmath.cpp $*
* *
* Author:: Eric_c *
* *
* $Modtime:: 5/10/01 10:52p $*
* *
* $Revision:: 11 $*
* *
*---------------------------------------------------------------------------------------------*
* Functions: *
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
#include "wwmath.h"
#include "wwhack.h"
#include "lookuptable.h"
#include
#include "wwdebug.h"
#include "wwprofile.h"
// TODO: convert to use loouptablemanager...
float _FastAcosTable[ARC_TABLE_SIZE];
float _FastAsinTable[ARC_TABLE_SIZE];
float _FastSinTable[SIN_TABLE_SIZE];
float _FastInvSinTable[SIN_TABLE_SIZE];
void WWMath::Init(void)
{
LookupTableMgrClass::Init();
for (int a=0;a0) {
_FastInvSinTable[a]=1.0f/_FastSinTable[a];
} else {
_FastInvSinTable[a]=WWMATH_FLOAT_MAX;
}
}
}
void WWMath::Shutdown(void)
{
LookupTableMgrClass::Shutdown();
}
float WWMath::Random_Float(void)
{
return ((float)(rand() & 0xFFF)) / (float)(0xFFF);
}
/*
** Force link some modules from this library.
*/
void Do_Force_Links(void)
{
FORCE_LINK(curve);
FORCE_LINK(hermitespline);
FORCE_LINK(catmullromspline);
FORCE_LINK(cardinalspline);
FORCE_LINK(tcbspline);
}