| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- /*
- ** Command & Conquer Generals(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: DieModule.cpp ////////////////////////////////////////////////////////////////////////////
- // Author:
- // Desc:
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- #include "PreRTS.h" // This must go first in EVERY cpp file int the GameEngine
- #define DEFINE_OBJECT_STATUS_NAMES
- #include "Common/Xfer.h"
- #include "GameClient/Drawable.h"
- #include "GameLogic/ExperienceTracker.h"
- #include "GameLogic/GameLogic.h"
- #include "GameLogic/Module/DieModule.h"
- #include "GameLogic/Object.h"
- #ifdef _INTERNAL
- // for occasional debugging...
- //#pragma optimize("", off)
- //#pragma MESSAGE("************************************** WARNING, optimization disabled for debugging purposes")
- #endif
- //-------------------------------------------------------------------------------------------------
- DieMuxData::DieMuxData() :
- m_deathTypes(DEATH_TYPE_FLAGS_ALL),
- m_veterancyLevels(VETERANCY_LEVEL_FLAGS_ALL),
- m_exemptStatus(OBJECT_STATUS_NONE),
- m_requiredStatus(OBJECT_STATUS_NONE)
- {
- }
- //-------------------------------------------------------------------------------------------------
- const FieldParse* DieMuxData::getFieldParse()
- {
- static const FieldParse dataFieldParse[] =
- {
- { "DeathTypes", INI::parseDeathTypeFlags, NULL, offsetof( DieMuxData, m_deathTypes ) },
- { "VeterancyLevels", INI::parseVeterancyLevelFlags, NULL, offsetof( DieMuxData, m_veterancyLevels ) },
- { "ExemptStatus", INI::parseBitString32, TheObjectStatusBitNames, offsetof( DieMuxData, m_exemptStatus ) },
- { "RequiredStatus", INI::parseBitString32, TheObjectStatusBitNames, offsetof( DieMuxData, m_requiredStatus ) },
- { 0, 0, 0, 0 }
- };
- return dataFieldParse;
- }
- //-------------------------------------------------------------------------------------------------
- Bool DieMuxData::isDieApplicable(const Object* obj, const DamageInfo *damageInfo) const
- {
- // wrong death type? punt
- if (!getDeathTypeFlag(m_deathTypes, damageInfo->in.m_deathType))
- return false;
- // wrong vet level? punt
- if (!getVeterancyLevelFlag(m_veterancyLevels, obj->getVeterancyLevel()))
- return false;
- // all 'exempt' bits must be clear for us to run.
- if ((obj->getStatusBits() & m_exemptStatus) != 0)
- return false;
- // all 'required' bits must be set for us to run.
- if ((obj->getStatusBits() & m_requiredStatus) != m_requiredStatus)
- return false;
- return true;
- }
- // ------------------------------------------------------------------------------------------------
- /** CRC */
- // ------------------------------------------------------------------------------------------------
- void DieModule::crc( Xfer *xfer )
- {
- // extend base class
- BehaviorModule::crc( xfer );
- } // end crc
- // ------------------------------------------------------------------------------------------------
- /** Xfer Method */
- // ------------------------------------------------------------------------------------------------
- void DieModule::xfer( Xfer *xfer )
- {
- // version
- XferVersion currentVersion = 1;
- XferVersion version = currentVersion;
- xfer->xferVersion( &version, currentVersion );
- // call base class
- BehaviorModule::xfer( xfer );
- } // end xfer
- // ------------------------------------------------------------------------------------------------
- /** Load post process */
- // ------------------------------------------------------------------------------------------------
- void DieModule::loadPostProcess( void )
- {
- // call base class
- BehaviorModule::loadPostProcess();
- } // end loadPostProcess
|