Home | History | Annotate | Download | only in adventure

Lines Matching refs:object

55 destroy(int object)
57 move(object, 0);
61 juggle(int object)
65 i = place[object];
66 j = fixed[object];
67 move(object, i);
68 move(object + 100, j);
72 move(int object, int where)
76 if (object <= 100)
77 from = place[object];
79 from = fixed[object - 100];
81 carry(object, from);
82 drop(object, where);
86 put(int object, int where, int pval)
88 move(object, where);
93 carry(int object, int where)
97 if (object <= 100) {
98 if (place[object] == -1)
100 place[object] = -1;
103 if (atloc[where] == object) {
104 atloc[where] = links[object];
107 for (temp = atloc[where]; links[temp] != object; temp = links[temp]);
108 links[temp] = links[object];
113 drop(int object, int where)
115 if (object > 100)
116 fixed[object - 100] = where;
118 if (place[object] == -1)
120 place[object] = where;
124 links[object] = atloc[where];
125 atloc[where] = object;