Home
last modified time | relevance | path

Searched refs:mapTime (Results 1 – 25 of 88) sorted by relevance

1234

/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/world/
H A Dp_tick.cpp38 int mapTime; variable
73 !Get(DD_PLAYBACK) && mapTime > 1) in P_DoTick()
106 mapTime++; in P_DoTick()
H A Dp_actor.cpp379 spawn->startTime = mapTime; in enqueueSpawn()
392 … while(other->next && other->next->minTics - (mapTime - other->next->startTime) <= minTics) in enqueueSpawn()
403 if(spawnQueueHead->minTics - (mapTime - spawnQueueHead->startTime) <= minTics) in enqueueSpawn()
460 if(spawnQueueHead && mapTime - spawnQueueHead->startTime >= spawnQueueHead->minTics) in processOneSpawnTask()
H A Dp_plat.cpp80 if(!(mapTime & 31)) in T_PlatRaise()
87 if(!(mapTime & 7)) in T_PlatRaise()
175 if(!(mapTime & 31)) in T_PlatRaise()
/dports/games/doomsday/doomsday-2.3.1/doomsday/tools/savegametool/src/
H A Dnativetranslator.cpp434 dint32 mapTime; in DENG2_PIMPL() local
435 from >> mapTime; in DENG2_PIMPL()
436 metadata.set("mapTime", mapTime); in DENG2_PIMPL()
686 dint32 mapTime; in convert() local
687 Reader(*xlatedData, littleEndianByteOrder, 4 + 1) >> mapTime; in convert()
688 metadata.set("mapTime", mapTime); in convert()
/dports/games/scummvm/scummvm-2.5.1/engines/dm/
H A Ddm.h203 int32 filterTime(int32 mapTime); // @ M30_TIME
205 uint16 getMap(int32 mapTime); // @ M29_MAP
208 int32 setMap(int32 mapTime, uint32 map); // @ M31_setMap
H A Ddm.cpp99 int32 DMEngine::filterTime(int32 mapTime) { in filterTime() argument
100 return mapTime & 0x00FFFFFF; in filterTime()
107 uint16 DMEngine::getMap(int32 mapTime) { in getMap() argument
108 return ((uint16)(mapTime >> 24)); in getMap()
111 int32 DMEngine::setMap(int32 mapTime, uint32 map) { in setMap() argument
112 return ((mapTime & 0x00FFFFFF) | (map << 24)); in setMap()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/dm/
H A Ddm.h255 int32 filterTime(int32 mapTime); // @ M30_TIME
257 uint16 getMap(int32 mapTime); // @ M29_MAP
260 int32 setMap(int32 mapTime, uint32 map); // @ M31_setMap
H A Ddm.cpp99 int32 DMEngine::filterTime(int32 mapTime) { in filterTime() argument
100 return mapTime & 0x00FFFFFF; in filterTime()
107 uint16 DMEngine::getMap(int32 mapTime) { in getMap() argument
108 return ((uint16)(mapTime >> 24)); in getMap()
111 int32 DMEngine::setMap(int32 mapTime, uint32 map) { in setMap() argument
112 return ((mapTime & 0x00FFFFFF) | (map << 24)); in setMap()
/dports/games/xray_re-tools/xray_re-tools-52721d2/sources/plugins/xray_fsl/materials/
H A Dplate.cpp54 TimeValue mapTime; member in PlateMap
56 PlateMap() { next = NULL; bm = NULL; nodeID = -1; mapTime = 0; } in PlateMap()
142 int DoThisFrame(TimeValue t, BOOL fieldRender, TimeValue mapTime);
458 int Plate::DoThisFrame(TimeValue t, BOOL fieldRender, TimeValue mapTime) { in DoThisFrame() argument
461 TimeValue del = abs(t - mapTime); in DoThisFrame()
479 if (pmap&&!DoThisFrame(t,srp.fieldRender,pmap->mapTime)) in BuildMaps()
586 pmap->mapTime = t; in BuildMaps()
H A Dmirror.cpp77 TimeValue mapTime; // when the mirror was last rendered member in MirrorMap
80 MirrorMap() { next = NULL; bm = NULL; nodeID = -1; mapTime = 0; } in MirrorMap()
217 int DoThisFrame(TimeValue t, BOOL fieldRender, TimeValue mapTime);
958 int Mirror::DoThisFrame(TimeValue t, BOOL fieldRender, TimeValue mapTime) { in DoThisFrame() argument
960 if (t!=mapTime) return 0; // only do it on first frame. in DoThisFrame()
963 TimeValue del = abs(t - mapTime); in DoThisFrame()
987 if (mir&&!DoThisFrame(t,srp.fieldRender, mir->mapTime)) in BuildMaps()
1081 mir->mapTime = t; in BuildMaps()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/include/
H A Dp_tick.h27 DENG_EXTERN_C int mapTime; variable
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/hexen/include/
H A Dx_state.h51 DENG_EXTERN_C int mapTime; // Tics in game play for par. variable
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/
H A Dhu_inventory.cpp348 …GL_DrawPatch(pInvPageLeft[!(mapTime & 4)? 1 : 0], Vector2i(x - ARROW_RELXOFF, y + ARROW_YOFFSET), … in Hu_InventoryDraw()
354 …GL_DrawPatch(pInvPageRight[!(mapTime & 4)? 1 : 0], Vector2i(x + numVisSlots * ST_INVSLOTWIDTH + (n… in Hu_InventoryDraw()
439 GL_DrawPatch(pInvPageLeft[!(mapTime & 4)? 1 : 0], Vector2i(x - 12, y - 1)); in Hu_InventoryDraw2()
446 …GL_DrawPatch(pInvPageRight[!(mapTime & 4)? 1 : 0], Vector2i(x + NUMVISINVSLOTS * ST_INVSLOTWIDTH +… in Hu_InventoryDraw2()
H A Dp_user.c543 if(lookDelta < 1 && (mapTime & 1)) in P_DeathThink()
983 if(player->powers[PT_SPEED] && !(mapTime & 1) && in P_PlayerThinkMove()
1465 else if(!(mapTime & 16)) /* && player == &players[CONSOLEPLAYER]) */ in P_PlayerThinkPowers()
1505 if(!(mapTime & 7) && (player->plr->mo->flags & MF_SHADOW) && in P_PlayerThinkPowers()
1514 if(!(mapTime & 31)) in P_PlayerThinkPowers()
1555 if(player->poisonCount && !(mapTime & 15)) in P_PlayerThinkPowers()
H A Dp_view.c121 angle_t angle = (FINEANGLES / 20 * mapTime) & FINEMASK; in P_CalcHeight()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom/src/
H A Dp_spec.cpp591 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
599 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
608 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
627 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/heretic/src/
H A Dp_spec.cpp654 if(!(mapTime & 15)) in P_PlayerInSpecialSector()
663 if(!(mapTime & 31)) in P_PlayerInSpecialSector()
669 if(!(mapTime & 15)) in P_PlayerInSpecialSector()
679 if(!(mapTime & 15)) in P_PlayerInSpecialSector()
/dports/math/vtk6/VTK-6.2.0/Web/WebGLExporter/
H A DvtkWebGLExporter.h72 void parseRenderer(vtkRenderer* render, const char* viewId, bool onlyWidget, void* mapTime);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/doom64/src/
H A Dp_spec.cpp690 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
696 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
704 if(!(mapTime & 0x1f)) in P_PlayerInSpecialSector()
737 if(!(mapTime & 32)) in P_ThunderSector()
/dports/math/vtk9/VTK-9.1.0/Web/WebGLExporter/
H A DvtkWebGLExporter.h77 void parseRenderer(vtkRenderer* render, const char* viewId, bool onlyWidget, void* mapTime);
/dports/math/vtk8/VTK-8.2.0/Web/WebGLExporter/
H A DvtkWebGLExporter.h76 void parseRenderer(vtkRenderer* render, const char* viewId, bool onlyWidget, void* mapTime);
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/hexen/src/hud/widgets/
H A Dbootswidget.cpp68 _patchId = ::pBootsIcon[(::mapTime / 3) & (FRAME_COUNT - 1)]; in tick()
H A Ddefensewidget.cpp68 _patchId = ::pDefenseIcon[(::mapTime / 3) & (FRAME_COUNT - 1)]; in tick()
H A Dservantwidget.cpp68 _patchId = ::pServantIcon[(::mapTime / 3) & (FRAME_COUNT - 1)]; in tick()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/plugins/common/src/hud/widgets/
H A Dflightwidget.cpp72 dint frame = (::mapTime / 3) & 15; in tick()

1234