最近用python做了个羊了个羊,项目链接。文章来源:https://www.toymoban.com/news/detail-514260.html
项目源代码如下:文章来源地址https://www.toymoban.com/news/detail-514260.html
#导入头文件
import pygame
from pygame import *
pygame.init()
from sys import exit
from random import randint
from collections import Counter
import msvcrt
#定义开始界面
class Start():
#初始化
def __init__(self):
#创建窗口
self.startSurface=pygame.display.set_mode((300,500))
#设置标题
pygame.display.set_caption("weather game")
#设置图标
ico=pygame.image.load("ico\\0.ico")
pygame.display.set_icon(ico)
#显示背景
self.bg=pygame.transform.scale(pygame.image.load("img\\bg\\bg.jpg"),(300,500))
self.startSurface.blit(self.bg,(0,0))
#导入字体文件
self.font=pygame.font.Font("font\\VladimirScript.ttf",32)
self.bigFont=pygame.font.Font("font\\VladimirScript.ttf",60)
self.fontColor=pygame.Color((0,0,0))
#创建文字对象
weathergameText=self.bigFont.render("weather game",True,self.fontColor)
#创建文字显示框
weathergameTextRect=weathergameText.get_rect(center=(150,50))
#显示文字
self.startSurface.blit(weathergameText,weathergameTextRect)
#显示开始游戏
startText=self.font.render("Start the game",True,self.fontColor)
startTextRect=startText.get_rect(center=(150,420))
self.startSurface.blit(startText,startTextRect)
#获取文字显示框坐标
self.startTextX=startTextRect[0]
self.startTextY=startTextRect[1]
self.startTextX1=startTextRect[0]+startTextRect[2]
self.startTextY1=startTextRect[1]+startTextRect[3]
#显示结束游戏
exitText=self.font.render("Exit",True,self.fontColor)
exitTextRect=exitText.get_rect(center=(150,460))
self.startSurface.blit(exitText,exitTextRect)
self.exitTextX=exitTextRect[0]
self.exitTextY=exitTextRect[1]
self.exitTextX1=exitTextRect
到了这里,关于python版羊了个羊的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!