dispWidth = screen.get_width() - 2 * BORDER
dispHeight = screen.get_height() - 2 * BORDER
- columnWidth = int(round(float(dispWidth) / keyboardLength))
+ columnWidth = int(round(float(dispWidth) / self.keyboardLength))
rects = []
- for i in range(keyboardLength) :
+ for i in range(self.keyboardLength) :
upperLeftCorner = (i*columnWidth + BORDER, BORDER)
rect = pygame.Rect(upperLeftCorner, (columnWidth, dispHeight))
rects.append(rect)
class SongPlayingScreen(_PlayingScreenBase) :
def __init__(self, song) :
- super(SongPlayingScreen, self).__init__(song.)
+ super(SongPlayingScreen, self).__init__(song.distinctNotes)
self.song = song