python3实现小球转动抽奖小游戏


Posted in Python onApril 15, 2020

最近老师在讲 tkinter,所以我做了一个抽奖小游戏。

一、效果图

先上效果图。红色的小球会围绕蓝色小球做环形运动。我设置的四个角是奖品,其余的都是再接再厉。

python3实现小球转动抽奖小游戏

二、方法

基于tkinter中的button,text,PIL ,time.Canvas

drawPath():用于画蓝色的小球

Ball类 初始化画布、运动小球大小、运动的起点。

ball类-》draw() 控制小球的运动。这里用到一个方法叫canvas.coords。这个方法可以获取运动小球当前在画布上的坐标。并返回一个数组。比如 pos=self.canvas.coords 。左边:pos[0],右边pos[2],上边:pos[1],下边:pos[3].用if和pos 可以控制小球的上下左右运动。

self.canvas.move(self.id,self.x,self.y)
 #获取某个对象在画布的坐标,返回一个数组(两个坐标,左上角的坐标和右下角的两个坐标)
   pos = self.canvas.coords(self.id)
   getNowPoint(pos[0],pos[1],pos[2],pos[3])
   #打印获取的坐标
 
   #如果最上面的纵轴坐标在顶上,则往下移动一个像素
   if pos[1] <=30 and self.y==-80:
    self.x = 80
    self.y=0
    print("pos1" + str(self.x) + ":pos1:" + str(self.y))
   #如果最下面的纵轴坐标在底上,则向左移动
   elif pos[3] > 300 and self.x==0 and self.y==80:
    self.x = -80
    self.y=0
    print("pos3" + str(self.x) + ":pos3:" + str(self.y))
   #宽度控制#
   #如果在左边框了,那么向右边移动3像素
   elif pos[0] <30 and self.x== -80:
    self.x = 0
    self.y= -80
    print("pos0" + str(self.x) + ":pos0:" + str(self.y))
   #如果到右边框了,左移动3像素
   elif pos[2] > 300 and self.y==0:
 
    self.x = 0
    self.y=80
    print("pos2:" + str(self.x) + "pos2:" + str(self.y))

getNowPoint()当前红色运动小球的位置。

放图片的函数:

img44 = Image.open("px.jpg")
img_file44 = ImageTk.PhotoImage(img44)
canvas.create_image(200, 200, image=img_file44)(参数1,2 图片的位置x,y,参数3是图片)

三、遇到的问题

老师教的显示canvas上的内容要用mainloop(),所以一开始不知道怎么让小球动起来,最后查阅了很多资料发现。其实不用mainloop也行。可以使用tk.update() 刷新tk上的内容。所以这里我们要用一个while让小球每动一次窗体就刷新一次。time.sleep()控制小球运动速度。

四、代码

from tkinter import *
import random
import time
from PIL import Image, ImageTk
#
#创建一个类,这个类含有两个参数,一个是画布,一个是球的颜色
#
count = 0
#a = eval(input('time:'))
#b = a
global isStop
global num
isStop=0
 
def stopplay():
  global isStop
  isStop=1
def startplay():
 global isStop
 isStop = 0
class Ball:
 def __init__(self,canvas,color):
  self.canvas = canvas
  self.id = canvas.create_oval(0,0,35,35,fill=color)
  self.canvas.move(self.id,10,5)
  self.x = 80
  self.y = 0
 def draw(self):
  if isStop==0:
   self.canvas.move(self.id,self.x,self.y)
   #获取某个对象在画布的坐标,返回一个数组(两个坐标,左上角的坐标和右下角的两个坐标)
   pos = self.canvas.coords(self.id)
   getNowPoint(pos[0],pos[1],pos[2],pos[3])
   #打印获取的坐标
 
   #如果最上面的纵轴坐标在顶上,则往下移动一个像素
   if pos[1] <=30 and self.y==-80:
    self.x = 80
    self.y=0
    print("pos1" + str(self.x) + ":pos1:" + str(self.y))
   #如果最下面的纵轴坐标在底上,则向左移动
   elif pos[3] > 300 and self.x==0 and self.y==80:
    self.x = -80
    self.y=0
    print("pos3" + str(self.x) + ":pos3:" + str(self.y))
   #宽度控制#
   #如果在左边框了,那么向右边移动3像素
   elif pos[0] <30 and self.x== -80:
    self.x = 0
    self.y= -80
    print("pos0" + str(self.x) + ":pos0:" + str(self.y))
   #如果到右边框了,左移动3像素
   elif pos[2] > 300 and self.y==0:
 
    self.x = 0
    self.y=80
    print("pos2:" + str(self.x) + "pos2:" + str(self.y))
  if isStop==1:
   print("停止")
   self.canvas.move(self.id, self.x, self.y)
   # 获取某个对象在画布的坐标,返回一个数组(两个坐标,左上角的坐标和右下角的两个坐标)
   pos = self.canvas.coords(self.id)
   print(pos)
 
def getNowPoint(x1,y1,x2,y2):
 global num
 print("现在在")
 print(x1,y1,x2,y2)
 row=(x1-10)/80
 line=(y1-5)/80
 num=str(int(row))+str(int(line))
 print("点"+str(int(row))+str(int(line)))
 #return num
 
def drawPath():
 for i in range(5):
  for j in range(5):
   if i==0 or i==4:
    point = (20+80*j, 20+ 80 * i, 35+80*j, 35+ 80 * i)
    oil = canvas.create_oval(point, fill='lightblue')
   elif j==0 or j==4:
    # print("$")
    point = (20+80*j,20+ 80 * i, 35+80*j , 35+ 80 * i)
    oil = canvas.create_oval(point, fill='lightblue')
 
 
 #创建画布
 
tk = Tk()
 
tk.title("Game_ball")
tk.resizable(0,0)
tk.wm_attributes("-topmost",1)
#bd=0,highlightthickness=0 画布之外没有边框
 
canvas = Canvas(tk,width=500,height=400,bd=0,highlightthickness=0)
 
canvas.pack()
 
tk.update()
 
point=(30,30,45,45)
 
 
#创建对象
ball = Ball(canvas,'red')
drawPath()
#一直保持循环
btn_start = Button(tk,text='start',width='20',command=startplay)
btn_start.pack()
btn_end=Button(tk,text='end',width='20',command=stopplay)
btn_end.pack()
global txt
txt=""
text1=Text(tk,width=30,height=4)
while 1:
 if isStop==0:
  txt = " "
  text1.insert(INSERT, txt)
  text1.delete(0.0,INSERT)
  imgtt = Image.open("tt.jpg")
  img_filett = ImageTk.PhotoImage(imgtt)
  canvas.create_image(200, 200, image=img_filett)
  while 1:
   ball.draw()
   #快速刷新屏幕
   tk.update_idletasks()
   tk.update()
   time.sleep(0.1)
   if isStop==1:
    break
 if isStop==1:
  txt="要加油哦"
  print("num" + num)
  print(type(num))
  print(type("04"))
  if num=="00" or num=="40" or num== "04" or num== "44":
    if num=="00":
     img00=Image.open("3.jpg")
     img_file00=ImageTk.PhotoImage(img00)
     canvas.create_image(200,200,image=img_file00)
     text1.insert(INSERT,"恭喜获得键盘!!!!")
     text1.tag_configure('bold',font=('Arial', 20, 'bold', 'italic'))
    elif num=="40":
     img40 = Image.open("4.jpg")
     img_file40 = ImageTk.PhotoImage(img40)
     canvas.create_image(200, 200, image=img_file40)
     text1.insert(INSERT, "恭喜获得耳机!!!!")
     text1.tag_configure('bold', font=('Arial', 20, 'bold', 'italic'))
     text1.pack()
    elif num=="04":
     img04 = Image.open("mac.jpg")
     img_file04 = ImageTk.PhotoImage(img04)
     canvas.create_image(200, 200, image=img_file04)
     text1.insert(INSERT, "恭喜获得MAC!!!!")
     text1.tag_configure('bold', font=('Arial', 20, 'bold', 'italic'))
     text1.pack()
    elif num=="44":
     img44 = Image.open("px.jpg")
     img_file44 = ImageTk.PhotoImage(img44)
     canvas.create_image(200, 200, image=img_file44)
     text1.insert(INSERT, "恭喜获得IPHONE XS MAX!!!!")
     text1.tag_configure('bold', font=('Arial', 20, 'bold', 'italic'))
     text1.pack()
  else:
   #L1 = Label(tk, text=txt, font=('宋体', '28'))
   #L1.pack()
 
   text1.insert(INSERT,txt)
   text1.tag_configure('bold', font=('Arial', 20, 'bold', 'italic'))
   text1.pack()
  while 1:
   #ball.draw()
   # 快速刷新屏幕
   tk.update_idletasks()
   tk.update()
   time.sleep(0.1)
   #print("num"+num)
   if isStop == 0:
    break

想要学习更多关于抽奖功能的实现,请参考此专题:抽奖功能

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python函数返回多个值的示例方法
Dec 04 Python
Python操作串口的方法
Jun 17 Python
简单理解Python中的装饰器
Jul 31 Python
通过python+selenium3实现浏览器刷简书文章阅读量
Dec 26 Python
python 对象和json互相转换方法
Mar 22 Python
详解python爬虫系列之初识爬虫
Apr 06 Python
让Python脚本暂停执行的几种方法(小结)
Jul 11 Python
详解Python中正则匹配TAB及空格的小技巧
Jul 26 Python
python笔记_将循环内容在一行输出的方法
Aug 08 Python
Python unittest框架操作实例解析
Apr 13 Python
python爬取2021猫眼票房字体加密实例
Feb 19 Python
分位数回归模型quantile regeression应用详解及示例教程
Nov 02 Python
Django保护敏感信息的方法示例
May 09 #Python
Python基于scipy实现信号滤波功能
May 08 #Python
python实现抽奖小程序
Apr 15 #Python
Python常见数据类型转换操作示例
May 08 #Python
Python数据类型之Number数字操作实例详解
May 08 #Python
利用PyCharm Profile分析异步爬虫效率详解
May 08 #Python
Python数据类型之String字符串实例详解
May 08 #Python
You might like
php 购物车的例子
2009/05/04 PHP
CodeIgniter实现更改view文件夹路径的方法
2014/07/04 PHP
laravel 获取某个查询的查询SQL语句方法
2019/10/12 PHP
用JS剩余字数计算的代码
2008/07/03 Javascript
IE与Firefox在JavaScript上的7个不同写法小结
2009/09/14 Javascript
JS关键字球状旋转效果的实例代码
2013/11/29 Javascript
jQuery之字体大小的设置方法
2014/02/27 Javascript
用js闭包的方法实现多点标注冒泡示例
2014/05/29 Javascript
jQuery EasyUI 布局之动态添加tabs标签页
2015/11/18 Javascript
JavaScript类型系统之Object详解
2016/01/07 Javascript
jQuery实现可以编辑的表格实例详解【附demo源码下载】
2016/07/09 Javascript
JS产生随机数的用法小结
2016/12/10 Javascript
JS中promise化微信小程序api
2018/04/12 Javascript
JS求解两数之和算法详解
2020/04/28 Javascript
[48:24]完美世界DOTA2联赛循环赛LBZS vs Forest 第一场 10月30日
2020/10/31 DOTA
python实现360皮肤按钮控件示例
2014/02/21 Python
python生成器generator用法实例分析
2015/06/04 Python
CentOS中使用virtualenv搭建python3环境
2015/06/08 Python
Python爬虫爬验证码实现功能详解
2016/04/14 Python
Python中字符串的修改及传参详解
2016/11/30 Python
Python读取MRI并显示为灰度图像实例代码
2018/01/03 Python
20个常用Python运维库和模块
2018/02/12 Python
使用python编写udp协议的ping程序方法
2018/04/22 Python
详解python爬虫系列之初识爬虫
2019/04/06 Python
Python openpyxl读取单元格字体颜色过程解析
2019/09/03 Python
html5 canvas绘制矩形和圆形的实例代码
2016/06/16 HTML / CSS
加拿大消费电子和手机购物网站:The Source
2017/01/28 全球购物
Columbia Sportswear法国官网:全球户外品牌
2020/09/25 全球购物
山海经纬软件测试笔试题和面试题
2013/04/02 面试题
会计主管岗位职责
2014/01/03 职场文书
农民工创业典型事迹
2014/01/25 职场文书
青年文明号复核材料
2014/02/11 职场文书
《孔子游春》教学反思
2014/02/25 职场文书
涉密人员保密承诺书
2014/05/28 职场文书
2014年项目工作总结
2014/11/24 职场文书
2015年七一建党节慰问信
2015/03/23 职场文书