Skip to content

Commit 670495c

Browse files
committed
final version
1 parent 6c99835 commit 670495c

File tree

4 files changed

+439
-413
lines changed

4 files changed

+439
-413
lines changed

bot.pyc

9.83 KB
Binary file not shown.

simulator.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@
1717
import copy
1818
import traceback
1919

20-
from team8 import Player8
21-
from temp import Player_final
22-
# from bot import Bot
20+
from team8 import Team8
21+
from bot import Bot
2322

2423
# TIME = 24
2524
TIME = 100000
@@ -384,18 +383,19 @@ def is_corner(row, col):
384383
option = sys.argv[1]
385384
if option == '1':
386385
obj2 = Random_Player()
387-
obj1 = Player8()
386+
obj1 = Team8()
388387
# obj2 = Random_Player()
389388

390389
elif option == '2':
391390
# obj1 = Random_Player()
392-
obj2 = Player8()
393-
obj1 = Manual_Player()
391+
# obj1 = Team8()
392+
obj1 = Bot()
393+
obj2 = Manual_Player()
394394
elif option == '3':
395395
# obj1 = Player8()
396-
obj2 = Player8()
396+
obj2 = Team8()
397397
# obj2 = Bot()
398-
obj1 = Player_final()
398+
# obj1 = Player_final()
399399
else:
400400
print 'Invalid option'
401401
sys.exit(1)

0 commit comments

Comments
 (0)