Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
J
JTankTrouble
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
9831111
JTankTrouble
Commits
2215d357
Commit
2215d357
authored
Jul 28, 2020
by
9831111
🙂
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check wall enter for key down.
parent
673d25eb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
2 deletions
+17
-2
GameState.java
src/GameState.java
+17
-2
No files found.
src/GameState.java
View file @
2215d357
...
@@ -106,7 +106,22 @@ public class GameState {
...
@@ -106,7 +106,22 @@ public class GameState {
}
}
if
(
keyDOWN
)
{
if
(
keyDOWN
)
{
PermissionDown
=
true
;
for
(
Wall
wall
:
Controller
.
walls
)
{
for
(
Wall
wall
:
Controller
.
walls
)
{
if
(
wall
.
getWidth
()
==
5
&&
wall
.
getHeight
()
==
50
&&
rotateAmount
!=
90
&&
rotateAmount
!=
-
90
&&
rotateAmount
!=
270
&&
rotateAmount
!=
-
270
)
{
if
((
getBounds
(
locX
,
locY
).
intersects
(
new
Rectangle
((
int
)
wall
.
getX
(),
(
int
)
wall
.
getY
(),
5
,
50
))))
{
PermissionDown
=
false
;
break
;
}
}
if
(
wall
.
getWidth
()
==
50
&&
wall
.
getHeight
()
==
5
&&
rotateAmount
!=
180
&&
rotateAmount
!=
-
180
&&
rotateAmount
!=
0
)
{
if
((
getBounds
(
locX
,
locY
).
intersects
(
new
Rectangle
((
int
)
wall
.
getX
(),
(
int
)
wall
.
getY
(),
50
,
5
))))
{
PermissionDown
=
false
;
break
;
}
}
}
}
if
(
PermissionDown
)
if
(
PermissionDown
)
move
(-
5
);
move
(-
5
);
...
...
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