2013-02-18 22:09:42 +08:00
|
|
|
#!/usr/bin/python
|
2013-12-24 09:42:37 +08:00
|
|
|
#coding=utf-8
|
2013-12-25 16:34:23 +08:00
|
|
|
"""****************************************************************************
|
2013-12-26 14:49:06 +08:00
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
2013-12-25 16:34:23 +08:00
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************"""
|
2013-02-18 22:09:42 +08:00
|
|
|
|
|
|
|
import sys
|
2013-12-30 18:35:08 +08:00
|
|
|
def commandCreate():
|
|
|
|
from module.core import CocosProject
|
|
|
|
project = CocosProject()
|
|
|
|
name, package, language, path = project.checkParams()
|
|
|
|
project.createPlatformProjects(name, package, language, path)
|
|
|
|
|
2013-02-22 16:32:12 +08:00
|
|
|
|
2013-12-24 09:42:37 +08:00
|
|
|
# ------------ main --------------
|
2013-07-26 10:50:37 +08:00
|
|
|
if __name__ == '__main__':
|
2013-12-24 15:07:51 +08:00
|
|
|
"""
|
|
|
|
There have double ways to create cocos project.
|
|
|
|
1.UI
|
|
|
|
2.console
|
2013-12-25 15:53:47 +08:00
|
|
|
#create_project.py --help
|
2013-12-24 15:07:51 +08:00
|
|
|
#create_project.py -n MyGame -k com.MyCompany.AwesomeGame -l javascript -p c:/mycompany
|
|
|
|
"""
|
2013-12-24 09:42:37 +08:00
|
|
|
if len(sys.argv)==1:
|
2014-01-03 19:09:13 +08:00
|
|
|
try:
|
2013-12-30 18:35:08 +08:00
|
|
|
from module.ui import createTkCocosDialog
|
|
|
|
createTkCocosDialog()
|
2014-01-03 19:09:13 +08:00
|
|
|
except ImportError:
|
2013-12-30 18:35:08 +08:00
|
|
|
commandCreate()
|
2013-12-24 09:42:37 +08:00
|
|
|
else:
|
2013-12-30 18:35:08 +08:00
|
|
|
commandCreate()
|
|
|
|
|
2013-02-18 22:09:42 +08:00
|
|
|
|