pipe-game

Un jeu de cartes à piper les une dans les autres - retour accueil

git clone git://bebou.netlib.re/pipe-game
Log | Files | Refs | README |

commit ee38fe13460d2ac1625b19e838dffc10b136b91b
parent 9fd601206b6baaaef888fa9684f72516fada0762
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Wed, 22 Jan 2025 20:10:49 +0100

On met les trucs de debug dans la fonction debug

comme ça on peut facilement passer à côté avec un flag ou quoi

Diffstat:
Minterface.c | 17+++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/interface.c b/interface.c @@ -172,6 +172,15 @@ int displaytextblock(char *text, int rowoffset, int lineoffset) { return nbl+1; } +void debug(pile curmenu) { + tb_printf(0,30,TB_DEFAULT,TB_DEFAULT,curmenu.name); + char str[100];sprintf(str,"%d",curmenu.cardCount); + tb_printf(0,31,TB_DEFAULT,TB_DEFAULT,str); + char str2[100]; + sprintf(str2,"%d",curmenu.curline); + tb_printf(0,32,TB_DEFAULT,TB_DEFAULT,str2); +} + void display(pile** piles, pile curmenu, bool selection, char* cmd, char* res, char* intern) { int lineoffset=0; tb_clear(); @@ -191,12 +200,8 @@ void display(pile** piles, pile curmenu, bool selection, char* cmd, char* res, c lineoffset=displaytextblock(res,0,lineoffset); lineoffset=displaytextblock(intern,0,lineoffset); - tb_printf(0,30,TB_DEFAULT,TB_DEFAULT,curmenu.name); - char str[100];sprintf(str,"%d",curmenu.cardCount); - tb_printf(0,31,TB_DEFAULT,TB_DEFAULT,str); - char str2[100]; - sprintf(str2,"%d",curmenu.curline); - tb_printf(0,32,TB_DEFAULT,TB_DEFAULT,str2); + debug(curmenu); + tb_present(); return; }