Home
last modified time | relevance | path

Searched refs:tweakerinfo (Results 1 – 6 of 6) sorted by relevance

/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/script/
H A DScriptedPlayer.cpp255 if(!io->tweakerinfo) { in execute()
256 io->tweakerinfo = new IO_TWEAKER_INFO; in execute()
257 if(!io->tweakerinfo) { in execute()
264 io->tweakerinfo->skintochange = context.getWord(); in execute()
265 io->tweakerinfo->skinchangeto = res::path::load(context.getWord()); in execute()
267 DebugScript(" skin " << io->tweakerinfo->skintochange << ' ' << io->tweakerinfo->skinchangeto); in execute()
271 io->tweakerinfo->filename = res::path::load(context.getWord()); in execute()
273 DebugScript(" mesh " << io->tweakerinfo->filename); in execute()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/game/
H A DEntity.cpp147 tweakerinfo = NULL; in Entity()
239 delete tweakerinfo; in ~Entity()
H A DEntity.h312 IO_TWEAKER_INFO * tweakerinfo; // optional tweaker infos variable
H A DEquipment.cpp198 arx_assert(entities[player.equiped[equip]]->tweakerinfo != NULL); in applyTweak()
200 const IO_TWEAKER_INFO & tweak = *entities[player.equiped[equip]]->tweakerinfo; in applyTweak()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/scene/
H A DChangeLevel.cpp1032 if (io->tweakerinfo) in ARX_CHANGELEVEL_Push_IO()
1434 if(io->tweakerinfo) { in ARX_CHANGELEVEL_Push_IO()
1435 SavedTweakerInfo sti = *io->tweakerinfo; in ARX_CHANGELEVEL_Push_IO()
2306 if(!io->tweakerinfo) { in ARX_CHANGELEVEL_Pop_IO()
2307 io->tweakerinfo = new IO_TWEAKER_INFO; in ARX_CHANGELEVEL_Pop_IO()
2313 io->tweakerinfo->filename = res::path::load(util::loadString(sti->filename)); in ARX_CHANGELEVEL_Pop_IO()
2314 io->tweakerinfo->skintochange = boost::to_lower_copy(util::loadString(sti->skintochange)); in ARX_CHANGELEVEL_Pop_IO()
2315 io->tweakerinfo->skinchangeto = res::path::load(util::loadString(sti->skinchangeto)); in ARX_CHANGELEVEL_Pop_IO()
H A DInteractive.cpp1138 delete io->tweakerinfo, io->tweakerinfo = NULL; in ARX_INTERACTIVE_ClearIODynData_II()