| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /*
- ** Command & Conquer Generals Zero Hour(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 <http://www.gnu.org/licenses/>.
- */
- ////////////////////////////////////////////////////////////////////////////////
- // //
- // (c) 2001-2003 Electronic Arts Inc. //
- // //
- ////////////////////////////////////////////////////////////////////////////////
- // FILE: SmartBombTargetHomingUpdate.cpp /////////////////////////////////////////////////////////////////////////
- // Author: Mark Lorenzen, July 2003
- // Desc: Update that will fudge a falling object's position just slightly, to make it find its target better
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- // INCLUDES ///////////////////////////////////////////////////////////////////////////////////////
- #include "PreRTS.h"
- #include "Common/RandomValue.h"
- #include "Common/Xfer.h"
- #include "GameLogic/GameLogic.h"
- #include "GameLogic/Object.h"
- #include "GameLogic/Module/SmartBombTargetHomingUpdate.h"
- //-------------------------------------------------------------------------------------------------
- //-------------------------------------------------------------------------------------------------
- SmartBombTargetHomingUpdate::SmartBombTargetHomingUpdate( Thing *thing, const ModuleData* moduleData ) : UpdateModule( thing, moduleData )
- {
- m_targetReceived = FALSE;
- m_target.zero();
- setWakeFrame( getObject(), UPDATE_SLEEP_NONE );
- }
- //-------------------------------------------------------------------------------------------------
- //-------------------------------------------------------------------------------------------------
- SmartBombTargetHomingUpdate::~SmartBombTargetHomingUpdate( void )
- {
- }
- //#define CRISS_CROSS_GEOMETRY
- //-------------------------------------------------------------------------------------------------
- //-------------------------------------------------------------------------------------------------
- void SmartBombTargetHomingUpdate::SetTargetPosition( const Coord3D& target )
- {
- // Ensure that we have been passed a real-world location
- DEBUG_ASSERTCRASH( target.length() > 0.0f, ("SmartBombTargetHomingUpdate::SetTargetPosition() received a zero coord") );
- if ( ! (target.length() > 0.0f) )
- return;
- m_target.x = target.x;
- m_target.y = target.y;
- m_target.z = target.z;
- m_targetReceived = TRUE;
- }
- //-------------------------------------------------------------------------------------------------
- //-------------------------------------------------------------------------------------------------
- UpdateSleepTime SmartBombTargetHomingUpdate::update( void )
- {
- if ( ! m_targetReceived )
- return UPDATE_SLEEP_NONE;
- const SmartBombTargetHomingUpdateModuleData* d = getSmartBombTargetHomingUpdateModuleData();
- if ( ! d )
- return UPDATE_SLEEP_NONE;
- Object *self = getObject();
- if ( ! self )
- return UPDATE_SLEEP_NONE;
- if ( ! self->isSignificantlyAboveTerrain() )
- return UPDATE_SLEEP_NONE;
- const Coord3D *currentPos = self->getPosition();
- Coord3D pos;
- pos.zero();
- Real statusCoeff = MAX( 0.0f, MIN( 1.0f, d->m_courseCorrectionScalar));
- Real targetCoeff = 1.0f - statusCoeff;
- pos.x = m_target.x * targetCoeff + currentPos->x * statusCoeff;
- pos.y = m_target.y * targetCoeff + currentPos->y * statusCoeff;
- pos.z = currentPos->z;
- self->setPosition( &pos );
- return UPDATE_SLEEP_NONE;
- }
- // ------------------------------------------------------------------------------------------------
- /** CRC */
- // ------------------------------------------------------------------------------------------------
- void SmartBombTargetHomingUpdate::crc( Xfer *xfer )
- {
- // extend base class
- UpdateModule::crc( xfer );
- } // end crc
- // ------------------------------------------------------------------------------------------------
- /** Xfer method
- * Version Info:
- * 1: Initial version */
- // ------------------------------------------------------------------------------------------------
- void SmartBombTargetHomingUpdate::xfer( Xfer *xfer )
- {
- // version
- XferVersion currentVersion = 1;
- XferVersion version = currentVersion;
- xfer->xferVersion( &version, currentVersion );
- // extend base class
- UpdateModule::xfer( xfer );
- } // end xfer
- // ------------------------------------------------------------------------------------------------
- /** Load post process */
- // ------------------------------------------------------------------------------------------------
- void SmartBombTargetHomingUpdate::loadPostProcess( void )
- {
- // extend base class
- UpdateModule::loadPostProcess();
- } // end loadPostProcess
|