Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
Seminar-HFO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
Seminar-HFO
Commits
424e5005
Commit
424e5005
authored
Jan 26, 2016
by
sanmit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor edits
parent
de23d119
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
hfo/hfo.py
hfo/hfo.py
+2
-1
No files found.
hfo/hfo.py
View file @
424e5005
...
@@ -126,7 +126,8 @@ class HFOEnvironment(object):
...
@@ -126,7 +126,8 @@ class HFOEnvironment(object):
self
.
socket
.
send
(
struct
.
pack
(
"i"
,
self
.
numFeatures
))
self
.
socket
.
send
(
struct
.
pack
(
"i"
,
self
.
numFeatures
))
# Get the current game status
# Get the current game status
data
=
self
.
socket
.
recv
(
struct
.
calcsize
(
"iii"
))
data
=
self
.
socket
.
recv
(
struct
.
calcsize
(
"iii"
))
status
=
struct
.
unpack
(
"iii"
,
data
)[
0
]
status
,
side
,
unum
=
struct
.
unpack
(
"iii"
,
data
)
self
.
player_on_ball
=
HFO_Player
(
side
,
unum
)
assert
status
==
HFO_Status
.
IN_GAME
,
"Status check failed"
assert
status
==
HFO_Status
.
IN_GAME
,
"Status check failed"
print
'[Agent Client] Handshake complete'
print
'[Agent Client] Handshake complete'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment