Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lemeilleurjeudumonde
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
tacticalrpg
lemeilleurjeudumonde
Commits
03a5b3ec
There was a problem fetching the pipeline summary.
Commit
03a5b3ec
authored
8 years ago
by
Montjoie Henri
Browse files
Options
Downloads
Patches
Plain Diff
suite du menu
parent
eb20b6d3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/SDL_bis.c
+45
-22
45 additions, 22 deletions
src/SDL_bis.c
with
45 additions
and
22 deletions
src/SDL_bis.c
+
45
−
22
View file @
03a5b3ec
...
@@ -66,31 +66,15 @@ char* afficherListe(char** nomsClasses, char** skinsClasses, int nbChoix, TTF_Fo
...
@@ -66,31 +66,15 @@ char* afficherListe(char** nomsClasses, char** skinsClasses, int nbChoix, TTF_Fo
SDL_Flip
(
fenetre
);
SDL_Flip
(
fenetre
);
}
}
SDL_FreeSurface
(
fenetre
);
SDL_FreeSurface
(
fenetre
);
printf
(
"la classe choisie est %s"
,
classeChoisie
);
return
classeChoisie
;
return
classeChoisie
;
}
}
int
ecranConfiguration
(
EtatsJeu
*
etat
,
SDL_Surface
*
ecran
)
{
SDL_Event
event
;
SDL_Color
couleurBlanche
=
{
255
,
255
,
255
};
while
(
*
etat
==
CONFIGURATION
)
{
SDL_WaitEvent
(
&
event
);
switch
(
event
.
type
)
{
case
SDL_QUIT
:
etat
=
FERMER
;
break
;
case
SDL_MOUSEBUTTONDOWN
:
afficherListe
(
obtenirNomsClasses
(),
obtenirSkinsClasses
(),
nbClasses
(),
TTF_OpenFont
(
"../resources/fonts/arial.ttf"
,
26
),
couleurBlanche
);
break
;
}
SDL_Flip
(
ecran
);
}
}
int
SDL_bis
()
int
SDL_bis
()
{
EtatsJeu
etat
=
SAISIE_JOUEURS
;
{
int
i
;
EtatsJeu
etat
=
SAISIE_JOUEURS
;
SDL_Surface
*
ecran
=
NULL
;
SDL_Surface
*
ecran
=
NULL
;
SDL_Event
event
;
SDL_Event
event
;
SDL_Surface
*
logo
=
NULL
;
SDL_Surface
*
logo
=
NULL
;
...
@@ -233,9 +217,48 @@ int SDL_bis()
...
@@ -233,9 +217,48 @@ int SDL_bis()
SDL_BlitSurface
(
texte3
,
NULL
,
ecran
,
&
pos_texte3_bis
);
SDL_BlitSurface
(
texte3
,
NULL
,
ecran
,
&
pos_texte3_bis
);
SDL_Flip
(
ecran
);
SDL_Flip
(
ecran
);
if
(
etat
==
CONFIGURATION
)
SDL_Surface
*
textes
[
6
];
SDL_Rect
posTextes
[
6
];
police
=
TTF_OpenFont
(
"../resources/fonts/arial.ttf"
,
26
);
/*
for(i=0;i<6;i++)
{
{
ecranConfiguration
(
&
etat
,
ecran
);
textes[i]= TTF_RenderText_Shaded(police, test, couleurBlanche,couleurNoire);
}
for(i=0;i<3;i++)
{
posTextes[i].x=ecran->w/4-textes[i]->w/2;
posTextes[i].y=(i+1)*ecran->h;
SDL_BlitSurface(textes[i],NULL,ecran,&(posTextes[i]));
}
for(i=3;i<6;i++)
{
posTextes[i].x=(3*ecran->w)/4-textes[i]->w/2;
posTextes[i].y=posTextes[i-3].y;
SDL_BlitSurface(textes[i],NULL,ecran,&posTextes[i]);
}
SDL_Flip(ecran);
printf("%d",etat);*/
while
(
etat
==
CONFIGURATION
)
{
SDL_WaitEvent
(
&
event
);
switch
(
event
.
type
)
{
case
SDL_QUIT
:
etat
=
FERMER
;
break
;
case
SDL_MOUSEBUTTONDOWN
:
afficherListe
(
obtenirNomsClasses
(),
obtenirSkinsClasses
(),
nbClasses
(),
TTF_OpenFont
(
"../resources/fonts/arial.ttf"
,
26
),
couleurBlanche
);
break
;
default:
break
;
}
/*for(i=0;i<6;i++){
SDL_BlitSurface(textes[i],NULL,ecran,&(posTextes[i]));
}*/
SDL_Flip
(
ecran
);
}
}
return
0
;
return
0
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment