-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkmaps.py
42 lines (39 loc) · 1.53 KB
/
kmaps.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/local/bin/python
# Copyright (C) 2010 Kevin Chung <[email protected]>
# Tyler Romeo <[email protected]>,
# Eugene Dobry <[email protected]>:
#
# This file is part of Kmaps.
#
# Kmaps is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Kmaps is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Kmaps. If not, see <http://www.gnu.org/licenses/>.
import sys, kmaps.game, kmaps.menu, kmaps.common
from Tkinter import *
print "<program> Copyright (C) <year> <name of author>"
print "This program comes with ABSOLUTELY NO WARRANTY; for details run with -w."
print "This is free software, and you are welcome to redistribute it"
print "under certain conditions; select License in the menu for details."
# Start of script
try:
if sys.argv[1] == "c":
kmaps.common.KMAPS_NS = "terminal"
if __name__ == "__main__":
menu = kmaps.menu.Menu()
menu.execute()
else:
kmaps.common.KMAPS_NS = "gui"
if __name__ == "__main__":
app = kmaps.game.Game_Gui()
app.play()
except KeyboardInterrupt:
print