forked from netcode-io/yojimbo.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake5.lua
441 lines (392 loc) · 13.7 KB
/
premake5.lua
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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
yojimbo_version = "1.0"
libs = { "System" }
solution "yojimbo"
kind "ConsoleApp"
dotnetframework "4.6.1"
language "C#"
platforms { "x64" }
configurations { "Debug", "Release" }
links { libs }
configuration "Debug"
symbols "On"
defines { "DEBUG" }
configuration "Release"
optimize "Speed"
project "test"
files { "test.cs", "shared_h.cs" }
links { "yojimbo" }
project "yojimbo"
kind "SharedLib"
nuget { "Portable.BouncyCastle:1.8.4" }
defines { "YOJIMBO", "NETCODE_ENABLE_TESTS", "RELIABLE_ENABLE_TESTS" }
files { "yojimbo.cs", "netcode.io.net/netcode.cs", "netcode.io.net/netcode_test.cs", "reliable.io.net/reliable.cs", "reliable.io.net/reliable_test.cs" }
project "client"
files { "client.cs", "shared_h.cs" }
links { "yojimbo" }
project "server"
files { "server.cs", "shared_h.cs" }
links { "yojimbo" }
project "secure_client"
files { "secure_client.cs", "shared_h.cs" }
links { "yojimbo" }
project "secure_server"
files { "secure_server.cs", "shared_h.cs" }
links { "yojimbo" }
project "client_server"
files { "client_server.cs", "shared_h.cs" }
links { "yojimbo" }
project "loopback"
files { "loopback.cs", "shared_h.cs" }
links { "yojimbo" }
project "soak"
files { "soak.cs", "shared_h.cs" }
links { "yojimbo" }
if not os.ishost "windows" then
-- MacOSX and Linux.
newaction
{
trigger = "solution",
description = "Create and open the yojimbo.net solution",
execute = function ()
os.execute [[
dotnet new classlib --force -f netcoreapp2.2 -o _yojimbo -n yojimbo && rm _yojimbo/Class1.cs
sed --in-place 's/<\/TargetFramework>/<\/TargetFramework><DefineConstants>YOJIMBO;NETCODE_ENABLE_TESTS;RELIABLE_ENABLE_TESTS<\/DefineConstants>/' _yojimbo/yojimbo.csproj
dotnet add _yojimbo package Portable.BouncyCastle
cp yojimbo.cs _yojimbo
cp netcode.io.net/netcode.cs netcode.io.net/netcode_test.cs _yojimbo
cp reliable.io.net/reliable.cs reliable.io.net/reliable_test.cs _yojimbo]]
os.execute [[
dotnet new console --force -o _test -n test && rm _test/Program.cs
dotnet add _test reference _yojimbo
cp test.cs shared_h.cs _test]]
os.execute [[
dotnet new console --force -o _client -n client && rm _client/Program.cs
dotnet add _client reference _yojimbo
cp client.cs shared_h.cs _client]]
os.execute [[
dotnet new console --force -o _server -n server && rm _server/Program.cs
dotnet add _server reference _yojimbo
cp server.cs shared_h.cs _server]]
os.execute [[
dotnet new console --force -o _secure_client -n secure_client && rm _secure_client/Program.cs
dotnet add _secure_client reference _yojimbo
cp secure_client.cs shared_h.cs _secure_client]]
os.execute [[
dotnet new console --force -o _secure_server -n secure_server && rm _secure_server/Program.cs
dotnet add _secure_server reference _yojimbo
cp secure_server.cs shared_h.cs _secure_server]]
os.execute [[
dotnet new console --force -o _client_server -n client_server && rm _client_server/Program.cs
dotnet add _client_server reference _yojimbo
cp client_server.cs shared_h.cs _client_server]]
os.execute [[
dotnet new console --force -o _loopback -n loopback && rm _loopback/Program.cs
dotnet add _loopback reference _yojimbo
cp loopback.cs shared_h.cs _loopback]]
os.execute [[
dotnet new console --force -o _soak -n soak && rm _soak/Program.cs
dotnet add _soak reference _yojimbo
cp soak.cs shared_h.cs _soak]]
os.execute [[
dotnet new sln --force -n yojimbo
dotnet sln add _*/*.csproj]]
end
}
newaction
{
trigger = "test",
description = "Build and run all unit tests",
execute = function ()
os.execute "test ! -d _test && premake5 solution"
os.execute "dotnet build -o ../bin _test/test.csproj && dotnet ./bin/test.dll"
end
}
newaction
{
trigger = "client_server",
description = "Build and run client/server test",
execute = function ()
os.execute "test ! -d _client_server && premake5 solution"
os.execute "dotnet build -o ../bin _client_server/client_server.csproj && dotnet ./bin/client_server.dll"
end
}
newaction
{
trigger = "loopback",
description = "Build and run loopback test",
execute = function ()
os.execute "test ! -d _loopback && premake5 solution"
os.execute "dotnet build -o ../bin _loopback/loopback.csproj && dotnet ./bin/loopback.dll"
end
}
newoption
{
trigger = "serverAddress",
value = "IP[:port]",
description = "Specify the server address that the client should connect to",
}
newaction
{
trigger = "client",
description = "Build and run client",
execute = function ()
os.execute "test ! -d _client && premake5 solution"
if os.execute "dotnet build -o ../bin _client/client.csproj" then
if _OPTIONS["serverAddress"] then
os.execute( "dotnet ./bin/client.dll " .. _OPTIONS["serverAddress"] )
else
os.execute "dotnet ./bin/client.dll"
end
end
end
}
newaction
{
trigger = "server",
description = "Build and run server",
execute = function ()
os.execute "test ! -d _server && premake5 solution"
os.execute "dotnet build -o ../bin _server/server.csproj && dotnet ./bin/server.dll"
end
}
newaction
{
trigger = "secure_server",
description = "Build and run secure server",
execute = function ()
os.execute "test ! -d _secure_server && premake5 solution"
os.execute "dotnet build -o ../bin _secure_server/secure_server.csproj && dotnet ./bin/secure_server.dll"
end
}
newaction
{
trigger = "docker",
description = "Build and run a yojimbo server inside a docker container",
execute = function ()
os.execute "docker run --rm --privileged alpine hwclock -s" -- workaround for clock getting out of sync on macos. see https://docs.docker.com/docker-for-mac/troubleshoot/#issues
os.execute "rm -rf docker/yojimbo.net && mkdir -p docker/yojimbo.net \z
&& mkdir -p docker/yojimbo.net/tests \z
&& cp *.cs docker/yojimbo.net \z
&& cp premake5.lua docker/yojimbo.net \z
&& cp -R reliable.io.net docker/yojimbo.net \z
&& cp -R netcode.io.net docker/yojimbo.net \z
&& cd docker \z
&& docker build -t \"netcodeio:yojimbo.net-server\" . \z
&& rm -rf yojimbo.net \z
&& docker run -ti -p 40000:40000/udp netcodeio:yojimbo.net-server"
end
}
newaction
{
trigger = "matcher",
description = "Build and run the matchmaker web service inside a docker container",
execute = function ()
os.execute "docker run --rm --privileged alpine hwclock -s" -- workaround for clock getting out of sync on macos. see https://docs.docker.com/docker-for-mac/troubleshoot/#issues
os.execute "cd matcher \z
&& docker build -t netcodeio:yojimbo.net-matcher . \z
&& docker run -ti -p 8080:8080 netcodeio:yojimbo.net-matcher"
end
}
newaction
{
trigger = "secure_client",
description = "Build and run secure client and connect to a server via the matcher",
execute = function ()
os.execute "test ! -d _secure_client && premake5 solution"
os.execute "dotnet build -o ../bin _secure_client/secure_client.csproj && dotnet ./bin/secure_client.dll"
end
}
newaction
{
trigger = "stress",
description = "Launch 64 secure client instances to stress the matcher and server",
execute = function ()
os.execute "test ! -d _secure_client && premake5 solution"
if os.execute "dotnet build -o ../bin _secure_client/secure_client.csproj" then
for i = 0, 63 do
os.execute "dotnet ./bin/secure_client.dll &"
end
end
end
}
newaction
{
trigger = "soak",
description = "Build and run soak test",
execute = function ()
os.execute "test ! -d _soak && premake5 solution"
os.execute "dotnet build -o ../bin _soak/soak.csproj && dotnet ./bin/soak.dll"
end
}
newaction
{
trigger = "loc",
description = "Count lines of code",
execute = function ()
os.execute "wc -l *.cs netcode.io.net/*.cs reliable.io.net/*.cs"
end
}
newaction
{
trigger = "release",
description = "Create a release of this project",
execute = function ()
_ACTION = "clean"
premake.action.call "clean"
files_to_zip = "README.md BUILDING.md CHANGES.md ROADMAP.md *.cs premake5.lua docker tests"
-- todo: need to update this so it works with netcode.io and reliable.io sub-projects
os.execute( "rm -rf *.zip *.tar.gz" )
os.execute( "rm -rf docker/yojimbo.net" )
os.execute( "zip -9r yojimbo.net-" .. yojimbo_version .. ".zip " .. files_to_zip )
os.execute( "unzip yojimbo.net-" .. yojimbo_version .. ".zip -d yojimbo.net-" .. yojimbo_version )
os.execute( "tar -zcvf yojimbo.net-" .. yojimbo_version .. ".tar.gz yojimbo.net-" .. yojimbo_version )
os.execute( "rm -rf yojimbo.net-" .. yojimbo_version )
os.execute( "mkdir -p release" )
os.execute( "mv yojimbo.net-" .. yojimbo_version .. ".zip release" )
os.execute( "mv yojimbo.net-" .. yojimbo_version .. ".tar.gz release" )
os.execute( "echo" )
os.execute( "echo \"*** SUCCESSFULLY CREATED RELEASE - yojimbo.net-" .. yojimbo_version .. " *** \"" )
os.execute( "echo" )
end
}
newaction
{
trigger = "sublime",
description = "Create sublime project",
execute = function ()
os.execute "cp .sublime yojimbo.net.sublime-project"
end
}
newaction
{
trigger = "docs",
description = "Build documentation",
execute = function ()
if os.get() == "macosx" then
os.execute "doxygen doxygen.config && open docs/html/index.html"
else
os.execute "doxygen doxygen.config"
end
end
}
newaction
{
trigger = "update_submodules",
description = "Updates to latest code for netcode.io.net and reliable.io.net",
execute = function ()
os.execute [[
git pull
git submodule update --remote --merge
git add *
git commit -am "update submodules"
git push]]
end
}
else
-- Windows
newaction
{
trigger = "solution",
description = "Open yojimbo.sln",
execute = function ()
os.execute "premake5 vs2015"
os.execute "start yojimbo.sln"
end
}
newaction
{
trigger = "docker",
description = "Build and run a yojimbo server inside a docker container",
execute = function ()
os.execute "cd docker && copyFiles.cmd && buildServer.cmd && runServer.cmd"
end
}
newaction
{
trigger = "matcher",
description = "Build and run the matchmaker web service inside a docker container",
execute = function ()
os.execute "cd matcher \z
&& docker build -t netcodeio:yojimbo.net-matcher . \z
&& docker run -ti -p 8080:8080 netcodeio:yojimbo.net-matcher"
end
}
newaction
{
trigger = "stress",
description = "Launch 64 secure client instances to stress the matcher and server",
execute = function ()
for i = 0, 63 do
os.execute "if exist bin\\secure_client.dll ( start /B dotnet bin\\secure_client.dll ) else ( echo could not find bin\\secure_client.dll )"
end
end
}
newaction
{
trigger = "docs",
description = "Build documentation",
execute = function ()
os.execute "doxygen doxygen.config && start docs\\html\\index.html"
end
}
end
newaction
{
trigger = "clean",
description = "Clean all build files and output",
execute = function ()
files_to_delete =
{
"Makefile",
"packages.config",
"*.make",
"*.txt",
"*.zip",
"*.tar.gz",
"*.db",
"*.opendb",
"*.csproj",
"*.csproj.user",
"*.sln",
"*.xcodeproj",
"*.xcworkspace",
"_yojimbo"
}
directories_to_delete =
{
"_yojimbo",
"_test",
"_client",
"_server",
"_secure_client",
"_secure_server",
"_client_server",
"_loopback",
"_soak",
"obj",
"ipch",
"bin",
".vs",
"Debug",
"Release",
"release",
"cov-int",
"docs",
"xml",
"docker/yojimbo.net"
}
for i,v in ipairs( directories_to_delete ) do
os.rmdir( v )
end
if not os.ishost "windows" then
os.execute "find . -name .DS_Store -delete"
for i,v in ipairs( files_to_delete ) do
os.execute( "rm -f " .. v )
end
else
for i,v in ipairs( files_to_delete ) do
os.execute( "del /F /Q " .. v )
end
end
end
}