1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/.hgignore Tue Aug 18 14:08:20 2009 +0300
1.3 @@ -0,0 +1,4 @@
1.4 +syntax: glob
1.5 +
1.6 +*.pyc
1.7 +*.log-psyco
2.1 --- a/Maumataskis/maumataskis/__init__.py Thu Jun 04 23:28:45 2009 +0300
2.2 +++ b/Maumataskis/maumataskis/__init__.py Tue Aug 18 14:08:20 2009 +0300
2.3 @@ -1,1 +1,6 @@
2.4 +# -*- coding: utf-8 -*-
2.5 #
2.6 +# Maumataškis - computerization of papper game
2.7 +# (c) Arns Udovīčė <zordsdavini at gmail dot com>
2.8 +# Arturas Aidukas <artvras at users dot sourceforge dot net>
2.9 +
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
3.2 +++ b/Maumataskis/maumataskis/__main__.py Tue Aug 18 14:08:20 2009 +0300
3.3 @@ -0,0 +1,12 @@
3.4 +# -*- coding: utf-8 -*-
3.5 +#
3.6 +# Maumataškis - computerization of papper game
3.7 +# (c) Arns Udovīčė <zordsdavini at gmail dot com>
3.8 +# Arturas Aidukas <artvras at users dot sourceforge dot net>
3.9 +
3.10 +
3.11 +from gui import main
3.12 +
3.13 +# here should be choice not to start GUI but something else (make PNG from saved
3.14 +# game)
3.15 +main()
4.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
4.2 +++ b/Maumataskis/maumataskis/gui.py Tue Aug 18 14:08:20 2009 +0300
4.3 @@ -0,0 +1,20 @@
4.4 +# -*- coding: utf-8 -*-
4.5 +#
4.6 +# Maumataškis - computerization of papper game
4.7 +# (c) Arns Udovīčė <zordsdavini at gmail dot com>
4.8 +# Arturas Aidukas <artvras at users dot sourceforge dot net>
4.9 +
4.10 +import pygame
4.11 +from pygame.locals import *
4.12 +
4.13 +def main():
4.14 + pygame.init()
4.15 +
4.16 + # Window
4.17 + display_flags = DOUBLEBUF #FULLSCREEN #DOUBLEBUF
4.18 + width, height = 800, 600
4.19 +
4.20 + window = pygame.display.set_mode( (width, height), display_flags )
4.21 + pygame.display.set_caption(u'Maumataskis')
4.22 + screen = pygame.display.get_surface()
4.23 +
5.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
5.2 +++ b/Maumataskis/maumataskis/maumataskis.py Tue Aug 18 14:08:20 2009 +0300
5.3 @@ -0,0 +1,6 @@
5.4 +# -*- coding: utf-8 -*-
5.5 +#
5.6 +# Maumataškis - computerization of papper game
5.7 +# (c) Arns Udovīčė <zordsdavini at gmail dot com>
5.8 +# Arturas Aidukas <artvras at users dot sourceforge dot net>
5.9 +