Day_11 pygame

pygame事件,鼠标事件与键盘事件
        for event in pygame.event.get():
            # 不同类型的事件对应的type值不一样
            if event.type == pygame.QUIT:
                exit()
            # 鼠标相关事件    点击鼠标
            if event.type == pygame.MOUSEBUTTONDOWN:
                print('鼠标点击事件',event.pos)
            #鼠标松开
            if event.type == pygame.MOUSEBUTTONUP:
                print('鼠标松开事件',event.pos)
            # 鼠标移动
            if event.type == pygame.MOUSEMOTION:
                print('鼠标移动事件',event.pos)
            # 鼠标事件产生位置 event,pos获取鼠标产生位置


            #键盘相关事件
            # 键盘产生位置 event.key 这是以ASCII编码形式返回的位置

            if event.type == pygame.KEYUP:
                print('键盘松开事件',chr(event.key))
            if event.type == pygame.KEYDOWN:
                print('键盘按下事件',chr(event.key))


鼠标事件的应用
import pygame
import random
def rand_color():
    return random.randint(0,255)
def draw_ball(screen):
    index = random.randint(0,600)
    indey = random.randint(0,600)
    if 480<=index<=600 and 480<=indey<=580:
        pass
    else:
        pygame.draw.circle(screen, (rand_color(), rand_color(), rand_color()), (index,indey), random.randint(10, 20))

        pygame.display.update()
def draw_button():
    # 画按钮 坐标(500,500) 大小 30*40
    pygame.draw.rect(screen,(189,240,32),(500,500,80,60))
    # 按钮文字
    font = pygame.font.SysFont('Times',30)
    title = font.render('click',True,(145,34,64))
    screen.blit(title,(515,515))
def is_in_rect(rect,point):
    x,y =point
    rx,ry,rw,rh = rect
    if (rx<=x<=rx+rw) and (ry<=y<=ry+rh):
        return True
    return False



if __name__ == '__main__':
    pygame.init()
    screen = pygame.display.set_mode((600,600))
    screen.fill((255,255,255))
    pygame.display.set_caption('鼠标事件')

    draw_button()
    pygame.display.flip()



    while True:

        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit()

            if event.type == pygame.MOUSEBUTTONDOWN:
                if is_in_rect((500,500,80,60),event.pos):
                    draw_ball(screen)


image.png

结果:点击click随机生成一个球 click按钮内不产生球

鼠标移动事件
import pygame

if __name__ == '__main__':
    pygame.init()
    screen = pygame.display.set_mode((600,600))
    screen.fill((123,123,20))
    pygame.display.set_caption('图片事件')

    def is_in_rect(pos,rect):
        x,y = event.pos
        rx,ry,rw,rh = rect
        if (rx<=x<rx+rw) and (ry<=y<=ry+rh):
            return True
        return False

    pygame.display.flip()
    def move_image(point):
        image = pygame.image.load('./bomb.png')
        x,y = event.pos
        screen.blit(image, (x,y))
        image_size = image.get_size()
        print(image_size)
        # pygame.display.update()

    is_move =True


    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit()
            if event.type == pygame.MOUSEBUTTONDOWN:

                is_move = True

            if event.type == pygame.MOUSEBUTTONUP:
                is_move = False

            if event.type == pygame.MOUSEMOTION:
                if is_move:
                    screen.fill((123,123,20))

                    move_image(event.pos)
                    pygame.display.update()


结果:图片随鼠标运动


image.png
动画效果
import pygame
import random
def rand_color():
    return random.randint(0,255)
def static_page(screen):
    font = pygame.font.SysFont('Times',40)
    title = font.render('hello',True,(233,233,0))
    screen.blit(title,(280,260))
def animation_title(screen):
    font = pygame.font.SysFont('Times', 40)
    title = font.render('hello', True, (rand_color(),rand_color(),rand_color()))
    screen.blit(title, (200, 200))
if __name__ == '__main__':
    pygame.init()
    screen = pygame.display.set_mode((600,600))
    screen.fill((123,123,30))
    static_page(screen)
    pygame.display.flip()
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit()
        # 每一帧要显示的内容
        pygame.time.wait(50)
        pygame.time.delay(50)
        # 阻塞线程
        # 动画前要将原来的内容全部清空
        screen.fill((123,123,20))
        static_page(screen)
        animation_title(screen)
        # 更新显示
        pygame.display.update()


结果:变化文字颜色


image.png
鼠标点击生成小球
"""__author__== God"""

import pygame
import random
def draw_ball(place,color,pos,radius):
    pygame.draw.circle(place,color,pos,radius)
if __name__ == '__main__':
    pygame.init()
    screen = pygame.display.set_mode((600,600))
    screen.fill((123,123,123))
    pygame.display.flip()
    ball_x = 100
    ball_y = 100
    # x_speed = random.randint(1,8)
    # y_speed = random.randint(1,8)
    x_speed = 0
    y_speed = 0
    # 方向对应的值
    Up = 273
    Down = 274
    Left =276
    Right =275
    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit()
            if event.type == pygame.KEYDOWN:
                if event.key == Up:
                    y_speed = -20
                    x_speed = 0
                elif event.key == Down:
                    y_speed = 20
                    x_speed = 0
                elif event.key == Right:
                    x_speed = 20
                    y_speed = 0
                elif event.key == Left:
                    x_speed = -20
                    y_speed = 0
        screen.fill((123,123,200))
        pygame.time.delay(50)
        ball_x+=x_speed
        ball_y+=y_speed
        if ball_x+10>=600 or ball_x-10<=0:
            x_speed*=-1
        if ball_y+10>=600 or ball_y-10<=0:
            y_speed*=-1

            # y_speed*=-1

        draw_ball(screen,(123,123,1),(ball_x,ball_y),20)
        pygame.display.update()

结果:键盘控制运动小球方向

image.png
大球吃小球
"""__author__== God"""
import pygame
import random
from math import sqrt
def rand_color():
    return  random.randint(0,255),random.randint(0,255),random.randint(0,255)

def crash(item1,item2):
    item1x,item1y = item1['pos']
    item2x,item2y = item2['pos']
    dx = item2x- item1x
    dy = item2y - item1y
    dist = int(sqrt(dx*dx+dy*dy))
    if dist<item1['r']+item2['r']:
        if item2['r']>item1['r']:
            item2['r']+=1
            if item1 in all_balls[:]:
                all_balls.remove(item1)
        else:
            item1['r']+=1
            if item2 in all_balls[:]:
                all_balls.remove(item2)

if __name__ == '__main__':
    pygame.init()
    screen = pygame.display.set_mode((600,600))
    screen.fill((123,123,20))
    pygame.display.flip()
    all_balls = []



    while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                exit()
            if event.type == pygame.MOUSEBUTTONDOWN:

                ball ={
                    'r':random.randint(5,15),
                    'color':rand_color(),
                    'pos':event.pos,
                    'x_speed':random.randint(-3,3),
                    'y_speed':random.randint(-3,3)
                }
                all_balls.append(ball)
        screen.fill((123, 123, 20))
        for ball in all_balls:

            # pygame.time.wait(2)
            x,y = ball['pos']
            x+=ball['x_speed']
            y+=ball['y_speed']
            if x + ball['r'] >= 600 or x -ball['r'] <= 0:
                ball['x_speed'] *= -1
            if y + ball['r'] >= 600 or y - ball['r'] <= 0:
                ball['y_speed']*= -1

            ball['pos'] = x,y
            pygame.draw.circle(screen,ball['color'],(x,y),ball['r'])
        pygame.display.update()
        index = len(all_balls)
        for item1 in all_balls:
            for item2 in all_balls:
                if item1!=item2:
                    crash(item1,item2)




结果:大球吃小球

image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  •   JavaScript 与 HTML 之间的交互是通过事件实现的。   事件,就是文档或浏览器窗口中发生的一些特...
    霜天晓阅读 3,473评论 1 11
  • 本篇博客源地址 总结: 鼠标事件 1.click与dbclick事件ele.click()ele.click(ha...
    ZombieBrandg阅读 665评论 0 1
  • 暗恋 错过一个人就错过一辈子 有多少人会以朋友的名义爱着对方 暗恋 盘根错节的由心情和肚子陶醉...
    BSIL阅读 450评论 0 3
  • 雷雁雄7月7日总结:今天回楚雄姚安看外公,人老多病,心里有说不出的感觉,下午去看个朋友,晚上一起聊天。
    雷雁雄阅读 41评论 0 0
  • 周围陌生而熟悉, 喧嚣,霓红,车轮飞扬, 人们一如既往的扮演着角色。 淡了些, 今天的雾霾。 你在高楼之上, 向着...
    北海源阅读 2,593评论 173 105