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的Darts库实现时间序列预测

《Python的Darts库实现时间序列预测》Darts一个集统计、机器学习与深度学习模型于一体的Python时间序列预测库,本文主要介绍了Python的Darts库实现时间序列预测,感兴趣的可以了解... 目录目录一、什么是 Darts?二、安装与基本配置安装 Darts导入基础模块三、时间序列数据结构与

Python正则表达式匹配和替换的操作指南

《Python正则表达式匹配和替换的操作指南》正则表达式是处理文本的强大工具,Python通过re模块提供了完整的正则表达式功能,本文将通过代码示例详细介绍Python中的正则匹配和替换操作,需要的朋... 目录基础语法导入re模块基本元字符常用匹配方法1. re.match() - 从字符串开头匹配2.

Python使用FastAPI实现大文件分片上传与断点续传功能

《Python使用FastAPI实现大文件分片上传与断点续传功能》大文件直传常遇到超时、网络抖动失败、失败后只能重传的问题,分片上传+断点续传可以把大文件拆成若干小块逐个上传,并在中断后从已完成分片继... 目录一、接口设计二、服务端实现(FastAPI)2.1 运行环境2.2 目录结构建议2.3 serv

通过Docker容器部署Python环境的全流程

《通过Docker容器部署Python环境的全流程》在现代化开发流程中,Docker因其轻量化、环境隔离和跨平台一致性的特性,已成为部署Python应用的标准工具,本文将详细演示如何通过Docker容... 目录引言一、docker与python的协同优势二、核心步骤详解三、进阶配置技巧四、生产环境最佳实践

Python一次性将指定版本所有包上传PyPI镜像解决方案

《Python一次性将指定版本所有包上传PyPI镜像解决方案》本文主要介绍了一个安全、完整、可离线部署的解决方案,用于一次性准备指定Python版本的所有包,然后导出到内网环境,感兴趣的小伙伴可以跟随... 目录为什么需要这个方案完整解决方案1. 项目目录结构2. 创建智能下载脚本3. 创建包清单生成脚本4

Python实现Excel批量样式修改器(附完整代码)

《Python实现Excel批量样式修改器(附完整代码)》这篇文章主要为大家详细介绍了如何使用Python实现一个Excel批量样式修改器,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一... 目录前言功能特性核心功能界面特性系统要求安装说明使用指南基本操作流程高级功能技术实现核心技术栈关键函

python获取指定名字的程序的文件路径的两种方法

《python获取指定名字的程序的文件路径的两种方法》本文主要介绍了python获取指定名字的程序的文件路径的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要... 最近在做项目,需要用到给定一个程序名字就可以自动获取到这个程序在Windows系统下的绝对路径,以下

使用Python批量将.ncm格式的音频文件转换为.mp3格式的实战详解

《使用Python批量将.ncm格式的音频文件转换为.mp3格式的实战详解》本文详细介绍了如何使用Python通过ncmdump工具批量将.ncm音频转换为.mp3的步骤,包括安装、配置ffmpeg环... 目录1. 前言2. 安装 ncmdump3. 实现 .ncm 转 .mp34. 执行过程5. 执行结

Python实现批量CSV转Excel的高性能处理方案

《Python实现批量CSV转Excel的高性能处理方案》在日常办公中,我们经常需要将CSV格式的数据转换为Excel文件,本文将介绍一个基于Python的高性能解决方案,感兴趣的小伙伴可以跟随小编一... 目录一、场景需求二、技术方案三、核心代码四、批量处理方案五、性能优化六、使用示例完整代码七、小结一、

Python中 try / except / else / finally 异常处理方法详解

《Python中try/except/else/finally异常处理方法详解》:本文主要介绍Python中try/except/else/finally异常处理方法的相关资料,涵... 目录1. 基本结构2. 各部分的作用tryexceptelsefinally3. 执行流程总结4. 常见用法(1)多个e