X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=score.c;h=b21345c6ef6152687a59d330d1d18f48e5778033;hp=406576c85b6a5cf3aee8f995528e824534959706;hb=7f40ee1193e47c59f7297d9361314c731832f7b8;hpb=f1768e98ddbe134b9f6fd6056caf2393b666bb5a diff --git a/score.c b/score.c index 406576c..b21345c 100644 --- a/score.c +++ b/score.c @@ -22,7 +22,7 @@ #include #include -#include "SFont.h" +#include "font.h" #include "common.h" #include "config.h" @@ -56,8 +56,6 @@ struct highscore g_scores[2][N_SCORES] = { static char *titles[2] = { "Normal\n", "Easy\n" }; -extern SFont_Font *g_font; - int g_easy = 0; int cur_score = -1; // which score we're currently entering. @@ -155,53 +153,57 @@ show_score(void) char s[16]; int r = snprintf(s, 16, "Time: "); snprintscore(s+r, 16-r, score); - SFont_Write(surf_screen, g_font, XSIZE-250, 0, s); + font_write(XSIZE-250, 0, s); } void -display_scores(SDL_Surface *s, uint32_t x, uint32_t y) +display_scores(uint32_t x, uint32_t y) { char t[1024]; - int i,h = SFont_TextHeight(g_font); + int i,h = font_height(); + int display_cursor = (SDL_GetTicks() / CURSOR_BLINK_TIME) % 2; + - SFont_Write(s,g_font,x+30,y,"High scores"); + font_write(x+30, y, "High scores"); y += h; - if(g_easy) SFont_Write(s,g_font,x+75,y,"(easy)"); - else SFont_Write(s,g_font,x+60,y,"(normal)"); + if(g_easy) font_write(x+75,y,"(easy)"); + else font_write(x+60,y,"(normal)"); for(i = 0; i 0) name[--n]=0; - } else { - if(k == SDLK_RETURN) { - SDL_EnableUNICODE(0); - cur_score = -1; - return false; - } else name[n++] = c; - } + if(key->sym == SDLK_BACKSPACE) { + if(n > 0) name[--n]=0; + } else { + if(key->sym == SDLK_RETURN || key->sym == SDLK_KP_ENTER) { + SDL_EnableUNICODE(0); + cur_score = -1; + if(n == 0) { + name[0] = '-'; + } + return false; + } else if(n < 12) { + if(key->unicode >= 32 && key->unicode <= 126) { + name[n++] = key->unicode; + } + } // else drop it } return true; }