forked from canadaduane/BraveZealot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Capfile
78 lines (65 loc) · 2.58 KB
/
Capfile
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
# Note: You should have a .caprc file in your home directory that sets your username:
# set :user, 'your_username'
# gem install mattmatt-cap-ext-parallelize -s http://gems.github.com
# require 'cap_ext_parallelize'
set :callsign, "brave"
set :team, "green"
set :players, "1"
set :machine, "protozoa"
set :bzfs_port, "5154"
set :bzport, "3000"
set :world, nil
desc "Starts the bzfs server on the remote CS department host"
task :start_server, :hosts => "#{machine}.cs.byu.edu" do
begin
cmd = "~cs470s/bzflag/src/bzfs/bzfs -c -d " +
"-set _inertiaLinear 1 " +
"-set _inertiaAngular 1 " +
"-set _tankAngVel 0.5 " +
"-set _rejoinTime 0 " +
"-set _grabOwnFlag 0 "
cmd += "-world #{world}" if world
stream cmd, :pty => true
rescue SignalException => e
puts "shutdown bzflag server"
stop_server
end
end
desc "Stops the bzfs server"
task :stop_server, :hosts => "#{machine}.cs.byu.edu" do
run "ps auxww|grep bzfs|grep -v grep|awk '{print $2}'|xargs kill; true"
end
desc "Initiates a local SSH tunnel with port-forwarding to the remote bzflag server"
task :start_tunnel, :hosts => "localhost" do
stop_tunnel
puts "Opening SSH tunnel on port #{bzport}"
system("ssh -f -N -L #{bzport}:#{machine}:#{bzport} #{user}@#{machine}.cs.byu.edu")
end
task :start_tunnel_delayed, :hosts => "localhost" do
puts "In 10 seconds, opening SSH tunnel on port #{bzport}"
system("sleep 10; ssh -f -N -L #{bzport}:#{machine}:#{bzport} #{user}@#{machine}.cs.byu.edu")
end
desc "Closes SSH tunnel(s) to the remote bzflag server"
task :stop_tunnel, :hosts => "localhost" do
system("ps auxww|grep ssh|grep #{bzport}|awk '{print $2}'|xargs kill")
end
desc "Start the bzrobots server/client"
task :start_robot, :hosts => "#{machine}.cs.byu.edu" do
puts "Starting bzrobots server/client"
begin
run "~cs470s/bzflag/src/bzrobots/bzrobots -team #{team} -solo #{players} -p #{bzport} #{callsign}@localhost"
rescue SignalException => e
puts "shutdown bzrobots"
stop_robot
end
end
desc "Stop the bzrobots server/client"
task :stop_robot, :hosts => "#{machine}.cs.byu.edu" do
puts "Stopping bzrobots server/client"
run "ps auxww|grep bzrobots|grep -v grep|awk '{print $2}'|xargs kill; true"
end
#/users/ta/cs470s/bzflag/src/bzfs/bzfs -c -d -set _inertiaLinear 1 -set _inertiaAngular 1 -set _tankAngVel 0.5 -set _rejoinTime 0 -set _grabOwnFlag 0 -world rotated.bzw &
#
#/users/ta/cs470s/bzflag/src/bzrobots/bzrobots -team green -solo 1 -p 3000 nerds@localhost &
#/users/ta/cs470s/bzflag/src/bzrobots/bzrobots -team red -solo 1 -p 3001 jocks@localhost &
#