Home
last modified time | relevance | path

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

/dports/games/ags/ags_linux_v.3.4.4.1/Engine/ac/dynobj/
H A Dcc_hotspot.cpp19 extern ScriptHotspot scrHotspot[MAX_HOTSPOTS];
38 ccRegisterUnserializedObject(index, &scrHotspot[num], this); in Unserialize()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/game/
H A Dgame_init.cpp70 extern ScriptHotspot scrHotspot[MAX_HOTSPOTS];
248 scrHotspot[i].id = i; in InitAndRegisterHotspots()
249 scrHotspot[i].reserved = 0; in InitAndRegisterHotspots()
250 ccRegisterManagedObject(&scrHotspot[i], &ccDynamicHotspot); in InitAndRegisterHotspots()
288 ccAddExternalStaticArray("hotspot",&scrHotspot[0], &StaticHotspotArray); in RegisterStaticArrays()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/ac/
H A Dhotspot.cpp32 extern ScriptHotspot scrHotspot[MAX_HOTSPOTS];
62 ret_hotspot = &scrHotspot[0]; in GetHotspotAtLocation()
64 ret_hotspot = &scrHotspot[hsnum]; in GetHotspotAtLocation()
H A Droom.cpp99 extern ScriptHotspot scrHotspot[MAX_HOTSPOTS];
733 … ccAddExternalDynamicObject(thisroom.hotspotScriptNames[cc], &scrHotspot[cc], &ccDynamicHotspot); in load_new_room()
H A Dgame.cpp184 ScriptHotspot scrHotspot[MAX_HOTSPOTS]; variable
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/ac/dynobj/
H A Dcc_hotspot.cpp48 ccRegisterUnserializedObject(index, &_G(scrHotspot)[num], this); in Unserialize()
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/game/
H A Dgame_init.cpp194 _G(scrHotspot)[i].id = i; in InitAndRegisterHotspots() local
195 _G(scrHotspot)[i].reserved = 0; in InitAndRegisterHotspots() local
196 ccRegisterManagedObject(&_G(scrHotspot)[i], &_GP(ccDynamicHotspot)); in InitAndRegisterHotspots()
229 ccAddExternalStaticArray("hotspot", &_G(scrHotspot)[0], &_GP(StaticHotspotArray)); in RegisterStaticArrays()
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/ac/
H A Dhotspot.cpp74 return &_G(scrHotspot)[GetHotspotIDAtScreen(xx, yy)]; in GetHotspotAtScreen()
78 return &_G(scrHotspot)[get_hotspot_at(x, y)]; in GetHotspotAtRoom()
H A Droom.cpp661 …ccAddExternalDynamicObject(_GP(thisroom).Hotspots[cc].ScriptName, &_G(scrHotspot)[cc], &_GP(ccDyna… in load_new_room()