Home | History | Annotate | Download | only in trek

Lines Matching defs:lookx

60 **	equivalent to Ship.sectx and Ship.secty for the starship.  Lookx and
74 int lookx, looky;
115 lookx = nextx + dx;
117 if (lookx < 0 || lookx >= NSECTS ||
122 if (lookx < 0)
125 if (lookx >= NSECTS)
158 if (Sect[lookx][looky] != EMPTY) {
159 lookx = nextx + fudgex;
160 if (lookx < 0 || lookx >= NSECTS)
161 lookx = nextx + dx;
162 if (Sect[lookx][looky] != EMPTY) {
166 Sect[lookx][looky] != EMPTY) {
172 nextx = lookx;