Home
last modified time | relevance | path

Searched refs:upLoc (Results 1 – 8 of 8) sorted by relevance

/dports/devel/tcl-trf/trf2.1.4/generic/
H A Dregistry.c1483 trans->seekState.upLoc += copied;
1787 trans->seekState.upLoc += toWrite;
1856 return trans->seekState.upLoc;
1913 newLoc = trans->seekState.upLoc + offset;
1956 trans->seekState.upLoc = newLoc;
1971 trans->seekState.upLoc = newLoc;
2266 trans->seekState.upLoc = 0;
3994 trans->seekState.upLoc = 0;
4289 LIST_ADDINT (error, list, state->upLoc);
4437 trans->seekState.upLoc,
[all …]
/dports/games/brogue/BrogueCE-1.10.1/src/brogue/
H A DArchitect.c3691 prepareForStairs(upLoc[0], upLoc[1], grid); in initializeLevel()
3702 pmap[upLoc[0]][upLoc[1]].layers[DUNGEON] = DUNGEON_EXIT; in initializeLevel()
3704 pmap[upLoc[0]][upLoc[1]].layers[DUNGEON] = UP_STAIRS; in initializeLevel()
3706 pmap[upLoc[0]][upLoc[1]].layers[LIQUID] = NOTHING; in initializeLevel()
3707 pmap[upLoc[0]][upLoc[1]].layers[SURFACE] = NOTHING; in initializeLevel()
3712 rogue.upLoc[0] = upLoc[0]; in initializeLevel()
3713 rogue.upLoc[1] = upLoc[1]; in initializeLevel()
3714 pmap[upLoc[0]][upLoc[1]].flags |= HAS_STAIRS; in initializeLevel()
3720 if (coordinatesAreInMap(upLoc[0] + nbDirs[dir][0], upLoc[1] + nbDirs[dir][1]) in initializeLevel()
3729 …getFOVMask(grid, upLoc[0], upLoc[1], max(DCOLS, DROWS) * FP_FACTOR, (T_OBSTRUCTS_VISION), 0, false… in initializeLevel()
[all …]
H A DRogueMain.c707 rogue.upLoc[0] = levels[rogue.depthLevel - 1].upStairsLoc[0]; in startLevel()
708 rogue.upLoc[1] = levels[rogue.depthLevel - 1].upStairsLoc[1]; in startLevel()
777 player.xLoc = rogue.upLoc[0]; in startLevel()
778 player.yLoc = rogue.upLoc[1]; in startLevel()
808 for (i = rogue.upLoc[0]-1; i <= rogue.upLoc[0] + 1; i++) { in startLevel()
809 for (j = rogue.upLoc[1]-1; j <= rogue.upLoc[1] + 1; j++) { in startLevel()
H A DMovement.c1101 } else if (rogue.upLoc[0] == newX && rogue.upLoc[1] == newY) { in playerMoves()
1619 if (rogue.upLoc[0] == x && rogue.upLoc[1] == y) { in travel()
1860 costMap[rogue.upLoc[0]][rogue.upLoc[1]] = 100; in getExploreMap()
H A DTime.c1669 playerCostMap[rogue.upLoc[0]][rogue.upLoc[1]] = PDS_FORBIDDEN; in updateSafetyMap()
1670 monsterCostMap[rogue.upLoc[0]][rogue.upLoc[1]] = PDS_FORBIDDEN; in updateSafetyMap()
1867 monst->xLoc = rogue.upLoc[0]; in monsterEntersLevel()
1868 monst->yLoc = rogue.upLoc[1]; in monsterEntersLevel()
H A DIO.c774 … && (theEvent.param1 == ASCEND_KEY && cursor[0] == rogue.upLoc[0] && cursor[1] == rogue.upLoc[1] in mainInputLoop()
2532 … } else if (proposeOrConfirmLocation(rogue.upLoc[0], rogue.upLoc[1], "I see no way up.")) { in executeKeystroke()
2533 travel(rogue.upLoc[0], rogue.upLoc[1], true); in executeKeystroke()
H A DMonsters.c1278 || (x == rogue.upLoc[0] && y == rogue.upLoc[1])) { in monsterAvoids()
H A DRogue.h2313 short upLoc[2]; // upstairs location this level member