Last active
October 18, 2022 18:29
-
-
Save richarddun/5f732525e2e909479970d99c17b6dbbb to your computer and use it in GitHub Desktop.
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
#!/usr/bin/env python2 | |
import curses | |
import curses.panel | |
def main(win): | |
global stdscr | |
global max_y,max_x,mult | |
stdscr = win | |
curses.initscr() | |
curses.cbreak() | |
curses.noecho() | |
stdscr.keypad(1) | |
curses.curs_set(0) | |
y,x = 0,1 | |
mult = 40 | |
maxcoords = stdscr.getmaxyx() | |
max_y, max_x = maxcoords[y],maxcoords[x] | |
pad = curses.newpad(max_y,2000) | |
drawstuff(pad) | |
running = True | |
while running: | |
mvmt = stdscr.getch() | |
if mvmt == ord('a'): | |
mult += 1 | |
pad.refresh(1,1,1,1,max_y,mult) | |
if mvmt == ord('b'): | |
mult += 1 | |
pad.refresh(1,1,1,1,max_y,mult) | |
if mvmt == ord('Q'): | |
running = False | |
return | |
curses.doupdate() | |
curses.endwin() | |
def drawstuff(pad): | |
for i in xrange(max_x): | |
for j in xrange(max_y): | |
if i % 2 == 0: | |
pad.addch(j,i,'+') | |
else: | |
pad.addch(j,i,'-') | |
if __name__ == '__main__': | |
curses.wrapper(main) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment