1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/usr/bin/env python3
-
- # ----------------------------------------------------------------------------
- # "THE BEER-WARE LICENSE" (Revision 42):
- # <xythobuz@xythobuz.de> wrote this file. As long as you retain this notice
- # you can do whatever you want with this stuff. If we meet some day, and you
- # think this stuff is worth it, you can buy me a beer in return. Thomas Buck
- # ----------------------------------------------------------------------------
-
- class SplashScreen:
- def __init__(self, g, width = 32, height = 32):
- self.gui = g
- self.width = width
- self.height = height
-
- def draw(self):
- self.gui.set_pixel( 0, 0, (255, 255, 255))
- self.gui.set_pixel( 0, self.height - 1, ( 0, 0, 255))
- self.gui.set_pixel(self.width - 1, 0, (255, 0, 0))
- self.gui.set_pixel(self.width - 1, self.height - 1, ( 0, 255, 0))
-
- for i in range(0, int(min(self.width, self.height) / 3)):
- self.gui.set_pixel((self.width / 2) - 1 + i, (self.height / 2) - 1 + i, (255, 255, 255))
- self.gui.set_pixel((self.width / 2) - 1 - i, (self.height / 2) - 1 - i, (255, 255, 255))
- self.gui.set_pixel((self.width / 2) - 1 + i, (self.height / 2) - 1 - i, (255, 255, 255))
- self.gui.set_pixel((self.width / 2) - 1 - i, (self.height / 2) - 1 + i, (255, 255, 255))
-
- def finished(self):
- return True
-
- def restart(self):
- pass
-
- if __name__ == "__main__":
- import util
- t = util.getTarget()
- s = SplashScreen(t)
- t.debug_loop(s.draw)
|