您现在的位置是:首页 > 技术教程 正文

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

admin 阅读: 2024-03-25
后台-插件-广告管理-内容页头部广告(手机)

目录

鸿蒙时钟

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)]

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

代码:

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

2. 创建表类

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

  1. import pyglet
  2. from math import sin, cos, pi
  3. wBackground = (248, 250, 252, 255)
  4. gScales = (215, 220, 230, 255)
  5. class Watch(pyglet.window.Window):
  6. def __init__(self, x, y, R=200, width=800, height=500, caption='圆盘'):
  7. super().__init__(width, height, caption=caption)
  8. pyglet.gl.glClearColor(1, 1, 1, 1)
  9. self.batch = pyglet.graphics.Batch()
  10. self.circle = pyglet.shapes.Circle(x, y, R,
  11. color=wBackground, batch=self.batch)
  12. self.scales = [pyglet.shapes.Line(x, y, x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  13. width=2, color=gScales, batch=self.batch) for i in range(60)]
  14. def on_draw(self):
  15. self.clear()
  16. self.batch.draw()
  17. def run(self):
  18. pyglet.app.run()
  19. watch = Watch(500, 300, 150)
  20. watch.run()

3. 绘制刻度

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

代码: 

  1. import pyglet
  2. from math import sin, cos, pi
  3. wBackground = (248, 250, 252, 255)
  4. gScales = (215, 220, 230, 255)
  5. class Watch(pyglet.window.Window):
  6. def __init__(self, x, y, R=200, width=800, height=500, caption='刻度'):
  7. super().__init__(width, height, caption=caption)
  8. pyglet.gl.glClearColor(1, 1, 1, 1)
  9. self.batch = pyglet.graphics.Batch()
  10. self.circle = pyglet.shapes.Circle(x, y, R*1.05,
  11. color=wBackground, batch=self.batch)
  12. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  13. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  14. width=3, color=gScales, batch=self.batch) for i in range(60)]
  15. for i, scale in enumerate(self.scales):
  16. if i%5==0:
  17. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  18. def on_draw(self):
  19. self.clear()
  20. self.batch.draw()
  21. def run(self):
  22. pyglet.app.run()
  23. watch = Watch(400, 250)
  24. 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)]

代码:

  1. import pyglet
  2. from math import sin, cos, pi
  3. wBackground = (248, 250, 252, 255)
  4. gScales = (215, 220, 230, 255)
  5. rSecond = (240, 70, 20, 255)
  6. class Watch(pyglet.window.Window):
  7. def __init__(self, x, y, R=200, width=800, height=500, caption='指针'):
  8. super().__init__(width, height, caption=caption)
  9. pyglet.gl.glClearColor(1, 1, 1, 1)
  10. self.batch = pyglet.graphics.Batch()
  11. self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)
  12. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  13. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  14. width=3, color=gScales, batch=self.batch) for i in range(60)]
  15. for i,scale in enumerate(self.scales):
  16. if i%5==0:
  17. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  18. self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),
  19. x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',
  20. batch=self.batch) for i in range(12)]
  21. def on_draw(self):
  22. self.clear()
  23. self.batch.draw()
  24. def run(self):
  25. pyglet.app.run()
  26. watch = Watch(400, 250)
  27. 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)

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

代码:

  1. import pyglet
  2. from math import sin, cos, pi
  3. wBackground = (248, 250, 252, 255)
  4. gScales = (215, 220, 230, 255)
  5. rSecond = (240, 70, 20, 255)
  6. bMinute = (70, 71, 75, 255)
  7. bHour = (42, 43, 48, 255)
  8. wWhite = (255, 255, 255, 255)
  9. class Watch(pyglet.window.Window):
  10. def __init__(self, x, y, R=200, width=800, height=500, caption='指针'):
  11. super().__init__(width, height, caption=caption)
  12. pyglet.gl.glClearColor(1, 1, 1, 1)
  13. self.batch = pyglet.graphics.Batch()
  14. self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)
  15. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  16. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  17. width=3, color=gScales, batch=self.batch) for i in range(60)]
  18. for i,scale in enumerate(self.scales):
  19. if i%5==0:
  20. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  21. self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),
  22. x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',
  23. batch=self.batch) for i in range(12)]
  24. self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)
  25. self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)
  26. self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)
  27. self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)
  28. self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)
  29. self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)
  30. def on_draw(self):
  31. self.clear()
  32. self.batch.draw()
  33. def run(self):
  34. pyglet.app.run()
  35. watch = Watch(400, 250)
  36. 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

代码:

  1. import pyglet
  2. from math import sin, cos, pi
  3. wBackground = (248, 250, 252, 255)
  4. gScales = (215, 220, 230, 255)
  5. rSecond = (240, 70, 20, 255)
  6. bMinute = (70, 71, 75, 255)
  7. bHour = (42, 43, 48, 255)
  8. wWhite = (255, 255, 255, 255)
  9. class Watch(pyglet.window.Window):
  10. def __init__(self, x, y, R=200, width=800, height=500, caption='指针'):
  11. super().__init__(width, height, caption=caption)
  12. pyglet.gl.glClearColor(1, 1, 1, 1)
  13. self.batch = pyglet.graphics.Batch()
  14. self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)
  15. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  16. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  17. width=3, color=gScales, batch=self.batch) for i in range(60)]
  18. for i,scale in enumerate(self.scales):
  19. if i%5==0:
  20. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  21. self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),
  22. x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',
  23. batch=self.batch) for i in range(12)]
  24. self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)
  25. self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)
  26. self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)
  27. self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)
  28. self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)
  29. self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)
  30. self.second.anchor_position = (R*0.1, 0)
  31. self.second.rotation = 210
  32. self.minute.rotation = 24
  33. self.hour.rotation = 160
  34. def on_draw(self):
  35. self.clear()
  36. self.batch.draw()
  37. def run(self):
  38. pyglet.app.run()
  39. watch = Watch(400, 250)
  40. 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

代码:

  1. import pyglet
  2. from math import sin, cos, pi
  3. from datetime import datetime
  4. wBackground = (248, 250, 252, 255)
  5. gScales = (215, 220, 230, 255)
  6. rSecond = (240, 70, 20, 255)
  7. bMinute = (70, 71, 75, 255)
  8. bHour = (42, 43, 48, 255)
  9. wWhite = (255, 255, 255, 255)
  10. class Watch(pyglet.window.Window):
  11. def __init__(self, x, y, R=200, width=800, height=500, caption='指针'):
  12. super().__init__(width, height, caption=caption)
  13. pyglet.gl.glClearColor(1, 1, 1, 1)
  14. self.batch = pyglet.graphics.Batch()
  15. self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)
  16. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  17. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  18. width=3, color=gScales, batch=self.batch) for i in range(60)]
  19. for i,scale in enumerate(self.scales):
  20. if i%5==0:
  21. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  22. self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),
  23. x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',
  24. batch=self.batch) for i in range(12)]
  25. self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)
  26. self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)
  27. self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)
  28. self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)
  29. self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)
  30. self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)
  31. self.second.anchor_position = (R*0.1, 0)
  32. self.update()
  33. def update(self):
  34. now = datetime.now()
  35. h, m, s = now.hour, now.minute, now.second
  36. self.second.rotation = -90 + s*6
  37. self.minute.rotation = -90 + m*6 + s/10
  38. self.hour.rotation = -90 + h%12*30 + m/2
  39. def on_draw(self):
  40. self.clear()
  41. self.batch.draw()
  42. def run(self):
  43. pyglet.app.run()
  44. watch = Watch(400, 250)
  45. watch.run()

8. 运行时钟

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

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

完整代码:

  1. import pyglet
  2. from math import sin, cos, pi
  3. from datetime import datetime
  4. class Watch(pyglet.window.Window):
  5. def __init__(self, x, y, R=200, width=800, height=500, caption='时钟'):
  6. super().__init__(width, height, caption=caption)
  7. wBackground = (248, 250, 252, 255)
  8. gScales = (215, 220, 230, 255)
  9. rSecond = (240, 70, 20, 255)
  10. bMinute = (70, 71, 75, 255)
  11. bHour = (42, 43, 48, 255)
  12. wWhite = (255, 255, 255, 255)
  13. pyglet.gl.glClearColor(1, 1, 1, 1)
  14. self.batch = pyglet.graphics.Batch()
  15. self.circle = pyglet.shapes.Circle(x, y, R*1.05, color=wBackground, batch=self.batch)
  16. self.scales = [pyglet.shapes.Line(x+R*cos(i*pi/30), y+R*sin(i*pi/30),
  17. x+R*0.95*cos(i*pi/30), y+0.95*R*sin(i*pi/30),
  18. width=3, color=gScales, batch=self.batch) for i in range(60)]
  19. for i,scale in enumerate(self.scales):
  20. if i%5==0:
  21. scale.width, scale.x2, scale.y2 = 5, x+R*0.92*cos(i*pi/30), y+0.92*R*sin(i*pi/30)
  22. self.labels = [pyglet.text.Label(str((2-i)%12+1), font_size=R*0.12, color=(0,0,0,255),
  23. x=x+R*0.82*cos(i*pi/6), y=y+0.82*R*sin(i*pi/6)-R*0.06, anchor_x='center',
  24. batch=self.batch) for i in range(12)]
  25. self.circle1 = pyglet.shapes.Circle(x, y, R*0.08, color=bHour, batch=self.batch)
  26. self.hour = pyglet.shapes.Line(x, y, x+R*0.7, y, width=9, color=bHour, batch=self.batch)
  27. self.minute = pyglet.shapes.Line(x, y, x+R*0.9, y, width=7, color=bMinute, batch=self.batch)
  28. self.second = pyglet.shapes.Line(x, y, x+R*1.1, y, width=5, color=rSecond, batch=self.batch)
  29. self.circle2 = pyglet.shapes.Circle(x, y, R*0.05, color=rSecond, batch=self.batch)
  30. self.circle3 = pyglet.shapes.Circle(x, y, R*0.02, color=wWhite, batch=self.batch)
  31. self.second.anchor_position = (R*0.1, 0)
  32. self.update(self.event)
  33. pyglet.clock.schedule_interval(self.update, 0.2)
  34. def update(self, event):
  35. now = datetime.now()
  36. h, m, s = now.hour, now.minute, now.second
  37. self.second.rotation = -90 + s*6
  38. self.minute.rotation = -90 + m*6 + s/10
  39. self.hour.rotation = -90 + h%12*30 + m/2
  40. def on_draw(self):
  41. self.clear()
  42. self.batch.draw()
  43. def run(self):
  44. pyglet.app.run()
  45. watch = Watch(400, 250)
  46. watch.run()

标签:
声明

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

在线投稿:投稿 站长QQ:1888636

后台-插件-广告管理-内容页尾部广告(手机)
关注我们

扫一扫关注我们,了解最新精彩内容

搜索