This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| import sys | |
| import os.path | |
| import time | |
| import datetime | |
| import unicodedata | |
| import multiprocessing | |
| import subprocess | |
| import pygame | |
| from pygame.locals import * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- encoding:utf8 -*- | |
| import unicodedata | |
| import time | |
| import sys | |
| from PIL import Image, ImageDraw, ImageFont | |
| from sense_hat import SenseHat | |
| # 文字列の総バイト数を取得 | |
| def count_byte(s): | |
| n = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 0::/""#============================================================================================= | |
| 0::/""# 譜面のトータルノーツ数 | |
| 0::/""#============================================================================================= | |
| 0::/TOTAL_NOTES = 296 | |
| 0::/""#============================================================================================= | |
| 0::/""# 画面にスコアを表示(初期化処理) | |
| 0::/""#============================================================================================= | |
| 12::/Init(DT) |