Skip to content

Commit 504657c

Browse files
committed
up
1 parent 6969a3e commit 504657c

File tree

3 files changed

+25
-5
lines changed

3 files changed

+25
-5
lines changed

scripts/bots/Avatar.py

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from interfaces.Combat import Combat
1111
from interfaces.Spell import Spell
1212
from interfaces.SkillBox import SkillBox
13+
from interfaces.Motion import Motion
1314

1415
class Avatar(KBEngine.Entity,
1516
GameObject,
@@ -19,6 +20,7 @@ class Avatar(KBEngine.Entity,
1920
Combat,
2021
Spell,
2122
Dialog,
23+
Motion,
2224
Teleport):
2325
def __init__(self):
2426
KBEngine.Entity.__init__(self)
@@ -29,6 +31,7 @@ def __init__(self):
2931
Combat.__init__(self)
3032
Spell.__init__(self)
3133
Dialog.__init__(self)
34+
Motion.__init__(self)
3235
Teleport.__init__(self)
3336

3437
def onEnterSpace(self):

scripts/bots/interfaces/Motion.py

+20-3
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,29 @@ class Motion:
77
def __init__(self):
88
self.set_moveSpeed(0)
99

10-
def onMoveToPoint(self, destination, velocity, faceMovement, moveVertically):
10+
def onMove(self, controllerId, userarg):
1111
"""
1212
KBEngine method.
13-
这个entity将要移动到某个点, 由服务器通知
13+
使用引擎的任何移动相关接口, 在entity一次移动完成时均会调用此接口
1414
"""
15-
KBExtra.moveToPoint(self.id, destination, velocity, faceMovement, moveVertically)
15+
DEBUG_MSG("%s::onMove: %i controllerId =%i, userarg=%s" % \
16+
(self.getScriptName(), self.id, controllerId, userarg))
17+
18+
def onMoveFailure(self, controllerId, userarg):
19+
"""
20+
KBEngine method.
21+
使用引擎的任何移动相关接口, 在entity一次移动完成时均会调用此接口
22+
"""
23+
DEBUG_MSG("%s::onMoveFailure: %i controllerId =%i, userarg=%s" % \
24+
(self.getScriptName(), self.id, controllerId, userarg))
25+
26+
def onMoveOver(self, controllerId, userarg):
27+
"""
28+
KBEngine method.
29+
使用引擎的任何移动相关接口, 在entity移动结束时均会调用此接口
30+
"""
31+
DEBUG_MSG("%s::onMoveOver: %i controllerId =%i, userarg=%s" % \
32+
(self.getScriptName(), self.id, controllerId, userarg))
1633

1734
def set_moveSpeed(self, oldValue):
1835
"""

scripts/cell/interfaces/Motion.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def onMoveFailure(self, controllerId, userarg):
3636
KBEngine method.
3737
使用引擎的任何移动相关接口, 在entity一次移动完成时均会调用此接口
3838
"""
39-
DEBUG_MSG("%s::onMove: %i controllerId =%i, userarg=%s" % \
39+
DEBUG_MSG("%s::onMoveFailure: %i controllerId =%i, userarg=%s" % \
4040
(self.getScriptName(), self.id, controllerId, userarg))
4141

4242
self.isMoving = False
@@ -45,7 +45,7 @@ def onMoveOver(self, controllerId, userarg):
4545
"""
4646
KBEngine method.
4747
使用引擎的任何移动相关接口, 在entity移动结束时均会调用此接口
48-
"""
48+
"""
4949
self.isMoving = False
5050

5151
def randomWalk(self, basePos):

0 commit comments

Comments
 (0)