take turn och global chartMap def
This commit is contained in:
parent
16988ababb
commit
416a2d3aed
16
main.py
16
main.py
@ -38,12 +38,12 @@ def main():
|
|||||||
|
|
||||||
|
|
||||||
def take_turn():
|
def take_turn():
|
||||||
# TODO Implement your artificial intelligence here.
|
|
||||||
# TODO Take one action per turn until the game ends.
|
|
||||||
# TODO The following is a short example of how to use the StarterKit
|
|
||||||
if not usePrebuiltStrategy:
|
if not usePrebuiltStrategy:
|
||||||
state = game_layer.game_state
|
# TODO Implement your artificial intelligence here.
|
||||||
print("testrunda")
|
# TODO Take one action per turn until the game ends.
|
||||||
|
# TODO The following is a short example of how to use the StarterKit
|
||||||
|
|
||||||
|
|
||||||
# messages and errors for console log
|
# messages and errors for console log
|
||||||
for message in game_layer.game_state.messages:
|
for message in game_layer.game_state.messages:
|
||||||
print(message)
|
print(message)
|
||||||
@ -91,6 +91,12 @@ def take_turn():
|
|||||||
for error in game_layer.game_state.errors:
|
for error in game_layer.game_state.errors:
|
||||||
print("Error: " + error)
|
print("Error: " + error)
|
||||||
|
|
||||||
|
def chartMap():
|
||||||
|
availableTiles = []
|
||||||
|
for x in range(len(state.map) - 1):
|
||||||
|
for y in range(len(state.map) - 1):
|
||||||
|
if state.map[x][y] == 0:
|
||||||
|
availableTiles.append((x, y))
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
Reference in New Issue
Block a user