Py之pygame:有趣好玩—利用pygame库实现鱼儿自动实时目标跟踪(附完整代码)

简介: Py之pygame:有趣好玩—利用pygame库实现鱼儿自动实时目标跟踪(附完整代码)

输出结果

https://img-blog.csdn.net/20180501120414824


实现代码

#Py之pygame:利用pygame库实现鱼儿自动实时目标跟踪

import pygame,sys

from math import *

pygame.init()

font1=pygame.font.SysFont('microsoftyaheimicrosoftyaheiui',23)

textc=font1.render('.',True,(250,0,0))

screen=pygame.display.set_mode((800,700),0,32)

missile=pygame.image.load('F:/File_Python/Resources/fish02.png').convert_alpha()

height=missile.get_height()

width=missile.get_width()

pygame.mouse.set_visible(0)

x1,y1=100,600           #鱼儿初始位置

velocity=800            #鱼儿速度

time=1/1000        

clock=pygame.time.Clock()

A=()

B=()

C=()

while True:

   for event in pygame.event.get():

       if event.type==pygame.QUIT:

           sys.exit()

   clock.tick(300)

   x,y=pygame.mouse.get_pos()          #获取鼠标位置,鼠标就是鱼儿游过去的目标

   distance=sqrt(pow(x1-x,2)+pow(y1-y,2))    

   section=velocity*time              

   sina=(y1-y)/distance

   cosa=(x-x1)/distance

   angle=atan2(y-y1,x-x1)              

   fangle=degrees(angle)          

   x1,y1=(x1+section*cosa,y1-section*sina)

   missiled=pygame.transform.rotate(missile,-(fangle))

   if 0<=-fangle<=90:

       A=(width*cosa+x1-width,y1-height/2)

       B=(A[0]+height*sina,A[1]+height*cosa)

   if 90<-fangle<=180:

       A = (x1 - width, y1 - height/2+height*(-cosa))

       B = (x1 - width+height*sina, y1 - height/2)

   if -90<=-fangle<0:

       A = (x1 - width+missiled.get_width(), y1 - height/2+missiled.get_height()-height*cosa)

       B = (A[0]+height*sina, y1 - height/2+missiled.get_height())

   if -180<-fangle<-90:

       A = (x1-width-height*sina, y1 - height/2+missiled.get_height())

       B = (x1 - width,A[1]+height*cosa )

   C = ((A[0] + B[0]) / 2, (A[1] + B[1]) / 2)

   screen.fill((0,0,0))

   screen.blit(missiled, (x1-width+(x1-C[0]),y1-height/2+(y1-C[1])))

   screen.blit(textc, (x,y))

   pygame.display.update()


相关文章
|
4月前
|
Python
音乐播放 pygame mp3play 和获取音乐信息的 库from mutagen.mp3 import MP3
音乐播放 pygame mp3play 和获取音乐信息的 库from mutagen.mp3 import MP3
|
7月前
|
开发框架 Python
Python的`pygame`库用于2D游戏开发,涵盖图形、音频和输入处理。
【6月更文挑战第21天】Python的`pygame`库用于2D游戏开发,涵盖图形、音频和输入处理。要开始,先通过`pip install pygame`安装。基本流程包括:初始化窗口、处理事件循环、添加游戏元素(如玩家和敌人)、响应用户输入、更新游戏状态及结束条件。随着项目发展,可逐步增加复杂性。
174 1
|
7月前
|
Linux 开发工具 开发者
Pygame是一个免费且开源的Python库
【6月更文挑战第12天】Pygame是一个免费且开源的Python库
127 3
|
7月前
|
Ubuntu iOS开发 MacOS
如何在使用Pygame时避免依赖额外的库带来的配置复杂性和兼容性问题?
【6月更文挑战第12天】如何在使用Pygame时避免依赖额外的库带来的配置复杂性和兼容性问题?
51 2
|
7月前
|
Linux API 开发工具
使用Pygame库进行2D游戏开发的优缺点有哪些?
【6月更文挑战第10天】使用Pygame库进行2D游戏开发的优缺点有哪些?
85 1
|
8月前
|
Python
python小项目之利用pygame实现代码雨动画效果(附源码 可供学习)
python小项目之利用pygame实现代码雨动画效果(附源码 可供学习)
220 1
|
Python
一文读懂使用PyInstaller将Pygame库编写的小游戏程序打包为exe文件
一文读懂使用PyInstaller将Pygame库编写的小游戏程序打包为exe文件
441 0
|
Python
【pygame】Python小游戏开发之看代码学编程
【pygame】Python小游戏开发之看代码学编程
278 0
【pygame】Python小游戏开发之看代码学编程
|
IDE 开发工具 Python
最详细python安装库的方法(以安装pygame库为例)
最详细python安装库的方法(以安装pygame库为例)
275 0
最详细python安装库的方法(以安装pygame库为例)