Skip to content

Instantly share code, notes, and snippets.

@garolpe
Forked from lmacken/countdown.py
Last active November 10, 2019 06:12
Show Gist options
  • Save garolpe/4c952d5314ab4cd28cc394ad11220a6b to your computer and use it in GitHub Desktop.
Save garolpe/4c952d5314ab4cd28cc394ad11220a6b to your computer and use it in GitHub Desktop.
A fullscreen countdown timer
#!/usr/bin/env python
# ----------------------------------------------------------------------------
# A fork of pyglet's timer.py by Luke Macken
#
# Copyright (c) 2006-2008 Alex Holkner
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
# * Neither the name of pyglet nor the names of its
# contributors may be used to endorse or promote products
# derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# ----------------------------------------------------------------------------
'''My fork of lmacken/countdown.py.
Original code was great (does what it supposed to do).
But i needed some more functionality, so there is my update of this script:
Now it accept 0 1 or 2 arguments (just ints)..
* if no argument is passed it start countdown with default 5 minutes (can be adjusted in code).
* if 1 argument is passed - than it countdown number of minutes you passed to it.
* you can pass 2 arguments - than it countdown to specific time - you have to pass hour and minute of target time...
example: python .\countdown.py 9 15 this countdown to 9:15 - you have to use 24H format :)
If less than minute - text turn red - (limit is adjustable in code)
'''
import sys
import pyglet
from datetime import datetime, timedelta
window = pyglet.window.Window(fullscreen=True)
EndHour = 0
EndMinute = 0
CountTime = False
Minutes = 0
Seconds = 0
def calcDiff(eH,eM):
now = datetime.now()
secsleft = int((timedelta(hours=24) - (now - now.replace(hour=eH, minute=eM, second=0, microsecond=0))).total_seconds() % (24 * 3600))
return secsleft
if len(sys.argv) > 2:
EndHour = int(sys.argv[1])
EndMinute = int(sys.argv[2])
secondsLeft = calcDiff(EndHour, EndMinute)
Minutes, Seconds = divmod (secondsLeft, 60)
CountTime = True
elif len(sys.argv) == 2:
Minutes = int(sys.argv[1])
else:
Minutes = 5
class Timer(object):
def __init__(self):
self.start = '%s:%s' % (Minutes, Seconds)
self.label = pyglet.text.Label(self.start, font_size=360,
x=window.width//2, y=window.height//2,
anchor_x='center', anchor_y='center')
self.reset()
def reset(self):
self.time = (Minutes * 60) + Seconds
self.running = True
self.label.text = self.start
self.label.color = (255, 255, 255, 255)
def update(self, dt):
if self.running:
self.time -= dt
m, s = divmod(self.time, 60)
self.label.text = '%02d:%02d' % (m, s)
if m < 1:
self.label.color = (180, 0, 0, 255)
if m < 0:
self.running = False
self.label.text = 'STOP'
@window.event
def on_key_press(symbol, modifiers):
if symbol == pyglet.window.key.SPACE:
if timer.running and CountTime:
timer.running = True
elif timer.running:
timer.running = False
else:
timer.running = True
elif symbol == pyglet.window.key.ESCAPE:
window.close()
@window.event
def on_draw():
window.clear()
timer.label.draw()
timer = Timer()
pyglet.clock.schedule_interval(timer.update, 1)
pyglet.app.run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment