added desc to some constants
This commit is contained in:
parent
bc48193ae3
commit
cfa92e13dc
|
@ -1 +1 @@
|
|||
242 64
|
||||
95 99
|
|
@ -1,8 +1,27 @@
|
|||
154.166507 9.734461
|
||||
205.806972 -14.226458
|
||||
173.674331 -36.266074
|
||||
238.827680 -9.528595
|
||||
20.538274 -173.689063
|
||||
240.210225 -2.541816
|
||||
153.741643 74.111175
|
||||
-73.886221 -125.850095
|
||||
183.093458 11.753695
|
||||
267.947245 -5.705595
|
||||
245.964432 19.779281
|
||||
-17.271259 168.232344
|
||||
262.761717 13.102528
|
||||
8.722496 187.724914
|
||||
248.052110 -15.689672
|
||||
81.854430 -134.316328
|
||||
274.079796 1.563606
|
||||
8.351894 176.625116
|
||||
266.188835 21.930207
|
||||
-55.223673 -136.697143
|
||||
267.965510 14.672781
|
||||
10.450950 170.670914
|
||||
-17.762543 231.138085
|
||||
48.701967 163.713291
|
||||
245.290797 12.585506
|
||||
-164.195223 -10.051226
|
||||
-14.192269 210.356060
|
||||
-17.234565 -137.789935
|
||||
-5.799111 252.267548
|
||||
-184.834810 10.172041
|
||||
-29.883679 -157.179676
|
||||
-203.684199 -21.155081
|
||||
-132.718341 -105.637270
|
||||
-194.091639 172.910493
|
||||
-26.085494 249.631387
|
||||
|
|
|
@ -2,10 +2,10 @@ name, elo
|
|||
./bots/dumb 1347
|
||||
./bots/dumb2 1404
|
||||
./bots/dumb3 1355
|
||||
./bots/dumb4 1135
|
||||
./bots/dumb4 980
|
||||
./bots/dumb5 540
|
||||
./bots/dumb6 562
|
||||
./bots/follow1 810
|
||||
./bots/follow2 916
|
||||
./bots/follow3 822
|
||||
./bots/follow1 854
|
||||
./bots/follow2 1003
|
||||
./bots/follow3 899
|
||||
./bots/follow4 648
|
||||
|
|
19
output.txt
19
output.txt
|
@ -1,12 +1,17 @@
|
|||
4
|
||||
0 (1 3) (6.92 27.72)
|
||||
1 (1 3) (26.96 44.59)
|
||||
2 (1 3) (83.49 84.05)
|
||||
3 (2 0) (34.69 44.29)
|
||||
3
|
||||
0 (2 0) (66.72 61.17)
|
||||
1 (2 0) (45.95 34.36)
|
||||
2 (0 0) (5.48 36.77)
|
||||
2
|
||||
|
||||
1 3
|
||||
S1E
|
||||
5 5
|
||||
..S14
|
||||
....0
|
||||
...35
|
||||
.E15.
|
||||
.....
|
||||
|
||||
100 200 5 0.90 0.80 0.20 0.00 0.20
|
||||
100 220 5 0.90 0.80 0.20 0.00 0.20
|
||||
|
||||
Room Size, Maximum speed, Player Radius, Friction, Restitution factor, Track Distance to Edge, Magnetic Field, Slow zone Width
|
|
@ -9,7 +9,7 @@ const int WIDTH = 1000;
|
|||
const int HEIGHT = 1000;
|
||||
|
||||
const int ROOM_SIZE = 100;
|
||||
const int MAX_SPEED = 200; // m/s
|
||||
const int MAX_SPEED = 220; // m/s
|
||||
|
||||
const double DIST_EDGE = 0.2;
|
||||
const double START_EDGE = 0.05;
|
||||
|
@ -19,8 +19,8 @@ const double RESTITUTION_PLAYER = 0.8; // keep equal to previous constant
|
|||
const int PLAYER_R = 5;
|
||||
const int MAX_THETA_SPAWN = 80; // degrees
|
||||
|
||||
const int BARRIERS = 1;
|
||||
const int ONEATATIME = 1;
|
||||
const int BARRIERS = 1; // enables/disables barriers [UNUSED]
|
||||
const int ONEATATIME = 0; // 0 = everyone move at the same time, 1 = turn-based movement (one player at a time)
|
||||
const double BARRIER_WIDTH = 0.05;
|
||||
|
||||
const double FRICTION = 0.90;
|
||||
|
|
|
@ -2,10 +2,10 @@ name, elo
|
|||
./bots/dumb 1347
|
||||
./bots/dumb2 1404
|
||||
./bots/dumb3 1355
|
||||
./bots/dumb4 1135
|
||||
./bots/dumb4 980
|
||||
./bots/dumb5 540
|
||||
./bots/dumb6 562
|
||||
./bots/follow1 810
|
||||
./bots/follow2 916
|
||||
./bots/follow3 822
|
||||
./bots/follow1 854
|
||||
./bots/follow2 1003
|
||||
./bots/follow3 899
|
||||
./bots/follow4 648
|
||||
|
|
Loading…
Reference in New Issue