Home
last modified time | relevance | path

Searched refs:spellcast_data (Results 1 – 9 of 9) sorted by relevance

/dports/games/arx-libertatis/arx-libertatis-1.1.2/tools/savetool/
H A DSaveView.cpp1247 if(ais.spellcast_data.castingspell >= 0 || ais.spellcast_data.spell_flags) { in view_io()
1249 if(ais.spellcast_data.castingspell >= 0) { in view_io()
1250 cout << "Casting spell: "; print_spell(ais.spellcast_data.castingspell); cout << endl; in view_io()
1255 if(ais.spellcast_data.symb[i] == RUNE_NONE) { in view_io()
1257 } else if((size_t)ais.spellcast_data.symb[i] < ARRAY_SIZE(runeNames)) { in view_io()
1265 if(ais.spellcast_data.spell_flags) { in view_io()
1266 cout << "Spell flags:"; print_spellcast_flags(ais.spellcast_data.spell_flags); cout << endl; in view_io()
1270 …if(ais.spellcast_data.spell_level) cout << "Spell level: " << ais.spellcast_data.spell_level << en… in view_io()
1271 if(ais.spellcast_data.duration) cout << "Spell duration: " << ais.spellcast_data.duration << endl; in view_io()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/game/
H A DSpells.cpp1166 Rune symb = io->spellcast_data.symb[0]; in ARX_SPELLS_UpdateSymbolDraw()
1169 io->spellcast_data.symb[j]=io->spellcast_data.symb[j+1]; in ARX_SPELLS_UpdateSymbolDraw()
1171 io->spellcast_data.symb[3] = RUNE_NONE; in ARX_SPELLS_UpdateSymbolDraw()
1178 …nch(io->spellcast_data.castingspell,i,io->spellcast_data.spell_flags,io->spellcast_data.spell_leve… in ARX_SPELLS_UpdateSymbolDraw()
1189 io->spellcast_data.castingspell = SPELL_NONE; in ARX_SPELLS_UpdateSymbolDraw()
7455 io->spellcast_data.castingspell = spellid; in TryToCastSpell()
7458 io->spellcast_data.spell_flags = flags; in TryToCastSpell()
7462 io->spellcast_data.duration = duration; in TryToCastSpell()
7463 io->spellcast_data.target = target; in TryToCastSpell()
7472 …->spellcast_data.castingspell, io->index(), io->spellcast_data.spell_flags,io->spellcast_data.spel… in TryToCastSpell()
[all …]
H A DEntity.cpp160 std::memset(&spellcast_data, 0, sizeof(IO_SPELLCAST_DATA)); in Entity()
H A DEntity.h326 IO_SPELLCAST_DATA spellcast_data; variable
H A DNPC.cpp234 io->spellcast_data.castingspell = SPELL_NONE; in ARX_NPC_Kill_Spell_Launch()
2270 || (io->spellcast_data.castingspell != SPELL_NONE)) in ARX_NPC_Manage_Anims()
2336 if ((io->spellcast_data.castingspell == SPELL_NONE) in ARX_NPC_Manage_Anims()
2357 if (io->spellcast_data.castingspell != SPELL_NONE) return; in ARX_NPC_Manage_Anims()
2694 …if ((io->_npcdata->behavior & (BEHAVIOUR_MAGIC | BEHAVIOUR_DISTANT)) || (io->spellcast_data.castin… in ComputeTolerance()
H A DPlayer.cpp3243 entities.player()->spellcast_data.castingspell = SPELL_NONE; in ARX_GAME_Reset()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/scene/
H A DInteractive.cpp1020 entities.player()->spellcast_data.castingspell = SPELL_NONE; in RestoreInitialIOStatus()
1096 io->spellcast_data.castingspell = SPELL_NONE; in ARX_INTERACTIVE_ClearIODynData()
1305 io->spellcast_data.castingspell = SPELL_NONE; in RestoreInitialIOStatusOfIO()
1838 io->spellcast_data.castingspell = SPELL_NONE; in AddFix()
2136 io->spellcast_data.castingspell = SPELL_NONE; in AddNPC()
2322 io->spellcast_data.castingspell = SPELL_NONE; in AddItem()
H A DChangeLevel.cpp1055 ais.spellcast_data = io->spellcast_data; in ARX_CHANGELEVEL_Push_IO()
2085 io->spellcast_data = ais->spellcast_data; in ARX_CHANGELEVEL_Pop_IO()
H A DSaveFormat.h658 SavedSpellcastData spellcast_data; member