1618|3

1

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

有用msp430实现flaapy bird的大佬吗? 能给下代码吗 [复制链接]

   有用msp430实现flaapy  bird的大佬吗?  能给下代码吗

最新回复

  详情 回复 发表于 2017-12-1 15:04
点赞 关注
 

回复
举报

1万

帖子

25

TA的资源

版主

沙发
 
有用microbit实现的
链接已隐藏,如需查看请登录或者注册


  1. '''
  2. Flappy Bit

  3. Control the bit by tilting the micro:bit

  4. Avoid the obstacles

  5. Create your own terrain by editing the terrain list below:
  6. '''

  7. import music
  8. from microbit import (accelerometer,
  9.                       display,
  10.                       sleep,
  11.                       Image,
  12.                       reset,
  13.                       )

  14. display.scroll('Flappy Bit')

  15. bird = 2
  16. terrain = [
  17.     (0, 0),
  18.     (0, 0),
  19.     (0, 0),
  20.     (0, 0),
  21.     (0, 2),
  22.     (0, 0),
  23.     (0, 0),
  24.     (3, 0),
  25.     (3, 0),
  26.     (4, 0),
  27.     (3, 0),
  28.     (0, 0),
  29.     (0, 0),
  30.     (0, 1),
  31.     (2, 0),
  32.     (3, 0),
  33.     (4, 0),
  34.     (3, 0),
  35.     (0, 0),
  36.     (0, 1),
  37.     (2, 0),
  38. ]

  39. terrain_multiplier = 5
  40. pos = 0

  41. while True:
  42.     sleep(100)
  43.     if -256 < accelerometer.get_y() < 450:
  44.         bird = max(0, bird - 1)
  45.     elif 568 < accelerometer.get_y() < 1024:
  46.         bird = min(4, bird + 1)

  47.     display.clear()
  48.     display.set_pixel(0, bird, 9)

  49.     pos_terrain = pos // terrain_multiplier
  50.     lost_status = False
  51.     for column, (top, bottom) in enumerate(
  52.             terrain[pos_terrain:pos_terrain + 5]):
  53.         for y in range(top):
  54.             display.set_pixel(column, y, 4)
  55.             if column == 0 and bird == y:
  56.                 lost_status = True
  57.         for y in range(bottom):
  58.             display.set_pixel(column, 4 - y, 4)
  59.             if column == 0 and bird == (4 - y):
  60.                 lost_status = True
  61.     if lost_status:
  62.         display.show(Image.SAD)
  63.         music.play(music.FUNERAL)
  64.         reset()
  65.     pos += 1
  66.     if pos_terrain > len(terrain):
  67.         pos = 0
复制代码

 
 
 

回复

3

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
 
 
 

回复

70

帖子

0

TA的资源

一粒金砂(中级)

4
 
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表