Python中pygame的mouse鼠标事件用法实例


Posted in Python onNovember 11, 2015

本文实例讲述了Python中pygame的mouse鼠标事件用法。分享给大家供大家参考,具体如下:

pygame.mouse提供了一些方法获取鼠标设备当前的状态

'''
pygame.mouse.get_pressed - get the state of the mouse buttons  get the state of the mouse buttons
pygame.mouse.get_pos - get the mouse cursor position  get the mouse cursor position
pygame.mouse.get_rel - get the amount of mouse movement  get the amount of mouse movement
pygame.mouse.set_pos - set the mouse cursor position  set the mouse cursor position
pygame.mouse.set_visible - hide or show the mouse cursor  hide or show the mouse cursor
pygame.mouse.get_focused - check if the display is receiving mouse input  check if the display is receiving mouse input
pygame.mouse.set_cursor - set the image for the system mouse cursor  set the image for the system mouse cursor
pygame.mouse.get_cursor - get the image for the system mouse cursor  get the image for the system mouse cursor
'''

在下面的demo中,主要用到了:

pygame.mouse.get_pressed()

pygame.mouse.get_pos()

展示的效果:

Python中pygame的mouse鼠标事件用法实例

游戏效果:

当鼠标经过窗口的时候,窗口背景颜色会随着鼠标的移动而发生改变,当鼠标点击窗口

会在控制台打印出是鼠标的那个键被点击了:左,右,滚轮

#pygame mouse
import os, pygame
from pygame.locals import *
from sys import exit
from random import *
__author__ = {'name' : 'Hongten',
       'mail' : 'hongtenzone@foxmail.com',
       'Version' : '1.0'}
if not pygame.font:print('Warning, Can not found font!')
pygame.init()
screen = pygame.display.set_mode((255, 255), 0, 32)
screen.fill((255,255,255))
font = pygame.font.Font('data\\font\\TORK____.ttf', 20)
text = font.render('Cliked Me please!!!', True, (34, 252, 43))
mouse_x, mouse_y = 0, 0
while 1:
  for event in pygame.event.get():
    if event.type == QUIT:
      exit()
    elif event.type == MOUSEBUTTONDOWN:
      pressed_array = pygame.mouse.get_pressed()
      for index in range(len(pressed_array)):
        if pressed_array[index]:
          if index == 0:
            print('Pressed LEFT Button!')
          elif index == 1:
            print('The mouse wheel Pressed!')
          elif index == 2:
            print('Pressed RIGHT Button!')
    elif event.type == MOUSEMOTION:
      #return the X and Y position of the mouse cursor
      pos = pygame.mouse.get_pos()
      mouse_x = pos[0]
      mouse_y = pos[1]
  screen.fill((mouse_x, mouse_y, 0))    
  screen.blit(text, (40, 100))
  pygame.display.update()

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
python类和函数中使用静态变量的方法
May 09 Python
实例解析Python中的__new__特殊方法
Jun 02 Python
Python判断变量是否为Json格式的字符串示例
May 03 Python
为什么选择python编程语言入门黑客攻防 给你几个理由!
Feb 02 Python
78行Python代码实现现微信撤回消息功能
Jul 26 Python
python字典值排序并取出前n个key值的方法
Oct 17 Python
python使用Turtle库绘制动态钟表
Nov 19 Python
使用pandas读取文件的实现
Jul 31 Python
Python空间数据处理之GDAL读写遥感图像
Aug 01 Python
Django 项目重命名的实现步骤解析
Aug 14 Python
Python 语言实现六大查找算法
Jun 30 Python
python中__slots__节约内存的具体做法
Jul 04 Python
Python基于pygame实现的font游戏字体(附源码)
Nov 11 #Python
python中pygame针对游戏窗口的显示方法实例分析(附源码)
Nov 11 #Python
python基于pygame实现响应游戏中事件的方法(附源码)
Nov 11 #Python
Python基于pygame实现的弹力球效果(附源码)
Nov 11 #Python
Python中pygame安装方法图文详解
Nov 11 #Python
Python基于pygame实现图片代替鼠标移动效果
Nov 11 #Python
python开发之thread线程基础实例入门
Nov 11 #Python
You might like
Windows下PHP的任意文件执行漏洞
2006/10/09 PHP
基于Zend的Config机制的应用分析
2013/05/02 PHP
PHP格式化MYSQL返回float类型的方法
2016/03/30 PHP
PHP使用星号隐藏用户名,手机和邮箱的实现方法
2016/09/22 PHP
如何实现JS函数的重载
2006/09/22 Javascript
基于Jquery的标签智能验证实现代码
2010/12/27 Javascript
JS实现随机化快速排序的实例代码
2013/08/01 Javascript
使用JS获取当前地理位置方法汇总
2014/12/18 Javascript
浅谈Jquery核心函数
2015/06/18 Javascript
jquery.cookie.js用法实例详解
2015/12/25 Javascript
jquery easyui datagrid实现增加,修改,删除方法总结
2016/05/25 Javascript
AngularJS基础 ng-submit 指令简单示例
2016/08/03 Javascript
canvas滤镜效果实现代码
2017/02/06 Javascript
详解vue2.0的Element UI的表格table列时间戳格式化
2017/06/13 Javascript
jQuery HTML css()方法与css类实例详解
2020/05/20 jQuery
[01:00]选手抵达华西村 整装待发备战2016国际邀请赛中国区预选赛
2016/06/25 DOTA
Python开发的单词频率统计工具wordsworth使用方法
2014/06/25 Python
Python实现按照指定要求逆序输出一个数字的方法
2018/04/19 Python
python爬虫之模拟登陆csdn的实例代码
2018/05/18 Python
tensorflow 获取变量&打印权值的实例讲解
2018/06/14 Python
使用Django搭建web服务器的例子(最最正确的方式)
2019/08/29 Python
Python实现链表反转的方法分析【迭代法与递归法】
2020/02/22 Python
Windows+Anaconda3+PyTorch+PyCharm的安装教程图文详解
2020/04/03 Python
python rsa-oaep加密的示例代码
2020/09/23 Python
python中如何使用虚拟环境
2020/10/14 Python
HTML5资源预加载(Link prefetch)详细介绍(给你的网页加速)
2014/05/07 HTML / CSS
html5使用canvas绘制文字特效
2014/12/15 HTML / CSS
浅谈html5 响应式布局
2014/12/24 HTML / CSS
儿科护士实习自我鉴定
2013/10/17 职场文书
房屋买卖协议书
2014/04/10 职场文书
情况说明书格式范文
2014/05/06 职场文书
专题组织生活会发言材料
2014/10/17 职场文书
支行行长岗位职责
2015/02/15 职场文书
付款证明模板
2015/06/19 职场文书
oracle DGMGRL ORA-16603报错的解决方法(DG Broker)
2021/04/06 Oracle
Python制作动态字符画的源码
2021/08/04 Python