Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jumpNrun
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wise2023_jumpnrun
jumpNrun
Compare revisions
047205bd8c80f2a7041af37e53a1920c0555e5ae to 5271c237fa7b78000d18050f35346dc3dbf76563
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
wise2023_jumpnrun/jumpnrun
Select target project
No results found
5271c237fa7b78000d18050f35346dc3dbf76563
Select Git revision
Swap
Target
wise2023_jumpnrun/jumpnrun
Select target project
wise2023_jumpnrun/jumpnrun
1 result
047205bd8c80f2a7041af37e53a1920c0555e5ae
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
added right hand support
· f4fd2472
Michael
authored
1 year ago
f4fd2472
Merge remote-tracking branch 'refs/remotes/origin/main'
· 5271c237
Michael
authored
1 year ago
5271c237
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
charac.c
+6
-5
6 additions, 5 deletions
charac.c
with
6 additions
and
5 deletions
charac.c
View file @
5271c237
...
...
@@ -13,25 +13,26 @@ Nachbedingung: Position des Characters hat sich je nach Tasteneingabe verändert
void
jump
(
int
input
){
switch
(
input
)
{
case
SDL_SCANCODE_L
:
case
SDL_SCANCODE_D
:
//right
if
(
player
->
x
<
770
){
// Überprüfe Grenzen
player
->
x
+=
ROW_SIZE
;
}
break
;
case
SDL_SCANCODE_J
:
case
SDL_SCANCODE_A
:
//left
if
(
player
->
x
>
30
){
// Überprüfe Grenzen
player
->
x
-=
ROW_SIZE
;
}
break
;
case
SDL_SCANCODE_K
:
case
SDL_SCANCODE_S
:
//down
if
(
player
->
y
<
820
){
// Überprüfe Grenzen
playerscore
--
;
player
->
y
+=
ROW_SIZE
;
}
break
;
case
SDL_SCANCODE_I
:
case
SDL_SCANCODE_W
:
//up
if
(
player
->
y
>
120
){
// Überprüfe Grenzen
playerscore
++
;
...
...
@@ -41,7 +42,7 @@ void jump(int input){
player
->
y
-=
ROW_SIZE
;
}
break
;
case
SDL_SCANCODE_U
:
case
SDL_SCANCODE_Q
:
// Taste q => gehe nach oben links
if
(
player
->
y
>
120
&&
player
->
x
>
30
){
// Überprüfe Grenezen
playerscore
++
;
...
...
@@ -52,7 +53,7 @@ void jump(int input){
player
->
x
-=
ROW_SIZE
;
}
break
;
case
SDL_SCANCODE_O
:
case
SDL_SCANCODE_E
:
// Taste e => gehe nach oben rechts
if
(
player
->
y
>
120
&&
player
->
x
<
770
){
// Überprüfe Grenzen
playerscore
++
;
...
...
This diff is collapsed.
Click to expand it.