- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我遇到障碍时,我开始改进我的代码。我的玩家角色可以跳跃,但不能左右移动。程序运行时就好像没有语法错误一样。主要目标是尝试让角色左右移动
这里是定义其属性和函数的玩家类
class player:
def __init__(self,x,y):
self.x = x
self.y = y
self.width = 64
self.height = 64
self.standing = True
self.left = False
self.right = True
self.vel = 15
self.jumping = False
self.jumpCount = 10
self.k = pygame.key.get_pressed()
def move(self,x,y):
if not self.standing:
if self.k[pygame.K_LEFT] and self.x > 0 - 150:
self.left = True
self.right = False
self.x -= self.vel
elif self.k[pygame.K_RIGHT] and self.x < 500 - 150 :
self.right = True
self.left = False
self.x += self.vel
else:
self.standing = True
主循环
run = True
wizard = player(25,320)
while run:#main game loop
pygame.time.delay(15)
for event in pygame.event.get():#loops through a list of keyboard or mouse events
if event.type == pygame.QUIT:
run = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_SPACE:
wizard.jumping = True
wizard.move(wizard.x,wizard.y)
win.blit(bg,(0,0))
wizard.jump(wizard.y)
wizard.draw(win)
pygame.display.update()
pygame.quit()
最佳答案
好吧,有些代码看起来有点困惑。我认为如果您的 player
类只是处理为一个向导(这本身就是一个足够大的任务),并且您的主事件循环应该处理用户输入,那就更好了。 p>
主循环使用pygame.KEYDOWN
事件。如果您想要那种按键按下、按键抬起的“打字” Action ,这很好。但更自然的方法是简单地检查 pygame.key.get_pressed() ,它返回所有按钮的状态。由于您的播放器已经保持了速度,因此请使用按键状态来调整速度。
FPS=20
clock = pygame.time.Clock() # clock to limit the FPS
while run: #main game loop
#pygame.time.delay(15) # <-- No need to delay here, see FPS limit below
for event in pygame.event.get(): #loops through event list
if event.type == pygame.QUIT:
run = False
if event.type == pygame.KEYDOWN:
if event.key == pygame.K_SPACE:
wizard.goJump()
# Handle keys pressed
if ( keys[pygame.K_LEFT] ):
wizard.goLeft()
elif ( keys[pygame.K_RIGHT] ):
wizard.goRight()
# Update the player's position
#wizard.move(wizard.x,wizard.y)
wizard.update()
# redraw the screen
win.blit( bg, (0, 0) )
wizard.draw( win )
pygame.display.update()
# Update the window, but at a useful FPS
clock.tick_busy_loop( FPS )
pygame.quit()
所以这意味着对播放器
进行一些更改。我尝试将所有“玩家处理”功能保留在播放器内部,同时将所有用户输入处理代码移到类之外。
class player:
def __init__(self,x,y):
self.x = x
self.y = y
self.width = 64
self.height = 64
#self.standing = True <-- Standing is "not self.jumping"
#self.left = False
#self.right = True
self.vel = 15 # current player speed
self.max_vel = 20 # Limit the player speed extremes
self.mix_vel = -20
self.jumping = False
self.jumpCount = 10
# self.k = pygame.key.get_pressed() <-- Don't handle events inside the player
def goLeft( self ):
""" Handle the user-input to move left """
self.vel -= 1
if ( self.vel <= self.min_vel ):
self.vel = self.min_vel
def goRight( self ):
""" Handle the user-input to move right """
self.vel += 1
if ( self.vel >= self.max_vel ):
self.vel = self.max_vel
def goJump( self ):
""" Handle the user-input to jump """
if ( self.jumping == False ):
self.jumping = True
print( "TODO: Handle Jumping" )
else:
print( "TODO: Already Jumping" )
def update( self ):
# Move the character left/right
self.x += self.vel # (+) velocity is right, (-) is left
# handle the progress of the jump
if ( self.jumping == True ):
print( "TODO: jump wizard - GO!" )
跳跃未实现。实现此目的的一种方法是,不要简单地将 self.jumping 记录为 bool 值,而是存储跳转开始的毫秒时间。然后在 player.update()
期间,使用实时差异使玩家沿着其(抛物线?)路径向上和向后移动。一旦 player.jumptime
重置为零,用户就可以让向导再次跳跃。
关于python - 如何让玩家角色移动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58903479/
这个问题在这里已经有了答案: What does the question mark character ('?') mean in C++? (8 个答案) 关闭 7 年前。 这一行我看不懂为什么
在构建模式下甚至可以有两个玩家吗?查看 Roblox 开发者杂志文章“What did you sleigh?”,它在玩家列表中显示了两个“玩家”。 最佳答案 打开 Roblox Studio 转到任
在构建模式下甚至可以有两个玩家吗?查看 Roblox 开发者杂志文章“What did you sleigh?”,它在玩家列表中显示了两个“玩家”。 最佳答案 打开 Roblox Studio 转到任
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 5 年前。 Improve this qu
“Clash of Clans”使用 Game Center 对玩家进行身份验证并将其与现有的远程存储游戏状态相关联。 据我所知,游戏仅在客户端提供玩家标识符。是否有支持的技术来安全地验证用户而不是仅
我正在开发多人游戏,但我无法找出如何将其他客户端连接到创建的游戏。我的意思是客户端 A 创建到服务器的套接字连接,其他客户端(A,B ...)如何连接到客户端 A?有人可以帮我吗? 附注我是网络编程新
我正在尝试使用浏览器控制台一步一步地制作井字游戏,并最终改进我的功能。然而,我被困在玩家2回合(ttt_player2_turn()),我必须检查箱子是否为空。看来我在这个例子中的论证有问题。感谢您的
如果我向上移动玩家 1 和玩家 2,假设我按下玩家 1 的向下键,我的玩家将停止向上移动。我找不到问题所在。有人可以帮助我并解释我做错了什么吗? package game; import java.a
我正在创建一个自上而下的 2D 游戏,并且使用 Box2D 来模拟物理,我的问题是: 如何使玩家保持与我的宇宙飞船的相对速度,并且仍然能够在飞船也在移动的情况下围绕我的玩家移动? 我在下面放了一个插图
我是 Java 新手,我正在尝试制作一个简单的游戏来娱乐。我首先尝试将 repaint 放入 PaintComponent() 中,它一直有效,直到我尝试添加一些背景。有谁知道如何让我的玩家在有或没有
//我正在尝试对玩家 2 的代码进行一些编辑,因此我删除了涉及玩家 1 的所有内容。但出于某种原因,如果没有玩家 1 的代码,玩家 2 根本不会执行任何操作。(假设使用 i、j、k 和 l 键 mov
我接到了一项任务,要编写一个由人类玩家和 AI 玩家组成的 NIM 游戏。游戏是“Misere”(最后一个必须拿起一根棍子的人输了)。 AI 应该使用 Minimax 算法,但它正在采取使其输得更快的
我是一名优秀的程序员,十分优秀!