Python 一步一步教你用pyglet仿制鸿蒙系统里的时钟

2024-03-09 21:12

本文主要是介绍Python 一步一步教你用pyglet仿制鸿蒙系统里的时钟,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

目录

鸿蒙时钟

1. 绘制圆盘

2. 创建表类

3. 绘制刻度

4. 刻度数值

5. 添加指针

6. 转动指针

7. 联动时间

8. 时钟走动


鸿蒙时钟

本篇将用python pyglet库复刻华为手机鸿蒙系统闹钟程序的时钟,先在上图中抓取出时分秒针及刻度、表盘的颜色RGB值:

bHour = (42, 43, 48, 255)
bMinute = (70, 71, 75, 255)
rSecond = (240, 70, 20, 255)
gScale = 215, 220, 230
wBackground = 248, 250, 252

1. 绘制圆盘

首先要画一圆Circle,并用直线Line等分成60份。

        self.circle = pyglet.shapes.Circle(x, y, R, color=wBackground, batch=batch)
        self.scales = [pyglet.shapes.Line(x, y, x+R*cos(i*Pi/30), y+R*sin(i*Pi/30),
                            width=2, color=gScales, batch=batch) for i in range(60)]

直线除圆心外的另一端点的坐标计算公式,如下图所示:

代码:

import pyglet
from math import pi, sin, coswindow = pyglet.window.Window(800, 500, caption='圆盘')
pyglet.gl.glClearColor(1, 1, 1, 1)
batch = pyglet.graphics.Batch()R = 200
wBackground = 248, 250, 252
gScales = 215, 220, 230class Watch:def __init__(self, x, y):self.circle = pyglet.shapes.Circle(x, y, R, color=wBackground, batch=batch)self.scales = [pyglet.shapes.Line(x, y, x+R*cos(i*pi/30), y+R*sin(i*pi/30),width=2, color=gScales, batch=batch) for i in range(60)]@window.event
def on_draw():window.clear()batch.draw()watch = Watch(window.width/2, window.height/2)pyglet.app.run()

2. 创建表类

改造这个Watch类,可设置圆心和半径,并让它成为pyglet.window.Window的子类。

import pyglet
from math import sin, cos, piwBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='圆盘'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R,  color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x, y, x+R*cos(i*pi/30), y+R*sin(i*pi/30),  width=2, color=gScales, batch=self.batch) for i in range(60)]def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(500, 300, 150)
watch.run()

3. 绘制刻度

扩大圆面并缩短和加粗直线,表盘和刻度的大致轮廓就出现了。

代码: 

import pyglet
from math import sin, cos, piwBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='刻度'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05,  color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i, scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

4. 刻度数值

在整点的刻度值边上用标签标注上1~12的数字。

self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=24, color=(0,0,0,255),
                        x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)+5, anchor_x='center', 
                        anchor_y='center', batch=self.batch) for i in range(12)]

代码:

import pyglet
from math import sin, cos, piwBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)
rSecond = (240, 70, 20, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='指针'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i,scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',batch=self.batch) for i in range(12)]def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

5. 添加指针

时、分、秒针,用三个圆三条直线来表示。

        self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour)
        self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour)
        self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute)
        self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond)
        self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond)
        self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite)

不用担心秒针长过表盘圆面,转动前会作“移动”处理。

代码:

import pyglet
from math import sin, cos, piwBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)
rSecond = (240, 70, 20, 255)
bMinute = (70, 71, 75, 255)
bHour   = (42, 43, 48, 255)
wWhite  = (255, 255, 255, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='指针'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i,scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',batch=self.batch) for i in range(12)]self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

6. 转动指针

时、分、秒针的转动运用Line控件的旋转属性.rotation,这种方法要比修改端点坐标要方便。

默认的旋转中心是直线的左端点,属性.anchor_position可以修改中心坐标。

        self.second.anchor_position = (R*0.1, 0)
        self.second.rotation = 210
        self.minute.rotation = 24
        self.hour.rotation = 160

代码:

import pyglet
from math import sin, cos, piwBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)
rSecond = (240, 70, 20, 255)
bMinute = (70, 71, 75, 255)
bHour   = (42, 43, 48, 255)
wWhite  = (255, 255, 255, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='指针'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i,scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',batch=self.batch) for i in range(12)]self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)self.second.anchor_position = (R*0.1, 0)self.second.rotation = 210self.minute.rotation = 24self.hour.rotation = 160def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

7. 联动时间

联动系统时钟,使用datetime.now()获取当前时间的时、分、秒的值。

        now = datetime.now()
        h, m, s = now.hour, now.minute, now.second
        self.second.rotation = -90 + s*6
        self.minute.rotation = -90 + m*6 + s/10
        self.hour.rotation = -90 + h%12*30 + m/2

代码:

import pyglet
from math import sin, cos, pi
from datetime import datetimewBackground = (248, 250, 252, 255)
gScales = (215, 220, 230, 255)
rSecond = (240, 70, 20, 255)
bMinute = (70, 71, 75, 255)
bHour   = (42, 43, 48, 255)
wWhite  = (255, 255, 255, 255)class Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='指针'): super().__init__(width, height, caption=caption)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i,scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',batch=self.batch) for i in range(12)]self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)self.second.anchor_position = (R*0.1, 0)self.update()def update(self):now = datetime.now()h, m, s = now.hour, now.minute, now.secondself.second.rotation = -90 + s*6self.minute.rotation = -90 + m*6 + s/10self.hour.rotation = -90 + h%12*30 + m/2def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

8. 运行时钟

使用pyglet.clock.schedule_interval(self.update, 0.2)每秒更新5次。

总得来说,本次复刻比较完美,但直线控件在非水平或垂直状态,特别是小夹角时锯齿很严重。

完整代码:

import pyglet
from math import sin, cos, pi
from datetime import datetimeclass Watch(pyglet.window.Window):  def __init__(self, x, y, R=200, width=800, height=500, caption='时钟'): super().__init__(width, height, caption=caption)wBackground = (248, 250, 252, 255)gScales = (215, 220, 230, 255)rSecond = (240, 70, 20, 255)bMinute = (70, 71, 75, 255)bHour   = (42, 43, 48, 255)wWhite  = (255, 255, 255, 255)pyglet.gl.glClearColor(1, 1, 1, 1)self.batch = pyglet.graphics.Batch()self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),width=3, color=gScales, batch=self.batch) for i in range(60)]for i,scale in enumerate(self.scales):if i%5==0:scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',batch=self.batch) for i in range(12)]self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)self.second.anchor_position = (R*0.1, 0)self.update(self.event)pyglet.clock.schedule_interval(self.update, 0.2)def update(self, event):now = datetime.now()h, m, s = now.hour, now.minute, now.secondself.second.rotation = -90 + s*6self.minute.rotation = -90 + m*6 + s/10self.hour.rotation = -90 + h%12*30 + m/2def on_draw(self):self.clear()self.batch.draw()def run(self):pyglet.app.run()watch = Watch(400, 250)
watch.run()

这篇关于Python 一步一步教你用pyglet仿制鸿蒙系统里的时钟的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/791956

相关文章

使用Python和OpenCV库实现实时颜色识别系统

《使用Python和OpenCV库实现实时颜色识别系统》:本文主要介绍使用Python和OpenCV库实现的实时颜色识别系统,这个系统能够通过摄像头捕捉视频流,并在视频中指定区域内识别主要颜色(红... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间详解

一文深入详解Python的secrets模块

《一文深入详解Python的secrets模块》在构建涉及用户身份认证、权限管理、加密通信等系统时,开发者最不能忽视的一个问题就是“安全性”,Python在3.6版本中引入了专门面向安全用途的secr... 目录引言一、背景与动机:为什么需要 secrets 模块?二、secrets 模块的核心功能1. 基

python常见环境管理工具超全解析

《python常见环境管理工具超全解析》在Python开发中,管理多个项目及其依赖项通常是一个挑战,下面:本文主要介绍python常见环境管理工具的相关资料,文中通过代码介绍的非常详细,需要的朋友... 目录1. conda2. pip3. uvuv 工具自动创建和管理环境的特点4. setup.py5.

Python常用命令提示符使用方法详解

《Python常用命令提示符使用方法详解》在学习python的过程中,我们需要用到命令提示符(CMD)进行环境的配置,:本文主要介绍Python常用命令提示符使用方法的相关资料,文中通过代码介绍的... 目录一、python环境基础命令【Windows】1、检查Python是否安装2、 查看Python的安

Python UV安装、升级、卸载详细步骤记录

《PythonUV安装、升级、卸载详细步骤记录》:本文主要介绍PythonUV安装、升级、卸载的详细步骤,uv是Astral推出的下一代Python包与项目管理器,主打单一可执行文件、极致性能... 目录安装检查升级设置自动补全卸载UV 命令总结 官方文档详见:https://docs.astral.sh/

Python并行处理实战之如何使用ProcessPoolExecutor加速计算

《Python并行处理实战之如何使用ProcessPoolExecutor加速计算》Python提供了多种并行处理的方式,其中concurrent.futures模块的ProcessPoolExecu... 目录简介完整代码示例代码解释1. 导入必要的模块2. 定义处理函数3. 主函数4. 生成数字列表5.

Python中help()和dir()函数的使用

《Python中help()和dir()函数的使用》我们经常需要查看某个对象(如模块、类、函数等)的属性和方法,Python提供了两个内置函数help()和dir(),它们可以帮助我们快速了解代... 目录1. 引言2. help() 函数2.1 作用2.2 使用方法2.3 示例(1) 查看内置函数的帮助(

Python虚拟环境与Conda使用指南分享

《Python虚拟环境与Conda使用指南分享》:本文主要介绍Python虚拟环境与Conda使用指南,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、python 虚拟环境概述1.1 什么是虚拟环境1.2 为什么需要虚拟环境二、Python 内置的虚拟环境工具

Python实例题之pygame开发打飞机游戏实例代码

《Python实例题之pygame开发打飞机游戏实例代码》对于python的学习者,能够写出一个飞机大战的程序代码,是不是感觉到非常的开心,:本文主要介绍Python实例题之pygame开发打飞机... 目录题目pygame-aircraft-game使用 Pygame 开发的打飞机游戏脚本代码解释初始化部

Python pip下载包及所有依赖到指定文件夹的步骤说明

《Pythonpip下载包及所有依赖到指定文件夹的步骤说明》为了方便开发和部署,我们常常需要将Python项目所依赖的第三方包导出到本地文件夹中,:本文主要介绍Pythonpip下载包及所有依... 目录步骤说明命令格式示例参数说明离线安装方法注意事项总结要使用pip下载包及其所有依赖到指定文件夹,请按照以