Home
last modified time | relevance | path

Searched refs:oldxp (Results 1 – 11 of 11) sorted by relevance

/dports/games/stendhal/stendhal-1.35/tests/games/stendhal/server/maps/quests/
H A DFindGhostsTest.java183 int oldxp = player.getXP(); in testQuest() local
188 assertEquals(oldxp + 100, player.getXP()); in testQuest()
196 oldxp = player.getXP(); in testQuest()
204 assertEquals(oldxp + 100, player.getXP()); in testQuest()
210 oldxp = player.getXP(); in testQuest()
216 assertEquals(oldxp + 100, player.getXP()); in testQuest()
220 oldxp = player.getXP(); in testQuest()
228 assertEquals(oldxp + 100, player.getXP()); in testQuest()
232 oldxp = player.getXP(); in testQuest()
292 assertEquals(oldxp + 5000, player.getXP()); in testQuest()
/dports/games/vvvvvv/VVVVVV-cb3640e5/desktop_version/src/
H A DEnt.h23 int oldxp, oldyp; variable
H A DEntity.cpp4828 linetemp += yline(entities[t].oldxp + entities[t].cx+1, entities[l].xp); in entityvlinecollide()
4829 linetemp += yline(entities[t].oldxp + entities[t].cx+1 + entities[t].w, entities[l].xp); in entityvlinecollide()
4880 if (entities[t].oldxp + entities[t].cx + 1 < entities[l].xp + 10) linetemp++; in entitywarpvlinecollide()
4881 if (entities[t].oldxp + entities[t].cx + 1 + entities[t].w < entities[l].xp + 10) linetemp++; in entitywarpvlinecollide()
4889 if (entities[t].oldxp + entities[t].cx + 1 > entities[l].xp - 10) linetemp++; in entitywarpvlinecollide()
4890 if (entities[t].oldxp + entities[t].cx + 1 + entities[t].w > entities[l].xp - 10) linetemp++; in entitywarpvlinecollide()
5093 entities[t].oldxp = entities[t].xp; in updateentitylogic()
H A DMap.cpp1073 obj.entities[temp].oldxp = obj.entities[temp].xp; in gotoroom()
/dports/games/ags/ags_linux_v.3.4.4.1/Engine/ac/
H A Dcharacterinfo_engine.cpp177 int oldxp = x, oldyp = y; in update_character_moving() local
191 x = ((x) - oldxp) / 2 + oldxp; in update_character_moving()
/dports/games/scummvm/scummvm-2.5.1/engines/ags/engine/ac/
H A Dcharacter_info_engine.cpp184 int oldxp = x, oldyp = y; in update_character_moving() local
198 x = ((x) - oldxp) / 2 + oldxp; in update_character_moving()
/dports/games/vvvvvv/VVVVVV-cb3640e5/mobile_version/src/
H A Dentclass.as60 public var xp:Number, yp:Number, oldxp:Number, oldyp:Number;
H A Dentityclass.as3434 linetemp += yline(entities[t].oldxp + entities[t].cx+1, entities[l].xp);
3435 linetemp += yline(entities[t].oldxp + entities[t].cx+1 + entities[t].w, entities[l].xp);
3486 if (entities[t].oldxp + entities[t].cx + 1 < entities[l].xp + 10) linetemp++;
3487 if (entities[t].oldxp + entities[t].cx + 1 + entities[t].w < entities[l].xp + 10) linetemp++;
3495 if (entities[t].oldxp + entities[t].cx + 1 > entities[l].xp - 10) linetemp++;
3496 if (entities[t].oldxp + entities[t].cx + 1 + entities[t].w > entities[l].xp - 10) linetemp++;
3641 entities[t].oldxp = entities[t].xp; entities[t].oldyp = entities[t].yp;
H A Dmapclass.as758 obj.entities[temp].oldxp = obj.entities[temp].xp;
/dports/games/powwow/powwow-1.2.17/
H A DConfig.demo4 #init ={#(@oldxp=0);mapend;#option +compact -info -echo}
309 …ed: $1 xp={#print;#if (\@1=-$1, !@oldxp) #(@oldxp=@xp=\@1);#print ("Exp: "+%(\@1-@xp)+" from last …
/dports/cad/electric/electric-7.00/src/db/
H A Ddbmath.c2185 REGISTER INTBIG *oldxp, *oldyp, i; in extendpolygon() local
2191 oldxp = poly->xv; oldyp = poly->yv; in extendpolygon()
2203 poly->xv[i] = oldxp[i]; in extendpolygon()
2208 efree((CHAR *)oldxp); in extendpolygon()