123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438 |
- /*
- ===========================================================================
- Doom 3 GPL Source Code
- Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
- This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
- Doom 3 Source Code 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.
- Doom 3 Source Code 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 Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
- In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
- If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
- ===========================================================================
- */
- #include "../idlib/precompiled.h"
- #pragma hdrstop
- #include "Game_local.h"
- /***********************************************************************
- idAnimState
- ***********************************************************************/
- /*
- =====================
- idAnimState::idAnimState
- =====================
- */
- idAnimState::idAnimState() {
- self = NULL;
- animator = NULL;
- thread = NULL;
- idleAnim = true;
- disabled = true;
- channel = ANIMCHANNEL_ALL;
- animBlendFrames = 0;
- lastAnimBlendFrames = 0;
- }
- /*
- =====================
- idAnimState::~idAnimState
- =====================
- */
- idAnimState::~idAnimState() {
- delete thread;
- }
- /*
- =====================
- idAnimState::Save
- =====================
- */
- void idAnimState::Save( idSaveGame *savefile ) const {
- savefile->WriteObject( self );
- // Save the entity owner of the animator
- savefile->WriteObject( animator->GetEntity() );
- savefile->WriteObject( thread );
- savefile->WriteString( state );
- savefile->WriteInt( animBlendFrames );
- savefile->WriteInt( lastAnimBlendFrames );
- savefile->WriteInt( channel );
- savefile->WriteBool( idleAnim );
- savefile->WriteBool( disabled );
- }
- /*
- =====================
- idAnimState::Restore
- =====================
- */
- void idAnimState::Restore( idRestoreGame *savefile ) {
- savefile->ReadObject( reinterpret_cast<idClass *&>( self ) );
- idEntity *animowner;
- savefile->ReadObject( reinterpret_cast<idClass *&>( animowner ) );
- if ( animowner ) {
- animator = animowner->GetAnimator();
- }
- savefile->ReadObject( reinterpret_cast<idClass *&>( thread ) );
- savefile->ReadString( state );
- savefile->ReadInt( animBlendFrames );
- savefile->ReadInt( lastAnimBlendFrames );
- savefile->ReadInt( channel );
- savefile->ReadBool( idleAnim );
- savefile->ReadBool( disabled );
- }
- /*
- =====================
- idAnimState::Init
- =====================
- */
- void idAnimState::Init( idActor *owner, idAnimator *_animator, int animchannel ) {
- assert( owner );
- assert( _animator );
- self = owner;
- animator = _animator;
- channel = animchannel;
- if ( !thread ) {
- thread = new idThread();
- thread->ManualDelete();
- }
- thread->EndThread();
- thread->ManualControl();
- }
- /*
- =====================
- idAnimState::Shutdown
- =====================
- */
- void idAnimState::Shutdown( void ) {
- delete thread;
- thread = NULL;
- }
- /*
- =====================
- idAnimState::SetState
- =====================
- */
- void idAnimState::SetState( const char *statename, int blendFrames ) {
- const function_t *func;
- func = self->scriptObject.GetFunction( statename );
- if ( !func ) {
- assert( 0 );
- gameLocal.Error( "Can't find function '%s' in object '%s'", statename, self->scriptObject.GetTypeName() );
- }
- state = statename;
- disabled = false;
- animBlendFrames = blendFrames;
- lastAnimBlendFrames = blendFrames;
- thread->CallFunction( self, func, true );
- animBlendFrames = blendFrames;
- lastAnimBlendFrames = blendFrames;
- disabled = false;
- idleAnim = false;
- if ( ai_debugScript.GetInteger() == self->entityNumber ) {
- gameLocal.Printf( "%d: %s: Animstate: %s\n", gameLocal.time, self->name.c_str(), state.c_str() );
- }
- }
- /*
- =====================
- idAnimState::StopAnim
- =====================
- */
- void idAnimState::StopAnim( int frames ) {
- animBlendFrames = 0;
- animator->Clear( channel, gameLocal.time, FRAME2MS( frames ) );
- }
- /*
- =====================
- idAnimState::PlayAnim
- =====================
- */
- void idAnimState::PlayAnim( int anim ) {
- if ( anim ) {
- animator->PlayAnim( channel, anim, gameLocal.time, FRAME2MS( animBlendFrames ) );
- }
- animBlendFrames = 0;
- }
- /*
- =====================
- idAnimState::CycleAnim
- =====================
- */
- void idAnimState::CycleAnim( int anim ) {
- if ( anim ) {
- animator->CycleAnim( channel, anim, gameLocal.time, FRAME2MS( animBlendFrames ) );
- }
- animBlendFrames = 0;
- }
- /*
- =====================
- idAnimState::BecomeIdle
- =====================
- */
- void idAnimState::BecomeIdle( void ) {
- idleAnim = true;
- }
- /*
- =====================
- idAnimState::Disabled
- =====================
- */
- bool idAnimState::Disabled( void ) const {
- return disabled;
- }
- /*
- =====================
- idAnimState::AnimDone
- =====================
- */
- bool idAnimState::AnimDone( int blendFrames ) const {
- int animDoneTime;
-
- animDoneTime = animator->CurrentAnim( channel )->GetEndTime();
- if ( animDoneTime < 0 ) {
- // playing a cycle
- return false;
- } else if ( animDoneTime - FRAME2MS( blendFrames ) <= gameLocal.time ) {
- return true;
- } else {
- return false;
- }
- }
- /*
- =====================
- idAnimState::IsIdle
- =====================
- */
- bool idAnimState::IsIdle( void ) const {
- return disabled || idleAnim;
- }
- /*
- =====================
- idAnimState::GetAnimFlags
- =====================
- */
- animFlags_t idAnimState::GetAnimFlags( void ) const {
- animFlags_t flags;
- memset( &flags, 0, sizeof( flags ) );
- if ( !disabled && !AnimDone( 0 ) ) {
- flags = animator->GetAnimFlags( animator->CurrentAnim( channel )->AnimNum() );
- }
- return flags;
- }
- /*
- =====================
- idAnimState::Enable
- =====================
- */
- void idAnimState::Enable( int blendFrames ) {
- if ( disabled ) {
- disabled = false;
- animBlendFrames = blendFrames;
- lastAnimBlendFrames = blendFrames;
- if ( state.Length() ) {
- SetState( state.c_str(), blendFrames );
- }
- }
- }
- /*
- =====================
- idAnimState::Disable
- =====================
- */
- void idAnimState::Disable( void ) {
- disabled = true;
- idleAnim = false;
- }
- /*
- =====================
- idAnimState::UpdateState
- =====================
- */
- bool idAnimState::UpdateState( void ) {
- if ( disabled ) {
- return false;
- }
- if ( ai_debugScript.GetInteger() == self->entityNumber ) {
- thread->EnableDebugInfo();
- } else {
- thread->DisableDebugInfo();
- }
- thread->Execute();
- return true;
- }
- /***********************************************************************
- idActor
- ***********************************************************************/
- const idEventDef AI_EnableEyeFocus( "enableEyeFocus" );
- const idEventDef AI_DisableEyeFocus( "disableEyeFocus" );
- const idEventDef EV_Footstep( "footstep" );
- const idEventDef EV_FootstepLeft( "leftFoot" );
- const idEventDef EV_FootstepRight( "rightFoot" );
- const idEventDef EV_EnableWalkIK( "EnableWalkIK" );
- const idEventDef EV_DisableWalkIK( "DisableWalkIK" );
- const idEventDef EV_EnableLegIK( "EnableLegIK", "d" );
- const idEventDef EV_DisableLegIK( "DisableLegIK", "d" );
- const idEventDef AI_StopAnim( "stopAnim", "dd" );
- const idEventDef AI_PlayAnim( "playAnim", "ds", 'd' );
- const idEventDef AI_PlayCycle( "playCycle", "ds", 'd' );
- const idEventDef AI_IdleAnim( "idleAnim", "ds", 'd' );
- const idEventDef AI_SetSyncedAnimWeight( "setSyncedAnimWeight", "ddf" );
- const idEventDef AI_SetBlendFrames( "setBlendFrames", "dd" );
- const idEventDef AI_GetBlendFrames( "getBlendFrames", "d", 'd' );
- const idEventDef AI_AnimState( "animState", "dsd" );
- const idEventDef AI_GetAnimState( "getAnimState", "d", 's' );
- const idEventDef AI_InAnimState( "inAnimState", "ds", 'd' );
- const idEventDef AI_FinishAction( "finishAction", "s" );
- const idEventDef AI_AnimDone( "animDone", "dd", 'd' );
- const idEventDef AI_OverrideAnim( "overrideAnim", "d" );
- const idEventDef AI_EnableAnim( "enableAnim", "dd" );
- const idEventDef AI_PreventPain( "preventPain", "f" );
- const idEventDef AI_DisablePain( "disablePain" );
- const idEventDef AI_EnablePain( "enablePain" );
- const idEventDef AI_GetPainAnim( "getPainAnim", NULL, 's' );
- const idEventDef AI_SetAnimPrefix( "setAnimPrefix", "s" );
- const idEventDef AI_HasAnim( "hasAnim", "ds", 'f' );
- const idEventDef AI_CheckAnim( "checkAnim", "ds" );
- const idEventDef AI_ChooseAnim( "chooseAnim", "ds", 's' );
- const idEventDef AI_AnimLength( "animLength", "ds", 'f' );
- const idEventDef AI_AnimDistance( "animDistance", "ds", 'f' );
- const idEventDef AI_HasEnemies( "hasEnemies", NULL, 'd' );
- const idEventDef AI_NextEnemy( "nextEnemy", "E", 'e' );
- const idEventDef AI_ClosestEnemyToPoint( "closestEnemyToPoint", "v", 'e' );
- const idEventDef AI_SetNextState( "setNextState", "s" );
- const idEventDef AI_SetState( "setState", "s" );
- const idEventDef AI_GetState( "getState", NULL, 's' );
- const idEventDef AI_GetHead( "getHead", NULL, 'e' );
- #ifdef _D3XP
- const idEventDef EV_SetDamageGroupScale( "setDamageGroupScale", "sf" );
- const idEventDef EV_SetDamageGroupScaleAll( "setDamageGroupScaleAll", "f" );
- const idEventDef EV_GetDamageGroupScale( "getDamageGroupScale", "s", 'f' );
- const idEventDef EV_SetDamageCap( "setDamageCap", "f" );
- const idEventDef EV_SetWaitState( "setWaitState" , "s" );
- const idEventDef EV_GetWaitState( "getWaitState", NULL, 's' );
- #endif
- CLASS_DECLARATION( idAFEntity_Gibbable, idActor )
- EVENT( AI_EnableEyeFocus, idActor::Event_EnableEyeFocus )
- EVENT( AI_DisableEyeFocus, idActor::Event_DisableEyeFocus )
- EVENT( EV_Footstep, idActor::Event_Footstep )
- EVENT( EV_FootstepLeft, idActor::Event_Footstep )
- EVENT( EV_FootstepRight, idActor::Event_Footstep )
- EVENT( EV_EnableWalkIK, idActor::Event_EnableWalkIK )
- EVENT( EV_DisableWalkIK, idActor::Event_DisableWalkIK )
- EVENT( EV_EnableLegIK, idActor::Event_EnableLegIK )
- EVENT( EV_DisableLegIK, idActor::Event_DisableLegIK )
- EVENT( AI_PreventPain, idActor::Event_PreventPain )
- EVENT( AI_DisablePain, idActor::Event_DisablePain )
- EVENT( AI_EnablePain, idActor::Event_EnablePain )
- EVENT( AI_GetPainAnim, idActor::Event_GetPainAnim )
- EVENT( AI_SetAnimPrefix, idActor::Event_SetAnimPrefix )
- EVENT( AI_StopAnim, idActor::Event_StopAnim )
- EVENT( AI_PlayAnim, idActor::Event_PlayAnim )
- EVENT( AI_PlayCycle, idActor::Event_PlayCycle )
- EVENT( AI_IdleAnim, idActor::Event_IdleAnim )
- EVENT( AI_SetSyncedAnimWeight, idActor::Event_SetSyncedAnimWeight )
- EVENT( AI_SetBlendFrames, idActor::Event_SetBlendFrames )
- EVENT( AI_GetBlendFrames, idActor::Event_GetBlendFrames )
- EVENT( AI_AnimState, idActor::Event_AnimState )
- EVENT( AI_GetAnimState, idActor::Event_GetAnimState )
- EVENT( AI_InAnimState, idActor::Event_InAnimState )
- EVENT( AI_FinishAction, idActor::Event_FinishAction )
- EVENT( AI_AnimDone, idActor::Event_AnimDone )
- EVENT( AI_OverrideAnim, idActor::Event_OverrideAnim )
- EVENT( AI_EnableAnim, idActor::Event_EnableAnim )
- EVENT( AI_HasAnim, idActor::Event_HasAnim )
- EVENT( AI_CheckAnim, idActor::Event_CheckAnim )
- EVENT( AI_ChooseAnim, idActor::Event_ChooseAnim )
- EVENT( AI_AnimLength, idActor::Event_AnimLength )
- EVENT( AI_AnimDistance, idActor::Event_AnimDistance )
- EVENT( AI_HasEnemies, idActor::Event_HasEnemies )
- EVENT( AI_NextEnemy, idActor::Event_NextEnemy )
- EVENT( AI_ClosestEnemyToPoint, idActor::Event_ClosestEnemyToPoint )
- EVENT( EV_StopSound, idActor::Event_StopSound )
- EVENT( AI_SetNextState, idActor::Event_SetNextState )
- EVENT( AI_SetState, idActor::Event_SetState )
- EVENT( AI_GetState, idActor::Event_GetState )
- EVENT( AI_GetHead, idActor::Event_GetHead )
- #ifdef _D3XP
- EVENT( EV_SetDamageGroupScale, idActor::Event_SetDamageGroupScale )
- EVENT( EV_SetDamageGroupScaleAll, idActor::Event_SetDamageGroupScaleAll )
- EVENT( EV_GetDamageGroupScale, idActor::Event_GetDamageGroupScale )
- EVENT( EV_SetDamageCap, idActor::Event_SetDamageCap )
- EVENT( EV_SetWaitState, idActor::Event_SetWaitState )
- EVENT( EV_GetWaitState, idActor::Event_GetWaitState )
- #endif
- END_CLASS
- /*
- =====================
- idActor::idActor
- =====================
- */
- idActor::idActor( void ) {
- viewAxis.Identity();
- scriptThread = NULL; // initialized by ConstructScriptObject, which is called by idEntity::Spawn
- use_combat_bbox = false;
- head = NULL;
- team = 0;
- rank = 0;
- fovDot = 0.0f;
- eyeOffset.Zero();
- pain_debounce_time = 0;
- pain_delay = 0;
- pain_threshold = 0;
- state = NULL;
- idealState = NULL;
- leftEyeJoint = INVALID_JOINT;
- rightEyeJoint = INVALID_JOINT;
- soundJoint = INVALID_JOINT;
- modelOffset.Zero();
- deltaViewAngles.Zero();
- painTime = 0;
- allowPain = false;
- allowEyeFocus = false;
- waitState = "";
-
- blink_anim = NULL;
- blink_time = 0;
- blink_min = 0;
- blink_max = 0;
- finalBoss = false;
- attachments.SetGranularity( 1 );
- enemyNode.SetOwner( this );
- enemyList.SetOwner( this );
- #ifdef _D3XP
- damageCap = -1;
- #endif
- }
- /*
- =====================
- idActor::~idActor
- =====================
- */
- idActor::~idActor( void ) {
- int i;
- idEntity *ent;
- DeconstructScriptObject();
- scriptObject.Free();
- StopSound( SND_CHANNEL_ANY, false );
- delete combatModel;
- combatModel = NULL;
- if ( head.GetEntity() ) {
- head.GetEntity()->ClearBody();
- head.GetEntity()->PostEventMS( &EV_Remove, 0 );
- }
- // remove any attached entities
- for( i = 0; i < attachments.Num(); i++ ) {
- ent = attachments[ i ].ent.GetEntity();
- if ( ent ) {
- ent->PostEventMS( &EV_Remove, 0 );
- }
- }
- ShutdownThreads();
- }
- /*
- =====================
- idActor::Spawn
- =====================
- */
- void idActor::Spawn( void ) {
- idEntity *ent;
- idStr jointName;
- float fovDegrees;
- copyJoints_t copyJoint;
- animPrefix = "";
- state = NULL;
- idealState = NULL;
- spawnArgs.GetInt( "rank", "0", rank );
- spawnArgs.GetInt( "team", "0", team );
- spawnArgs.GetVector( "offsetModel", "0 0 0", modelOffset );
- spawnArgs.GetBool( "use_combat_bbox", "0", use_combat_bbox );
- viewAxis = GetPhysics()->GetAxis();
- spawnArgs.GetFloat( "fov", "90", fovDegrees );
- SetFOV( fovDegrees );
- pain_debounce_time = 0;
- pain_delay = SEC2MS( spawnArgs.GetFloat( "pain_delay" ) );
- pain_threshold = spawnArgs.GetInt( "pain_threshold" );
- LoadAF();
- walkIK.Init( this, IK_ANIM, modelOffset );
- // the animation used to be set to the IK_ANIM at this point, but that was fixed, resulting in
- // attachments not binding correctly, so we're stuck setting the IK_ANIM before attaching things.
- animator.ClearAllAnims( gameLocal.time, 0 );
- animator.SetFrame( ANIMCHANNEL_ALL, animator.GetAnim( IK_ANIM ), 0, 0, 0 );
- // spawn any attachments we might have
- const idKeyValue *kv = spawnArgs.MatchPrefix( "def_attach", NULL );
- while ( kv ) {
- idDict args;
- args.Set( "classname", kv->GetValue().c_str() );
- // make items non-touchable so the player can't take them out of the character's hands
- args.Set( "no_touch", "1" );
- // don't let them drop to the floor
- args.Set( "dropToFloor", "0" );
-
- gameLocal.SpawnEntityDef( args, &ent );
- if ( !ent ) {
- gameLocal.Error( "Couldn't spawn '%s' to attach to entity '%s'", kv->GetValue().c_str(), name.c_str() );
- } else {
- Attach( ent );
- }
- kv = spawnArgs.MatchPrefix( "def_attach", kv );
- }
- SetupDamageGroups();
- SetupHead();
- // clear the bind anim
- animator.ClearAllAnims( gameLocal.time, 0 );
- idEntity *headEnt = head.GetEntity();
- idAnimator *headAnimator;
- if ( headEnt ) {
- headAnimator = headEnt->GetAnimator();
- } else {
- headAnimator = &animator;
- }
- if ( headEnt ) {
- // set up the list of joints to copy to the head
- for( kv = spawnArgs.MatchPrefix( "copy_joint", NULL ); kv != NULL; kv = spawnArgs.MatchPrefix( "copy_joint", kv ) ) {
- if ( kv->GetValue() == "" ) {
- // probably clearing out inherited key, so skip it
- continue;
- }
- jointName = kv->GetKey();
- if ( jointName.StripLeadingOnce( "copy_joint_world " ) ) {
- copyJoint.mod = JOINTMOD_WORLD_OVERRIDE;
- } else {
- jointName.StripLeadingOnce( "copy_joint " );
- copyJoint.mod = JOINTMOD_LOCAL_OVERRIDE;
- }
- copyJoint.from = animator.GetJointHandle( jointName );
- if ( copyJoint.from == INVALID_JOINT ) {
- gameLocal.Warning( "Unknown copy_joint '%s' on entity %s", jointName.c_str(), name.c_str() );
- continue;
- }
- jointName = kv->GetValue();
- copyJoint.to = headAnimator->GetJointHandle( jointName );
- if ( copyJoint.to == INVALID_JOINT ) {
- gameLocal.Warning( "Unknown copy_joint '%s' on head of entity %s", jointName.c_str(), name.c_str() );
- continue;
- }
- copyJoints.Append( copyJoint );
- }
- }
- // set up blinking
- blink_anim = headAnimator->GetAnim( "blink" );
- blink_time = 0; // it's ok to blink right away
- blink_min = SEC2MS( spawnArgs.GetFloat( "blink_min", "0.5" ) );
- blink_max = SEC2MS( spawnArgs.GetFloat( "blink_max", "8" ) );
- // set up the head anim if necessary
- int headAnim = headAnimator->GetAnim( "def_head" );
- if ( headAnim ) {
- if ( headEnt ) {
- headAnimator->CycleAnim( ANIMCHANNEL_ALL, headAnim, gameLocal.time, 0 );
- } else {
- headAnimator->CycleAnim( ANIMCHANNEL_HEAD, headAnim, gameLocal.time, 0 );
- }
- }
- if ( spawnArgs.GetString( "sound_bone", "", jointName ) ) {
- soundJoint = animator.GetJointHandle( jointName );
- if ( soundJoint == INVALID_JOINT ) {
- gameLocal.Warning( "idAnimated '%s' at (%s): cannot find joint '%s' for sound playback", name.c_str(), GetPhysics()->GetOrigin().ToString(0), jointName.c_str() );
- }
- }
- finalBoss = spawnArgs.GetBool( "finalBoss" );
- //BC 8-24-2015
- StartSound( "snd_idle", SND_CHANNEL_HEART, 0, false, NULL );
- FinishSetup();
- }
- /*
- ================
- idActor::FinishSetup
- ================
- */
- void idActor::FinishSetup( void ) {
- const char *scriptObjectName;
- // setup script object
- if ( spawnArgs.GetString( "scriptobject", NULL, &scriptObjectName ) ) {
- if ( !scriptObject.SetType( scriptObjectName ) ) {
- gameLocal.Error( "Script object '%s' not found on entity '%s'.", scriptObjectName, name.c_str() );
- }
- ConstructScriptObject();
- }
- SetupBody();
- }
- /*
- ================
- idActor::SetupHead
- ================
- */
- void idActor::SetupHead( void ) {
- idAFAttachment *headEnt;
- idStr jointName;
- const char *headModel;
- jointHandle_t joint;
- jointHandle_t damageJoint;
- int i;
- const idKeyValue *sndKV;
- if ( gameLocal.isClient ) {
- return;
- }
- headModel = spawnArgs.GetString( "def_head", "" );
- if ( headModel[ 0 ] ) {
- jointName = spawnArgs.GetString( "head_joint" );
- joint = animator.GetJointHandle( jointName );
- if ( joint == INVALID_JOINT ) {
- gameLocal.Error( "Joint '%s' not found for 'head_joint' on '%s'", jointName.c_str(), name.c_str() );
- }
- // set the damage joint to be part of the head damage group
- damageJoint = joint;
- for( i = 0; i < damageGroups.Num(); i++ ) {
- if ( damageGroups[ i ] == "head" ) {
- damageJoint = static_cast<jointHandle_t>( i );
- break;
- }
- }
- // copy any sounds in case we have frame commands on the head
- idDict args;
- sndKV = spawnArgs.MatchPrefix( "snd_", NULL );
- while( sndKV ) {
- args.Set( sndKV->GetKey(), sndKV->GetValue() );
- sndKV = spawnArgs.MatchPrefix( "snd_", sndKV );
- }
- #ifdef _D3XP
- // copy slowmo param to the head
- args.SetBool( "slowmo", spawnArgs.GetBool("slowmo", "1") );
- #endif
- headEnt = static_cast<idAFAttachment *>( gameLocal.SpawnEntityType( idAFAttachment::Type, &args ) );
- headEnt->SetName( va( "%s_head", name.c_str() ) );
- headEnt->SetBody( this, headModel, damageJoint );
- head = headEnt;
- #ifdef _D3XP
- idStr xSkin;
- if ( spawnArgs.GetString( "skin_head_xray", "", xSkin ) ) {
- headEnt->xraySkin = declManager->FindSkin( xSkin.c_str() );
- headEnt->UpdateModel();
- }
- #endif
- idVec3 origin;
- idMat3 axis;
- idAttachInfo &attach = attachments.Alloc();
- attach.channel = animator.GetChannelForJoint( joint );
- animator.GetJointTransform( joint, gameLocal.time, origin, axis );
- origin = renderEntity.origin + ( origin + modelOffset ) * renderEntity.axis;
- attach.ent = headEnt;
- headEnt->SetOrigin( origin );
- headEnt->SetAxis( renderEntity.axis );
- headEnt->BindToJoint( this, joint, true );
- }
- }
- /*
- ================
- idActor::CopyJointsFromBodyToHead
- ================
- */
- void idActor::CopyJointsFromBodyToHead( void ) {
- idEntity *headEnt = head.GetEntity();
- idAnimator *headAnimator;
- int i;
- idMat3 mat;
- idMat3 axis;
- idVec3 pos;
- if ( !headEnt ) {
- return;
- }
- headAnimator = headEnt->GetAnimator();
- // copy the animation from the body to the head
- for( i = 0; i < copyJoints.Num(); i++ ) {
- if ( copyJoints[ i ].mod == JOINTMOD_WORLD_OVERRIDE ) {
- mat = headEnt->GetPhysics()->GetAxis().Transpose();
- GetJointWorldTransform( copyJoints[ i ].from, gameLocal.time, pos, axis );
- pos -= headEnt->GetPhysics()->GetOrigin();
- headAnimator->SetJointPos( copyJoints[ i ].to, copyJoints[ i ].mod, pos * mat );
- headAnimator->SetJointAxis( copyJoints[ i ].to, copyJoints[ i ].mod, axis * mat );
- } else {
- animator.GetJointLocalTransform( copyJoints[ i ].from, gameLocal.time, pos, axis );
- headAnimator->SetJointPos( copyJoints[ i ].to, copyJoints[ i ].mod, pos );
- headAnimator->SetJointAxis( copyJoints[ i ].to, copyJoints[ i ].mod, axis );
- }
- }
- }
- /*
- ================
- idActor::Restart
- ================
- */
- void idActor::Restart( void ) {
- assert( !head.GetEntity() );
- SetupHead();
- FinishSetup();
- }
- /*
- ================
- idActor::Save
- archive object for savegame file
- ================
- */
- void idActor::Save( idSaveGame *savefile ) const {
- idActor *ent;
- int i;
- savefile->WriteInt( team );
- savefile->WriteInt( rank );
- savefile->WriteMat3( viewAxis );
- savefile->WriteInt( enemyList.Num() );
- for ( ent = enemyList.Next(); ent != NULL; ent = ent->enemyNode.Next() ) {
- savefile->WriteObject( ent );
- }
- savefile->WriteFloat( fovDot );
- savefile->WriteVec3( eyeOffset );
- savefile->WriteVec3( modelOffset );
- savefile->WriteAngles( deltaViewAngles );
- savefile->WriteInt( pain_debounce_time );
- savefile->WriteInt( pain_delay );
- savefile->WriteInt( pain_threshold );
- savefile->WriteInt( damageGroups.Num() );
- for( i = 0; i < damageGroups.Num(); i++ ) {
- savefile->WriteString( damageGroups[ i ] );
- }
- savefile->WriteInt( damageScale.Num() );
- for( i = 0; i < damageScale.Num(); i++ ) {
- savefile->WriteFloat( damageScale[ i ] );
- }
- savefile->WriteBool( use_combat_bbox );
- head.Save( savefile );
- savefile->WriteInt( copyJoints.Num() );
- for( i = 0; i < copyJoints.Num(); i++ ) {
- savefile->WriteInt( copyJoints[i].mod );
- savefile->WriteJoint( copyJoints[i].from );
- savefile->WriteJoint( copyJoints[i].to );
- }
- savefile->WriteJoint( leftEyeJoint );
- savefile->WriteJoint( rightEyeJoint );
- savefile->WriteJoint( soundJoint );
- walkIK.Save( savefile );
- savefile->WriteString( animPrefix );
- savefile->WriteString( painAnim );
- savefile->WriteInt( blink_anim );
- savefile->WriteInt( blink_time );
- savefile->WriteInt( blink_min );
- savefile->WriteInt( blink_max );
- // script variables
- savefile->WriteObject( scriptThread );
- savefile->WriteString( waitState );
- headAnim.Save( savefile );
- torsoAnim.Save( savefile );
- legsAnim.Save( savefile );
- savefile->WriteBool( allowPain );
- savefile->WriteBool( allowEyeFocus );
- savefile->WriteInt( painTime );
- savefile->WriteInt( attachments.Num() );
- for ( i = 0; i < attachments.Num(); i++ ) {
- attachments[i].ent.Save( savefile );
- savefile->WriteInt( attachments[i].channel );
- }
- savefile->WriteBool( finalBoss );
- idToken token;
- //FIXME: this is unneccesary
- if ( state ) {
- idLexer src( state->Name(), idStr::Length( state->Name() ), "idAI::Save" );
- src.ReadTokenOnLine( &token );
- src.ExpectTokenString( "::" );
- src.ReadTokenOnLine( &token );
- savefile->WriteString( token );
- } else {
- savefile->WriteString( "" );
- }
- if ( idealState ) {
- idLexer src( idealState->Name(), idStr::Length( idealState->Name() ), "idAI::Save" );
- src.ReadTokenOnLine( &token );
- src.ExpectTokenString( "::" );
- src.ReadTokenOnLine( &token );
- savefile->WriteString( token );
- } else {
- savefile->WriteString( "" );
- }
- #ifdef _D3XP
- savefile->WriteInt(damageCap);
- #endif
- }
- /*
- ================
- idActor::Restore
- unarchives object from save game file
- ================
- */
- void idActor::Restore( idRestoreGame *savefile ) {
- int i, num;
- idActor *ent;
- savefile->ReadInt( team );
- savefile->ReadInt( rank );
- savefile->ReadMat3( viewAxis );
- savefile->ReadInt( num );
- for ( i = 0; i < num; i++ ) {
- savefile->ReadObject( reinterpret_cast<idClass *&>( ent ) );
- assert( ent );
- if ( ent ) {
- ent->enemyNode.AddToEnd( enemyList );
- }
- }
- savefile->ReadFloat( fovDot );
- savefile->ReadVec3( eyeOffset );
- savefile->ReadVec3( modelOffset );
- savefile->ReadAngles( deltaViewAngles );
- savefile->ReadInt( pain_debounce_time );
- savefile->ReadInt( pain_delay );
- savefile->ReadInt( pain_threshold );
- savefile->ReadInt( num );
- damageGroups.SetGranularity( 1 );
- damageGroups.SetNum( num );
- for( i = 0; i < num; i++ ) {
- savefile->ReadString( damageGroups[ i ] );
- }
- savefile->ReadInt( num );
- damageScale.SetNum( num );
- for( i = 0; i < num; i++ ) {
- savefile->ReadFloat( damageScale[ i ] );
- }
- savefile->ReadBool( use_combat_bbox );
- head.Restore( savefile );
- savefile->ReadInt( num );
- copyJoints.SetNum( num );
- for( i = 0; i < num; i++ ) {
- int val;
- savefile->ReadInt( val );
- copyJoints[i].mod = static_cast<jointModTransform_t>( val );
- savefile->ReadJoint( copyJoints[i].from );
- savefile->ReadJoint( copyJoints[i].to );
- }
- savefile->ReadJoint( leftEyeJoint );
- savefile->ReadJoint( rightEyeJoint );
- savefile->ReadJoint( soundJoint );
- walkIK.Restore( savefile );
- savefile->ReadString( animPrefix );
- savefile->ReadString( painAnim );
- savefile->ReadInt( blink_anim );
- savefile->ReadInt( blink_time );
- savefile->ReadInt( blink_min );
- savefile->ReadInt( blink_max );
- savefile->ReadObject( reinterpret_cast<idClass *&>( scriptThread ) );
- savefile->ReadString( waitState );
- headAnim.Restore( savefile );
- torsoAnim.Restore( savefile );
- legsAnim.Restore( savefile );
- savefile->ReadBool( allowPain );
- savefile->ReadBool( allowEyeFocus );
- savefile->ReadInt( painTime );
- savefile->ReadInt( num );
- for ( i = 0; i < num; i++ ) {
- idAttachInfo &attach = attachments.Alloc();
- attach.ent.Restore( savefile );
- savefile->ReadInt( attach.channel );
- }
- savefile->ReadBool( finalBoss );
- idStr statename;
- savefile->ReadString( statename );
- if ( statename.Length() > 0 ) {
- state = GetScriptFunction( statename );
- }
- savefile->ReadString( statename );
- if ( statename.Length() > 0 ) {
- idealState = GetScriptFunction( statename );
- }
- #ifdef _D3XP
- savefile->ReadInt(damageCap);
- #endif
- }
- /*
- ================
- idActor::Hide
- ================
- */
- void idActor::Hide( void ) {
- idEntity *ent;
- idEntity *next;
- idAFEntity_Base::Hide();
- if ( head.GetEntity() ) {
- head.GetEntity()->Hide();
- }
- for( ent = GetNextTeamEntity(); ent != NULL; ent = next ) {
- next = ent->GetNextTeamEntity();
- if ( ent->GetBindMaster() == this ) {
- ent->Hide();
- if ( ent->IsType( idLight::Type ) ) {
- static_cast<idLight *>( ent )->Off();
- }
- }
- }
- UnlinkCombat();
- }
- /*
- ================
- idActor::Show
- ================
- */
- void idActor::Show( void ) {
- idEntity *ent;
- idEntity *next;
- idAFEntity_Base::Show();
- if ( head.GetEntity() ) {
- head.GetEntity()->Show();
- }
- for( ent = GetNextTeamEntity(); ent != NULL; ent = next ) {
- next = ent->GetNextTeamEntity();
- if ( ent->GetBindMaster() == this ) {
- ent->Show();
- if ( ent->IsType( idLight::Type ) ) {
- #ifdef _D3XP
- if(!spawnArgs.GetBool("lights_off", "0")) {
- static_cast<idLight *>( ent )->On();
- }
- #endif
-
- }
- }
- }
- LinkCombat();
- }
- /*
- ==============
- idActor::GetDefaultSurfaceType
- ==============
- */
- int idActor::GetDefaultSurfaceType( void ) const {
- return SURFTYPE_FLESH;
- }
- /*
- ================
- idActor::ProjectOverlay
- ================
- */
- void idActor::ProjectOverlay( const idVec3 &origin, const idVec3 &dir, float size, const char *material ) {
- idEntity *ent;
- idEntity *next;
- idEntity::ProjectOverlay( origin, dir, size, material );
- for( ent = GetNextTeamEntity(); ent != NULL; ent = next ) {
- next = ent->GetNextTeamEntity();
- if ( ent->GetBindMaster() == this ) {
- if ( ent->fl.takedamage && ent->spawnArgs.GetBool( "bleed" ) ) {
- ent->ProjectOverlay( origin, dir, size, material );
- }
- }
- }
- }
- /*
- ================
- idActor::LoadAF
- ================
- */
- bool idActor::LoadAF( void ) {
- idStr fileName;
- if ( !spawnArgs.GetString( "ragdoll", "*unknown*", fileName ) || !fileName.Length() ) {
- return false;
- }
- af.SetAnimator( GetAnimator() );
- return af.Load( this, fileName );
- }
- /*
- =====================
- idActor::SetupBody
- =====================
- */
- void idActor::SetupBody( void ) {
- const char *jointname;
- animator.ClearAllAnims( gameLocal.time, 0 );
- animator.ClearAllJoints();
- idEntity *headEnt = head.GetEntity();
- if ( headEnt ) {
- jointname = spawnArgs.GetString( "bone_leftEye" );
- leftEyeJoint = headEnt->GetAnimator()->GetJointHandle( jointname );
- jointname = spawnArgs.GetString( "bone_rightEye" );
- rightEyeJoint = headEnt->GetAnimator()->GetJointHandle( jointname );
- // set up the eye height. check if it's specified in the def.
- if ( !spawnArgs.GetFloat( "eye_height", "0", eyeOffset.z ) ) {
- // if not in the def, then try to base it off the idle animation
- int anim = headEnt->GetAnimator()->GetAnim( "idle" );
- if ( anim && ( leftEyeJoint != INVALID_JOINT ) ) {
- idVec3 pos;
- idMat3 axis;
- headEnt->GetAnimator()->PlayAnim( ANIMCHANNEL_ALL, anim, gameLocal.time, 0 );
- headEnt->GetAnimator()->GetJointTransform( leftEyeJoint, gameLocal.time, pos, axis );
- headEnt->GetAnimator()->ClearAllAnims( gameLocal.time, 0 );
- headEnt->GetAnimator()->ForceUpdate();
- pos += headEnt->GetPhysics()->GetOrigin() - GetPhysics()->GetOrigin();
- eyeOffset = pos + modelOffset;
- } else {
- // just base it off the bounding box size
- eyeOffset.z = GetPhysics()->GetBounds()[ 1 ].z - 6;
- }
- }
- headAnim.Init( this, headEnt->GetAnimator(), ANIMCHANNEL_ALL );
- } else {
- jointname = spawnArgs.GetString( "bone_leftEye" );
- leftEyeJoint = animator.GetJointHandle( jointname );
- jointname = spawnArgs.GetString( "bone_rightEye" );
- rightEyeJoint = animator.GetJointHandle( jointname );
- // set up the eye height. check if it's specified in the def.
- if ( !spawnArgs.GetFloat( "eye_height", "0", eyeOffset.z ) ) {
- // if not in the def, then try to base it off the idle animation
- int anim = animator.GetAnim( "idle" );
- if ( anim && ( leftEyeJoint != INVALID_JOINT ) ) {
- idVec3 pos;
- idMat3 axis;
- animator.PlayAnim( ANIMCHANNEL_ALL, anim, gameLocal.time, 0 );
- animator.GetJointTransform( leftEyeJoint, gameLocal.time, pos, axis );
- animator.ClearAllAnims( gameLocal.time, 0 );
- animator.ForceUpdate();
- eyeOffset = pos + modelOffset;
- } else {
- // just base it off the bounding box size
- eyeOffset.z = GetPhysics()->GetBounds()[ 1 ].z - 6;
- }
- }
- headAnim.Init( this, &animator, ANIMCHANNEL_HEAD );
- }
- waitState = "";
- torsoAnim.Init( this, &animator, ANIMCHANNEL_TORSO );
- legsAnim.Init( this, &animator, ANIMCHANNEL_LEGS );
- }
- /*
- =====================
- idActor::CheckBlink
- =====================
- */
- void idActor::CheckBlink( void ) {
- // check if it's time to blink
- if ( !blink_anim || ( health <= 0 ) || !allowEyeFocus || ( blink_time > gameLocal.time ) ) {
- return;
- }
- idEntity *headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->GetAnimator()->PlayAnim( ANIMCHANNEL_EYELIDS, blink_anim, gameLocal.time, 1 );
- } else {
- animator.PlayAnim( ANIMCHANNEL_EYELIDS, blink_anim, gameLocal.time, 1 );
- }
- // set the next blink time
- blink_time = gameLocal.time + blink_min + gameLocal.random.RandomFloat() * ( blink_max - blink_min );
- }
- /*
- ================
- idActor::GetPhysicsToVisualTransform
- ================
- */
- bool idActor::GetPhysicsToVisualTransform( idVec3 &origin, idMat3 &axis ) {
- if ( af.IsActive() ) {
- af.GetPhysicsToVisualTransform( origin, axis );
- return true;
- }
- origin = modelOffset;
- axis = viewAxis;
- return true;
- }
- /*
- ================
- idActor::GetPhysicsToSoundTransform
- ================
- */
- bool idActor::GetPhysicsToSoundTransform( idVec3 &origin, idMat3 &axis ) {
- if ( soundJoint != INVALID_JOINT ) {
- animator.GetJointTransform( soundJoint, gameLocal.time, origin, axis );
- origin += modelOffset;
- axis = viewAxis;
- } else {
- origin = GetPhysics()->GetGravityNormal() * -eyeOffset.z;
- axis.Identity();
- }
- return true;
- }
- /***********************************************************************
- script state management
- ***********************************************************************/
- /*
- ================
- idActor::ShutdownThreads
- ================
- */
- void idActor::ShutdownThreads( void ) {
- headAnim.Shutdown();
- torsoAnim.Shutdown();
- legsAnim.Shutdown();
- if ( scriptThread ) {
- scriptThread->EndThread();
- scriptThread->PostEventMS( &EV_Remove, 0 );
- delete scriptThread;
- scriptThread = NULL;
- }
- }
- /*
- ================
- idActor::ShouldConstructScriptObjectAtSpawn
- Called during idEntity::Spawn to see if it should construct the script object or not.
- Overridden by subclasses that need to spawn the script object themselves.
- ================
- */
- bool idActor::ShouldConstructScriptObjectAtSpawn( void ) const {
- return false;
- }
- /*
- ================
- idActor::ConstructScriptObject
- Called during idEntity::Spawn. Calls the constructor on the script object.
- Can be overridden by subclasses when a thread doesn't need to be allocated.
- ================
- */
- idThread *idActor::ConstructScriptObject( void ) {
- const function_t *constructor;
- // make sure we have a scriptObject
- if ( !scriptObject.HasObject() ) {
- gameLocal.Error( "No scriptobject set on '%s'. Check the '%s' entityDef.", name.c_str(), GetEntityDefName() );
- }
- if ( !scriptThread ) {
- // create script thread
- scriptThread = new idThread();
- scriptThread->ManualDelete();
- scriptThread->ManualControl();
- scriptThread->SetThreadName( name.c_str() );
- } else {
- scriptThread->EndThread();
- }
-
- // call script object's constructor
- constructor = scriptObject.GetConstructor();
- if ( !constructor ) {
- gameLocal.Error( "Missing constructor on '%s' for entity '%s'", scriptObject.GetTypeName(), name.c_str() );
- }
- // init the script object's data
- scriptObject.ClearObject();
- // just set the current function on the script. we'll execute in the subclasses.
- scriptThread->CallFunction( this, constructor, true );
- return scriptThread;
- }
- /*
- =====================
- idActor::GetScriptFunction
- =====================
- */
- const function_t *idActor::GetScriptFunction( const char *funcname ) {
- const function_t *func;
- func = scriptObject.GetFunction( funcname );
- if ( !func ) {
- scriptThread->Error( "Unknown function '%s' in '%s'", funcname, scriptObject.GetTypeName() );
- }
- return func;
- }
- /*
- =====================
- idActor::SetState
- =====================
- */
- void idActor::SetState( const function_t *newState ) {
- if ( !newState ) {
- gameLocal.Error( "idActor::SetState: Null state" );
- }
- if ( ai_debugScript.GetInteger() == entityNumber ) {
- gameLocal.Printf( "%d: %s: State: %s\n", gameLocal.time, name.c_str(), newState->Name() );
- }
- state = newState;
- idealState = state;
- scriptThread->CallFunction( this, state, true );
- }
- /*
- =====================
- idActor::SetState
- =====================
- */
- void idActor::SetState( const char *statename ) {
- const function_t *newState;
- newState = GetScriptFunction( statename );
- SetState( newState );
- }
- /*
- =====================
- idActor::UpdateScript
- =====================
- */
- void idActor::UpdateScript( void ) {
- int i;
- if ( ai_debugScript.GetInteger() == entityNumber ) {
- scriptThread->EnableDebugInfo();
- } else {
- scriptThread->DisableDebugInfo();
- }
- // a series of state changes can happen in a single frame.
- // this loop limits them in case we've entered an infinite loop.
- for( i = 0; i < 20; i++ ) {
- if ( idealState != state ) {
- SetState( idealState );
- }
- // don't call script until it's done waiting
- if ( scriptThread->IsWaiting() ) {
- break;
- }
-
- scriptThread->Execute();
- if ( idealState == state ) {
- break;
- }
- }
- if ( i == 20 ) {
- scriptThread->Warning( "idActor::UpdateScript: exited loop to prevent lockup" );
- }
- }
- /***********************************************************************
- vision
- ***********************************************************************/
- /*
- =====================
- idActor::setFov
- =====================
- */
- void idActor::SetFOV( float fov ) {
- fovDot = (float)cos( DEG2RAD( fov * 0.5f ) );
- }
- /*
- =====================
- idActor::SetEyeHeight
- =====================
- */
- void idActor::SetEyeHeight( float height ) {
- eyeOffset.z = height;
- }
- /*
- =====================
- idActor::EyeHeight
- =====================
- */
- float idActor::EyeHeight( void ) const {
- return eyeOffset.z;
- }
- /*
- =====================
- idActor::EyeOffset
- =====================
- */
- idVec3 idActor::EyeOffset( void ) const {
- return GetPhysics()->GetGravityNormal() * -eyeOffset.z;
- }
- /*
- =====================
- idActor::GetEyePosition
- =====================
- */
- idVec3 idActor::GetEyePosition( void ) const {
- return GetPhysics()->GetOrigin() + ( GetPhysics()->GetGravityNormal() * -eyeOffset.z );
- }
- /*
- =====================
- idActor::GetViewPos
- =====================
- */
- void idActor::GetViewPos( idVec3 &origin, idMat3 &axis ) const {
- origin = GetEyePosition();
- axis = viewAxis;
- }
- /*
- =====================
- idActor::CheckFOV
- =====================
- */
- bool idActor::CheckFOV( const idVec3 &pos ) const {
- if ( fovDot == 1.0f ) {
- return true;
- }
- float dot;
- idVec3 delta;
-
- delta = pos - GetEyePosition();
- // get our gravity normal
- const idVec3 &gravityDir = GetPhysics()->GetGravityNormal();
- // infinite vertical vision, so project it onto our orientation plane
- delta -= gravityDir * ( gravityDir * delta );
- delta.Normalize();
- dot = viewAxis[ 0 ] * delta;
- return ( dot >= fovDot );
- }
- /*
- =====================
- idActor::CanSee
- =====================
- */
- bool idActor::CanSee( idEntity *ent, bool useFov ) const {
- trace_t tr;
- idVec3 eye;
- idVec3 toPos;
- if ( ent->IsHidden() ) {
- return false;
- }
- if ( ent->IsType( idActor::Type ) ) {
- toPos = ( ( idActor * )ent )->GetEyePosition();
- } else {
- toPos = ent->GetPhysics()->GetOrigin();
- }
- if ( useFov && !CheckFOV( toPos ) ) {
- return false;
- }
- eye = GetEyePosition();
- gameLocal.clip.TracePoint( tr, eye, toPos, MASK_OPAQUE, this );
- if ( tr.fraction >= 1.0f || ( gameLocal.GetTraceEntity( tr ) == ent ) ) {
- return true;
- }
- return false;
- }
- /*
- =====================
- idActor::PointVisible
- =====================
- */
- bool idActor::PointVisible( const idVec3 &point ) const {
- trace_t results;
- idVec3 start, end;
- start = GetEyePosition();
- end = point;
- end[2] += 1.0f;
- gameLocal.clip.TracePoint( results, start, end, MASK_OPAQUE, this );
- return ( results.fraction >= 1.0f );
- }
- /*
- =====================
- idActor::GetAIAimTargets
- Returns positions for the AI to aim at.
- =====================
- */
- void idActor::GetAIAimTargets( const idVec3 &lastSightPos, idVec3 &headPos, idVec3 &chestPos ) {
- headPos = lastSightPos + EyeOffset();
- chestPos = ( headPos + lastSightPos + GetPhysics()->GetBounds().GetCenter() ) * 0.5f;
- }
- /*
- =====================
- idActor::GetRenderView
- =====================
- */
- renderView_t *idActor::GetRenderView() {
- renderView_t *rv = idEntity::GetRenderView();
- rv->viewaxis = viewAxis;
- rv->vieworg = GetEyePosition();
- return rv;
- }
- /***********************************************************************
- Model/Ragdoll
- ***********************************************************************/
- /*
- ================
- idActor::SetCombatModel
- ================
- */
- void idActor::SetCombatModel( void ) {
- idAFAttachment *headEnt;
- if ( !use_combat_bbox ) {
- if ( combatModel ) {
- combatModel->Unlink();
- combatModel->LoadModel( modelDefHandle );
- } else {
- combatModel = new idClipModel( modelDefHandle );
- }
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->SetCombatModel();
- }
- }
- }
- /*
- ================
- idActor::GetCombatModel
- ================
- */
- idClipModel *idActor::GetCombatModel( void ) const {
- return combatModel;
- }
- /*
- ================
- idActor::LinkCombat
- ================
- */
- void idActor::LinkCombat( void ) {
- idAFAttachment *headEnt;
- if ( fl.hidden || use_combat_bbox ) {
- return;
- }
- if ( combatModel ) {
- combatModel->Link( gameLocal.clip, this, 0, renderEntity.origin, renderEntity.axis, modelDefHandle );
- }
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->LinkCombat();
- }
- }
- /*
- ================
- idActor::UnlinkCombat
- ================
- */
- void idActor::UnlinkCombat( void ) {
- idAFAttachment *headEnt;
- if ( combatModel ) {
- combatModel->Unlink();
- }
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->UnlinkCombat();
- }
- }
- /*
- ================
- idActor::StartRagdoll
- ================
- */
- bool idActor::StartRagdoll( void ) {
- float slomoStart, slomoEnd;
- float jointFrictionDent, jointFrictionDentStart, jointFrictionDentEnd;
- float contactFrictionDent, contactFrictionDentStart, contactFrictionDentEnd;
- // if no AF loaded
- if ( !af.IsLoaded() ) {
- return false;
- }
- // if the AF is already active
- if ( af.IsActive() ) {
- return true;
- }
- // disable the monster bounding box
- GetPhysics()->DisableClip();
- // start using the AF
- af.StartFromCurrentPose( spawnArgs.GetInt( "velocityTime", "0" ) );
- slomoStart = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_slomoStart", "-1.6" );
- slomoEnd = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_slomoEnd", "0.8" );
- // do the first part of the death in slow motion
- af.GetPhysics()->SetTimeScaleRamp( slomoStart, slomoEnd );
- jointFrictionDent = spawnArgs.GetFloat( "ragdoll_jointFrictionDent", "0.1" );
- jointFrictionDentStart = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_jointFrictionStart", "0.2" );
- jointFrictionDentEnd = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_jointFrictionEnd", "1.2" );
- // set joint friction dent
- af.GetPhysics()->SetJointFrictionDent( jointFrictionDent, jointFrictionDentStart, jointFrictionDentEnd );
- contactFrictionDent = spawnArgs.GetFloat( "ragdoll_contactFrictionDent", "0.1" );
- contactFrictionDentStart = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_contactFrictionStart", "1.0" );
- contactFrictionDentEnd = MS2SEC( gameLocal.time ) + spawnArgs.GetFloat( "ragdoll_contactFrictionEnd", "2.0" );
- // set contact friction dent
- af.GetPhysics()->SetContactFrictionDent( contactFrictionDent, contactFrictionDentStart, contactFrictionDentEnd );
- // drop any items the actor is holding
- idMoveableItem::DropItems( this, "death", NULL );
- // drop any articulated figures the actor is holding
- idAFEntity_Base::DropAFs( this, "death", NULL );
- RemoveAttachments();
- return true;
- }
- /*
- ================
- idActor::StopRagdoll
- ================
- */
- void idActor::StopRagdoll( void ) {
- if ( af.IsActive() ) {
- af.Stop();
- }
- }
- /*
- ================
- idActor::UpdateAnimationControllers
- ================
- */
- bool idActor::UpdateAnimationControllers( void ) {
- if ( af.IsActive() ) {
- return idAFEntity_Base::UpdateAnimationControllers();
- } else {
- animator.ClearAFPose();
- }
- if ( walkIK.IsInitialized() ) {
- walkIK.Evaluate();
- return true;
- }
- return false;
- }
- /*
- ================
- idActor::RemoveAttachments
- ================
- */
- void idActor::RemoveAttachments( void ) {
- int i;
- idEntity *ent;
- // remove any attached entities
- for( i = 0; i < attachments.Num(); i++ ) {
- ent = attachments[ i ].ent.GetEntity();
- if ( ent && ent->spawnArgs.GetBool( "remove" ) ) {
- ent->PostEventMS( &EV_Remove, 0 );
- }
- }
- }
- /*
- ================
- idActor::Attach
- ================
- */
- void idActor::Attach( idEntity *ent ) {
- idVec3 origin;
- idMat3 axis;
- jointHandle_t joint;
- idStr jointName;
- idAttachInfo &attach = attachments.Alloc();
- idAngles angleOffset;
- idVec3 originOffset;
- jointName = ent->spawnArgs.GetString( "joint" );
- joint = animator.GetJointHandle( jointName );
- if ( joint == INVALID_JOINT ) {
- gameLocal.Error( "Joint '%s' not found for attaching '%s' on '%s'", jointName.c_str(), ent->GetClassname(), name.c_str() );
- }
- angleOffset = ent->spawnArgs.GetAngles( "angles" );
- originOffset = ent->spawnArgs.GetVector( "origin" );
- attach.channel = animator.GetChannelForJoint( joint );
- GetJointWorldTransform( joint, gameLocal.time, origin, axis );
- attach.ent = ent;
- ent->SetOrigin( origin + originOffset * renderEntity.axis );
- idMat3 rotate = angleOffset.ToMat3();
- idMat3 newAxis = rotate * axis;
- ent->SetAxis( newAxis );
- ent->BindToJoint( this, joint, true );
- ent->cinematic = cinematic;
- }
- /*
- ================
- idActor::Teleport
- ================
- */
- void idActor::Teleport( const idVec3 &origin, const idAngles &angles, idEntity *destination ) {
- GetPhysics()->SetOrigin( origin + idVec3( 0, 0, CM_CLIP_EPSILON ) );
- GetPhysics()->SetLinearVelocity( vec3_origin );
- viewAxis = angles.ToMat3();
- UpdateVisuals();
- if ( !IsHidden() ) {
- // kill anything at the new position
- gameLocal.KillBox( this );
- }
- }
- /*
- ================
- idActor::GetDeltaViewAngles
- ================
- */
- const idAngles &idActor::GetDeltaViewAngles( void ) const {
- return deltaViewAngles;
- }
- /*
- ================
- idActor::SetDeltaViewAngles
- ================
- */
- void idActor::SetDeltaViewAngles( const idAngles &delta ) {
- deltaViewAngles = delta;
- }
- /*
- ================
- idActor::HasEnemies
- ================
- */
- bool idActor::HasEnemies( void ) const {
- idActor *ent;
- for( ent = enemyList.Next(); ent != NULL; ent = ent->enemyNode.Next() ) {
- if ( !ent->fl.hidden ) {
- return true;
- }
- }
- return false;
- }
- /*
- ================
- idActor::ClosestEnemyToPoint
- ================
- */
- idActor *idActor::ClosestEnemyToPoint( const idVec3 &pos ) {
- idActor *ent;
- idActor *bestEnt;
- float bestDistSquared;
- float distSquared;
- idVec3 delta;
- bestDistSquared = idMath::INFINITY;
- bestEnt = NULL;
- for( ent = enemyList.Next(); ent != NULL; ent = ent->enemyNode.Next() ) {
- if ( ent->fl.hidden ) {
- continue;
- }
- delta = ent->GetPhysics()->GetOrigin() - pos;
- distSquared = delta.LengthSqr();
- if ( distSquared < bestDistSquared ) {
- bestEnt = ent;
- bestDistSquared = distSquared;
- }
- }
- return bestEnt;
- }
- /*
- ================
- idActor::EnemyWithMostHealth
- ================
- */
- idActor *idActor::EnemyWithMostHealth() {
- idActor *ent;
- idActor *bestEnt;
- int most = -9999;
- bestEnt = NULL;
- for( ent = enemyList.Next(); ent != NULL; ent = ent->enemyNode.Next() ) {
- if ( !ent->fl.hidden && ( ent->health > most ) ) {
- bestEnt = ent;
- most = ent->health;
- }
- }
- return bestEnt;
- }
- /*
- ================
- idActor::OnLadder
- ================
- */
- bool idActor::OnLadder( void ) const {
- return false;
- }
- /*
- ==============
- idActor::GetAASLocation
- ==============
- */
- void idActor::GetAASLocation( idAAS *aas, idVec3 &pos, int &areaNum ) const {
- idVec3 size;
- idBounds bounds;
- GetFloorPos( 64.0f, pos );
- if ( !aas ) {
- areaNum = 0;
- return;
- }
-
- size = aas->GetSettings()->boundingBoxes[0][1];
- bounds[0] = -size;
- size.z = 32.0f;
- bounds[1] = size;
- areaNum = aas->PointReachableAreaNum( pos, bounds, AREA_REACHABLE_WALK );
- if ( areaNum ) {
- aas->PushPointIntoAreaNum( areaNum, pos );
- }
- }
- /***********************************************************************
- animation state
- ***********************************************************************/
- /*
- =====================
- idActor::SetAnimState
- =====================
- */
- void idActor::SetAnimState( int channel, const char *statename, int blendFrames ) {
- const function_t *func;
- func = scriptObject.GetFunction( statename );
- if ( !func ) {
- assert( 0 );
- gameLocal.Error( "Can't find function '%s' in object '%s'", statename, scriptObject.GetTypeName() );
- }
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.SetState( statename, blendFrames );
- allowEyeFocus = true;
- break;
-
- case ANIMCHANNEL_TORSO :
- torsoAnim.SetState( statename, blendFrames );
- legsAnim.Enable( blendFrames );
- allowPain = true;
- allowEyeFocus = true;
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.SetState( statename, blendFrames );
- torsoAnim.Enable( blendFrames );
- allowPain = true;
- allowEyeFocus = true;
- break;
- default:
- gameLocal.Error( "idActor::SetAnimState: Unknown anim group" );
- break;
- }
- }
- /*
- =====================
- idActor::GetAnimState
- =====================
- */
- const char *idActor::GetAnimState( int channel ) const {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- return headAnim.state;
- break;
- case ANIMCHANNEL_TORSO :
- return torsoAnim.state;
- break;
- case ANIMCHANNEL_LEGS :
- return legsAnim.state;
- break;
- default:
- gameLocal.Error( "idActor::GetAnimState: Unknown anim group" );
- return NULL;
- break;
- }
- }
- /*
- =====================
- idActor::InAnimState
- =====================
- */
- bool idActor::InAnimState( int channel, const char *statename ) const {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- if ( headAnim.state == statename ) {
- return true;
- }
- break;
- case ANIMCHANNEL_TORSO :
- if ( torsoAnim.state == statename ) {
- return true;
- }
- break;
- case ANIMCHANNEL_LEGS :
- if ( legsAnim.state == statename ) {
- return true;
- }
- break;
- default:
- gameLocal.Error( "idActor::InAnimState: Unknown anim group" );
- break;
- }
- return false;
- }
- /*
- =====================
- idActor::WaitState
- =====================
- */
- const char *idActor::WaitState( void ) const {
- if ( waitState.Length() ) {
- return waitState;
- } else {
- return NULL;
- }
- }
- /*
- =====================
- idActor::SetWaitState
- =====================
- */
- void idActor::SetWaitState( const char *_waitstate ) {
- waitState = _waitstate;
- }
- /*
- =====================
- idActor::UpdateAnimState
- =====================
- */
- void idActor::UpdateAnimState( void ) {
- headAnim.UpdateState();
- torsoAnim.UpdateState();
- legsAnim.UpdateState();
- }
- /*
- =====================
- idActor::GetAnim
- =====================
- */
- int idActor::GetAnim( int channel, const char *animname ) {
- int anim;
- const char *temp;
- idAnimator *animatorPtr;
- if ( channel == ANIMCHANNEL_HEAD ) {
- if ( !head.GetEntity() ) {
- return 0;
- }
- animatorPtr = head.GetEntity()->GetAnimator();
- } else {
- animatorPtr = &animator;
- }
- if ( animPrefix.Length() ) {
- temp = va( "%s_%s", animPrefix.c_str(), animname );
- anim = animatorPtr->GetAnim( temp );
- if ( anim ) {
- return anim;
- }
- }
- anim = animatorPtr->GetAnim( animname );
- return anim;
- }
- /*
- ===============
- idActor::SyncAnimChannels
- ===============
- */
- void idActor::SyncAnimChannels( int channel, int syncToChannel, int blendFrames ) {
- idAnimator *headAnimator;
- idAFAttachment *headEnt;
- int anim;
- idAnimBlend *syncAnim;
- int starttime;
- int blendTime;
- int cycle;
- blendTime = FRAME2MS( blendFrames );
- if ( channel == ANIMCHANNEL_HEAD ) {
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headAnimator = headEnt->GetAnimator();
- syncAnim = animator.CurrentAnim( syncToChannel );
- if ( syncAnim ) {
- anim = headAnimator->GetAnim( syncAnim->AnimFullName() );
- if ( !anim ) {
- anim = headAnimator->GetAnim( syncAnim->AnimName() );
- }
- if ( anim ) {
- cycle = animator.CurrentAnim( syncToChannel )->GetCycleCount();
- starttime = animator.CurrentAnim( syncToChannel )->GetStartTime();
- headAnimator->PlayAnim( ANIMCHANNEL_ALL, anim, gameLocal.time, blendTime );
- headAnimator->CurrentAnim( ANIMCHANNEL_ALL )->SetCycleCount( cycle );
- headAnimator->CurrentAnim( ANIMCHANNEL_ALL )->SetStartTime( starttime );
- } else {
- headEnt->PlayIdleAnim( blendTime );
- }
- }
- }
- } else if ( syncToChannel == ANIMCHANNEL_HEAD ) {
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headAnimator = headEnt->GetAnimator();
- syncAnim = headAnimator->CurrentAnim( ANIMCHANNEL_ALL );
- if ( syncAnim ) {
- anim = GetAnim( channel, syncAnim->AnimFullName() );
- if ( !anim ) {
- anim = GetAnim( channel, syncAnim->AnimName() );
- }
- if ( anim ) {
- cycle = headAnimator->CurrentAnim( ANIMCHANNEL_ALL )->GetCycleCount();
- starttime = headAnimator->CurrentAnim( ANIMCHANNEL_ALL )->GetStartTime();
- animator.PlayAnim( channel, anim, gameLocal.time, blendTime );
- animator.CurrentAnim( channel )->SetCycleCount( cycle );
- animator.CurrentAnim( channel )->SetStartTime( starttime );
- }
- }
- }
- } else {
- animator.SyncAnimChannels( channel, syncToChannel, gameLocal.time, blendTime );
- }
- }
- /***********************************************************************
- Damage
- ***********************************************************************/
- /*
- ============
- idActor::Gib
- ============
- */
- void idActor::Gib( const idVec3 &dir, const char *damageDefName ) {
- // no gibbing in multiplayer - by self damage or by moving objects
- if ( gameLocal.isMultiplayer ) {
- return;
- }
- // only gib once
- if ( gibbed ) {
- return;
- }
- idAFEntity_Gibbable::Gib( dir, damageDefName );
- if ( head.GetEntity() ) {
- head.GetEntity()->Hide();
- }
- StopSound( SND_CHANNEL_VOICE, false );
- }
- /*
- ============
- idActor::Damage
- this entity that is being damaged
- inflictor entity that is causing the damage
- attacker entity that caused the inflictor to damage targ
- example: this=monster, inflictor=rocket, attacker=player
- dir direction of the attack for knockback in global space
- point point at which the damage is being inflicted, used for headshots
- damage amount of damage being inflicted
- inflictor, attacker, dir, and point can be NULL for environmental effects
- Bleeding wounds and surface overlays are applied in the collision code that
- calls Damage()
- ============
- */
- void idActor::Damage( idEntity *inflictor, idEntity *attacker, const idVec3 &dir,
- const char *damageDefName, const float damageScale, const int location ) {
- if ( !fl.takedamage ) {
- return;
- }
- if ( !inflictor ) {
- inflictor = gameLocal.world;
- }
- if ( !attacker ) {
- attacker = gameLocal.world;
- }
- #ifdef _D3XP
- SetTimeState ts( timeGroup );
- // Helltime boss is immune to all projectiles except the helltime killer
- if ( finalBoss && idStr::Icmp(inflictor->GetEntityDefName(), "projectile_helltime_killer") ) {
- return;
- }
- // Maledict is immume to the falling asteroids
- if ( !idStr::Icmp( GetEntityDefName(), "monster_boss_d3xp_maledict" ) &&
- (!idStr::Icmp( damageDefName, "damage_maledict_asteroid" ) || !idStr::Icmp( damageDefName, "damage_maledict_asteroid_splash" ) ) ) {
- return;
- }
- #else
- if ( finalBoss && !inflictor->IsType( idSoulCubeMissile::Type ) ) {
- return;
- }
- #endif
- const idDict *damageDef = gameLocal.FindEntityDefDict( damageDefName );
- if ( !damageDef ) {
- gameLocal.Error( "Unknown damageDef '%s'", damageDefName );
- }
- int damage = damageDef->GetInt( "damage" ) * damageScale;
- damage = GetDamageForLocation( damage, location );
- // inform the attacker that they hit someone
-
- if (attacker != inflictor)
- attacker->DamageFeedback( this, inflictor, damage );
- if ( damage > 0 )
- {
- health -= damage;
-
- #ifdef _D3XP
- //Check the health against any damage cap that is currently set
- if(damageCap >= 0 && health < damageCap) {
- health = damageCap;
- }
- #endif
- if ( health <= 0 ) {
- if ( health < -999 ) {
- health = -999;
- }
- Killed( inflictor, attacker, damage, dir, location );
- if ( ( health < -20 ) && spawnArgs.GetBool( "gib" ) && damageDef->GetBool( "gib" ) ) {
- Gib( dir, damageDefName );
- }
- } else {
- Pain( inflictor, attacker, damage, dir, location );
- }
- } else {
- // don't accumulate knockback
- if ( af.IsLoaded() ) {
- // clear impacts
- af.Rest();
- // physics is turned off by calling af.Rest()
- BecomeActive( TH_PHYSICS );
- }
- }
- }
- /*
- =====================
- idActor::ClearPain
- =====================
- */
- void idActor::ClearPain( void ) {
- pain_debounce_time = 0;
- }
- /*
- =====================
- idActor::Pain
- =====================
- */
- bool idActor::Pain( idEntity *inflictor, idEntity *attacker, int damage, const idVec3 &dir, int location ) {
- if ( af.IsLoaded() ) {
- // clear impacts
- af.Rest();
- // physics is turned off by calling af.Rest()
- BecomeActive( TH_PHYSICS );
- }
- if ( gameLocal.time < pain_debounce_time ) {
- return false;
- }
- // don't play pain sounds more than necessary
- pain_debounce_time = gameLocal.time + pain_delay;
- if ( health > 75 ) {
- StartSound( "snd_pain_small", SND_CHANNEL_VOICE, 0, false, NULL );
- } else if ( health > 50 ) {
- StartSound( "snd_pain_medium", SND_CHANNEL_VOICE, 0, false, NULL );
- } else if ( health > 25 ) {
- StartSound( "snd_pain_large", SND_CHANNEL_VOICE, 0, false, NULL );
- } else {
- StartSound( "snd_pain_huge", SND_CHANNEL_VOICE, 0, false, NULL );
- }
- if ( !allowPain || ( gameLocal.time < painTime ) ) {
- // don't play a pain anim
- return false;
- }
- if ( pain_threshold && ( damage < pain_threshold ) ) {
- return false;
- }
- // set the pain anim
- idStr damageGroup = GetDamageGroup( location );
- painAnim = "";
- if ( animPrefix.Length() ) {
- if ( damageGroup.Length() && ( damageGroup != "legs" ) ) {
- sprintf( painAnim, "%s_pain_%s", animPrefix.c_str(), damageGroup.c_str() );
- if ( !animator.HasAnim( painAnim ) ) {
- sprintf( painAnim, "pain_%s", damageGroup.c_str() );
- if ( !animator.HasAnim( painAnim ) ) {
- painAnim = "";
- }
- }
- }
- if ( !painAnim.Length() ) {
- sprintf( painAnim, "%s_pain", animPrefix.c_str() );
- if ( !animator.HasAnim( painAnim ) ) {
- painAnim = "";
- }
- }
- } else if ( damageGroup.Length() && ( damageGroup != "legs" ) ) {
- sprintf( painAnim, "pain_%s", damageGroup.c_str() );
- if ( !animator.HasAnim( painAnim ) ) {
- sprintf( painAnim, "pain_%s", damageGroup.c_str() );
- if ( !animator.HasAnim( painAnim ) ) {
- painAnim = "";
- }
- }
- }
- if ( !painAnim.Length() ) {
- painAnim = "pain";
- }
- if ( g_debugDamage.GetBool() ) {
- gameLocal.Printf( "Damage: joint: '%s', zone '%s', anim '%s'\n", animator.GetJointName( ( jointHandle_t )location ),
- damageGroup.c_str(), painAnim.c_str() );
- }
- return true;
- }
- /*
- =====================
- idActor::SpawnGibs
- =====================
- */
- void idActor::SpawnGibs( const idVec3 &dir, const char *damageDefName ) {
- idAFEntity_Gibbable::SpawnGibs( dir, damageDefName );
- RemoveAttachments();
- }
- /*
- =====================
- idActor::SetupDamageGroups
- FIXME: only store group names once and store an index for each joint
- =====================
- */
- void idActor::SetupDamageGroups( void ) {
- int i;
- const idKeyValue *arg;
- idStr groupname;
- idList<jointHandle_t> jointList;
- int jointnum;
- float scale;
- // create damage zones
- damageGroups.SetNum( animator.NumJoints() );
- arg = spawnArgs.MatchPrefix( "damage_zone ", NULL );
- while ( arg ) {
- groupname = arg->GetKey();
- groupname.Strip( "damage_zone " );
- animator.GetJointList( arg->GetValue(), jointList );
- for( i = 0; i < jointList.Num(); i++ ) {
- jointnum = jointList[ i ];
- damageGroups[ jointnum ] = groupname;
- }
- jointList.Clear();
- arg = spawnArgs.MatchPrefix( "damage_zone ", arg );
- }
- // initilize the damage zones to normal damage
- damageScale.SetNum( animator.NumJoints() );
- for( i = 0; i < damageScale.Num(); i++ ) {
- damageScale[ i ] = 1.0f;
- }
- // set the percentage on damage zones
- arg = spawnArgs.MatchPrefix( "damage_scale ", NULL );
- while ( arg ) {
- scale = atof( arg->GetValue() );
- groupname = arg->GetKey();
- groupname.Strip( "damage_scale " );
- for( i = 0; i < damageScale.Num(); i++ ) {
- if ( damageGroups[ i ] == groupname ) {
- damageScale[ i ] = scale;
- }
- }
- arg = spawnArgs.MatchPrefix( "damage_scale ", arg );
- }
- }
- /*
- =====================
- idActor::GetDamageForLocation
- =====================
- */
- int idActor::GetDamageForLocation( int damage, int location ) {
- if ( ( location < 0 ) || ( location >= damageScale.Num() ) ) {
- return damage;
- }
- return (int)ceil( damage * damageScale[ location ] );
- }
- /*
- =====================
- idActor::GetDamageGroup
- =====================
- */
- const char *idActor::GetDamageGroup( int location ) {
- if ( ( location < 0 ) || ( location >= damageGroups.Num() ) ) {
- return "";
- }
- return damageGroups[ location ];
- }
- /***********************************************************************
- Events
- ***********************************************************************/
- /*
- =====================
- idActor::Event_EnableEyeFocus
- =====================
- */
- void idActor::PlayFootStepSound( void ) {
- const char *sound = NULL;
- //const idMaterial *material;
- if ( !GetPhysics()->HasGroundContacts() ) {
- return;
- }
- idEntity *recordEnt;
- recordEnt = gameLocal.FindEntity( "world1" );
- if (recordEnt)
- {
- int currentRole = static_cast<idWorldManager *>( recordEnt )->index;
- if (currentRole >= 0)
- {
- const char *sound = NULL;
- sound = spawnArgs.GetString( va( "snd_footstep_role%d", currentRole ) );
- if ( *sound != '\0' )
- {
- StartSoundShader( declManager->FindSound( sound ), SND_CHANNEL_ANY, 0, false, NULL );
- }
- }
- //common->Printf("%d\n", currentRole);
- }
- /*
- // start footstep sound based on material type
- material = GetPhysics()->GetContact( 0 ).material;
- if ( material != NULL ) {
- sound = spawnArgs.GetString( va( "snd_footstep_%s", gameLocal.sufaceTypeNames[ material->GetSurfaceType() ] ) );
- }
- if ( *sound == '\0' ) {
- sound = spawnArgs.GetString( "snd_footstep" );
- }
- if ( *sound != '\0' ) {
- StartSoundShader( declManager->FindSound( sound ), SND_CHANNEL_BODY, 0, false, NULL );
- }
- */
- }
- /*
- =====================
- idActor::Event_EnableEyeFocus
- =====================
- */
- void idActor::Event_EnableEyeFocus( void ) {
- allowEyeFocus = true;
- blink_time = gameLocal.time + blink_min + gameLocal.random.RandomFloat() * ( blink_max - blink_min );
- }
- /*
- =====================
- idActor::Event_DisableEyeFocus
- =====================
- */
- void idActor::Event_DisableEyeFocus( void ) {
- allowEyeFocus = false;
-
- idEntity *headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->GetAnimator()->Clear( ANIMCHANNEL_EYELIDS, gameLocal.time, FRAME2MS( 2 ) );
- } else {
- animator.Clear( ANIMCHANNEL_EYELIDS, gameLocal.time, FRAME2MS( 2 ) );
- }
- }
- /*
- ===============
- idActor::Event_Footstep
- ===============
- */
- void idActor::Event_Footstep( void ) {
- PlayFootStepSound();
- }
- /*
- =====================
- idActor::Event_EnableWalkIK
- =====================
- */
- void idActor::Event_EnableWalkIK( void ) {
- walkIK.EnableAll();
- }
- /*
- =====================
- idActor::Event_DisableWalkIK
- =====================
- */
- void idActor::Event_DisableWalkIK( void ) {
- walkIK.DisableAll();
- }
- /*
- =====================
- idActor::Event_EnableLegIK
- =====================
- */
- void idActor::Event_EnableLegIK( int num ) {
- walkIK.EnableLeg( num );
- }
- /*
- =====================
- idActor::Event_DisableLegIK
- =====================
- */
- void idActor::Event_DisableLegIK( int num ) {
- walkIK.DisableLeg( num );
- }
- /*
- =====================
- idActor::Event_PreventPain
- =====================
- */
- void idActor::Event_PreventPain( float duration ) {
- painTime = gameLocal.time + SEC2MS( duration );
- }
- /*
- ===============
- idActor::Event_DisablePain
- ===============
- */
- void idActor::Event_DisablePain( void ) {
- allowPain = false;
- }
- /*
- ===============
- idActor::Event_EnablePain
- ===============
- */
- void idActor::Event_EnablePain( void ) {
- allowPain = true;
- }
- /*
- =====================
- idActor::Event_GetPainAnim
- =====================
- */
- void idActor::Event_GetPainAnim( void ) {
- if ( !painAnim.Length() ) {
- idThread::ReturnString( "pain" );
- } else {
- idThread::ReturnString( painAnim );
- }
- }
- /*
- =====================
- idActor::Event_SetAnimPrefix
- =====================
- */
- void idActor::Event_SetAnimPrefix( const char *prefix ) {
- animPrefix = prefix;
- }
- /*
- ===============
- idActor::Event_StopAnim
- ===============
- */
- void idActor::Event_StopAnim( int channel, int frames ) {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.StopAnim( frames );
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.StopAnim( frames );
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.StopAnim( frames );
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- }
- /*
- ===============
- idActor::Event_PlayAnim
- ===============
- */
- void idActor::Event_PlayAnim( int channel, const char *animname ) {
- animFlags_t flags;
- idEntity *headEnt;
- int anim;
-
- anim = GetAnim( channel, animname );
- if ( !anim ) {
- if ( ( channel == ANIMCHANNEL_HEAD ) && head.GetEntity() ) {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), spawnArgs.GetString( "def_head", "" ) );
- } else {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), GetEntityDefName() );
- }
- idThread::ReturnInt( 0 );
- return;
- }
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headEnt = head.GetEntity();
- if ( headEnt ) {
- headAnim.idleAnim = false;
- headAnim.PlayAnim( anim );
- flags = headAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( torsoAnim.IsIdle() ) {
- torsoAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- if ( legsAnim.IsIdle() ) {
- legsAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- }
- }
- }
- }
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.idleAnim = false;
- torsoAnim.PlayAnim( anim );
- flags = torsoAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( headAnim.IsIdle() ) {
- headAnim.animBlendFrames = torsoAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- if ( legsAnim.IsIdle() ) {
- legsAnim.animBlendFrames = torsoAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- }
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.idleAnim = false;
- legsAnim.PlayAnim( anim );
- flags = legsAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( torsoAnim.IsIdle() ) {
- torsoAnim.animBlendFrames = legsAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- if ( headAnim.IsIdle() ) {
- headAnim.animBlendFrames = legsAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- }
- }
- }
- break;
- default :
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- idThread::ReturnInt( 1 );
- }
- /*
- ===============
- idActor::Event_PlayCycle
- ===============
- */
- void idActor::Event_PlayCycle( int channel, const char *animname ) {
- animFlags_t flags;
- int anim;
-
- anim = GetAnim( channel, animname );
- if ( !anim ) {
- if ( ( channel == ANIMCHANNEL_HEAD ) && head.GetEntity() ) {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), spawnArgs.GetString( "def_head", "" ) );
- } else {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), GetEntityDefName() );
- }
- idThread::ReturnInt( false );
- return;
- }
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.idleAnim = false;
- headAnim.CycleAnim( anim );
- flags = headAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( torsoAnim.IsIdle() && legsAnim.IsIdle() ) {
- torsoAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- legsAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- }
- }
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.idleAnim = false;
- torsoAnim.CycleAnim( anim );
- flags = torsoAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( headAnim.IsIdle() ) {
- headAnim.animBlendFrames = torsoAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- if ( legsAnim.IsIdle() ) {
- legsAnim.animBlendFrames = torsoAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- }
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.idleAnim = false;
- legsAnim.CycleAnim( anim );
- flags = legsAnim.GetAnimFlags();
- if ( !flags.prevent_idle_override ) {
- if ( torsoAnim.IsIdle() ) {
- torsoAnim.animBlendFrames = legsAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- if ( headAnim.IsIdle() ) {
- headAnim.animBlendFrames = legsAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- }
- }
- }
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- }
- idThread::ReturnInt( true );
- }
- /*
- ===============
- idActor::Event_IdleAnim
- ===============
- */
- void idActor::Event_IdleAnim( int channel, const char *animname ) {
- int anim;
-
- anim = GetAnim( channel, animname );
- if ( !anim ) {
- if ( ( channel == ANIMCHANNEL_HEAD ) && head.GetEntity() ) {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), spawnArgs.GetString( "def_head", "" ) );
- } else {
- gameLocal.DPrintf( "missing '%s' animation on '%s' (%s)\n", animname, name.c_str(), GetEntityDefName() );
- }
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.BecomeIdle();
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.BecomeIdle();
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.BecomeIdle();
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- }
- idThread::ReturnInt( false );
- return;
- }
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.BecomeIdle();
- if ( torsoAnim.GetAnimFlags().prevent_idle_override ) {
- // don't sync to torso body if it doesn't override idle anims
- headAnim.CycleAnim( anim );
- } else if ( torsoAnim.IsIdle() && legsAnim.IsIdle() ) {
- // everything is idle, so play the anim on the head and copy it to the torso and legs
- headAnim.CycleAnim( anim );
- torsoAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- legsAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_HEAD, headAnim.lastAnimBlendFrames );
- } else if ( torsoAnim.IsIdle() ) {
- // sync the head and torso to the legs
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_LEGS, headAnim.animBlendFrames );
- torsoAnim.animBlendFrames = headAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, torsoAnim.animBlendFrames );
- } else {
- // sync the head to the torso
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, headAnim.animBlendFrames );
- }
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.BecomeIdle();
- if ( legsAnim.GetAnimFlags().prevent_idle_override ) {
- // don't sync to legs if legs anim doesn't override idle anims
- torsoAnim.CycleAnim( anim );
- } else if ( legsAnim.IsIdle() ) {
- // play the anim in both legs and torso
- torsoAnim.CycleAnim( anim );
- legsAnim.animBlendFrames = torsoAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- } else {
- // sync the anim to the legs
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, torsoAnim.animBlendFrames );
- }
- if ( headAnim.IsIdle() ) {
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.BecomeIdle();
- if ( torsoAnim.GetAnimFlags().prevent_idle_override ) {
- // don't sync to torso if torso anim doesn't override idle anims
- legsAnim.CycleAnim( anim );
- } else if ( torsoAnim.IsIdle() ) {
- // play the anim in both legs and torso
- legsAnim.CycleAnim( anim );
- torsoAnim.animBlendFrames = legsAnim.lastAnimBlendFrames;
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- if ( headAnim.IsIdle() ) {
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- }
- } else {
- // sync the anim to the torso
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_TORSO, legsAnim.animBlendFrames );
- }
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- }
- idThread::ReturnInt( true );
- }
- /*
- ================
- idActor::Event_SetSyncedAnimWeight
- ================
- */
- void idActor::Event_SetSyncedAnimWeight( int channel, int anim, float weight ) {
- idEntity *headEnt;
- headEnt = head.GetEntity();
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- if ( headEnt ) {
- animator.CurrentAnim( ANIMCHANNEL_ALL )->SetSyncedAnimWeight( anim, weight );
- } else {
- animator.CurrentAnim( ANIMCHANNEL_HEAD )->SetSyncedAnimWeight( anim, weight );
- }
- if ( torsoAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_TORSO )->SetSyncedAnimWeight( anim, weight );
- if ( legsAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_LEGS )->SetSyncedAnimWeight( anim, weight );
- }
- }
- break;
- case ANIMCHANNEL_TORSO :
- animator.CurrentAnim( ANIMCHANNEL_TORSO )->SetSyncedAnimWeight( anim, weight );
- if ( legsAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_LEGS )->SetSyncedAnimWeight( anim, weight );
- }
- if ( headEnt && headAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_ALL )->SetSyncedAnimWeight( anim, weight );
- }
- break;
- case ANIMCHANNEL_LEGS :
- animator.CurrentAnim( ANIMCHANNEL_LEGS )->SetSyncedAnimWeight( anim, weight );
- if ( torsoAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_TORSO )->SetSyncedAnimWeight( anim, weight );
- if ( headEnt && headAnim.IsIdle() ) {
- animator.CurrentAnim( ANIMCHANNEL_ALL )->SetSyncedAnimWeight( anim, weight );
- }
- }
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- }
- }
- /*
- ===============
- idActor::Event_OverrideAnim
- ===============
- */
- void idActor::Event_OverrideAnim( int channel ) {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.Disable();
- if ( !torsoAnim.IsIdle() ) {
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- } else {
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- }
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.Disable();
- SyncAnimChannels( ANIMCHANNEL_TORSO, ANIMCHANNEL_LEGS, legsAnim.lastAnimBlendFrames );
- if ( headAnim.IsIdle() ) {
- SyncAnimChannels( ANIMCHANNEL_HEAD, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- }
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.Disable();
- SyncAnimChannels( ANIMCHANNEL_LEGS, ANIMCHANNEL_TORSO, torsoAnim.lastAnimBlendFrames );
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- }
- /*
- ===============
- idActor::Event_EnableAnim
- ===============
- */
- void idActor::Event_EnableAnim( int channel, int blendFrames ) {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.Enable( blendFrames );
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.Enable( blendFrames );
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.Enable( blendFrames );
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- }
- /*
- ===============
- idActor::Event_SetBlendFrames
- ===============
- */
- void idActor::Event_SetBlendFrames( int channel, int blendFrames ) {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- headAnim.animBlendFrames = blendFrames;
- headAnim.lastAnimBlendFrames = blendFrames;
- break;
- case ANIMCHANNEL_TORSO :
- torsoAnim.animBlendFrames = blendFrames;
- torsoAnim.lastAnimBlendFrames = blendFrames;
- break;
- case ANIMCHANNEL_LEGS :
- legsAnim.animBlendFrames = blendFrames;
- legsAnim.lastAnimBlendFrames = blendFrames;
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- }
- /*
- ===============
- idActor::Event_GetBlendFrames
- ===============
- */
- void idActor::Event_GetBlendFrames( int channel ) {
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- idThread::ReturnInt( headAnim.animBlendFrames );
- break;
- case ANIMCHANNEL_TORSO :
- idThread::ReturnInt( torsoAnim.animBlendFrames );
- break;
- case ANIMCHANNEL_LEGS :
- idThread::ReturnInt( legsAnim.animBlendFrames );
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- break;
- }
- }
- /*
- ===============
- idActor::Event_AnimState
- ===============
- */
- void idActor::Event_AnimState( int channel, const char *statename, int blendFrames ) {
- SetAnimState( channel, statename, blendFrames );
- }
- /*
- ===============
- idActor::Event_GetAnimState
- ===============
- */
- void idActor::Event_GetAnimState( int channel ) {
- const char *state;
- state = GetAnimState( channel );
- idThread::ReturnString( state );
- }
- /*
- ===============
- idActor::Event_InAnimState
- ===============
- */
- void idActor::Event_InAnimState( int channel, const char *statename ) {
- bool instate;
- instate = InAnimState( channel, statename );
- idThread::ReturnInt( instate );
- }
- /*
- ===============
- idActor::Event_FinishAction
- ===============
- */
- void idActor::Event_FinishAction( const char *actionname ) {
- if ( waitState == actionname ) {
- SetWaitState( "" );
- }
- }
- /*
- ===============
- idActor::Event_AnimDone
- ===============
- */
- void idActor::Event_AnimDone( int channel, int blendFrames ) {
- bool result;
- switch( channel ) {
- case ANIMCHANNEL_HEAD :
- result = headAnim.AnimDone( blendFrames );
- idThread::ReturnInt( result );
- break;
- case ANIMCHANNEL_TORSO :
- result = torsoAnim.AnimDone( blendFrames );
- idThread::ReturnInt( result );
- break;
- case ANIMCHANNEL_LEGS :
- result = legsAnim.AnimDone( blendFrames );
- idThread::ReturnInt( result );
- break;
- default:
- gameLocal.Error( "Unknown anim group" );
- }
- }
- /*
- ================
- idActor::Event_HasAnim
- ================
- */
- void idActor::Event_HasAnim( int channel, const char *animname ) {
- if ( GetAnim( channel, animname ) != NULL ) {
- idThread::ReturnFloat( 1.0f );
- } else {
- idThread::ReturnFloat( 0.0f );
- }
- }
- /*
- ================
- idActor::Event_CheckAnim
- ================
- */
- void idActor::Event_CheckAnim( int channel, const char *animname ) {
- if ( !GetAnim( channel, animname ) ) {
- if ( animPrefix.Length() ) {
- gameLocal.Error( "Can't find anim '%s_%s' for '%s'", animPrefix.c_str(), animname, name.c_str() );
- } else {
- gameLocal.Error( "Can't find anim '%s' for '%s'", animname, name.c_str() );
- }
- }
- }
- /*
- ================
- idActor::Event_ChooseAnim
- ================
- */
- void idActor::Event_ChooseAnim( int channel, const char *animname ) {
- int anim;
- anim = GetAnim( channel, animname );
- if ( anim ) {
- if ( channel == ANIMCHANNEL_HEAD ) {
- if ( head.GetEntity() ) {
- idThread::ReturnString( head.GetEntity()->GetAnimator()->AnimFullName( anim ) );
- return;
- }
- } else {
- idThread::ReturnString( animator.AnimFullName( anim ) );
- return;
- }
- }
- idThread::ReturnString( "" );
- }
- /*
- ================
- idActor::Event_AnimLength
- ================
- */
- void idActor::Event_AnimLength( int channel, const char *animname ) {
- int anim;
- anim = GetAnim( channel, animname );
- if ( anim ) {
- if ( channel == ANIMCHANNEL_HEAD ) {
- if ( head.GetEntity() ) {
- idThread::ReturnFloat( MS2SEC( head.GetEntity()->GetAnimator()->AnimLength( anim ) ) );
- return;
- }
- } else {
- idThread::ReturnFloat( MS2SEC( animator.AnimLength( anim ) ) );
- return;
- }
- }
-
- idThread::ReturnFloat( 0.0f );
- }
- /*
- ================
- idActor::Event_AnimDistance
- ================
- */
- void idActor::Event_AnimDistance( int channel, const char *animname ) {
- int anim;
- anim = GetAnim( channel, animname );
- if ( anim ) {
- if ( channel == ANIMCHANNEL_HEAD ) {
- if ( head.GetEntity() ) {
- idThread::ReturnFloat( head.GetEntity()->GetAnimator()->TotalMovementDelta( anim ).Length() );
- return;
- }
- } else {
- idThread::ReturnFloat( animator.TotalMovementDelta( anim ).Length() );
- return;
- }
- }
-
- idThread::ReturnFloat( 0.0f );
- }
- /*
- ================
- idActor::Event_HasEnemies
- ================
- */
- void idActor::Event_HasEnemies( void ) {
- bool hasEnemy;
- hasEnemy = HasEnemies();
- idThread::ReturnInt( hasEnemy );
- }
- /*
- ================
- idActor::Event_NextEnemy
- ================
- */
- void idActor::Event_NextEnemy( idEntity *ent ) {
- idActor *actor;
- if ( !ent || ( ent == this ) ) {
- actor = enemyList.Next();
- } else {
- if ( !ent->IsType( idActor::Type ) ) {
- gameLocal.Error( "'%s' cannot be an enemy", ent->name.c_str() );
- }
- actor = static_cast<idActor *>( ent );
- if ( actor->enemyNode.ListHead() != &enemyList ) {
- gameLocal.Error( "'%s' is not in '%s' enemy list", actor->name.c_str(), name.c_str() );
- }
- }
- for( ; actor != NULL; actor = actor->enemyNode.Next() ) {
- if ( !actor->fl.hidden ) {
- idThread::ReturnEntity( actor );
- return;
- }
- }
- idThread::ReturnEntity( NULL );
- }
- /*
- ================
- idActor::Event_ClosestEnemyToPoint
- ================
- */
- void idActor::Event_ClosestEnemyToPoint( const idVec3 &pos ) {
- idActor *bestEnt = ClosestEnemyToPoint( pos );
- idThread::ReturnEntity( bestEnt );
- }
- /*
- ================
- idActor::Event_StopSound
- ================
- */
- void idActor::Event_StopSound( int channel, int netSync ) {
- if ( channel == SND_CHANNEL_VOICE ) {
- idEntity *headEnt = head.GetEntity();
- if ( headEnt ) {
- headEnt->StopSound( channel, ( netSync != 0 ) );
- }
- }
- StopSound( channel, ( netSync != 0 ) );
- }
- /*
- =====================
- idActor::Event_SetNextState
- =====================
- */
- void idActor::Event_SetNextState( const char *name ) {
- idealState = GetScriptFunction( name );
- if ( idealState == state ) {
- state = NULL;
- }
- }
- /*
- =====================
- idActor::Event_SetState
- =====================
- */
- void idActor::Event_SetState( const char *name ) {
- idealState = GetScriptFunction( name );
- if ( idealState == state ) {
- state = NULL;
- }
- scriptThread->DoneProcessing();
- }
- /*
- =====================
- idActor::Event_GetState
- =====================
- */
- void idActor::Event_GetState( void ) {
- if ( state ) {
- idThread::ReturnString( state->Name() );
- } else {
- idThread::ReturnString( "" );
- }
- }
- /*
- =====================
- idActor::Event_GetHead
- =====================
- */
- void idActor::Event_GetHead( void ) {
- idThread::ReturnEntity( head.GetEntity() );
- }
- #ifdef _D3XP
- /*
- ================
- idActor::Event_SetDamageGroupScale
- ================
- */
- void idActor::Event_SetDamageGroupScale( const char* groupName, float scale) {
- for( int i = 0; i < damageScale.Num(); i++ ) {
- if ( damageGroups[ i ] == groupName ) {
- damageScale[ i ] = scale;
- }
- }
- }
- /*
- ================
- idActor::Event_SetDamageGroupScaleAll
- ================
- */
- void idActor::Event_SetDamageGroupScaleAll( float scale ) {
- for( int i = 0; i < damageScale.Num(); i++ ) {
- damageScale[ i ] = scale;
- }
- }
- void idActor::Event_GetDamageGroupScale( const char* groupName ) {
- for( int i = 0; i < damageScale.Num(); i++ ) {
- if ( damageGroups[ i ] == groupName ) {
- idThread::ReturnFloat(damageScale[i]);
- return;
- }
- }
- idThread::ReturnFloat(0);
- }
- void idActor::Event_SetDamageCap( float _damageCap ) {
- damageCap = _damageCap;
- }
- void idActor::Event_SetWaitState( const char* waitState) {
- SetWaitState(waitState);
- }
- void idActor::Event_GetWaitState() {
- if(WaitState()) {
- idThread::ReturnString(WaitState());
- } else {
- idThread::ReturnString("");
- }
- }
- #endif
|