X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=qchess%2Fsrc%2Fgraphics.py;h=fefcbf34181c62fe447189301f503e739b75d125;hb=6632f3437f19a985d3b6b311b30bc1bafbca0002;hp=0097ec2e92173b794f25e470c9fa2d11fd314cd7;hpb=545652c966aa156faa9301a709dc9ad565df4c9b;p=progcomp2013.git diff --git a/qchess/src/graphics.py b/qchess/src/graphics.py index 0097ec2..fefcbf3 100644 --- a/qchess/src/graphics.py +++ b/qchess/src/graphics.py @@ -29,6 +29,7 @@ class GraphicsThread(StoppableThread): self.cond = threading.Condition() self.sleep_timeout = None self.last_event = time.time() + self.blackout = False #print "Test font" pygame.font.Font(os.path.join(os.path.curdir, "data", "DejaVuSans.ttf"), 32).render("Hello", True,(0,0,0)) @@ -62,8 +63,11 @@ class GraphicsThread(StoppableThread): #print "Display pieces" self.board.display_pieces(window = self.window, grid_sz = self.grid_sz) # Draw the board + self.blackout = False - else: + elif pygame.mouse.get_focused() and not self.blackout: + os.system("xset dpms force off") + self.blackout = True self.window.fill((0,0,0)) pygame.display.flip() @@ -88,7 +92,7 @@ class GraphicsThread(StoppableThread): - +