forked from gameplay3d/gameplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
newproject.sh
executable file
·264 lines (239 loc) · 9.11 KB
/
newproject.sh
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
#!/bin/bash
# ********************************************************************
#
# newproject.sh
#
# This script generates a set of gameplay project files.
# The new project will be based of the template project and
# it will be generated with the name and location that is specified
# as input parameters.
#
# IMPORTANT: This script must be run from the root of the gameplay
# source tree.
#
# ********************************************************************
#Find out which OS we're on.
unamestr=$(uname)
# Switch-on alias expansion within the script
shopt -s expand_aliases
#Alias the sed in-place command for OSX and Linux - incompatibilities between BSD and Linux sed args
if [[ "$unamestr" == "Darwin" ]]; then
alias aliassedinplace='sed -i ""'
else
#For Linux, notice no space after the '-i'
alias aliassedinplace='sed -i""'
fi
echo
echo "1. Enter a name for the new project."
echo
echo " This name will be given to the project"
echo " executable and a folder with this name"
echo " will be created to store all project files."
echo " Ex. foobar"
echo
read -p "Project Name: " projName
if [[ "$projName" == "" ]]; then
echo
echo "ERROR: No project name specified."
echo
exit -1;
fi
echo
echo
echo "2. Enter a game title."
echo
echo " On some platforms, this title is used to"
echo " identify the game during installation and"
echo " on shortcuts/icons."
echo " Ex. Foo Bar"
echo
read -p "Title: " title
if [[ "$title" == "" ]]; then
echo
echo "ERROR: No game title specified."
echo
exit -1;
fi
echo
echo
echo "3. Enter a unique identifier for your project."
echo
echo " This should be a human readable package name,"
echo " containing at least two words separated by a"
echo " period."
echo " Ex. com.example.foobar"
echo
read -p "Unique ID: " uuid
if [[ "$uuid" == "" ]]; then
echo
echo "ERROR: No uuid specified."
echo
exit -1;
fi
echo
echo
echo "4. Enter your game's main class name."
echo
echo " Your initial game header and source file"
echo " will be given this name and a class with"
echo " this name will be created in these files."
echo " Ex. FooBarGame"
echo
read -p "Class name: " className
if [[ "$className" == "" ]]; then
echo
echo "ERROR: No class name specified."
echo
exit -1;
fi
echo
echo
echo "5. Enter the project path."
echo
echo " This can be a relative path, absolute path,"
echo " or empty for the current folder. Note that"
echo " a project folder named $projName will also"
echo " be created inside this folder."
echo " Ex. ./samples"
echo
read -p "Path: " location
if [[ "$location" == "" ]]; then
projPath=$projName
else
projPath="$location/$projName"
fi
echo
# Verify Path and eliminate double '//'
projPath=`echo "$projPath" | sed 's_//_/_g'`
if [ -e $projPath ]; then
echo
echo "ERROR: Path '$projPath' already exists, aborting."
echo
exit -2
fi
# Make required source folder directories
mkdir -p "$projPath"
mkdir -p "$projPath/src"
mkdir -p "$projPath/res"
if [[ ${projPath:0:1} != "/" ]]; then
currPwd=`pwd`
projPath=`cd $projPath; pwd`
`cd $currPwd`
fi
# Generate relative path from project folder to gameplay folder
gpPathAbs=`pwd`
common_path=$projPath
back=
while [ "${gpPathAbs#$common_path}" = "${gpPathAbs}" ]; do
common_path=$(dirname "$common_path")
if [ -z "$back" ]; then
back=".."
else
back="../${back}"
fi
done
gpPath=${back}/${gpPathAbs#$common_path/}
if [[ ${gpPathAbs} == ${common_path} ]]; then
gpPath=${back}
fi
#############################################
# Copy Microsoft Visual Studio project files
#############################################
gpPathWin=$(echo $gpPath | sed 's*/*\\\\*g')
cp "template/template.vcxproj" "$projPath/$projName.vcxproj"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/$projName.vcxproj"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/$projName.vcxproj"
aliassedinplace "s*GAMEPLAY_PATH*$gpPathWin*g" "$projPath/$projName.vcxproj"
cp "template/template.vcxproj.filters" "$projPath/$projName.vcxproj.filters"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/$projName.vcxproj.filters"
#############################################
# Copy Apple Xcode project files
#############################################
mkdir -p "$projPath/$projName.xcodeproj"
cp "template/template.xcodeproj/project.pbxproj" "$projPath/$projName.xcodeproj/project.pbxproj"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/$projName.xcodeproj/project.pbxproj"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/$projName.xcodeproj/project.pbxproj"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/$projName.xcodeproj/project.pbxproj"
cp "template/TEMPLATE_PROJECT-macosx.plist" "$projPath/$projName-macosx.plist"
aliassedinplace "s*TEMPLATE_UUID*$uuid*g" "$projPath/$projName-macosx.plist"
cp "template/TEMPLATE_PROJECT-ios.plist" "$projPath/$projName-ios.plist"
cp "template/Default-568h@2x.png" "$projPath/Default-568h@2x.png"
aliassedinplace "s*TEMPLATE_TITLE*$title*g" "$projPath/$projName-ios.plist"
aliassedinplace "s*TEMPLATE_UUID*$uuid*g" "$projPath/$projName-ios.plist"
#############################################
# Copy Android NDK project files
#############################################
mkdir -p "$projPath/android"
mkdir -p "$projPath/android/jni"
mkdir -p "$projPath/android/res/values"
mkdir -p "$projPath/android/res/drawable"
cp "template/android/AndroidManifest.xml" "$projPath/android/AndroidManifest.xml"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/AndroidManifest.xml"
aliassedinplace "s*TEMPLATE_UUID*$uuid*g" "$projPath/android/AndroidManifest.xml"
cp "template/android/build.xml" "$projPath/android/build.xml"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/build.xml"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/android/build.xml"
cp "template/android/project.properties" "$projPath/android/project.properties"
cp "template/android/jni/Application.mk" "$projPath/android/jni/Application.mk"
cp "template/android/jni/Android.mk" "$projPath/android/jni/Android.mk"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/jni/Android.mk"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/android/jni/Android.mk"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/android/jni/Android.mk"
cp "template/icon.png" "$projPath/android/res/drawable/icon.png"
cp "template/android/res/values/template.strings.xml" "$projPath/android/res/values/strings.xml"
aliassedinplace "s*TEMPLATE_TITLE*$title*g" "$projPath/android/res/values/strings.xml"
#############################################
# Copy Eclipse files for Android
#############################################
cp "template/android/.cproject" "$projPath/android/.cproject"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/.cproject"
aliassedinplace "s*TEMPLATE_UUID*$uuid*g" "$projPath/android/.cproject"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/android/.cproject"
cp "template/android/.project" "$projPath/android/.project"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/.project"
cp "template/android/.classpath" "$projPath/android/.classpath"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/android/.classpath"
#############################################
# Copy Eclipse files for Linux
#############################################
cp "template/.cproject" "$projPath/.cproject"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/.cproject"
aliassedinplace "s*TEMPLATE_UUID*$uuid*g" "$projPath/.cproject"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/.cproject"
cp "template/.project" "$projPath/.project"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/.project"
#############################################
# Copy QtCreator files
#############################################
cp "template/TEMPLATE_PROJECT.pro" "$projPath/$projName.pro"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/$projName.pro"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/$projName.pro"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/$projName.pro"
#############################################
# Copy CMake files
#############################################
cp "template/template-CMakeLists.txt" "$projPath/CMakeLists.txt"
aliassedinplace "s*TEMPLATE_PROJECT*$projName*g" "$projPath/CMakeLists.txt"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/CMakeLists.txt"
aliassedinplace "s*GAMEPLAY_PATH*$gpPath*g" "$projPath/CMakeLists.txt"
#############################################
# Copy source files
#############################################
cp "template/src/TemplateGame.h" "$projPath/src/$className.h"
cp "template/src/TemplateGame.cpp" "$projPath/src/$className.cpp"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/src/$className.h"
aliassedinplace "s*TemplateGame*$className*g" "$projPath/src/$className.cpp"
# Copy resource files
cp "template/res/"* "$projPath/res/"
# Copy icon
cp "template/icon.png" "$projPath/icon.png"
# Copy config
cp "template/game.config" "$projPath/game.config"
aliassedinplace "s*TEMPLATE_TITLE*$title*g" "$projPath/game.config"
# Open the new project folder, use xdg-open on Linux
if [[ "$unamestr" == "Linux" ]]; then
xdg-open "$projPath"
else
open "$projPath"
fi
exit 0